HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/backups/mysql/podct
-- MariaDB dump 10.19  Distrib 10.5.18-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: podct
-- ------------------------------------------------------
-- Server version	10.5.18-MariaDB-0+deb11u1

/*!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` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=1604 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */;
INSERT INTO `wp_actionscheduler_actions` VALUES (1602,'action_scheduler/migration_hook','complete','2022-09-12 13:48:47','2022-09-12 15:48:47','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1662990527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1662990527;}',1,1,'2022-09-12 13:48:53','2022-09-12 15:48:53',0,NULL),(1603,'action_scheduler/migration_hook','canceled','2022-09-12 13:48:47','2022-09-12 15:48:47','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1662990527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1662990527;}',1,0,'2022-09-12 13:48:53','2022-09-12 15:48:53',0,NULL);
/*!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 AUTO_INCREMENT=76948 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration');
/*!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 AUTO_INCREMENT=2161 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */;
INSERT INTO `wp_actionscheduler_logs` VALUES (2155,1603,'action created','2022-09-12 13:47:48','2022-09-12 15:47:48'),(2156,1602,'action created','2022-09-12 13:47:48','2022-09-12 15:47:48'),(2157,1602,'action started via WP Cron','2022-09-12 13:48:53','2022-09-12 15:48:53'),(2158,1603,'action canceled','2022-09-12 13:48:53','2022-09-12 15:48:53'),(2159,1602,'action complete via WP Cron','2022-09-12 13:48:53','2022-09-12 15:48:53'),(2160,1603,'action ignored via WP Cron','2022-09-12 13:48:53','2022-09-12 15:48:53');
/*!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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- 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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `wp_defender_audit_log`
--

DROP TABLE IF EXISTS `wp_defender_audit_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_defender_audit_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` int(11) NOT NULL,
  `event_type` varchar(255) NOT NULL,
  `action_type` varchar(255) NOT NULL,
  `site_url` varchar(255) NOT NULL,
  `user_id` int(11) NOT NULL,
  `context` varchar(255) NOT NULL,
  `ip` varchar(255) NOT NULL,
  `msg` varchar(255) NOT NULL,
  `blog_id` int(11) NOT NULL,
  `synced` int(11) NOT NULL,
  `ttl` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `event_type` (`event_type`),
  KEY `action_type` (`action_type`),
  KEY `user_id` (`user_id`),
  KEY `context` (`context`),
  KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_defender_audit_log`
--

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

--
-- Table structure for table `wp_defender_email_log`
--

DROP TABLE IF EXISTS `wp_defender_email_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_defender_email_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` int(11) NOT NULL,
  `source` varchar(255) NOT NULL,
  `to` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `source` (`source`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_defender_email_log`
--

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

--
-- Table structure for table `wp_defender_lockout`
--

DROP TABLE IF EXISTS `wp_defender_lockout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_defender_lockout` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ip` varchar(255) DEFAULT NULL,
  `status` varchar(16) DEFAULT NULL,
  `lockout_message` text DEFAULT NULL,
  `release_time` int(11) DEFAULT NULL,
  `lock_time` int(11) DEFAULT NULL,
  `lock_time_404` int(11) DEFAULT NULL,
  `attempt` int(11) DEFAULT NULL,
  `attempt_404` int(11) DEFAULT NULL,
  `meta` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ip` (`ip`),
  KEY `status` (`status`),
  KEY `attempt` (`attempt`),
  KEY `attempt_404` (`attempt_404`)
) ENGINE=InnoDB AUTO_INCREMENT=19912 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_defender_lockout`
--

LOCK TABLES `wp_defender_lockout` WRITE;
/*!40000 ALTER TABLE `wp_defender_lockout` DISABLE KEYS */;
INSERT INTO `wp_defender_lockout` VALUES (1,'197.94.64.85','normal','',0,0,0,0,0,'[]'),(2,'104.248.17.208','normal','',0,0,0,0,0,'[]'),(3,'51.210.182.66','normal','',0,0,0,0,0,'[]'),(4,'54.221.27.173','normal','',0,0,0,0,0,'[]'),(5,'170.130.126.14','normal','',0,0,0,0,0,'[]'),(6,'170.130.126.14','normal','',0,0,0,0,1,'{\"nf\":[1622671312]}'),(7,'195.141.89.141','normal','',0,0,0,0,0,'[]'),(8,'34.105.18.129','normal','',0,0,0,0,0,'[]'),(9,'34.83.96.93','normal','',0,0,0,0,0,'[]'),(10,'34.83.191.33','normal','',0,0,0,0,0,'[]'),(11,'34.105.19.82','normal','',0,0,0,0,0,'[]'),(12,'35.185.197.215','normal','',0,0,0,0,0,'[]'),(13,'3.12.108.86','normal','',0,0,0,0,0,'[]'),(14,'173.252.127.31','normal','',0,0,0,0,0,'[]'),(15,'173.252.127.33','normal','',0,0,0,0,0,'[]'),(16,'173.252.127.26','normal','',0,0,0,0,0,'[]'),(17,'185.150.85.108','normal','',0,0,0,0,0,'[]'),(18,'178.171.53.246','normal','',0,0,0,0,0,'[]'),(19,'31.40.222.152','normal','',0,0,0,0,0,'[]'),(20,'178.171.53.153','normal','',0,0,0,0,0,'[]'),(21,'193.160.69.107','normal','',0,0,0,0,0,'[]'),(22,'185.150.85.21','normal','',0,0,0,0,0,'[]'),(23,'154.16.56.128','normal','',0,0,0,0,0,'[]'),(24,'84.22.148.216','normal','',0,0,0,0,0,'[]'),(25,'84.22.149.238','normal','',0,0,0,0,0,'[]'),(26,'188.241.83.115','normal','',0,0,0,0,0,'[]'),(27,'181.214.209.180','normal','',0,0,0,0,0,'[]'),(28,'191.101.117.185','normal','',0,0,0,0,0,'[]'),(29,'84.22.148.82','normal','',0,0,0,0,0,'[]'),(30,'84.22.150.174','normal','',0,0,0,0,0,'[]'),(31,'84.22.151.48','normal','',0,0,0,0,0,'[]'),(32,'193.160.69.176','normal','',0,0,0,0,0,'[]'),(33,'193.160.72.147','normal','',0,0,0,0,0,'[]'),(34,'185.158.105.93','normal','',0,0,0,0,0,'[]'),(35,'197.94.95.28','normal','',0,0,0,0,0,'[]'),(36,'69.25.58.56','normal','',0,0,0,0,0,'[]'),(37,'40.77.167.89','normal','',0,0,0,0,0,'[]'),(38,'157.55.39.126','normal','',0,0,0,0,0,'[]'),(39,'13.66.139.1','normal','',0,0,0,0,0,'[]'),(40,'13.66.139.0','normal','',0,0,0,0,0,'[]'),(41,'54.145.116.72','normal','',0,0,0,0,0,'[]'),(42,'159.89.221.92','normal','',0,0,0,0,0,'[]'),(43,'103.123.84.19','normal','',0,0,0,0,0,'[]'),(44,'185.158.101.25','normal','',0,0,0,0,0,'[]'),(45,'77.90.170.152','normal','',0,0,0,0,0,'[]'),(46,'154.16.60.138','normal','',0,0,0,0,0,'[]'),(47,'51.158.97.148','normal','',0,0,0,0,4,'{\"nf\":[1622758913,1629138581,1635253046,1641640332]}'),(48,'23.92.127.45','normal','',0,0,0,0,0,'[]'),(49,'3.85.226.144','normal','',0,0,0,0,0,'[]'),(50,'54.152.177.79','normal','',0,0,0,0,0,'[]'),(51,'34.218.253.174','normal','',0,0,0,0,0,'[]'),(52,'54.186.254.147','normal','',0,0,0,0,0,'[]'),(53,'34.219.92.94','normal','',0,0,0,0,0,'[]'),(54,'34.221.157.105','normal','',0,0,0,0,0,'[]'),(55,'34.212.94.254','normal','',0,0,0,0,0,'[]'),(56,'44.242.173.69','normal','',0,0,0,0,0,'[]'),(57,'54.244.131.212','normal','',0,0,0,0,0,'[]'),(58,'54.201.170.245','normal','',0,0,0,0,0,'[]'),(59,'34.219.8.2','normal','',0,0,0,0,0,'[]'),(60,'34.219.8.2','normal','',0,0,0,0,0,'[]'),(61,'34.211.2.131','normal','',0,0,0,0,0,'[]'),(62,'54.202.48.22','normal','',0,0,0,0,0,'[]'),(63,'18.237.180.149','normal','',0,0,0,0,0,'[]'),(64,'54.184.187.137','normal','',0,0,0,0,0,'[]'),(65,'54.191.83.251','normal','',0,0,0,0,0,'[]'),(66,'52.26.188.228','normal','',0,0,0,0,0,'[]'),(67,'18.236.96.146','normal','',0,0,0,0,0,'[]'),(68,'52.43.175.181','normal','',0,0,0,0,0,'[]'),(69,'138.201.36.241','normal','',0,0,0,0,0,'[]'),(70,'51.159.30.87','normal','',0,0,0,0,0,'[]'),(71,'51.159.30.87','normal','',0,0,0,0,0,'[]'),(72,'34.72.146.195','normal','',0,0,0,0,0,'[]'),(73,'194.61.113.228','normal','',0,0,0,0,0,'[]'),(74,'84.22.148.158','normal','',0,0,0,0,0,'[]'),(75,'191.101.87.250','normal','',0,0,0,0,0,'[]'),(76,'88.204.46.24','normal','',0,0,0,0,0,'[]'),(77,'203.190.170.4','normal','',0,0,0,0,0,'[]'),(78,'171.255.197.7','normal','',0,0,0,0,0,'[]'),(79,'107.178.206.144','normal','',0,0,0,0,0,'[]'),(80,'35.203.249.90','normal','',0,0,0,0,0,'[]'),(81,'35.203.249.112','normal','',0,0,0,0,0,'[]'),(82,'208.72.23.156','normal','',0,0,0,0,0,'[]'),(83,'46.4.33.48','normal','',0,0,0,0,0,'[]'),(84,'101.51.47.61','normal','',0,0,0,0,0,'[]'),(85,'34.219.60.135','normal','',0,0,0,0,0,'[]'),(86,'18.237.30.16','normal','',0,0,0,0,0,'[]'),(87,'54.188.13.186','normal','',0,0,0,0,0,'[]'),(88,'18.237.249.135','normal','',0,0,0,0,0,'[]'),(89,'44.242.151.56','normal','',0,0,0,0,0,'[]'),(90,'34.222.247.70','normal','',0,0,0,0,0,'[]'),(91,'195.201.41.238','normal','',0,0,0,0,0,'[]'),(92,'107.173.222.12','blocked','You have been locked out due to too many invalid login attempts.',1623000074,1622999774,0,5,0,'{\"nf\":[],\"login\":[1622999759,1622999762,1622999766,1622999770,1622999773]}'),(93,'107.175.197.170','normal','',0,0,0,0,1,'{\"nf\":[1622863266]}'),(94,'191.96.82.123','normal','',0,0,0,0,0,'[]'),(95,'69.160.160.58','normal','',0,0,0,0,1,'{\"nf\":[1624702712]}'),(96,'217.12.221.2','normal','',0,0,0,0,0,'[]'),(97,'197.94.221.220','normal','',0,0,0,0,0,'[]'),(98,'54.36.148.59','normal','',0,0,0,0,0,'[]'),(99,'38.145.80.127','normal','',0,0,0,0,0,'[]'),(100,'77.90.160.254','normal','',0,0,0,0,0,'[]'),(101,'78.136.251.194','normal','',0,0,0,0,0,'[]'),(102,'179.61.191.39','normal','',0,0,0,0,0,'[]'),(103,'84.22.148.18','normal','',0,0,0,0,0,'[]'),(104,'3.17.210.127','normal','',0,0,0,0,0,'[]'),(105,'181.214.2.140','normal','',0,0,0,0,0,'[]'),(106,'54.36.148.214','normal','',0,0,0,0,0,'[]'),(107,'54.36.148.179','normal','',0,0,0,0,0,'[]'),(108,'191.96.81.227','normal','',0,0,0,0,0,'[]'),(109,'54.36.148.233','normal','',0,0,0,0,0,'[]'),(110,'34.240.0.135','normal','',0,0,0,0,0,'[]'),(111,'34.212.193.202','normal','',0,0,0,0,0,'[]'),(112,'34.220.85.220','normal','',0,0,0,0,0,'[]'),(113,'104.247.135.41','normal','',0,0,0,0,0,'[]'),(114,'54.36.148.79','normal','',0,0,0,0,0,'[]'),(115,'54.36.148.39','normal','',0,0,0,0,0,'[]'),(116,'207.46.13.9','normal','',0,0,0,0,0,'[]'),(117,'157.55.39.49','normal','',0,0,0,0,0,'[]'),(118,'212.90.39.68','normal','',0,0,0,0,0,'[]'),(119,'205.169.39.145','normal','',0,0,0,0,0,'[]'),(120,'205.169.39.170','normal','',0,0,0,0,0,'[]'),(121,'88.204.47.42','normal','',0,0,0,0,0,'[]'),(122,'66.249.70.98','normal','',0,0,0,0,0,'[]'),(123,'82.156.101.17','normal','',0,0,0,1,0,'{\"login\":[1624415828]}'),(124,'64.137.126.182','normal','',0,0,0,0,0,'[]'),(125,'34.222.220.247','normal','',0,0,0,0,0,'[]'),(126,'52.13.124.242','normal','',0,0,0,0,0,'[]'),(127,'66.249.70.101','normal','',0,0,0,0,0,'[]'),(128,'5.181.170.105','normal','',0,0,0,0,0,'[]'),(129,'62.210.92.175','normal','',0,0,0,0,0,'[]'),(130,'54.36.148.7','normal','',0,0,0,0,0,'[]'),(131,'213.255.251.143','normal','',0,0,0,0,0,'[]'),(132,'176.113.43.73','normal','',0,0,0,0,0,'[]'),(133,'84.22.149.166','normal','',0,0,0,0,0,'[]'),(134,'84.22.151.243','normal','',0,0,0,0,0,'[]'),(135,'179.61.179.68','normal','',0,0,0,0,0,'[]'),(136,'23.108.53.10','normal','',0,0,0,0,0,'[]'),(137,'72.13.46.6','normal','',0,0,0,0,0,'[]'),(138,'35.167.236.129','normal','',0,0,0,0,0,'[]'),(139,'18.237.26.25','normal','',0,0,0,0,0,'[]'),(140,'74.63.192.130','normal','',0,0,0,0,4,'{\"nf\":[1623106912,1623106913,1623106916,1623106918]}'),(141,'34.96.130.28','normal','',0,0,0,0,0,'[]'),(142,'158.69.243.108','normal','',0,0,0,0,0,'[]'),(143,'197.92.137.21','normal','',0,0,0,0,0,'[]'),(144,'66.249.64.93','normal','',0,0,0,0,0,'[]'),(145,'66.249.64.91','normal','',0,0,0,0,0,'[]'),(146,'66.249.64.92','normal','',0,0,0,0,0,'[]'),(147,'208.110.93.78','normal','',0,0,0,0,0,'[]'),(148,'84.22.149.214','normal','',0,0,0,0,0,'[]'),(149,'191.101.100.150','normal','',0,0,0,0,0,'[]'),(150,'191.101.76.34','normal','',0,0,0,0,0,'[]'),(151,'45.131.102.110','normal','',0,0,0,0,0,'[]'),(152,'179.61.179.96','normal','',0,0,0,0,0,'[]'),(153,'192.109.159.34','normal','',0,0,0,0,0,'[]'),(154,'191.101.86.63','normal','',0,0,0,0,0,'[]'),(155,'34.255.176.70','normal','',0,0,0,0,0,'[]'),(156,'35.183.60.188','normal','',0,0,0,0,0,'[]'),(157,'54.36.148.83','normal','',0,0,0,0,0,'[]'),(158,'54.189.230.128','normal','',0,0,0,0,0,'[]'),(159,'157.55.39.141','normal','',0,0,0,0,0,'[]'),(160,'157.55.39.75','normal','',0,0,0,0,0,'[]'),(161,'54.213.165.228','normal','',0,0,0,0,0,'[]'),(162,'34.214.75.99','normal','',0,0,0,0,0,'[]'),(163,'34.96.130.25','normal','',0,0,0,0,0,'[]'),(164,'84.22.151.101','normal','',0,0,0,0,0,'[]'),(165,'191.101.122.136','normal','',0,0,0,0,0,'[]'),(166,'213.255.250.152','normal','',0,0,0,0,0,'[]'),(167,'84.22.149.112','normal','',0,0,0,0,0,'[]'),(168,'172.247.250.146','normal','',0,0,0,0,0,'[]'),(169,'205.169.39.224','normal','',0,0,0,0,0,'[]'),(170,'13.209.28.104','normal','',0,0,0,0,0,'[]'),(171,'64.111.106.134','normal','',0,0,0,0,0,'[]'),(172,'54.189.127.99','normal','',0,0,0,0,0,'[]'),(173,'52.43.130.175','normal','',0,0,0,0,0,'[]'),(174,'52.27.50.163','normal','',0,0,0,0,0,'[]'),(175,'54.212.110.174','normal','',0,0,0,0,0,'[]'),(176,'54.188.17.155','normal','',0,0,0,0,0,'[]'),(177,'34.78.175.113','normal','',0,0,0,8,0,'{\"login\":[1623298017,1625279371,1626185499,1626394932,1626555223,1626631361,1626724325,1626750301]}'),(178,'83.136.86.28','normal','',0,0,0,1,0,'{\"login\":[1623298368]}'),(179,'54.36.148.124','normal','',0,0,0,0,0,'[]'),(180,'161.35.116.59','normal','',0,0,0,4,0,'{\"login\":[1625878907,1626532895,1627076945,1628572856]}'),(181,'45.119.84.149','normal','',0,0,0,10,0,'{\"login\":[1623299252,1624063293,1626076148,1626514451,1626571450,1626600063,1627899540,1628026300,1632200976,1634942326]}'),(182,'190.119.238.15','normal','',0,0,0,3,0,'{\"login\":[1623299654,1627484401,1627861978]}'),(183,'67.205.61.32','normal','',0,0,0,5,0,'{\"login\":[1623300074,1624076596,1626074986,1627064882,1631687395]}'),(184,'162.144.41.156','normal','',0,0,0,8,0,'{\"login\":[1623300574,1624045681,1626007478,1628056750,1629020392,1629298385,1640701284,1642273064]}'),(185,'41.76.213.176','normal','',0,0,0,0,0,'[]'),(186,'82.97.10.156','normal','',0,0,0,4,0,'{\"login\":[1623301473,1623313345,1623825110,1627458771]}'),(187,'104.197.75.152','normal','',0,0,0,4,0,'{\"login\":[1623301968,1624864412,1625809777,1628021158]}'),(188,'149.202.8.66','normal','',0,0,0,3,0,'{\"login\":[1623302450,1624879839,1629003298]}'),(189,'51.161.34.111','normal','',0,0,0,2,0,'{\"login\":[1623302957,1623741154]}'),(190,'114.33.19.90','normal','',0,0,0,12,0,'{\"login\":[1623303475,1625842515,1626493826,1626552486,1626583328,1626589198,1626815259,1627120197,1627488941,1627576044,1629905278,1630082197]}'),(191,'211.243.86.210','normal','',0,0,0,3,0,'{\"login\":[1623304005,1624103764,1629254378]}'),(192,'162.241.120.138','normal','',0,0,0,7,0,'{\"login\":[1623304505,1624454679,1624516270,1624838898,1624885063,1625232662,1628064447]}'),(193,'67.205.31.50','normal','',0,0,0,4,0,'{\"login\":[1623305019,1624423138,1625743362,1638407855]}'),(194,'125.58.119.157','normal','',0,0,0,3,0,'{\"login\":[1623305625,1623788132,1628027822]}'),(195,'107.182.22.80','normal','',0,0,0,2,0,'{\"login\":[1623306143,1623354662]}'),(196,'159.203.89.44','normal','',0,0,0,4,0,'{\"login\":[1623306804,1624286410,1624878755,1625269562]}'),(197,'151.80.61.53','normal','',0,0,0,3,0,'{\"login\":[1623307176,1623328214,1625942715]}'),(198,'104.155.25.185','normal','',0,0,0,1,0,'{\"login\":[1623307293]}'),(199,'93.113.111.193','normal','',0,0,0,14,0,'{\"login\":[1623307832,1624895146,1625252181,1625311659,1625597163,1626600922,1627548751,1634942344,1653814398,1654002756,1654006556,1661674377,1661685687,1661686363]}'),(200,'42.200.180.31','normal','',0,0,0,4,0,'{\"login\":[1623308243,1623824730,1625371736,1625378052]}'),(201,'13.94.245.44','normal','',0,0,0,2,0,'{\"login\":[1623308452,1632285109]}'),(202,'208.109.14.154','normal','',0,0,0,1,0,'{\"login\":[1623309041]}'),(203,'51.195.253.77','normal','',0,0,0,2,0,'{\"login\":[1623309303,1623742062]}'),(204,'107.180.105.101','normal','',0,0,0,3,0,'{\"login\":[1623309591,1625223349,1626517182]}'),(205,'69.163.216.115','normal','',0,0,0,5,0,'{\"login\":[1623310229,1623756229,1623838072,1627848130,1628048865]}'),(206,'160.251.4.21','normal','',0,0,0,1,0,'{\"login\":[1623310351]}'),(207,'144.217.135.146','normal','',0,0,0,0,1,'{\"nf\":[1623310652]}'),(208,'51.210.219.11','normal','',0,0,0,0,0,'[]'),(209,'173.212.205.58','normal','',0,0,0,2,0,'{\"login\":[1623310836,1623314004]}'),(210,'51.77.246.204','normal','',0,0,0,0,0,'[]'),(211,'208.80.194.41','normal','',0,0,0,0,0,'[]'),(212,'42.193.184.54','normal','',0,0,0,4,0,'{\"login\":[1623311409,1626492212,1627179538,1627836785]}'),(213,'92.53.104.180','normal','',0,0,0,1,0,'{\"login\":[1623311457]}'),(214,'212.48.85.142','normal','',0,0,0,4,0,'{\"login\":[1623312074,1624447920,1625635236,1626613027]}'),(215,'34.68.97.70','normal','',0,0,0,3,0,'{\"login\":[1623312699,1623856441,1624459880]}'),(216,'103.28.49.63','normal','',0,0,0,43,0,'{\"login\":[1623313460,1623795760,1624333372,1626148866,1626506665,1627477843,1627823338,1629008621,1629026996,1629910551,1631244508,1631677161,1631933504,1632658018,1633027038,1633629339,1633636585,1633845434,1634947591,1634959480,1636891319,1637241689,1637295285,1638479850,1639781535,1639837224,1640126237,1640418274,1640853555,1640912293,1640945509,1641363585,1641796716,1642055545,1642378459,1642402544,1642515453,1642542548,1642608773,1642663275,1642683399,1642840852,1643105090]}'),(217,'51.222.9.32','normal','',0,0,0,5,0,'{\"login\":[1623314710,1624084955,1624532035,1626064068,1626528995]}'),(218,'203.171.21.225','normal','',0,0,0,6,0,'{\"login\":[1623315350,1623822575,1624051457,1624294811,1624407126,1631991289]}'),(219,'188.166.247.245','normal','',0,0,0,4,0,'{\"login\":[1623315468,1625682924,1626077206,1627098049]}'),(220,'185.59.44.23','normal','',0,0,0,2,0,'{\"login\":[1623315977,1627787966]}'),(221,'104.236.75.65','normal','',0,0,0,2,0,'{\"login\":[1623316471,1623739373]}'),(222,'203.150.107.77','normal','',0,0,0,6,0,'{\"login\":[1623316739,1623714926,1626068864,1626599262,1627816375,1629232754]}'),(223,'159.65.184.79','normal','',0,0,0,1,0,'{\"login\":[1623317410]}'),(224,'35.184.178.239','normal','',0,0,0,1,0,'{\"login\":[1623317457]}'),(225,'20.186.27.63','normal','',0,0,0,6,0,'{\"login\":[1623318104,1624083746,1624533993,1626096261,1627454656,1627808770]}'),(226,'162.241.180.249','normal','',0,0,0,2,0,'{\"login\":[1623318637,1624090620]}'),(227,'188.166.247.170','normal','',0,0,0,3,0,'{\"login\":[1623319364,1626532100,1629022509]}'),(228,'93.113.111.54','normal','',0,0,0,60,0,'{\"login\":[1623319457,1624585672,1626561328,1629362774,1629475301,1629522894,1629706071,1629922739,1630616132,1630802155,1630803710,1631257580,1631690905,1631766830,1631799392,1631975364,1631982416,1632535483,1632604290,1633319445,1633348586,1633585617,1633693552,1633808387,1634223058,1634270758,1637107084,1638110384,1638214665,1638771527,1639547544,1639720753,1639897744,1640027378,1640285534,1640352338,1640806420,1641109027,1641771961,1641998471,1642049141,1642067873,1642599763,1643319890,1643327723,1644272159,1644500295,1644547702,1644558641,1644663039,1644788455,1646294792,1646462655,1646515716,1646958194,1647378620,1647838406,1648400729,1648421168,1648650021]}'),(229,'167.88.170.2','normal','',0,0,0,1,0,'{\"login\":[1623320066]}'),(230,'2.59.117.55','normal','',0,0,0,30,0,'{\"login\":[1623320443,1626002502,1643313344,1643547687,1643573015,1644133777,1644145975,1644172164,1644261865,1644416323,1644569776,1644637453,1644660081,1644661026,1645074614,1645086733,1645730898,1645804195,1646045382,1646423287,1646445492,1646454516,1646471270,1646512717,1646525762,1646585681,1646913702,1646983777,1647213616,1647428658]}'),(231,'166.62.125.246','normal','',0,0,0,74,0,'{\"login\":[1623320879,1626077877,1626406077,1626555332,1627223823,1628055557,1628751515,1629365104,1630182143,1630302081,1630590639,1630793005,1630909237,1631447577,1632180285,1632204349,1634432129,1637191452,1637726061,1637859455,1639277621,1639408605,1640269254,1640281160,1640641828,1641466216,1642243163,1642280748,1643641886,1644143948,1644246791,1644248448,1644775939,1644826038,1645907309,1645931029,1646663246,1648581003,1648681354,1649828183,1650372071,1650390666,1650570966,1650592599,1651021589,1651052237,1651498991,1651511759,1651731910,1651739152,1652714985,1652725120,1652988112,1653421126,1653456219,1653633197,1654053376,1654310047,1654847620,1654980584,1655057341,1657292029,1658361160,1658570757,1658656764,1659008535,1659086355,1660301442,1660668752,1661665477,1662179529,1662369564,1662406967,1662662960]}'),(232,'197.92.130.186','normal','',0,0,0,0,0,'[]'),(233,'35.243.175.87','normal','',0,0,0,3,0,'{\"login\":[1623321434,1624921303,1625752902]}'),(234,'151.80.141.252','normal','',0,0,0,2,0,'{\"login\":[1623321565,1626560183]}'),(235,'104.131.117.103','normal','',0,0,0,2,0,'{\"login\":[1623322354,1624442604]}'),(236,'146.148.11.215','normal','',0,0,0,2,0,'{\"login\":[1623322432,1625320773]}'),(237,'138.197.11.246','normal','',0,0,0,2,0,'{\"login\":[1623323103,1625317747]}'),(238,'163.44.198.33','normal','',0,0,0,1,0,'{\"login\":[1623323398]}'),(239,'51.159.56.165','normal','',0,0,0,4,0,'{\"login\":[1623323815,1627213200,1632021399,1632193641]}'),(240,'51.75.203.57','normal','',0,0,0,6,0,'{\"login\":[1623324386,1625958080,1625961595,1626117101,1626138397,1627892680]}'),(241,'209.145.59.137','normal','',0,0,0,2,0,'{\"login\":[1623324600,1624100649]}'),(242,'185.158.133.125','normal','',0,0,0,0,0,'[]'),(243,'176.113.42.192','normal','',0,0,0,0,0,'[]'),(244,'185.151.57.136','normal','',0,0,0,0,0,'[]'),(245,'193.160.72.76','normal','',0,0,0,0,0,'[]'),(246,'109.106.3.218','normal','',0,0,0,0,0,'[]'),(247,'83.96.252.246','normal','',0,0,0,1,0,'{\"login\":[1623325339]}'),(248,'107.189.28.185','normal','',0,0,0,1,0,'{\"login\":[1623325395]}'),(249,'165.210.33.197','normal','',0,0,0,4,0,'{\"login\":[1623326144,1623729191,1624118685,1625352741]}'),(250,'152.67.108.11','normal','',0,0,0,4,0,'{\"login\":[1623326295,1626435509,1626522963,1626664018]}'),(251,'173.254.202.176','normal','',0,0,0,2,0,'{\"login\":[1623326973,1624456704]}'),(252,'167.172.190.95','normal','',0,0,0,44,0,'{\"login\":[1623327267,1624269447,1626170953,1627180895,1628126411,1628553886,1628743417,1629670306,1630392624,1630826436,1630905300,1631483234,1631662060,1631684812,1632229267,1632615741,1633309086,1634091331,1634243631,1634261450,1634833292,1636976222,1637252651,1638173224,1639169738,1639337246,1639741669,1640522391,1641062841,1641226473,1641339916,1641362206,1641429189,1641482643,1641785278,1642022831,1642027793,1642325130,1643527966,1643548865,1643554111,1645077423,1645911088,1646314060]}'),(253,'167.99.78.164','normal','',0,0,0,10,0,'{\"login\":[1623327874,1624057729,1625592557,1626594682,1628029449,1628988998,1629296817,1661075008,1662170946,1662643323]}'),(254,'67.205.42.180','normal','',0,0,0,3,0,'{\"login\":[1623328659,1627849241,1627911251]}'),(255,'46.105.120.70','normal','',0,0,0,3,0,'{\"login\":[1623329185,1625331028,1626417142]}'),(256,'159.203.105.141','normal','',0,0,0,4,0,'{\"login\":[1623329412,1623690840,1624053517,1624420425]}'),(257,'103.109.28.1','normal','',0,0,0,44,0,'{\"login\":[1623330117,1626044722,1626473379,1626622381,1629978587,1629985148,1630609031,1631462019,1631506970,1631800753,1632726484,1633050940,1633615586,1634076110,1635985825,1636126697,1636694231,1637057585,1637095536,1638136189,1639024127,1641282620,1641928615,1642072984,1642378246,1642409940,1643017253,1643046638,1644234994,1644388311,1645071823,1645075311,1645228110,1646479217,1646549636,1647149159,1647201944,1647754177,1649083145,1650261360,1650656154,1651416194,1651689710,1651753849]}'),(258,'35.225.94.95','normal','',0,0,0,6,0,'{\"login\":[1623330318,1624083167,1624113990,1631721273,1632581613,1661081087]}'),(259,'192.162.84.55','normal','',0,0,0,1,0,'{\"login\":[1623331025]}'),(260,'149.56.142.1','normal','',0,0,0,3,0,'{\"login\":[1623331221,1623832036,1624871042]}'),(261,'129.211.75.213','normal','',0,0,0,2,0,'{\"login\":[1623331922,1623761701]}'),(262,'104.199.146.31','normal','',0,0,0,6,0,'{\"login\":[1623332106,1625825179,1634003412,1634003921,1634931682,1640800456]}'),(263,'222.255.77.87','normal','',0,0,0,5,0,'{\"login\":[1623332857,1623793067,1628862009,1629906803,1630906102]}'),(264,'93.114.86.226','normal','',0,0,0,1,0,'{\"login\":[1623332995]}'),(265,'128.199.34.217','normal','',0,0,0,4,0,'{\"login\":[1623333768,1626549965,1627066109,1629753403]}'),(266,'119.81.55.54','normal','',0,0,0,1,0,'{\"login\":[1623333890]}'),(267,'66.33.205.189','normal','',0,0,0,2,0,'{\"login\":[1623334789,1624445181]}'),(268,'202.61.247.243','normal','',0,0,0,2,0,'{\"login\":[1623335629,1624272126]}'),(269,'219.122.63.130','normal','',0,0,0,3,0,'{\"login\":[1623335771,1623852850,1624047569]}'),(270,'45.151.248.56','normal','',0,0,0,1,0,'{\"login\":[1623336616]}'),(271,'78.142.210.210','normal','',0,0,0,6,0,'{\"login\":[1623336643,1624039388,1624133468,1625843398,1626585474,1627099578]}'),(272,'193.169.20.175','normal','',0,0,0,4,0,'{\"login\":[1623337554,1626493633,1626511137,1626587275]}'),(273,'177.55.116.244','normal','',0,0,0,1,0,'{\"login\":[1623337618]}'),(274,'139.59.159.168','normal','',0,0,0,1,0,'{\"login\":[1623338483]}'),(275,'185.49.20.75','normal','',0,0,0,5,0,'{\"login\":[1623338610,1623712999,1625646936,1625845428,1655137499]}'),(276,'101.32.178.221','normal','',0,0,0,38,0,'{\"login\":[1623339409,1623892973,1625396380,1626716609,1627023461,1630255835,1631231219,1631715573,1631773266,1632215410,1633166672,1633522425,1633729370,1633906588,1634014222,1634322511,1634472091,1634848190,1639597807,1639776803,1640443593,1640650898,1641196502,1641327193,1641847767,1642259589,1642295545,1642996083,1643011098,1644175187,1644449493,1644715299,1644728420,1645273333,1646247698,1646661359,1646963431,1648192010]}'),(277,'185.50.199.194','normal','',0,0,0,96,0,'{\"login\":[1623340341,1623759568,1624926256,1625670170,1625746375,1625813931,1625849184,1626479329,1626486614,1626948703,1627027406,1627855474,1629370125,1629542529,1629781069,1630178317,1630264584,1630335135,1630929424,1631333780,1632185807,1632263197,1632298088,1632524879,1632545926,1632698470,1633594465,1633847360,1633959076,1634861785,1636878719,1637680961,1639054166,1639529475,1639532166,1640639252,1640949853,1641412001,1641884623,1642062782,1642248291,1643316325,1644635589,1644644918,1645210657,1645760285,1645975873,1646639428,1646823466,1647010332,1647452932,1647511671,1647760102,1647846876,1647943448,1648186964,1649517541,1649644920,1649684966,1650182588,1650322966,1650441940,1650446683,1650851920,1651191725,1651332094,1651426437,1651569886,1652047865,1652444588,1653380042,1653592281,1655415498,1655423941,1655598398,1655825135,1656534006,1656900238,1657203404,1657219445,1657299674,1657456088,1657508713,1657654558,1657843297,1659085285,1659392413,1660084682,1660209962,1660230825,1660522663,1660578364,1661119536,1661284559,1661515747,1661686018]}'),(278,'144.217.12.17','normal','',0,0,0,1,0,'{\"login\":[1623342220]}'),(279,'185.137.220.77','normal','',0,0,0,17,0,'{\"login\":[1623343164,1623702233,1623774014,1623839908,1628763342,1628900450,1629028153,1629334429,1629770846,1629921974,1630621955,1631463500,1631776312,1633953762,1634851586,1635369463,1635389608]}'),(280,'185.86.210.179','normal','',0,0,0,14,0,'{\"login\":[1623344124,1625868896,1625874381,1626075461,1626131770,1626524799,1626558040,1626657105,1627157738,1627169986,1627250508,1627489717,1627529712,1627582716]}'),(281,'54.39.29.64','normal','',0,0,0,0,0,'[]'),(282,'69.12.66.234','normal','',0,0,0,0,0,'[]'),(283,'104.131.68.67','normal','',0,0,0,6,0,'{\"login\":[1623346076,1629147189,1632131131,1632148383,1632727306,1635373921]}'),(284,'135.181.32.173','normal','',0,0,0,1,0,'{\"login\":[1623347029]}'),(285,'51.75.200.183','normal','',0,0,0,20,0,'{\"login\":[1623347957,1623386191,1625403822,1626079793,1627845364,1629767911,1630299145,1630389491,1630903653,1631522149,1631555204,1631796060,1632062192,1632255552,1632382085,1632557602,1632612849,1632975957,1633573543,1633773619]}'),(286,'94.102.51.63','normal','',0,0,0,1,0,'{\"login\":[1623348917]}'),(287,'162.144.126.104','normal','',0,0,0,32,0,'{\"login\":[1623349859,1623698891,1625876225,1625897389,1625940580,1625979501,1626447668,1626626357,1626653155,1627924310,1628584182,1629035801,1629721428,1630702762,1631312893,1631441982,1631709532,1631717098,1631781250,1632751866,1633589356,1634044816,1634125951,1634513873,1634991944,1637357442,1638184207,1638312547,1638374445,1638540093,1639034601,1640363411]}'),(288,'162.55.53.198','normal','',0,0,0,17,0,'{\"login\":[1623352738,1625924408,1626682414,1626697594,1628994633,1629052988,1629156773,1629679658,1629800507,1629902992,1630227619,1630577897,1630613559,1631375952,1632019140,1632083271,1632140600]}'),(289,'157.230.141.171','normal','',0,0,0,17,0,'{\"login\":[1623353699,1623862620,1624849539,1626527922,1627100726,1627590819,1627636605,1628129536,1628860580,1629132156,1629352309,1630627165,1631546398,1631901209,1631950322,1631953320,1632253015]}'),(290,'165.227.230.191','normal','',0,0,0,11,0,'{\"login\":[1623357833,1625978426,1627204772,1627810692,1627930451,1630228366,1631277661,1632210478,1634526088,1634976956,1636962858]}'),(291,'54.244.175.203','normal','',0,0,0,0,0,'[]'),(292,'34.80.144.82','normal','',0,0,0,15,0,'{\"login\":[1623359184,1623889098,1625722446,1625960705,1627229520,1627491275,1627654526,1627931293,1628559792,1629903748,1630629120,1631253345,1631444956,1631948067,1632228612]}'),(293,'34.217.87.169','normal','',0,0,0,0,0,'[]'),(294,'34.212.115.233','normal','',0,0,0,0,0,'[]'),(295,'185.216.176.222','normal','',0,0,0,1,0,'{\"login\":[1623360423]}'),(296,'103.90.232.219','normal','',0,0,0,72,0,'{\"login\":[1623361599,1626415749,1626744174,1626746505,1628551921,1629336055,1629483252,1629700597,1629742713,1629765000,1630351136,1631497660,1632267657,1632728133,1633016594,1633725854,1634854836,1637451139,1637877453,1638390741,1638496977,1639307268,1639705419,1640595682,1640653518,1640979505,1641299751,1641405930,1641709710,1642659896,1642923397,1643008049,1643556412,1643739330,1644160418,1644332907,1644506967,1644522239,1644646799,1645224964,1646274935,1646440241,1646469018,1646510516,1646646243,1646725709,1646753100,1646904988,1647039738,1647437528,1647446570,1648240296,1648617268,1649068200,1649218332,1649524209,1650723484,1651337397,1651685882,1653333768,1653890060,1654116600,1654126566,1654169596,1654323127,1654414131,1655723578,1656736013,1657180023,1657281246,1657473433,1657658034]}'),(297,'161.97.84.237','normal','',0,0,0,2,0,'{\"login\":[1623362831,1623723897]}'),(298,'35.240.148.124','normal','',0,0,0,3,0,'{\"login\":[1623365724,1625711516,1625765274]}'),(299,'210.212.250.39','normal','',0,0,0,1,0,'{\"login\":[1623419223]}'),(300,'35.232.157.59','normal','',0,0,0,7,0,'{\"login\":[1623385228,1623716444,1623789513,1623856272,1625714511,1625799523,1625944971]}'),(301,'91.193.20.72','normal','',0,0,0,7,0,'{\"login\":[1623387157,1625938277,1626078085,1626469062,1626973720,1627020902,1627596274]}'),(302,'54.224.225.87','normal','',0,0,0,1,0,'{\"login\":[1623389140]}'),(303,'167.114.98.212','normal','',0,0,0,0,0,'[]'),(304,'77.79.246.15','normal','',0,0,0,2,0,'{\"login\":[1623390678,1623393271]}'),(305,'180.6.112.89','normal','',0,0,0,1,0,'{\"login\":[1623391466]}'),(306,'167.71.32.134','normal','',0,0,0,2,0,'{\"login\":[1623392153,1623442361]}'),(307,'185.144.159.109','normal','',0,0,0,2,0,'{\"login\":[1623694388,1624338582]}'),(308,'185.98.5.160','normal','',0,0,0,3,0,'{\"login\":[1623392630,1623444892,1623446870]}'),(309,'103.39.132.74','normal','',0,0,0,2,0,'{\"login\":[1623393937,1623415950]}'),(310,'182.48.90.146','normal','',0,0,0,1,0,'{\"login\":[1623394619]}'),(311,'128.199.248.37','normal','',0,0,0,1,0,'{\"login\":[1623395214]}'),(312,'178.62.91.147','normal','',0,0,0,2,0,'{\"login\":[1623395871,1623456950]}'),(313,'142.44.212.25','normal','',0,0,0,1,0,'{\"login\":[1623396427]}'),(314,'133.130.103.36','normal','',0,0,0,76,0,'{\"login\":[1626160957,1626354211,1626592084,1626979736,1627026062,1627146874,1627261640,1627850584,1627920299,1627922980,1628586084,1629136430,1629981037,1630588091,1630939969,1631991831,1633638841,1635768762,1636913772,1637039510,1637861857,1638317354,1638341220,1638404780,1639633557,1640709833,1642110341,1642113257,1642176000,1642987194,1643470180,1643686519,1644556851,1645974982,1646096569,1646424389,1646426924,1647181036,1647323741,1647522021,1647640700,1647655874,1647698307,1647777400,1647861540,1648139490,1649025565,1651051237,1651125751,1651284576,1651497169,1652722262,1652947975,1653221590,1653226473,1653392488,1653810219,1654348806,1654624116,1655426976,1655906260,1656327439,1656798495,1656868486,1657334755,1657463347,1658064013,1658175643,1659016097,1659296755,1659733506,1660696234,1661689425,1662066293,1662248220,1662538360]}'),(315,'18.136.72.135','normal','',0,0,0,0,0,'[]'),(316,'103.57.222.214','normal','',0,0,0,2,0,'{\"login\":[1623397180,1623449486]}'),(317,'202.92.4.128','normal','',0,0,0,1,0,'{\"login\":[1623397788]}'),(318,'144.91.100.149','normal','',0,0,0,2,0,'{\"login\":[1623398348,1623419794]}'),(319,'35.192.2.122','normal','',0,0,0,0,0,'[]'),(320,'188.165.208.7','normal','',0,0,0,1,0,'{\"login\":[1623398869]}'),(321,'139.59.176.201','normal','',0,0,0,2,0,'{\"login\":[1623400324,1623435306]}'),(322,'128.199.18.253','normal','',0,0,0,2,0,'{\"login\":[1623400915,1630399682]}'),(323,'139.59.147.0','normal','',0,0,0,0,0,'[]'),(324,'192.53.174.240','normal','',0,0,0,2,0,'{\"login\":[1623401476,1623445451]}'),(325,'103.57.221.160','normal','',0,0,0,1,0,'{\"login\":[1623402197]}'),(326,'164.138.18.99','normal','',0,0,0,2,0,'{\"login\":[1623402856,1623411232]}'),(327,'197.94.77.104','normal','',0,0,0,0,0,'[]'),(328,'107.178.238.117','normal','',0,0,0,0,0,'[]'),(329,'194.9.80.138','normal','',0,0,0,1,0,'{\"login\":[1623403499]}'),(330,'148.72.64.97','normal','',0,0,0,1,0,'{\"login\":[1623404066]}'),(331,'184.105.184.226','normal','',0,0,0,1,0,'{\"login\":[1623404754]}'),(332,'188.212.34.69','normal','',0,0,0,90,0,'{\"login\":[1626188231,1626423988,1627520292,1627631307,1628837007,1629330408,1629494694,1630321576,1631503946,1632127224,1632322690,1632697650,1633734126,1633819443,1635336474,1635634604,1635726087,1637983475,1638290932,1638314948,1638486011,1639005135,1639707535,1639783125,1639814318,1639839411,1640976194,1641719540,1642605501,1642855585,1643652064,1643748569,1643771950,1644286513,1645818334,1645819243,1645933931,1646286639,1646491381,1646748461,1647163714,1647699771,1648207314,1648415496,1648487945,1648635497,1648696462,1649498658,1649570954,1649663788,1650297088,1650973824,1652569865,1652887350,1652906234,1652974784,1653358528,1653598401,1654155717,1654496060,1654538412,1654801087,1654880266,1654969215,1655250289,1656096469,1657069347,1657106582,1657554267,1658089737,1658094060,1658948321,1659000071,1659114206,1659567413,1659976650,1660009035,1661133243,1661369224,1661437612,1661670877,1661694891,1661711221,1661771515,1662160385,1662279227,1662403390,1663008559,1663029055,1663036704]}'),(333,'103.241.136.148','normal','',0,0,0,6,0,'{\"login\":[1623406190,1623429457,1623457649,1632020524,1638936963,1648197498]}'),(334,'158.69.52.131','normal','',0,0,0,2,0,'{\"login\":[1623406680,1623425612]}'),(335,'54.36.149.59','normal','',0,0,0,0,0,'[]'),(336,'162.241.101.87','normal','',0,0,0,1,0,'{\"login\":[1623409301]}'),(337,'185.252.31.66','normal','',0,0,0,1,0,'{\"login\":[1623410254]}'),(338,'195.201.160.247','normal','',0,0,0,1,0,'{\"login\":[1623411701]}'),(339,'159.89.160.132','normal','',0,0,0,1,0,'{\"login\":[1623412273]}'),(340,'149.56.200.84','normal','',0,0,0,5,0,'{\"login\":[1623413422,1623415264,1623454890,1623459675,1623463851]}'),(341,'35.205.44.38','normal','',0,0,0,4,0,'{\"login\":[1625982650,1628864857,1629138580,1631967025]}'),(342,'194.146.41.100','normal','',0,0,0,2,0,'{\"login\":[1623414148,1623446163]}'),(343,'186.227.194.218','normal','',0,0,0,0,0,'[]'),(344,'213.132.223.231','normal','',0,0,0,0,0,'[]'),(345,'93.189.24.36','normal','',0,0,0,2,0,'{\"login\":[1623416623,1623471306]}'),(346,'103.221.222.165','normal','',0,0,0,3,0,'{\"login\":[1623417881,1634758708,1634788604]}'),(347,'207.180.255.84','normal','',0,0,0,2,0,'{\"login\":[1623418520,1623465148]}'),(348,'108.170.26.130','normal','',0,0,0,2,0,'{\"login\":[1623420415,1623474190]}'),(349,'186.250.243.162','normal','',0,0,0,1,0,'{\"login\":[1623421052]}'),(350,'78.136.253.110','normal','',0,0,0,0,0,'[]'),(351,'5.180.83.136','normal','',0,0,0,0,0,'[]'),(352,'84.22.148.180','normal','',0,0,0,0,0,'[]'),(353,'107.178.206.145','normal','',0,0,0,0,0,'[]'),(354,'45.131.102.121','normal','',0,0,0,0,0,'[]'),(355,'148.72.232.66','normal','',0,0,0,3,0,'{\"login\":[1623421757,1623432002,1623447520]}'),(356,'202.63.242.138','normal','',0,0,0,10,0,'{\"login\":[1623422448,1623450161,1627935277,1628013505,1629136596,1629307606,1630468285,1632011313,1649017903,1649031763]}'),(357,'91.185.211.101','normal','',0,0,0,1,0,'{\"login\":[1623423084]}'),(358,'51.77.238.34','normal','',0,0,0,12,0,'{\"login\":[1624363606,1625871648,1626147947,1626171864,1626662054,1627237129,1627290521,1628888160,1628977745,1629170074,1629515728,1629539316]}'),(359,'113.160.153.11','normal','',0,0,0,1,0,'{\"login\":[1623423715]}'),(360,'162.55.89.50','normal','',0,0,0,1,0,'{\"login\":[1623424972]}'),(361,'52.62.206.201','normal','',0,0,0,2,0,'{\"login\":[1623426327,1623460512]}'),(362,'45.55.60.110','normal','',0,0,0,6,0,'{\"login\":[1623426930,1623437144,1632177690,1634930503,1640803217,1650142488]}'),(363,'134.209.127.203','normal','',0,0,0,4,0,'{\"login\":[1624487851,1624703848,1624754866,1626643292]}'),(364,'161.35.74.104','normal','',0,0,0,7,0,'{\"login\":[1623427540,1627513559,1627934555,1630393848,1631716328,1634147581,1637771636]}'),(365,'165.227.129.197','normal','',0,0,0,39,0,'{\"login\":[1623428750,1630428457,1630882802,1631730062,1631967558,1632022686,1634149023,1635923366,1636721481,1637893537,1637929893,1638904653,1639634335,1641587942,1641595539,1641614950,1641624279,1642738685,1645614845,1645742364,1645762170,1650207759,1651403303,1651528757,1652221731,1652246932,1652817944,1653557021,1653599466,1653599625,1653606554,1655337951,1656815046,1656815192,1657429291,1657490967,1657784375,1657856194,1657860798]}'),(366,'120.138.30.248','normal','',0,0,0,0,0,'[]'),(367,'202.28.77.93','normal','',0,0,0,1,0,'{\"login\":[1623430791]}'),(368,'93.57.20.16','normal','',0,0,0,1,0,'{\"login\":[1623814076]}'),(369,'65.21.145.128','normal','',0,0,0,6,0,'{\"login\":[1623433317,1623440980,1627485544,1627508241,1627940707,1627968760]}'),(370,'162.144.195.153','normal','',0,0,0,10,0,'{\"login\":[1626422600,1626639286,1628137951,1628798035,1630218202,1630363741,1630904481,1631941148,1632379812,1632503615]}'),(371,'159.89.89.205','normal','',0,0,0,6,0,'{\"login\":[1623433955,1623435935,1629121286,1635561705,1637056652,1637060934]}'),(372,'88.99.218.140','normal','',0,0,0,2,0,'{\"login\":[1623434464,1623463150]}'),(373,'54.242.161.128','normal','',0,0,0,0,0,'[]'),(374,'172.105.15.103','normal','',0,0,0,0,0,'[]'),(375,'161.35.109.127','normal','',0,0,0,1,0,'{\"login\":[1623439141]}'),(376,'213.172.4.49','normal','',0,0,0,1,0,'{\"login\":[1624941262]}'),(377,'62.151.182.240','normal','',0,0,0,1,0,'{\"login\":[1623439754]}'),(378,'14.161.36.234','normal','',0,0,0,2,0,'{\"login\":[1623440389,1623441678]}'),(379,'157.245.111.41','normal','',0,0,0,2,0,'{\"login\":[1623442916,1623452144]}'),(380,'54.201.137.160','normal','',0,0,0,0,0,'[]'),(381,'144.217.96.196','normal','',0,0,0,1,0,'{\"login\":[1623443430]}'),(382,'54.190.41.204','normal','',0,0,0,0,0,'[]'),(383,'34.212.144.243','normal','',0,0,0,0,0,'[]'),(384,'172.104.217.71','normal','',0,0,0,1,0,'{\"login\":[1623444188]}'),(385,'34.219.190.129','normal','',0,0,0,0,0,'[]'),(386,'34.214.66.93','normal','',0,0,0,0,0,'[]'),(387,'34.219.150.116','normal','',0,0,0,0,0,'[]'),(388,'94.63.125.204','normal','',0,0,0,0,0,'[]'),(389,'54.244.166.191','normal','',0,0,0,0,0,'[]'),(390,'139.59.119.141','normal','',0,0,0,2,0,'{\"login\":[1623448805,1623465849]}'),(391,'209.58.160.178','normal','',0,0,0,1,0,'{\"login\":[1623451433]}'),(392,'51.79.180.244','normal','',0,0,0,2,0,'{\"login\":[1623452800,1623475721]}'),(393,'3.124.214.225','normal','',0,0,0,0,0,'[]'),(394,'34.116.249.131','normal','',0,0,0,1,0,'{\"login\":[1623453534]}'),(395,'162.55.103.48','normal','',0,0,0,1,0,'{\"login\":[1623454177]}'),(396,'130.185.78.202','normal','',0,0,0,1,0,'{\"login\":[1623455600]}'),(397,'173.249.4.72','normal','',0,0,0,4,0,'{\"login\":[1624944640,1626447464,1626537524,1627217965]}'),(398,'92.53.96.245','normal','',0,0,0,1,0,'{\"login\":[1623456207]}'),(399,'173.212.221.38','normal','',0,0,0,1,0,'{\"login\":[1623458342]}'),(400,'198.27.99.63','normal','',0,0,0,2,0,'{\"login\":[1623461832,1623472824]}'),(401,'35.224.90.109','normal','',0,0,0,0,0,'[]'),(402,'103.98.30.72','normal','',0,0,0,4,0,'{\"login\":[1623464632,1629118951,1630787339,1630887557]}'),(403,'94.199.18.198','normal','',0,0,0,1,0,'{\"login\":[1623466456]}'),(404,'104.196.22.198','normal','',0,0,0,0,0,'[]'),(405,'77.83.100.101','normal','',0,0,0,1,0,'{\"login\":[1623467210]}'),(406,'143.110.254.222','normal','',0,0,0,0,0,'[]'),(407,'194.233.74.250','normal','',0,0,0,1,0,'{\"login\":[1623468544]}'),(408,'37.148.213.19','normal','',0,0,0,1,0,'{\"login\":[1623469333]}'),(409,'203.34.37.39','normal','',0,0,0,1,0,'{\"login\":[1623469970]}'),(410,'178.18.251.248','normal','',0,0,0,1,0,'{\"login\":[1623472092]}'),(411,'207.46.13.59','normal','',0,0,0,0,0,'[]'),(412,'163.172.22.108','normal','',0,0,0,9,0,'{\"login\":[1625687414,1626634324,1629169323,1629724920,1631288600,1631357483,1631389173,1631770512,1632250406]}'),(413,'35.239.201.209','normal','',0,0,0,0,0,'[]'),(414,'92.118.160.17','normal','',0,0,0,0,0,'[]'),(415,'45.151.248.70','normal','',0,0,0,9,0,'{\"login\":[1623731178,1624918975,1626506484,1626599849,1626684379,1627267615,1627278874,1627502865,1627528796]}'),(416,'51.68.43.129','normal','',0,0,0,3,0,'{\"login\":[1623748415,1624969343,1626010792]}'),(417,'197.94.94.70','normal','',0,0,0,0,0,'[]'),(418,'178.171.52.94','normal','',0,0,0,0,0,'[]'),(419,'193.160.69.171','normal','',0,0,0,0,0,'[]'),(420,'178.171.53.219','normal','',0,0,0,0,0,'[]'),(421,'34.77.162.22','normal','',0,0,0,0,0,'[]'),(422,'34.96.130.5','normal','',0,0,0,0,0,'[]'),(423,'18.231.94.162','normal','',0,0,0,0,0,'[]'),(424,'54.36.148.186','normal','',0,0,0,0,0,'[]'),(425,'66.249.66.145','normal','',0,0,0,0,0,'[]'),(426,'18.237.17.112','normal','',0,0,0,0,0,'[]'),(427,'207.180.218.149','normal','',0,0,0,0,0,'[]'),(428,'207.46.13.76','normal','',0,0,0,0,0,'[]'),(429,'104.248.156.176','normal','',0,0,0,0,0,'[]'),(430,'85.14.240.146','normal','',0,0,0,1,0,'{\"login\":[1624898092]}'),(431,'3.66.9.82','normal','',0,0,0,0,0,'[]'),(432,'80.211.228.155','normal','',0,0,0,0,0,'[]'),(433,'173.212.195.63','normal','',0,0,0,0,0,'[]'),(434,'66.249.66.143','normal','',0,0,0,0,0,'[]'),(435,'165.227.155.255','normal','',0,0,0,0,0,'[]'),(436,'134.249.101.234','normal','',0,0,0,8,0,'{\"login\":[1626451975,1626577340,1626665972,1626708466,1627865168,1629117788,1629340112,1630248609]}'),(437,'157.55.39.128','normal','',0,0,0,0,0,'[]'),(438,'62.20.101.134','normal','',0,0,0,1,0,'{\"login\":[1623805972]}'),(439,'35.207.213.67','normal','',0,0,0,2,0,'{\"login\":[1625750180,1629692390]}'),(440,'45.76.245.136','normal','',0,0,0,0,0,'[]'),(441,'197.94.211.122','normal','',0,0,0,0,1,'[]'),(442,'34.222.78.53','normal','',0,0,0,0,0,'[]'),(443,'54.202.255.53','normal','',0,0,0,0,0,'[]'),(444,'40.122.130.155','normal','',0,0,0,17,0,'{\"login\":[1625966465,1626099165,1626403004,1626646243,1627270095,1628585132,1628823735,1630828821,1631372479,1631670581,1635567493,1639810099,1640343919,1640369077,1640435453,1640612132,1640696862]}'),(445,'185.151.59.138','normal','',0,0,0,0,0,'[]'),(446,'84.22.151.222','normal','',0,0,0,0,0,'[]'),(447,'77.90.163.216','normal','',0,0,0,0,0,'[]'),(448,'94.126.205.86','normal','',0,0,0,0,0,'[]'),(449,'84.22.149.125','normal','',0,0,0,0,0,'[]'),(450,'191.101.92.37','normal','',0,0,0,0,0,'[]'),(451,'139.59.118.238','normal','',0,0,0,149,0,'{\"login\":[1624328043,1624634947,1624678171,1625318681,1626511177,1626600850,1626752550,1627260830,1627949526,1630325791,1630671604,1631935379,1631989896,1632027021,1632134882,1632342808,1632678527,1633616874,1635705016,1636749438,1636860724,1636958484,1637000443,1637100058,1637191828,1637438086,1637479916,1638279721,1638337260,1638340419,1638473077,1638750876,1638763333,1639046468,1639151795,1639308465,1639512870,1639732676,1640129024,1640272376,1640630325,1640679345,1640681318,1640934549,1641132934,1641146864,1641381047,1641795208,1642054828,1642270300,1643041908,1643059965,1643090719,1643513490,1643646400,1643670354,1644111940,1644554135,1644611699,1644614573,1644638382,1644657227,1644733268,1644834445,1644836542,1645099483,1645207615,1645781905,1645800047,1645987752,1646000732,1646240548,1646260760,1646266679,1646469364,1646662823,1646837888,1646846483,1647158503,1647304855,1647465321,1647472916,1647744874,1647753170,1647829993,1648143028,1648175016,1648245326,1648502694,1649086661,1649205608,1649545727,1649984914,1650127108,1650139553,1650455452,1650482764,1650556326,1651192311,1651266430,1651405023,1652098409,1652169533,1652540251,1652734352,1652809356,1652844541,1653401363,1654172237,1654310705,1654346880,1654554630,1654646584,1654856577,1654883166,1654927677,1655446481,1655454289,1655689537,1655745703,1655820430,1656153117,1656797835,1657094488,1657134514,1657191676,1657195596,1657317176,1657386648,1657752890,1657893192,1658049877,1658224016,1658296897,1658385022,1659129998,1660193040,1660528020,1660759632,1661213077,1661302117,1661340652,1661392474,1661685921,1662088793,1662238291,1662333134,1662743064,1663153668]}'),(452,'52.52.190.187','normal','',0,0,0,0,0,'[]'),(453,'66.249.66.147','normal','',0,0,0,0,0,'[]'),(454,'20.97.182.132','normal','',0,0,0,0,1,'{\"nf\":[1623612704]}'),(455,'34.213.90.92','normal','',0,0,0,0,0,'[]'),(456,'52.42.114.204','normal','',0,0,0,0,0,'[]'),(457,'54.36.148.169','normal','',0,0,0,0,0,'[]'),(458,'75.119.145.19','normal','',0,0,0,1,0,'{\"login\":[1626655116]}'),(459,'91.134.248.192','normal','',0,0,0,51,3,'{\"login\":[1624354357,1624621656,1625391797,1625718496,1625787809,1625840066,1625892791,1625996069,1626039647,1626042176,1626098225,1626105917,1626107759,1626179984,1626416952,1626432660,1626453409,1626475006,1626486418,1626507885,1626526916,1626528224,1626560948,1626608561,1626615395,1626699608,1626715926,1626723638,1626731146,1627124402,1627164588,1627175438,1627256823,1627262127,1627274898,1627288210,1652182771,1652194874,1652207543,1652208025,1652208913,1657466154,1657488449,1657497016,1657509072,1659356418,1659389444,1659391943,1659397561,1661754821,1661760759],\"nf\":[1634767191,1639853110,1662547221]}'),(460,'35.193.92.181','normal','',0,0,0,1,0,'{\"login\":[1623807457]}'),(461,'54.36.148.196','normal','',0,0,0,0,0,'[]'),(462,'176.126.165.71','normal','',0,0,0,0,0,'[]'),(463,'94.158.36.183','normal','',0,0,0,0,10,'{\"nf\":[1634340323,1635309592,1635745925,1636028278,1636591881,1637013499,1638079449,1638444691,1640585380,1644102065]}'),(464,'209.145.63.112','normal','',0,0,0,0,0,'[]'),(465,'165.227.131.69','normal','',0,0,0,4,0,'{\"login\":[1626361382,1626426804,1626702321,1627833299]}'),(466,'217.61.0.99','normal','',0,0,0,0,0,'[]'),(467,'154.209.68.87','normal','',0,0,0,2,0,'{\"login\":[1626051402,1626061623]}'),(468,'54.36.148.168','normal','',0,0,0,0,0,'[]'),(469,'65.74.177.84','normal','',0,0,0,0,0,'[]'),(470,'54.36.148.177','normal','',0,0,0,0,0,'[]'),(471,'87.229.65.46','normal','',0,0,0,0,0,'[]'),(472,'54.39.144.168','normal','',0,0,0,0,0,'[]'),(473,'95.213.175.156','normal','',0,0,0,21,0,'{\"login\":[1624948065,1626067585,1626436755,1626573335,1626719446,1627114844,1627168632,1627262892,1627981636,1628718945,1628770209,1628789496,1628801114,1628963492,1629159692,1630296236,1630832001,1631225697,1631713723,1631747903,1631917348]}'),(474,'197.89.34.26','normal','',0,0,0,0,0,'[]'),(475,'54.93.246.103','normal','',0,0,0,1,0,'{\"login\":[1623804614]}'),(476,'5.63.153.99','normal','',0,0,0,1,0,'{\"login\":[1624324390]}'),(477,'107.180.102.72','normal','',0,0,0,7,0,'{\"login\":[1623868964,1624855217,1625884403,1626630378,1626658096,1626997977,1627226059]}'),(478,'196.26.91.156','normal','',0,0,0,0,0,'[]'),(479,'66.249.93.77','normal','',0,0,0,0,0,'[]'),(480,'165.22.213.0','normal','',0,0,0,10,0,'{\"login\":[1623714207,1625401948,1626404623,1626482027,1627507991,1627879807,1627946726,1629912063,1630207289,1630607087]}'),(481,'66.249.66.204','normal','',0,0,0,0,0,'[]'),(482,'66.249.66.206','normal','',0,0,0,0,0,'[]'),(483,'35.230.176.58','normal','',0,0,0,1,0,'{\"login\":[1623691937]}'),(484,'199.188.204.131','normal','',0,0,0,2,0,'{\"login\":[1626086004,1626359361]}'),(485,'172.105.231.139','normal','',0,0,0,0,0,'[]'),(486,'159.69.34.209','normal','',0,0,0,16,0,'{\"login\":[1623705948,1623710820,1623815305,1626397458,1626977432,1627512255,1627944634,1628723761,1629111811,1629319621,1629737921,1630198964,1630278815,1630598557,1630604973,1631455106]}'),(487,'47.52.239.42','normal','',0,0,0,9,0,'{\"login\":[1623690408,1623730291,1624112191,1624542661,1625763913,1626057390,1627167243,1628015372,1629280880]}'),(488,'173.236.194.41','normal','',0,0,0,3,0,'{\"login\":[1623691516,1623854598,1625631846]}'),(489,'64.225.59.251','normal','',0,0,0,1,0,'{\"login\":[1623692776]}'),(490,'81.88.52.172','normal','',0,0,0,22,0,'{\"login\":[1623693223,1623882185,1625939449,1625993961,1626538706,1627073030,1627195733,1627945328,1628121683,1629003065,1629014333,1629173788,1629305822,1629311159,1630196617,1630305035,1630381347,1630940800,1631386638,1632465915,1632663192,1634041542]}'),(491,'104.131.173.238','normal','',0,0,0,1,0,'{\"login\":[1623693456]}'),(492,'75.119.215.210','normal','',0,0,0,1,0,'{\"login\":[1623694068]}'),(493,'51.210.97.29','normal','',0,0,0,1,0,'{\"login\":[1623694754]}'),(494,'164.68.99.251','normal','',0,0,0,6,0,'{\"login\":[1623695390,1624049507,1627874437,1629283511,1631963084,1632182539]}'),(495,'64.225.16.11','normal','',0,0,0,1,0,'{\"login\":[1623696138]}'),(496,'93.115.79.6','normal','',0,0,0,10,0,'{\"login\":[1623696652,1625613148,1626104045,1626574352,1626703684,1626946316,1627285041,1628124824,1628807167,1629128630]}'),(497,'80.251.219.111','normal','',0,0,0,7,0,'{\"login\":[1623696806,1623760048,1624130903,1627153625,1627867671,1632585970,1634932826]}'),(498,'206.81.16.252','normal','',0,0,0,9,0,'{\"login\":[1623697512,1623760816,1624263939,1625999166,1627457614,1627565051,1631609802,1634945213,1635837436]}'),(499,'124.158.183.182','normal','',0,0,0,6,0,'{\"login\":[1623698231,1624887492,1625603400,1626411270,1626497629,1627005837]}'),(500,'192.241.195.30','normal','',0,0,0,1,0,'{\"login\":[1623698998]}'),(501,'14.99.153.9','normal','',0,0,0,7,0,'{\"login\":[1623699716,1623705206,1623706003,1624089937,1624277340,1624821917,1625799816]}'),(502,'67.205.12.218','normal','',0,0,0,20,0,'{\"login\":[1623699971,1626024968,1626419770,1626451782,1626549295,1627916993,1629160418,1629759161,1630115583,1630313972,1631240174,1632212713,1632477192,1633179310,1634540059,1635988295,1637303763,1637907409,1638249423,1638421054]}'),(503,'61.111.129.36','normal','',0,0,0,5,0,'{\"login\":[1623700517,1623741753,1624044719,1624546688,1629250397]}'),(504,'34.222.54.203','normal','',0,0,0,0,0,'[]'),(505,'122.114.76.148','normal','',0,0,0,5,0,'{\"login\":[1623701317,1624401108,1631961553,1632572357,1634929163]}'),(506,'34.70.92.180','normal','',0,0,0,3,0,'{\"login\":[1623701990,1624424322,1625725334]}'),(507,'54.191.131.212','normal','',0,0,0,0,0,'[]'),(508,'54.187.251.47','normal','',0,0,0,0,0,'[]'),(509,'178.128.112.15','normal','',0,0,0,3,0,'{\"login\":[1623702873,1623751990,1624889153]}'),(510,'92.118.160.57','normal','',0,0,0,0,0,'[]'),(511,'178.62.77.224','normal','',0,0,0,2,0,'{\"login\":[1623704358,1631722416]}'),(512,'154.16.42.251','normal','',0,0,0,0,0,'[]'),(513,'193.160.73.106','normal','',0,0,0,0,0,'[]'),(514,'193.160.69.55','normal','',0,0,0,0,0,'[]'),(515,'191.101.92.32','normal','',0,0,0,0,0,'[]'),(516,'61.238.136.57','normal','',0,0,0,1,0,'{\"login\":[1623704699]}'),(517,'74.208.86.201','normal','',0,0,0,2,0,'{\"login\":[1623706801,1655135693]}'),(518,'3.133.105.54','normal','',0,0,0,1,0,'{\"login\":[1623707275]}'),(519,'182.23.51.2','normal','',0,0,0,3,0,'{\"login\":[1623707691,1624081422,1624413548]}'),(520,'36.92.91.94','normal','',0,0,0,5,0,'{\"login\":[1623708565,1625656498,1626093600,1626580660,1627913940]}'),(521,'66.23.252.226','normal','',0,0,0,2,0,'{\"login\":[1623709440,1623720763]}'),(522,'185.2.4.33','normal','',0,0,0,37,0,'{\"login\":[1623709603,1623720940,1624331585,1625627958,1626386452,1626544055,1627121536,1627600395,1628125615,1628884497,1628936851,1629141451,1629195233,1629656942,1630173043,1630192693,1630656836,1632232601,1658273902,1658369813,1658493536,1658503938,1658725902,1658840146,1659415873,1660109959,1660709790,1660772984,1661638974,1661674158,1662360580,1662705521,1662715485,1662719171,1662780339,1662890809,1663038891]}'),(523,'54.36.149.95','normal','',0,0,0,0,0,'[]'),(524,'198.12.226.30','normal','',0,0,0,4,0,'{\"login\":[1623710268,1625622693,1628010583,1629282387]}'),(525,'41.226.28.88','normal','',0,0,0,3,0,'{\"login\":[1623711326,1624455793,1626337326]}'),(526,'47.241.15.39','normal','',0,0,0,47,0,'{\"login\":[1623711962,1623740825,1626115073,1626428422,1627979547,1629671979,1629688276,1629766451,1630787311,1630955744,1631321233,1632295796,1634512110,1634956861,1637002405,1637216208,1637327771,1637647132,1637901945,1639545760,1639675408,1639988864,1640637309,1640881979,1641107093,1641315856,1641317321,1641966550,1642681697,1644372859,1644508792,1645741425,1646241270,1647115637,1647325545,1647441123,1647450137,1647866520,1648106916,1648257122,1650637157,1651587242,1652361131,1652679741,1653525853,1654408810,1655356819]}'),(527,'128.199.82.37','normal','',0,0,0,1,0,'{\"login\":[1623712140]}'),(528,'51.89.155.5','normal','',0,0,0,3,0,'{\"login\":[1623713112,1625771518,1635556278]}'),(529,'72.167.37.139','normal','',0,0,0,6,0,'{\"login\":[1623713919,1623842782,1625757134,1627028308,1627549854,1627878987]}'),(530,'132.148.130.78','normal','',0,0,0,1,0,'{\"login\":[1623715862]}'),(531,'66.249.66.129','normal','',0,0,0,0,0,'[]'),(532,'162.241.134.243','normal','',0,0,0,1,0,'{\"login\":[1623716813]}'),(533,'159.253.18.157','normal','',0,0,0,1,0,'{\"login\":[1623717568]}'),(534,'35.195.135.67','normal','',0,0,0,9,0,'{\"login\":[1623717917,1625726823,1626499847,1631617262,1634946795,1640673119,1642197330,1661073022,1662026726]}'),(535,'34.91.108.67','normal','',0,0,0,2,0,'{\"login\":[1623718873,1623723004]}'),(536,'79.133.175.236','normal','',0,0,0,4,0,'{\"login\":[1623719769,1627831491,1627864787,1627904318]}'),(537,'107.180.105.195','normal','',0,0,0,9,0,'{\"login\":[1623721728,1624128627,1624129742,1625643476,1627873050,1628074143,1628952198,1631688363,1632926863]}'),(538,'23.239.16.40','normal','',0,0,0,1,0,'{\"login\":[1623721936]}'),(539,'52.2.202.220','normal','',0,0,0,1,0,'{\"login\":[1623722954]}'),(540,'185.215.245.10','normal','',0,0,0,1,0,'{\"login\":[1623723921]}'),(541,'64.227.0.234','normal','',0,0,0,9,0,'{\"login\":[1623724849,1625234361,1626369700,1627146965,1631611768,1633559420,1634926466,1640687387,1653824360]}'),(542,'173.236.169.240','normal','',0,0,0,24,0,'{\"login\":[1623724846,1624917483,1627567704,1628995751,1629230409,1654545764,1654552631,1654730251,1655020123,1655445835,1655744999,1656147992,1658419246,1658514158,1658988772,1659376091,1660281422,1660303558,1660326266,1661230211,1661251623,1661253187,1663051594,1663146632]}'),(543,'34.94.209.49','normal','',0,0,0,1,0,'{\"login\":[1623725847]}'),(544,'69.64.52.38','normal','',0,0,0,3,0,'{\"login\":[1623725915,1625767809,1626089674]}'),(545,'14.200.1.238','normal','',0,0,0,4,0,'{\"login\":[1623727010,1626609122,1627798494,1628959618]}'),(546,'64.111.104.243','normal','',0,0,0,2,0,'{\"login\":[1623728082,1623728951]}'),(547,'213.136.93.164','normal','',0,0,0,2,0,'{\"login\":[1623730056,1624437616]}'),(548,'64.227.58.145','normal','',0,0,0,6,0,'{\"login\":[1623731468,1626342071,1631608779,1632295851,1632911805,1634016491]}'),(549,'35.238.155.231','normal','',0,0,0,20,0,'{\"login\":[1623732242,1625328415,1625335922,1625587037,1625846364,1626621405,1627485835,1627643958,1627936381,1628813190,1629084359,1629206644,1629499539,1629659675,1629785479,1629945449,1630179101,1630825636,1631286103,1632728935]}'),(550,'142.93.165.25','normal','',0,0,0,5,0,'{\"login\":[1623732499,1625725397,1626667962,1626982934,1628548982]}'),(551,'103.132.124.120','normal','',0,0,0,1,0,'{\"login\":[1623733211]}'),(552,'54.38.227.243','normal','',0,0,0,2,0,'{\"login\":[1623733304,1623812813]}'),(553,'185.132.82.145','normal','',0,0,0,2,0,'{\"login\":[1623733881,1623750582]}'),(554,'188.169.239.225','normal','',0,0,0,0,0,'[]'),(555,'191.234.176.158','normal','',0,0,0,3,0,'{\"login\":[1623734328,1625765120,1628067783]}'),(556,'159.203.36.236','normal','',0,0,0,1,0,'{\"login\":[1623734821]}'),(557,'54.39.105.88','normal','',0,0,0,16,0,'{\"login\":[1623734921,1625618415,1625864496,1626415559,1626425576,1626720843,1626730457,1627260027,1627269295,1627501976,1627792233,1628118628,1629205885,1629290622,1630570256,1631474589]}'),(558,'167.99.228.178','normal','',0,0,0,1,0,'{\"login\":[1623735342]}'),(559,'51.132.4.32','normal','',0,0,0,5,0,'{\"login\":[1623735771,1624514638,1624663732,1624806578,1625031801]}'),(560,'107.180.93.58','normal','',0,0,0,2,0,'{\"login\":[1623736288,1624085606]}'),(561,'93.114.234.242','normal','',0,0,0,16,0,'{\"login\":[1623736772,1624120610,1624429321,1624875018,1626098890,1626369689,1627553001,1627870621,1627882313,1632898021,1632910402,1638423435,1638428324,1650126408,1653991564,1655132102]}'),(562,'132.148.150.222','normal','',0,0,0,2,0,'{\"login\":[1623737304,1624042972]}'),(563,'182.176.222.232','normal','',0,0,0,3,0,'{\"login\":[1623737844,1625734560,1627172507]}'),(564,'81.88.52.148','normal','',0,0,0,11,0,'{\"login\":[1623737986,1626535924,1626552780,1627006630,1628120914,1628730315,1630614854,1631320107,1633739749,1634895796,1635692214]}'),(565,'69.163.251.1','normal','',0,0,0,6,0,'{\"login\":[1623738340,1625786357,1627097135,1627460642,1632586825,1633540348]}'),(566,'134.209.67.45','normal','',0,0,0,2,0,'{\"login\":[1623738883,1628051962]}'),(567,'51.178.17.214','normal','',0,0,0,1,0,'{\"login\":[1623739452]}'),(568,'34.77.162.29','normal','',0,0,0,0,0,'[]'),(569,'132.148.245.254','normal','',0,0,0,2,0,'{\"login\":[1623740031,1624261735]}'),(570,'94.101.95.181','normal','',0,0,0,1,0,'{\"login\":[1623740581]}'),(571,'132.148.68.80','normal','',0,0,0,3,0,'{\"login\":[1623742427,1625839362,1628016602]}'),(572,'35.184.139.190','normal','',0,0,0,4,0,'{\"login\":[1623742925,1624072804,1625635937,1628038895]}'),(573,'52.66.54.230','normal','',0,0,0,2,0,'{\"login\":[1623743340,1625611851]}'),(574,'167.114.159.99','normal','',0,0,0,0,0,'[]'),(575,'61.244.70.248','normal','',0,0,0,4,0,'{\"login\":[1623743530,1623753367,1624080831,1625615221]}'),(576,'109.234.161.29','normal','',0,0,0,1,0,'{\"login\":[1623744099]}'),(577,'162.144.64.42','normal','',0,0,0,2,0,'{\"login\":[1623744801,1626601842]}'),(578,'111.7.100.23','normal','',0,0,0,0,0,'[]'),(579,'111.7.100.22','normal','',0,0,0,0,0,'[]'),(580,'157.245.73.56','normal','',0,0,0,1,0,'{\"login\":[1623745382]}'),(581,'210.13.75.122','normal','',0,0,0,30,0,'{\"login\":[1623745955,1624304927,1625231039,1626569311,1626970970,1627268440,1627430471,1627942557,1628018589,1628583290,1629200563,1629311918,1629338472,1629694834,1629976961,1630634692,1631452726,1631694491,1631783728,1633830404,1634437278,1635408258,1635808722,1636915288,1637895143,1637937207,1637984445,1638409161,1638494163,1639003058]}'),(582,'185.68.110.200','normal','',0,0,0,6,0,'{\"login\":[1623746042,1624464974,1624517739,1624601819,1625280311,1625401104]}'),(583,'104.236.45.171','normal','',0,0,0,8,0,'{\"login\":[1623746650,1626334640,1632286837,1640396655,1653821219,1654009193,1662014476,1662100849]}'),(584,'195.242.103.115','normal','',0,0,0,1,0,'{\"login\":[1623747168]}'),(585,'212.33.198.171','normal','',0,0,0,5,0,'{\"login\":[1623747276,1627931407,1627951511,1628049044,1629165664]}'),(586,'162.241.174.216','normal','',0,0,0,3,0,'{\"login\":[1623747883,1625645237,1627810644]}'),(587,'104.236.120.31','normal','',0,0,0,5,0,'{\"login\":[1623748574,1624840435,1625625571,1633845677,1640561875]}'),(588,'54.38.80.27','normal','',0,0,0,2,0,'{\"login\":[1623749189,1624265110]}'),(589,'206.189.140.3','normal','',0,0,0,12,0,'{\"login\":[1623749887,1624307494,1627518453,1629708607,1629915869,1630330434,1631959129,1632040753,1632122291,1633727116,1634318600,1634548215]}'),(590,'167.172.96.234','normal','',0,0,0,4,0,'{\"login\":[1623750579,1626407479,1626429852,1626698936]}'),(591,'197.245.149.181','normal','',0,0,0,0,0,'[]'),(592,'188.166.214.213','normal','',0,0,0,4,0,'{\"login\":[1623751319,1625845030,1626088629,1626501022]}'),(593,'35.240.234.239','normal','',0,0,0,3,0,'{\"login\":[1623752615,1625604354,1625729729]}'),(594,'51.178.64.83','normal','',0,0,0,2,0,'{\"login\":[1623753826,1625667542]}'),(595,'18.205.119.27','normal','',0,0,0,1,0,'{\"login\":[1623754038]}'),(596,'54.37.17.21','normal','',0,0,0,3,0,'{\"login\":[1623754743,1624064454,1625295867]}'),(597,'81.88.52.163','normal','',0,0,0,70,0,'{\"login\":[1623754749,1625389991,1627207396,1627817882,1627932083,1628128743,1628561780,1628955715,1629358245,1629551997,1629741073,1629936699,1633206549,1633301387,1633698437,1633703772,1634356626,1634853150,1636708990,1636795140,1637116540,1639039942,1639508521,1639671343,1639928078,1640031421,1640438761,1640555430,1641149667,1641337104,1641349846,1641382513,1641394534,1641799612,1642018570,1642338044,1643014174,1644107811,1646269659,1646421120,1646532260,1646961649,1646971576,1647874986,1648665470,1648689298,1649219936,1650143350,1650563383,1650697630,1650713107,1650724458,1650835285,1650941181,1651567924,1652003222,1652350650,1653391325,1653590323,1653617222,1653776140,1654077694,1654087211,1654193306,1654393086,1654932012,1655907837,1656277649,1656528337,1656559625]}'),(598,'74.208.103.228','normal','',0,0,0,10,0,'{\"login\":[1623755519,1623823829,1629249389,1632916119,1634945160,1635841990,1638440723,1640595874,1653820158,1661076975]}'),(599,'81.88.52.155','normal','',0,0,0,1,0,'{\"login\":[1623755685]}'),(600,'136.243.187.29','normal','',0,0,0,2,0,'{\"login\":[1623756606,1623801709]}'),(601,'188.120.253.6','normal','',0,0,0,2,0,'{\"login\":[1623757529,1624896282]}'),(602,'34.64.218.102','normal','',0,0,0,12,0,'{\"login\":[1623757754,1625818660,1627060458,1627555981,1628084555,1629233643,1629237361,1632020451,1632298710,1632578196,1632592344,1653989064]}'),(603,'177.55.111.13','normal','',0,0,0,22,0,'{\"login\":[1623758437,1625594969,1625657621,1625660469,1626362877,1626398811,1626612433,1627239502,1627525893,1627615619,1628550943,1628850740,1628894275,1629024736,1629484915,1629930447,1629935124,1630373287,1630828026,1631350379,1631926052,1632661058]}'),(604,'180.250.28.34','normal','',0,0,0,8,0,'{\"login\":[1623758510,1624110443,1624397371,1625290924,1625654550,1625748212,1626484947,1627859385]}'),(605,'35.244.92.208','normal','',0,0,0,6,0,'{\"login\":[1623760654,1624077581,1625364568,1625872583,1626134551,1626184583]}'),(606,'197.94.220.212','normal','',0,0,0,0,0,'[]'),(607,'34.86.35.16','normal','',0,0,0,0,0,'[]'),(608,'197.229.2.149','normal','',0,0,0,0,0,'[]'),(609,'197.229.2.195','normal','',0,0,0,0,0,'[]'),(610,'45.76.177.157','normal','',0,0,0,1,0,'{\"login\":[1623762762]}'),(611,'162.241.69.46','normal','',0,0,0,29,0,'{\"login\":[1623763707,1623839638,1624091965,1624458822,1626661064,1627874927,1627937055,1628833013,1629147911,1629234854,1630131025,1630212332,1631265824,1631382376,1631464700,1631715520,1631775082,1631972655,1631988688,1632179523,1632213156,1632292633,1632296336,1632337528,1632376063,1632573984,1632633875,1632666708,1634053120]}'),(612,'66.42.50.112','normal','',0,0,0,1,0,'{\"login\":[1623764694]}'),(613,'34.77.162.14','normal','',0,0,0,0,0,'[]'),(614,'185.2.4.44','normal','',0,0,0,84,0,'{\"login\":[1623766687,1624329803,1624352194,1625325506,1625726358,1625820525,1626177262,1627002912,1627551699,1627563955,1628704781,1628915399,1628957003,1629016635,1630195831,1630784906,1632030605,1632192394,1632483038,1632664748,1633067047,1633888298,1633922194,1634929604,1636748079,1636760327,1636873058,1637061760,1637245388,1637270982,1637788744,1638330131,1638595048,1638620524,1639166144,1639689796,1639786319,1640643121,1640648943,1640790131,1641080360,1641468402,1641982912,1642234883,1642266262,1642317952,1643324078,1643726566,1643759029,1644629851,1645346680,1645993293,1646262231,1646311695,1646541077,1646724222,1646812825,1646835917,1647191963,1647236361,1647392955,1647893591,1649850348,1650053488,1650368544,1650527768,1650567418,1651066420,1651071584,1651187634,1651349958,1651414351,1651506367,1652425430,1652504270,1653072425,1653237781,1653897545,1653920293,1654118248,1654370166,1654408228,1655016549,1655439960]}'),(615,'173.236.152.148','normal','',0,0,0,7,0,'{\"login\":[1623767773,1625763503,1626076714,1626169121,1627259232,1627885121,1629158968]}'),(616,'84.22.150.186','normal','',0,0,0,0,0,'[]'),(617,'179.61.188.57','normal','',0,0,0,0,0,'[]'),(618,'178.171.52.217','normal','',0,0,0,0,0,'[]'),(619,'5.253.61.250','normal','',0,0,0,4,0,'{\"login\":[1623768767,1626991468,1627556947,1627946031]}'),(620,'81.88.52.164','normal','',0,0,0,2,0,'{\"login\":[1623769807,1623847102]}'),(621,'212.227.210.161','normal','',0,0,0,3,0,'{\"login\":[1623770862,1624644988,1624874250]}'),(622,'207.46.13.161','normal','',0,0,0,0,0,'[]'),(623,'150.95.12.103','normal','',0,0,0,7,0,'{\"login\":[1623772963,1623922538,1625856454,1626522032,1626704369,1626957196,1627265251]}'),(624,'102.182.123.7','normal','',0,0,0,0,0,'[]'),(625,'213.171.208.190','normal','',0,0,0,14,0,'{\"login\":[1623777550,1625358143,1625373560,1625377120,1626037789,1626082245,1626489328,1626700288,1626741837,1627246458,1628709476,1628976454,1629181832,1630182886]}'),(626,'89.96.90.125','normal','',0,0,0,54,0,'{\"login\":[1623779908,1624281148,1624559157,1624936985,1625972619,1626961900,1627090090,1627092739,1627263671,1628773699,1629119683,1629363544,1629514093,1629756289,1630229852,1630758554,1631291000,1631648933,1631651177,1632174412,1633083884,1637185100,1637941494,1638526594,1638622700,1638746778,1639281055,1639723821,1639899869,1640596570,1641267921,1641404569,1641475038,1641476515,1642106693,1642320335,1642613661,1643042553,1643558690,1644205285,1644268370,1644798823,1645244047,1646431316,1646477273,1647296617,1649614603,1650172460,1650259489,1650643610,1650690828,1650719696,1651322315,1651351761]}'),(627,'172.104.51.37','normal','',0,0,0,1,0,'{\"login\":[1623780976]}'),(628,'92.204.134.226','normal','',0,0,0,9,0,'{\"login\":[1623781936,1623842372,1625858763,1626085519,1627653045,1627948815,1627987436,1628150614,1631720693]}'),(629,'91.194.91.202','normal','',0,0,0,5,0,'{\"login\":[1623784642,1624430697,1625806004,1627866799,1627881421]}'),(630,'52.12.222.123','normal','',0,0,0,0,0,'[]'),(631,'18.237.254.16','normal','',0,0,0,0,0,'[]'),(632,'35.163.143.123','normal','',0,0,0,0,0,'[]'),(633,'34.211.94.39','normal','',0,0,0,0,0,'[]'),(634,'54.245.159.38','normal','',0,0,0,0,0,'[]'),(635,'34.221.127.45','normal','',0,0,0,0,0,'[]'),(636,'144.76.96.236','normal','',0,0,0,0,0,'[]'),(637,'34.222.217.1','normal','',0,0,0,0,0,'[]'),(638,'34.222.217.1','normal','',0,0,0,0,0,'[]'),(639,'35.161.125.162','normal','',0,0,0,0,0,'[]'),(640,'34.217.9.238','normal','',0,0,0,0,0,'[]'),(641,'34.217.9.238','normal','',0,0,0,0,0,'[]'),(642,'74.208.168.58','normal','',0,0,0,3,0,'{\"login\":[1623794385,1625591767,1625646917]}'),(643,'35.185.20.113','normal','',0,0,0,5,0,'{\"login\":[1623797149,1626141070,1626181802,1626429649,1626530835]}'),(644,'35.239.109.103','normal','',0,0,0,4,0,'{\"login\":[1623798434,1627465889,1627881178,1628065745]}'),(645,'94.23.219.39','normal','',0,0,0,2,0,'{\"login\":[1623801189,1624266325]}'),(646,'103.77.207.150','normal','',0,0,0,1,0,'{\"login\":[1623804370]}'),(647,'139.99.45.136','normal','',0,0,0,5,0,'{\"login\":[1623807714,1625213377,1626100295,1626347044,1627415767]}'),(648,'116.203.146.163','normal','',0,0,0,1,0,'{\"login\":[1623808902]}'),(649,'134.209.147.203','normal','',0,0,0,1,0,'{\"login\":[1623810562]}'),(650,'148.66.145.140','normal','',0,0,0,3,0,'{\"login\":[1623811513,1625692610,1626015075]}'),(651,'148.72.207.220','normal','',0,0,0,2,0,'{\"login\":[1623811741,1626067969]}'),(652,'52.137.55.22','normal','',0,0,0,6,0,'{\"login\":[1623812678,1624113097,1624427381,1624439198,1627051263,1628047824]}'),(653,'165.232.130.240','normal','',0,0,0,0,0,'[]'),(654,'35.242.214.242','normal','',0,0,0,4,0,'{\"login\":[1623814610,1624124432,1625291478,1628078790]}'),(655,'104.198.172.68','normal','',0,0,0,10,0,'{\"login\":[1623815633,1625612876,1628067092,1628961392,1632287306,1632570633,1633568757,1635852208,1640697991,1650299076]}'),(656,'202.172.26.22','normal','',0,0,0,10,0,'{\"login\":[1623816636,1624903734,1625226649,1625254075,1625268973,1626387817,1626438598,1626464986,1626483651,1627253639]}'),(657,'64.225.102.122','normal','',0,0,0,1,0,'{\"login\":[1623816698]}'),(658,'106.14.41.203','normal','',0,0,0,4,0,'{\"login\":[1623817827,1626067009,1627905956,1632300141]}'),(659,'137.74.162.178','normal','',0,0,0,1,0,'{\"login\":[1623818926]}'),(660,'51.91.80.176','normal','',0,0,0,1,0,'{\"login\":[1623819259]}'),(661,'144.76.71.176','normal','',0,0,0,0,2,'{\"nf\":[1623819670,1623819692]}'),(662,'209.126.13.151','normal','',0,0,0,1,0,'{\"login\":[1623820142]}'),(663,'194.233.68.97','normal','',0,0,0,1,0,'{\"login\":[1623820641]}'),(664,'198.27.69.82','normal','',0,0,0,1,0,'{\"login\":[1623821319]}'),(665,'159.65.162.121','normal','',0,0,0,2,0,'{\"login\":[1623821928,1625350988]}'),(666,'118.69.173.199','normal','',0,0,0,7,0,'{\"login\":[1623823275,1626614426,1629938290,1630734569,1630814620,1631732355,1631760426]}'),(667,'159.65.149.223','normal','',0,0,0,4,0,'{\"login\":[1623826179,1624932768,1625852859,1627178163]}'),(668,'45.119.213.225','normal','',0,0,0,10,0,'{\"login\":[1623826468,1625293722,1625834311,1627470101,1628017818,1628080324,1631692729,1633546204,1661690636,1662987602]}'),(669,'174.138.63.123','normal','',0,0,0,2,0,'{\"login\":[1623827359,1624095581]}'),(670,'92.204.136.183','normal','',0,0,0,2,0,'{\"login\":[1623827821,1626083589]}'),(671,'185.178.45.37','normal','',0,0,0,10,0,'{\"login\":[1623828477,1626123485,1626722944,1627043115,1627154581,1627286093,1627953751,1628985470,1629131449,1629328047]}'),(672,'13.236.114.230','normal','',0,0,0,0,0,'[]'),(673,'198.199.84.221','normal','',0,0,0,6,0,'{\"login\":[1623829307,1627136022,1627915689,1629724055,1630239650,1630692915]}'),(674,'96.125.171.153','normal','',0,0,0,24,0,'{\"login\":[1623829637,1623884347,1624422104,1624846427,1625313192,1626180897,1626419967,1626713909,1629524549,1629763537,1630139613,1631399422,1632168853,1632199982,1633071136,1633645100,1634932770,1634996577,1636915987,1637256784,1637352065,1637803394,1637992930,1638247421]}'),(675,'75.119.198.100','normal','',0,0,0,5,0,'{\"login\":[1623830636,1624058787,1624105398,1626367993,1627481869]}'),(676,'103.226.250.28','normal','',0,0,0,5,0,'{\"login\":[1623832070,1623866367,1623877117,1627878500,1629228700]}'),(677,'176.119.210.163','normal','',0,0,0,7,0,'{\"login\":[1623833236,1625619750,1626135484,1627074327,1627251303,1629023534,1629965805]}'),(678,'104.248.131.234','normal','',0,0,0,3,0,'{\"login\":[1623833532,1626559244,1627079181]}'),(679,'80.169.210.148','normal','',0,0,0,15,0,'{\"login\":[1623834691,1626454662,1626538330,1626681450,1627165938,1627278075,1628966146,1630767013,1631337258,1631736703,1632280774,1633634377,1633855451,1634259074,1634388822]}'),(680,'54.39.133.24','normal','',0,0,0,2,0,'{\"login\":[1623835011,1623858314]}'),(681,'142.93.175.203','normal','',0,0,0,3,0,'{\"login\":[1623836155,1625399209,1627629989]}'),(682,'52.152.170.230','normal','',0,0,0,6,0,'{\"login\":[1623836543,1624106190,1625297634,1626545980,1626995662,1629295283]}'),(683,'72.167.42.12','normal','',0,0,0,18,0,'{\"login\":[1623837569,1625702709,1625818908,1626035925,1626068457,1626408897,1626436927,1626597868,1627819723,1627973334,1630360582,1630818539,1630835237,1631259738,1631284919,1631665362,1631932884,1631938493]}'),(684,'92.53.96.150','normal','',0,0,0,2,0,'{\"login\":[1623841195,1625299440]}'),(685,'45.40.135.39','normal','',0,0,0,1,5,'{\"login\":[1623844370],\"nf\":[1632381982,1641321542,1642408808,1643150980,1643179809]}'),(686,'165.22.65.143','normal','',0,0,0,2,0,'{\"login\":[1623845307,1625659620]}'),(687,'178.128.193.134','normal','',0,0,0,2,0,'{\"login\":[1623846077,1624130336]}'),(688,'54.36.148.9','normal','',0,0,0,0,0,'[]'),(689,'185.183.122.143','normal','',0,0,0,3,0,'{\"login\":[1623847689,1627908620,1638445753]}'),(690,'35.233.23.228','normal','',0,0,0,4,0,'{\"login\":[1623849366,1624461550,1624531454,1625158779]}'),(691,'138.68.80.211','normal','',0,0,0,8,0,'{\"login\":[1623850743,1624312656,1624524699,1625356309,1625822155,1625899173,1626127166,1626720155]}'),(692,'159.89.2.220','normal','',0,0,0,8,0,'{\"login\":[1623859615,1625218229,1625632554,1627901067,1631986969,1632187447,1632288599,1653997008]}'),(693,'143.110.137.82','normal','',0,0,0,1,0,'{\"login\":[1623860723]}'),(694,'161.35.154.24','normal','',0,0,0,2,0,'{\"login\":[1623861625,1624419762]}'),(695,'8.210.75.2','normal','',0,0,0,0,0,'[]'),(696,'178.171.52.70','normal','',0,0,0,0,0,'[]'),(697,'37.251.142.58','normal','',0,0,0,3,0,'{\"login\":[1623871672,1625758110,1633644435]}'),(698,'37.187.29.31','normal','',0,0,0,1,0,'{\"login\":[1623874397]}'),(699,'34.219.247.54','normal','',0,0,0,0,0,'[]'),(700,'34.212.228.171','normal','',0,0,0,0,0,'[]'),(701,'34.221.126.24','normal','',0,0,0,0,0,'[]'),(702,'54.70.237.49','normal','',0,0,0,0,0,'[]'),(703,'34.241.77.236','normal','',0,0,0,0,0,'[]'),(704,'104.131.85.183','normal','',0,0,0,5,0,'{\"login\":[1623890843,1626695581,1626756337,1627132722,1627232093]}'),(705,'86.207.143.43','normal','',0,0,0,1,0,'{\"login\":[1623896519]}'),(706,'178.128.50.15','normal','',0,0,0,4,0,'{\"login\":[1623898276,1630229112,1630663873,1631262092]}'),(707,'193.19.240.121','normal','',0,0,0,35,0,'{\"login\":[1623901601,1625844554,1626048046,1627270889,1627572044,1628958284,1629362009,1629368421,1629479977,1630306511,1630331977,1631634370,1631684168,1631790911,1632659525,1633284574,1633537624,1633596937,1634313481,1634965920,1636823620,1637377626,1638273857,1638388595,1639543948,1639594795,1639730062,1639841605,1640046228,1640459377,1640798472,1640834963,1640929327,1641428492,1642343695]}'),(708,'45.40.132.156','normal','',0,0,0,24,0,'{\"login\":[1623903331,1625803154,1625845430,1626086363,1626348973,1626356178,1626410075,1626521640,1626559729,1626988613,1627807009,1628831697,1629536095,1630297693,1630659093,1630908455,1631283758,1632306916,1632343310,1632648475,1633642420,1633790413,1633897532,1634317922]}'),(709,'50.28.65.222','normal','',0,0,0,1,0,'{\"login\":[1623905369]}'),(710,'167.99.114.53','normal','',0,0,0,20,0,'{\"login\":[1623909088,1626168245,1627932855,1629189947,1631271666,1631296457,1632071096,1633881769,1637271428,1638488780,1638513384,1640848321,1641151077,1641189356,1641192912,1645069046,1645967812,1645969604,1646288105,1646461189]}'),(711,'207.46.13.20','normal','',0,0,0,0,0,'[]'),(712,'64.227.82.188','normal','',0,0,0,4,0,'{\"login\":[1623911230,1625817322,1625847282,1625877099]}'),(713,'156.155.229.107','normal','',0,0,0,0,1,'{\"nf\":[1623913922]}'),(714,'143.198.54.42','normal','',0,0,0,9,0,'{\"login\":[1623916549,1626401613,1630095380,1632330597,1632554312,1638292469,1638618904,1638857602,1638926072]}'),(715,'178.62.112.123','normal','',0,0,0,7,0,'{\"login\":[1623918579,1624266723,1626108661,1626532165,1627651570,1628899205,1628912889]}'),(716,'66.249.64.182','normal','',0,0,0,0,0,'[]'),(717,'66.249.64.186','normal','',0,0,0,0,0,'[]'),(718,'163.44.242.9','normal','',0,0,0,1,0,'{\"login\":[1623925153]}'),(719,'167.172.97.238','normal','',0,0,0,0,0,'[]'),(720,'191.96.84.109','normal','',0,0,0,0,0,'[]'),(721,'47.243.66.30','normal','',0,0,0,0,0,'[]'),(722,'54.149.114.34','normal','',0,0,0,0,0,'[]'),(723,'54.191.241.48','normal','',0,0,0,0,0,'[]'),(724,'66.249.64.82','normal','',0,0,0,0,0,'[]'),(725,'54.36.149.92','normal','',0,0,0,0,0,'[]'),(726,'54.189.243.108','normal','',0,0,0,0,0,'[]'),(727,'34.220.59.218','normal','',0,0,0,0,0,'[]'),(728,'155.93.255.242','normal','',0,0,0,0,1,'{\"nf\":[1624000066]}'),(729,'34.230.156.67','normal','',0,0,0,0,0,'[]'),(730,'149.56.19.4','normal','',0,0,0,0,0,'[]'),(731,'35.203.249.85','normal','',0,0,0,0,0,'[]'),(732,'34.96.130.29','normal','',0,0,0,0,0,'[]'),(733,'144.126.139.252','normal','',0,0,0,0,0,'[]'),(734,'61.12.67.132','normal','',0,0,0,6,0,'{\"login\":[1624034638,1629245350,1632025196,1638422946,1638430553,1660307133]}'),(735,'117.50.90.31','normal','',0,0,0,6,0,'{\"login\":[1624035527,1624050503,1624608856,1624674536,1624707431,1625801081]}'),(736,'47.57.170.81','normal','',0,0,0,3,0,'{\"login\":[1624036927,1627429429,1627795221]}'),(737,'167.71.216.37','normal','',0,0,0,4,0,'{\"login\":[1624038630,1631996506,1634935207,1640550482]}'),(738,'51.75.195.168','normal','',0,0,0,6,0,'{\"login\":[1624040271,1624074575,1624098407,1624102922,1625297042,1627483504]}'),(739,'47.112.171.128','normal','',0,0,0,1,0,'{\"login\":[1624041186]}'),(740,'94.23.30.216','normal','',0,0,0,5,0,'{\"login\":[1624042016,1624056617,1624395501,1624428661,1625618793]}'),(741,'54.39.22.135','normal','',0,0,0,4,0,'{\"login\":[1624043828,1625823490,1626420726,1626573964]}'),(742,'185.114.245.193','normal','',0,0,0,1,0,'{\"login\":[1624046568]}'),(743,'54.185.206.244','normal','',0,0,0,0,0,'[]'),(744,'34.223.6.202','normal','',0,0,0,0,0,'[]'),(745,'54.185.22.80','normal','',0,0,0,0,0,'[]'),(746,'207.136.12.46','normal','',0,0,0,4,0,'{\"login\":[1624048512,1624548154,1625721385,1627217404]}'),(747,'54.184.19.197','normal','',0,0,0,0,0,'[]'),(748,'54.201.94.171','normal','',0,0,0,0,0,'[]'),(749,'139.59.236.46','normal','',0,0,0,3,0,'{\"login\":[1624052531,1624863945,1626080114]}'),(750,'197.242.145.100','normal','',0,0,0,2,0,'{\"login\":[1624054459,1626568876]}'),(751,'5.23.51.104','normal','',0,0,0,1,0,'{\"login\":[1624055536]}'),(752,'34.77.162.15','normal','',0,0,0,0,0,'[]'),(753,'128.199.220.215','normal','',0,0,0,42,0,'{\"login\":[1624059908,1624315327,1625340697,1625344341,1625677297,1626560998,1627148421,1627209641,1627511384,1630589364,1630661359,1632276968,1634332501,1636309993,1636710910,1636809172,1637120438,1637470682,1637669428,1637886848,1638292272,1638700185,1638714487,1638734659,1638772878,1638781035,1639234606,1639295246,1639691862,1639735819,1639872905,1640063783,1640513465,1640707945,1641078500,1641305875,1641439012,1641990745,1642160483,1642262962,1643498361,1644465970]}'),(754,'65.52.232.106','normal','',0,0,0,2,0,'{\"login\":[1624060986,1624452719]}'),(755,'67.205.38.108','normal','',0,0,0,1,0,'{\"login\":[1624062132]}'),(756,'103.211.219.226','normal','',0,0,0,3,0,'{\"login\":[1624065611,1624894320,1625640443]}'),(757,'196.44.176.55','normal','',0,0,0,4,0,'{\"login\":[1624066807,1628008608,1629030805,1632284218]}'),(758,'185.114.245.107','normal','',0,0,0,2,0,'{\"login\":[1624067945,1625249131]}'),(759,'171.244.21.74','normal','',0,0,0,5,0,'{\"login\":[1624069196,1625248225,1626082418,1627553990,1640563107]}'),(760,'36.99.136.138','normal','',0,0,0,0,0,'[]'),(761,'139.59.78.248','normal','',0,0,0,4,0,'{\"login\":[1624071573,1626343695,1632481366,1636630068]}'),(762,'51.81.174.230','normal','',0,0,0,1,0,'{\"login\":[1624073848]}'),(763,'134.209.157.198','normal','',0,0,0,14,0,'{\"login\":[1624075129,1624082006,1624862291,1625353592,1625851028,1626126256,1626163680,1626347067,1626624360,1626663031,1627244599,1627497687,1627657462,1628032153]}'),(764,'54.36.149.53','normal','',0,0,0,0,0,'[]'),(765,'52.186.169.219','normal','',0,0,0,1,0,'{\"login\":[1624075651]}'),(766,'159.203.21.106','normal','',0,0,0,1,0,'{\"login\":[1624076087]}'),(767,'91.134.248.230','normal','',0,0,0,6,0,'{\"login\":[1624077107,1624863328,1657741018,1657870918,1659407011,1661767870]}'),(768,'184.168.126.206','normal','',0,0,0,11,0,'{\"login\":[1624078108,1625822670,1626094995,1627110547,1627446652,1627464509,1629032922,1631689314,1631964763,1632472202,1633548446]}'),(769,'64.202.184.77','normal','',0,0,0,2,0,'{\"login\":[1624078595,1626089701]}'),(770,'176.58.104.12','normal','',0,0,0,1,0,'{\"login\":[1624079162]}'),(771,'8.210.116.184','normal','',0,0,0,1,0,'{\"login\":[1624079840]}'),(772,'178.251.28.25','normal','',0,0,0,2,0,'{\"login\":[1624080256,1625595528]}'),(773,'34.86.35.18','normal','',0,0,0,0,0,'[]'),(774,'92.118.160.61','normal','',0,0,0,0,0,'[]'),(775,'93.114.235.168','normal','',0,0,0,1,0,'{\"login\":[1624082525]}'),(776,'206.189.85.88','normal','',0,0,0,5,0,'{\"login\":[1624084423,1625996237,1627883483,1634011292,1650341515]}'),(777,'66.249.64.184','normal','',0,0,0,0,0,'[]'),(778,'157.245.231.45','normal','',0,0,0,5,0,'{\"login\":[1624086813,1624431462,1625837308,1627222914,1654513363]}'),(779,'148.72.208.53','normal','',0,0,0,6,0,'{\"login\":[1624087420,1625810396,1626953551,1626955699,1627434542,1628076375]}'),(780,'148.72.215.37','normal','',0,0,0,14,0,'{\"login\":[1624088012,1624278132,1625608472,1625919459,1626150731,1626389163,1626717309,1627192417,1627452473,1627478691,1629103960,1629943841,1629976154,1630789825]}'),(781,'82.196.5.194','normal','',0,0,0,4,0,'{\"login\":[1624088655,1624841932,1626061622,1627907719]}'),(782,'208.109.8.126','normal','',0,0,0,2,0,'{\"login\":[1624089300,1627784037]}'),(783,'192.241.174.114','normal','',0,0,0,2,0,'{\"login\":[1624119631,1624528163]}'),(784,'139.99.69.189','normal','',0,0,0,2,4,'{\"login\":[1624092631,1624099142],\"nf\":[1662051601,1662051603,1662096734,1662178874]}'),(785,'185.114.247.197','normal','',0,0,0,2,0,'{\"login\":[1624093356,1624868553]}'),(786,'128.199.165.213','normal','',0,0,0,1,0,'{\"login\":[1624094080]}'),(787,'164.132.38.166','normal','',0,0,0,4,0,'{\"login\":[1624094717,1625305215,1625308797,1627159190]}'),(788,'161.35.27.209','normal','',0,0,0,1,0,'{\"login\":[1624096161]}'),(789,'192.163.199.39','normal','',0,0,0,1,0,'{\"login\":[1624096978]}'),(790,'103.111.30.40','normal','',0,0,0,8,0,'{\"login\":[1624097651,1624444326,1625737976,1629250797,1632175957,1653998539,1654062808,1654510533]}'),(791,'41.231.122.251','normal','',0,0,0,4,0,'{\"login\":[1624099929,1625298846,1625838281,1626078885]}'),(792,'62.110.27.172','normal','',0,0,0,1,0,'{\"login\":[1624101388]}'),(793,'198.251.70.146','normal','',0,0,0,1,0,'{\"login\":[1624102183]}'),(794,'103.6.245.45','normal','',0,0,0,2,0,'{\"login\":[1624104542,1624451669]}'),(795,'178.128.68.121','normal','',0,0,0,1,0,'{\"login\":[1624107079]}'),(796,'93.189.30.194','normal','',0,0,0,3,0,'{\"login\":[1624108683,1625751091,1629230693]}'),(797,'195.161.114.231','normal','',0,0,0,8,0,'{\"login\":[1624109520,1625261225,1625736180,1627880546,1634004898,1634931908,1634936615,1634950282]}'),(798,'46.101.26.108','normal','',0,0,0,2,0,'{\"login\":[1624111296,1624551136]}'),(799,'104.131.167.46','normal','',0,0,0,5,0,'{\"login\":[1624114934,1626652161,1628975173,1631710340,1639899168]}'),(800,'81.219.18.20','normal','',0,0,0,1,0,'{\"login\":[1624115830]}'),(801,'35.199.25.131','normal','',0,0,0,5,0,'{\"login\":[1624116745,1624866719,1625807824,1626432206,1627882882]}'),(802,'109.24.144.155','normal','',0,0,0,3,0,'{\"login\":[1624117737,1627866251,1631621048]}'),(803,'92.118.160.5','normal','',0,0,0,0,0,'[]'),(804,'139.59.33.202','normal','',0,0,0,6,0,'{\"login\":[1624121679,1626428515,1627423685,1632201327,1633549230,1640410106]}'),(805,'40.77.167.53','normal','',0,0,0,0,0,'[]'),(806,'207.46.13.162','normal','',0,0,0,0,0,'[]'),(807,'135.181.91.12','normal','',0,0,0,1,0,'{\"login\":[1624122608]}'),(808,'103.80.82.33','normal','',0,0,0,3,0,'{\"login\":[1624123424,1625250132,1625273409]}'),(809,'66.249.69.248','normal','',0,0,0,0,0,'[]'),(810,'157.230.208.124','normal','',0,0,0,1,0,'{\"login\":[1624123909]}'),(811,'206.189.45.85','normal','',0,0,0,1,0,'{\"login\":[1624125100]}'),(812,'178.62.76.138','normal','',0,0,0,1,0,'{\"login\":[1624125484]}'),(813,'45.200.120.168','normal','',0,0,0,8,0,'{\"login\":[1624126038,1624126518,1625997145,1626122571,1626530283,1626629389,1627509655,1629665590]}'),(814,'62.109.16.8','normal','',0,0,0,1,0,'{\"login\":[1624127071]}'),(815,'192.99.145.57','normal','',0,0,0,5,0,'{\"login\":[1624127565,1626567828,1628954257,1633992703,1634010310]}'),(816,'185.13.231.4','normal','',0,0,0,8,0,'{\"login\":[1624128101,1624545333,1624860784,1627077162,1629236092,1629292567,1632189293,1632302113]}'),(817,'148.72.22.169','normal','',0,0,0,3,0,'{\"login\":[1624129154,1626417576,1626556215]}'),(818,'66.249.75.118','normal','',0,0,0,0,0,'[]'),(819,'66.249.69.239','normal','',0,0,0,0,0,'[]'),(820,'35.245.188.175','normal','',0,0,0,0,0,'[]'),(821,'3.8.68.2','normal','',0,0,0,0,0,'[]'),(822,'154.0.168.134','normal','',0,0,0,1,0,'{\"login\":[1624131773]}'),(823,'112.78.3.201','normal','',0,0,0,1,0,'{\"login\":[1624132411]}'),(824,'178.128.51.162','normal','',0,0,0,4,0,'{\"login\":[1624132980,1624890813,1631616318,1640567733]}'),(825,'18.236.95.76','normal','',0,0,0,0,0,'[]'),(826,'69.163.225.112','normal','',0,0,0,1,0,'{\"login\":[1624134151]}'),(827,'18.236.94.241','normal','',0,0,0,0,0,'[]'),(828,'35.161.69.18','normal','',0,0,0,0,0,'[]'),(829,'54.188.248.22','normal','',0,0,0,0,0,'[]'),(830,'40.77.167.55','normal','',0,0,0,0,0,'[]'),(831,'40.77.167.101','normal','',0,0,0,0,0,'[]'),(832,'66.249.69.235','normal','',0,0,0,0,0,'[]'),(833,'35.183.37.148','normal','',0,0,0,0,0,'[]'),(834,'156.155.112.23','normal','',0,0,0,0,0,'[]'),(835,'35.160.130.177','normal','',0,0,0,0,0,'[]'),(836,'34.221.162.14','normal','',0,0,0,0,0,'[]'),(837,'34.217.97.250','normal','',0,0,0,0,0,'[]'),(838,'18.184.195.200','normal','',0,0,0,0,0,'[]'),(839,'52.13.45.10','normal','',0,0,0,0,0,'[]'),(840,'34.210.58.94','normal','',0,0,0,0,0,'[]'),(841,'54.36.149.65','normal','',0,0,0,0,0,'[]'),(842,'64.246.165.170','normal','',0,0,0,0,0,'[]'),(843,'108.163.132.249','normal','',0,0,0,6,0,'{\"login\":[1625638234,1625816398,1625928157,1626407290,1627818292,1629201316]}'),(844,'40.77.167.1','normal','',0,0,0,0,0,'[]'),(845,'157.55.39.189','normal','',0,0,0,0,0,'[]'),(846,'159.89.224.103','normal','',0,0,0,5,0,'{\"login\":[1624263819,1626530655,1626976599,1627527786,1628959565]}'),(847,'103.1.239.107','normal','',0,0,0,11,0,'{\"login\":[1624267803,1626361801,1627560386,1627793795,1627800081,1628997798,1629233360,1629252940,1632171146,1634922590,1634923785]}'),(848,'72.167.222.102','normal','',0,0,0,7,0,'{\"login\":[1624269294,1624885814,1625294775,1625805435,1626405714,1626551555,1627224755]}'),(849,'165.232.165.177','normal','',0,0,0,1,0,'{\"login\":[1624271108]}'),(850,'185.81.96.113','normal','',0,0,0,1,0,'{\"login\":[1624272982]}'),(851,'165.227.107.59','normal','',0,0,0,1,0,'{\"login\":[1624275029]}'),(852,'47.254.216.219','normal','',0,0,0,21,0,'{\"login\":[1624275089,1625607348,1625646071,1625706875,1626453214,1627976068,1629140736,1629322733,1629550445,1629784007,1629791354,1629794314,1629917384,1629977773,1630764882,1631169080,1631401326,1632223016,1632257390,1632280861,1632335991]}'),(853,'142.93.179.72','normal','',0,0,0,2,0,'{\"login\":[1624279969,1624448846]}'),(854,'162.144.113.126','normal','',0,0,0,4,0,'{\"login\":[1624282925,1624443477,1625282539,1627891217]}'),(855,'195.140.146.92','normal','',0,0,0,1,0,'{\"login\":[1624283864]}'),(856,'103.28.56.214','normal','',0,0,0,4,0,'{\"login\":[1624289309,1624519507,1626943023,1627419131]}'),(857,'35.205.67.180','normal','',0,0,0,2,0,'{\"login\":[1624290730,1625639660]}'),(858,'47.206.205.206','normal','',0,0,0,2,0,'{\"login\":[1624292261,1629242076]}'),(859,'18.132.233.235','normal','',0,0,0,1,0,'{\"login\":[1624293293]}'),(860,'169.0.103.117','normal','',0,0,0,0,0,'[]'),(861,'107.150.6.89','normal','',0,0,0,2,0,'{\"login\":[1624296960,1625610593]}'),(862,'176.31.80.87','normal','',0,0,0,2,0,'{\"login\":[1624299603,1626088773]}'),(863,'54.212.179.223','normal','',0,0,0,0,0,'[]'),(864,'54.245.171.1','normal','',0,0,0,0,0,'[]'),(865,'54.200.153.61','normal','',0,0,0,0,0,'[]'),(866,'34.215.110.6','normal','',0,0,0,0,0,'[]'),(867,'34.221.99.77','normal','',0,0,0,0,0,'[]'),(868,'54.70.174.135','normal','',0,0,0,0,0,'[]'),(869,'45.40.166.141','normal','',0,0,0,50,0,'{\"login\":[1624310090,1624349608,1626096377,1626179088,1626435318,1626742621,1626753285,1626953038,1627500224,1627603114,1627838559,1627852252,1629667337,1629731329,1630281704,1630647898,1630946599,1631243448,1631489381,1631524751,1631658089,1632130116,1632170677,1633796314,1633828293,1634434223,1635678212,1636702823,1637703381,1637959381,1638246166,1639153244,1639794362,1640015447,1640065108,1640366779,1640428344,1640770348,1640940947,1641375233,1641495595,1642002881,1642022125,1642059136,1642084088,1642226649,1642279136,1642385609,1642846360,1642957010]}'),(870,'66.33.196.105','normal','',0,0,0,7,0,'{\"login\":[1624320380,1625733054,1626513880,1626546744,1627231231,1628133468,1628577606]}'),(871,'54.36.149.22','normal','',0,0,0,0,0,'[]'),(872,'116.203.150.71','normal','',0,0,0,41,0,'{\"login\":[1624326210,1625693902,1625936184,1626358097,1626650207,1627064557,1627094056,1627941162,1629167070,1630366924,1630916122,1630941624,1632734194,1633526682,1635431858,1636820494,1637323842,1638117564,1639002018,1639394924,1639625338,1639779428,1639923080,1640062463,1640168802,1640350382,1640421103,1640590354,1640627757,1640877759,1641102637,1641124840,1641382578,1641469865,1641739040,1642024959,1642383751,1642440725,1642473608,1643322884,1643496648]}'),(873,'167.114.157.181','normal','',0,0,0,0,0,'[]'),(874,'76.72.172.167','normal','',0,0,0,0,0,'[]'),(875,'202.120.234.187','normal','',0,0,0,0,0,'[]'),(876,'31.192.208.12','normal','',0,0,0,54,0,'{\"login\":[1624335856,1624957641,1626431249,1626434075,1626467828,1626637282,1627008715,1627122883,1628138945,1628595205,1628793065,1638453307,1639300046,1639573177,1639593800,1641027218,1642037780,1644370659,1644581763,1644590185,1644645859,1644673521,1645742756,1645949456,1646553878,1646833331,1646996992,1647087452,1647160592,1648120992,1649841744,1650375692,1650495828,1650539152,1650611154,1651007053,1651021231,1651102903,1651595961,1652296673,1652422118,1652775080,1652937084,1653806551,1653912621,1654146260,1654147944,1654358278,1654418834,1654704857,1654805235,1655045564,1655362766,1656078584]}'),(877,'159.203.115.159','normal','',0,0,0,65,0,'{\"login\":[1624341129,1625615736,1626547971,1626579321,1626610488,1626692937,1627506366,1627805227,1629020085,1629123528,1629676235,1630152725,1630362165,1630572171,1630621310,1630836101,1631465983,1631505995,1631791539,1632099910,1632154660,1632155860,1632533241,1633229083,1633340627,1633574986,1633651039,1633932495,1634498200,1634863347,1636792592,1636852994,1637004542,1637043185,1637364193,1637792430,1637936133,1638450030,1639623306,1640054353,1640143243,1640286168,1640466843,1640723475,1641023354,1641184422,1641768869,1642274307,1642552695,1643318713,1643550035,1644567934,1644805158,1645247216,1645332334,1645978572,1646238382,1646313265,1646497058,1646501339,1646534904,1646816450,1646910795,1646996106,1647507219]}'),(878,'61.28.235.234','normal','',0,0,0,17,0,'{\"login\":[1624344190,1626369944,1627049706,1627117510,1627174060,1628905414,1629022377,1630092550,1630230598,1631403268,1631969639,1632724719,1633951143,1634352713,1634535339,1634824582,1636244120]}'),(879,'54.36.149.55','normal','',0,0,0,0,0,'[]'),(880,'197.98.201.87','normal','',0,0,0,0,0,'[]'),(881,'45.40.166.143','normal','',0,0,0,38,0,'{\"login\":[1624358859,1624938322,1626509830,1627277291,1628895502,1628906653,1629325861,1629350846,1629928894,1630206566,1631485285,1632169415,1632227345,1632271411,1632339159,1633638312,1633735259,1633823976,1634035025,1635979371,1635985009,1636710064,1637938229,1638422085,1639412867,1639544855,1641347005,1641373743,1641529697,1641826999,1641829572,1642316352,1642343476,1642464565,1642584621,1642915269,1642983230,1643000079]}'),(882,'200.111.88.76','normal','',0,0,0,1,0,'{\"login\":[1624366062]}'),(883,'134.209.196.64','normal','',0,0,0,26,0,'{\"login\":[1624368489,1625656297,1625937239,1627067611,1628712623,1628822263,1628830390,1628885712,1628998493,1629726687,1630179895,1632101663,1634441207,1634849894,1635367017,1635762513,1636917491,1637465743,1638149016,1638162706,1638309212,1638446786,1638721287,1639284559,1639447285,1639862332]}'),(884,'105.185.156.68','normal','',0,0,0,0,2,'{\"nf\":[1626265692,1626265692]}'),(885,'102.65.62.231','normal','',0,0,0,0,0,'[]'),(886,'196.220.57.160','normal','',0,0,0,0,0,'[]'),(887,'165.227.194.32','normal','',0,0,0,1,0,'{\"login\":[1624373269]}'),(888,'67.205.146.15','normal','',0,0,0,2,0,'{\"login\":[1624375831,1625295608]}'),(889,'95.179.140.210','normal','',0,0,0,0,0,'[]'),(890,'159.65.65.170','normal','',0,0,0,4,0,'{\"login\":[1624423769,1625741553,1631694705,1638427780]}'),(891,'46.101.254.193','normal','',0,0,0,2,0,'{\"login\":[1624391983,1625715569]}'),(892,'54.245.21.204','normal','',0,0,0,0,0,'[]'),(893,'104.131.124.162','normal','',0,0,0,1,0,'{\"login\":[1625316139]}'),(894,'54.202.220.32','normal','',0,0,0,0,0,'[]'),(895,'54.218.8.36','normal','',0,0,0,0,0,'[]'),(896,'34.212.226.179','normal','',0,0,0,0,0,'[]'),(897,'35.164.49.219','normal','',0,0,0,0,0,'[]'),(898,'34.219.205.208','normal','',0,0,0,0,0,'[]'),(899,'34.216.240.59','normal','',0,0,0,0,0,'[]'),(900,'128.199.212.194','normal','',0,0,0,4,0,'{\"login\":[1624399249,1624877770,1628062141,1632301536]}'),(901,'34.71.71.95','normal','',0,0,0,2,0,'{\"login\":[1624403079,1628041872]}'),(902,'206.189.231.196','normal','',0,0,0,5,0,'{\"login\":[1624405032,1626364176,1627895017,1634949983,1635848115]}'),(903,'148.72.211.177','normal','',0,0,0,5,0,'{\"login\":[1624409235,1626338953,1626550789,1640219313,1650347786]}'),(904,'36.67.101.26','normal','',0,0,0,1,0,'{\"login\":[1624411351]}'),(905,'78.157.40.153','normal','',0,0,0,6,0,'{\"login\":[1624418242,1627877810,1631987842,1632181942,1632567431,1633984840]}'),(906,'51.38.42.39','normal','',0,0,0,9,0,'{\"login\":[1624421068,1625862753,1626064141,1627059672,1627202619,1627496076,1627821537,1628071939,1628146832]}'),(907,'139.59.61.144','normal','',0,0,0,3,0,'{\"login\":[1624421611,1631953747,1633541043]}'),(908,'143.198.30.100','blocked','You have been locked out due to too many invalid login attempts.',1638379661,1638379361,0,8,0,'{\"login\":[1624422676,1624427981,1625285725,1638379357,1638379358,1638379359,1638379359,1638379361]}'),(909,'192.169.217.206','normal','',0,0,0,1,0,'{\"login\":[1624424891]}'),(910,'103.241.205.82','normal','',0,0,0,1,0,'{\"login\":[1624425505]}'),(911,'103.71.255.100','normal','',0,0,0,9,0,'{\"login\":[1624426103,1624884290,1625265098,1625594000,1625621391,1625652589,1627019820,1627210875,1628083710]}'),(912,'178.128.169.213','normal','',0,0,0,2,0,'{\"login\":[1624426700,1624861166]}'),(913,'20.93.105.115','normal','',0,0,0,1,0,'{\"login\":[1624430011]}'),(914,'144.217.183.134','normal','',0,0,0,1,0,'{\"login\":[1624432190]}'),(915,'190.105.144.144','normal','',0,0,0,4,0,'{\"login\":[1624432963,1624461998,1625314631,1625808479]}'),(916,'95.164.11.94','normal','',0,0,0,1,0,'{\"login\":[1624433666]}'),(917,'211.115.65.107','normal','',0,0,0,6,0,'{\"login\":[1624434467,1626616185,1627009656,1627220067,1627433508,1650359358]}'),(918,'107.180.88.41','normal','',0,0,0,32,0,'{\"login\":[1624435985,1625284074,1627480168,1629304716,1634928004,1654066487,1655287714,1655322382,1655325074,1656764796,1656785594,1656785938,1656792945,1656802627,1656811080,1656827706,1657445299,1657464448,1657494279,1657496399,1657669314,1659350976,1659857926,1660277019,1660465909,1660861234,1661753338,1661758608,1661769074,1661824789,1661825987,1661844534]}'),(919,'124.158.10.21','normal','',0,0,0,6,0,'{\"login\":[1624436836,1624642333,1624869704,1625022170,1625310991,1629288333]}'),(920,'116.255.173.135','normal','',0,0,0,4,0,'{\"login\":[1624438419,1626072918,1628086271,1628980646]}'),(921,'173.236.224.150','normal','',0,0,0,6,0,'{\"login\":[1624440001,1625720167,1626564310,1627243632,1627890801,1628070543]}'),(922,'157.230.164.216','normal','',0,0,0,3,0,'{\"login\":[1624440842,1626591649,1632476592]}'),(923,'105.186.89.64','normal','',0,0,0,0,0,'[]'),(924,'132.148.20.66','normal','',0,0,0,4,0,'{\"login\":[1624441736,1626340563,1626518569,1628087219]}'),(925,'216.10.243.211','normal','',0,0,0,5,0,'{\"login\":[1624446065,1625254362,1626348940,1626575194,1628052681]}'),(926,'92.114.19.247','normal','',0,0,0,1,0,'{\"login\":[1624447039]}'),(927,'143.110.254.148','normal','',0,0,0,6,0,'{\"login\":[1624449806,1625610730,1631610748,1633562663,1634012636,1638413876]}'),(928,'162.241.29.157','normal','',0,0,0,7,0,'{\"login\":[1624450690,1625654906,1625668383,1625710534,1625879822,1626534924,1627640852]}'),(929,'162.214.66.178','normal','',0,0,0,2,0,'{\"login\":[1624453696,1627875057]}'),(930,'128.199.93.165','normal','',0,0,0,6,0,'{\"login\":[1624454757,1624504397,1624631297,1625207474,1625377337,1625397219]}'),(931,'144.172.126.43','normal','',0,0,0,4,0,'{\"login\":[1624457778,1625745274,1625828761,1627422741]}'),(932,'34.92.85.223','normal','',0,0,0,4,0,'{\"login\":[1624458125,1625150846,1625162580,1628012478]}'),(933,'164.68.126.176','normal','',0,0,0,1,0,'{\"login\":[1624460910]}'),(934,'152.136.20.21','normal','',0,0,0,3,0,'{\"login\":[1624468385,1624514366,1624660167]}'),(935,'197.94.33.254','normal','',0,0,0,0,0,'[]'),(936,'185.2.6.4','normal','',0,0,0,1,0,'{\"login\":[1624471687]}'),(937,'81.88.52.157','normal','',0,0,0,2,0,'{\"login\":[1624474888,1624765743]}'),(938,'54.36.149.86','normal','',0,0,0,0,0,'[]'),(939,'119.96.223.59','normal','',0,0,0,6,0,'{\"login\":[1624478137,1624481381,1624645944,1624791743,1631980974,1632010156]}'),(940,'52.12.39.115','normal','',0,0,0,0,0,'[]'),(941,'54.245.150.173','normal','',0,0,0,0,0,'[]'),(942,'35.223.167.57','normal','',0,0,0,2,0,'{\"login\":[1624484636,1628046041]}'),(943,'107.180.73.192','normal','',0,0,0,19,0,'{\"login\":[1624491201,1624501075,1624528018,1624573468,1625184864,1625238346,1625314816,1631914388,1632039393,1632285443,1632508246,1633840746,1634029686,1634445096,1634864140,1637111826,1637799867,1637897430,1638138854]}'),(944,'54.36.148.91','normal','',0,0,0,0,0,'[]'),(945,'81.88.52.137','normal','',0,0,0,8,0,'{\"login\":[1624494462,1624670914,1624711155,1624810413,1624993543,1625008495,1625272717,1625307185]}'),(946,'188.166.94.198','normal','',0,0,0,78,0,'{\"login\":[1624497777,1624689154,1624981767,1625334615,1625369387,1625848225,1625952184,1627978160,1628838339,1628924224,1629532854,1629691572,1630122877,1630252947,1631745217,1632264771,1633018671,1633063848,1634130477,1635392694,1635455273,1636864844,1637023781,1637067564,1637302538,1638133766,1638737354,1638993731,1639812913,1639960745,1640363964,1640708884,1640939870,1641372111,1641390887,1641436871,1641711976,1641714996,1641981354,1642025666,1642113988,1642168601,1642395110,1642518622,1642583765,1642643039,1643331993,1643333220,1643474125,1643474691,1643743937,1644096633,1644243429,1644376163,1644632729,1645353538,1645823838,1645919556,1646434289,1646526111,1646880470,1647164749,1647351043,1647654844,1647725697,1647740758,1647778426,1647905582,1648477258,1648587078,1648700508,1649531694,1650133853,1650312935,1650404815,1650489316,1651062350,1651173510]}'),(947,'54.36.149.68','normal','',0,0,0,0,0,'[]'),(948,'54.36.148.37','normal','',0,0,0,0,0,'[]'),(949,'5.101.157.29','normal','',0,0,0,1,0,'{\"login\":[1624506287]}'),(950,'72.167.225.115','normal','',0,0,0,8,0,'{\"login\":[1624507524,1626403191,1626432475,1626748024,1627492860,1627964197,1628132699,1628917918]}'),(951,'81.88.52.58','normal','',0,0,0,4,0,'{\"login\":[1624507667,1624590565,1624729875,1624740617]}'),(952,'208.97.177.228','normal','',0,0,0,1,0,'{\"login\":[1624508771]}'),(953,'76.72.172.165','normal','',0,0,0,0,0,'[]'),(954,'103.28.53.92','normal','',0,0,0,8,0,'{\"login\":[1624511018,1624649528,1624653071,1624656640,1624681786,1624685462,1624888404,1624985808]}'),(955,'157.230.2.68','normal','',0,0,0,4,0,'{\"login\":[1624513093,1625797020,1626593858,1627869128]}'),(956,'159.203.70.169','normal','',0,0,0,2,0,'{\"login\":[1624517818,1624828483]}'),(957,'102.39.146.206','normal','',0,0,0,0,1,'{\"nf\":[1624519896]}'),(958,'163.172.141.157','normal','',0,0,0,1,0,'{\"login\":[1624521110]}'),(959,'47.241.109.116','normal','',0,0,0,8,0,'{\"login\":[1624521166,1624545636,1624737077,1624921901,1624989793,1625173716,1625276495,1626606310]}'),(960,'47.74.17.225','normal','',0,0,0,8,0,'{\"login\":[1624522967,1625280937,1626357088,1631614102,1631707035,1632283325,1632288167,1633560211]}'),(961,'35.235.65.83','normal','',0,0,0,3,0,'{\"login\":[1624524612,1624580264,1624605344]}'),(962,'197.94.91.33','normal','',0,0,0,0,0,'[]'),(963,'173.236.152.14','normal','',0,0,0,3,0,'{\"login\":[1624526506,1626350842,1627211579]}'),(964,'207.46.13.0','normal','',0,0,0,0,0,'[]'),(965,'180.76.185.20','normal','',0,0,0,2,0,'{\"login\":[1624534951,1624696525]}'),(966,'198.12.225.100','normal','',0,0,0,8,0,'{\"login\":[1624535533,1625201201,1625601508,1627016761,1646132294,1646197577,1646719637,1646754781]}'),(967,'51.158.124.112','normal','',0,0,0,1,0,'{\"login\":[1624536541]}'),(968,'51.254.49.156','normal','',0,0,0,2,0,'{\"login\":[1624537733,1628968825]}'),(969,'123.57.15.175','normal','',0,0,0,3,0,'{\"login\":[1624538470,1625046592,1625373315]}'),(970,'176.53.84.179','normal','',0,0,0,4,0,'{\"login\":[1624538922,1625262502,1627442368,1627447195]}'),(971,'64.90.48.187','normal','',0,0,0,3,0,'{\"login\":[1624540120,1625811036,1626408213]}'),(972,'188.166.233.252','normal','',0,0,0,1,0,'{\"login\":[1624541368]}'),(973,'161.35.192.196','normal','',0,0,0,5,0,'{\"login\":[1624542021,1624552922,1624896114,1624914731,1625051626]}'),(974,'185.248.100.56','normal','',0,0,0,3,0,'{\"login\":[1624543985,1626348912,1626509120]}'),(975,'128.199.233.148','normal','',0,0,0,3,0,'{\"login\":[1624549294,1624846855,1625385348]}'),(976,'128.199.249.213','normal','',0,0,0,3,0,'{\"login\":[1624549678,1624831011,1624870516]}'),(977,'188.166.56.218','normal','',0,0,0,40,0,'{\"login\":[1624554574,1625851929,1626457742,1628808673,1628854933,1629203599,1629336863,1629347190,1629353785,1629653225,1629947053,1630156161,1630652330,1631267295,1631921149,1632036612,1632273757,1632469882,1633333184,1633631754,1634038251,1634914474,1639824282,1639840149,1640360580,1640377511,1640609377,1640678018,1642108146,1642161216,1642273495,1642400653,1642450342,1642528397,1643003017,1643105410,1643308602,1644567011,1645039930,1654012322]}'),(978,'81.88.52.154','normal','',0,0,0,26,0,'{\"login\":[1624556466,1624776873,1624943390,1625027004,1625299435,1626480773,1626729086,1627604489,1627611396,1628714188,1628853527,1629680527,1629972154,1629972958,1629985968,1630615489,1631698123,1631746490,1631948830,1632890649,1633635475,1634844453,1635714212,1636657868,1636757176,1637223876]}'),(979,'202.189.180.66','normal','',0,0,0,4,0,'{\"login\":[1624559915,1624667325,1624700178,1624788062]}'),(980,'34.86.35.19','normal','',0,0,0,0,0,'[]'),(981,'47.100.95.127','normal','',0,0,0,5,0,'{\"login\":[1624563312,1624802798,1624877150,1625222872,1625265248]}'),(982,'54.36.160.184','normal','',0,0,0,4,0,'{\"login\":[1624566687,1624615869,1624751294,1624947096]}'),(983,'54.201.116.194','normal','',0,0,0,0,0,'[]'),(984,'54.190.222.221','normal','',0,0,0,0,0,'[]'),(985,'66.23.238.83','normal','',0,0,0,11,0,'{\"login\":[1624567725,1625229405,1625630243,1625651739,1626009167,1626383936,1626400373,1626535552,1626711190,1627276498,1628962157]}'),(986,'54.149.136.231','normal','',0,0,0,0,0,'[]'),(987,'34.221.92.82','normal','',0,0,0,0,0,'[]'),(988,'47.100.172.63','normal','',0,0,0,3,0,'{\"login\":[1624570083,1624854914,1625284141]}'),(989,'96.125.169.49','normal','',0,0,0,3,0,'{\"login\":[1624575392,1625315420,1628069139]}'),(990,'128.199.21.230','normal','',0,0,0,3,0,'{\"login\":[1624576855,1624692860,1625154851]}'),(991,'54.36.148.127','normal','',0,0,0,0,0,'[]'),(992,'206.189.147.58','normal','',0,0,0,9,0,'{\"login\":[1624582226,1624822976,1624923700,1626509099,1626567329,1628991217,1631997377,1632903370,1635841690]}'),(993,'178.62.79.87','normal','',0,0,0,5,0,'{\"login\":[1624583688,1624873383,1624884586,1624899970,1625393285]}'),(994,'185.238.73.122','normal','',0,0,0,5,0,'{\"login\":[1624592230,1624903843,1631249464,1631702469,1632157011]}'),(995,'51.68.79.121','normal','',0,0,0,2,0,'{\"login\":[1624594851,1624832393]}'),(996,'209.244.159.152','normal','',0,0,0,3,0,'{\"login\":[1624598341,1625012994,1625338449]}'),(997,'178.151.64.197','normal','',0,0,0,6,0,'{\"login\":[1624601650,1627005807,1627980260,1627983035,1633604346,1636753795]}'),(998,'213.180.203.83','normal','',0,0,0,0,0,'[]'),(999,'47.96.169.129','normal','',0,0,0,7,0,'{\"login\":[1624611737,1625337850,1626030267,1626111425,1626480586,1626616380,1627030049]}'),(1000,'122.116.248.74','normal','',0,0,0,6,0,'{\"login\":[1624612359,1624726136,1625036662,1625067215,1625076946,1625170031]}'),(1001,'47.101.205.201','normal','',0,0,0,5,0,'{\"login\":[1624619386,1624817919,1625199857,1625353642,1629303170]}'),(1002,'120.27.0.224','normal','',0,0,0,3,0,'{\"login\":[1624622894,1624758471,1625357504]}'),(1003,'206.166.251.68','normal','',0,0,0,0,1,'{\"nf\":[1624624098]}'),(1004,'91.238.160.176','normal','',0,0,0,3,0,'{\"login\":[1624636231,1626052251,1626136404]}'),(1005,'184.94.240.92','normal','',0,0,0,0,0,'[]'),(1006,'165.22.53.233','normal','',0,0,0,3,0,'{\"login\":[1624638668,1624936140,1625365420]}'),(1007,'34.213.248.46','normal','',0,0,0,0,0,'[]'),(1008,'35.161.68.30','normal','',0,0,0,0,0,'[]'),(1009,'18.236.161.31','normal','',0,0,0,0,0,'[]'),(1010,'18.237.156.94','normal','',0,0,0,0,0,'[]'),(1011,'54.36.148.209','normal','',0,0,0,0,0,'[]'),(1012,'197.85.7.132','normal','',0,0,0,0,0,'[]'),(1013,'197.94.242.198','normal','',0,0,0,0,2,'{\"nf\":[1624717748,1624869222]}'),(1014,'81.69.252.187','normal','',0,0,0,2,0,'{\"login\":[1624722361,1625389344]}'),(1015,'40.77.167.52','normal','',0,0,0,0,0,'[]'),(1016,'41.13.208.165','normal','',0,0,0,0,0,'[]'),(1017,'106.52.193.254','normal','',0,0,0,3,0,'{\"login\":[1624733507,1625166313,1625303339]}'),(1018,'52.43.247.232','normal','',0,0,0,0,0,'[]'),(1019,'18.237.51.205','normal','',0,0,0,0,0,'[]'),(1020,'102.65.20.162','normal','',0,0,0,0,0,'[]'),(1021,'54.68.167.12','normal','',0,0,0,0,0,'[]'),(1022,'54.191.56.253','normal','',0,0,0,0,0,'[]'),(1023,'193.112.16.121','normal','',0,0,0,3,0,'{\"login\":[1624747727,1624784372,1625196118]}'),(1024,'157.245.218.180','normal','',0,0,0,3,0,'{\"login\":[1624762105,1624839580,1624907443]}'),(1025,'136.243.32.189','normal','',0,0,0,4,0,'{\"login\":[1624769415,1624932559,1625188620,1625287906]}'),(1026,'81.88.52.82','normal','',0,0,0,2,0,'{\"login\":[1624780647,1624843201]}'),(1027,'84.17.52.81','normal','',0,0,0,0,0,'[]'),(1028,'142.93.105.158','normal','',0,0,0,4,0,'{\"login\":[1624795414,1624925417,1625088594,1625349831]}'),(1029,'76.72.172.171','normal','',0,0,0,0,0,'[]'),(1030,'67.205.61.254','normal','',0,0,0,39,0,'{\"login\":[1624858685,1625350113,1625810349,1626100120,1626533216,1626628403,1626707791,1627848893,1627918950,1628590032,1629326075,1629689939,1629754844,1630108307,1630291885,1630591348,1630601013,1630830412,1631993122,1632128185,1632497618,1632563087,1633566160,1633691840,1633776458,1634084633,1634433167,1635357126,1635436369,1635629179,1635646994,1635675313,1635806035,1636874759,1636914529,1636918985,1637188792,1637241226,1637485790]}'),(1031,'197.94.92.86','normal','',0,0,0,0,0,'[]'),(1032,'155.93.234.21','normal','',0,0,0,0,0,'[]'),(1033,'103.141.96.125','normal','',0,0,0,1,0,'{\"login\":[1624820951]}'),(1034,'185.2.5.47','normal','',0,0,0,5,0,'{\"login\":[1624821538,1624825157,1624977788,1625041633,1625230460]}'),(1035,'173.236.184.125','normal','',0,0,0,24,0,'{\"login\":[1624823965,1626376947,1626670890,1627289395,1627450932,1627624593,1627863537,1629190692,1629526208,1629904513,1630614202,1630750329,1631672580,1631974096,1632368824,1632509709,1633034631,1633186580,1634004452,1636849263,1636852370,1637278254,1637678201,1637844174]}'),(1036,'45.151.248.94','normal','',0,0,0,5,0,'{\"login\":[1624825009,1624871625,1625598790,1625648747,1627449915]}'),(1037,'210.188.201.184','normal','',0,0,0,1,0,'{\"login\":[1624826189]}'),(1038,'34.220.155.41','normal','',0,0,0,0,0,'[]'),(1039,'50.21.186.199','normal','',0,0,0,1,0,'{\"login\":[1624827342]}'),(1040,'178.128.180.162','normal','',0,0,0,3,0,'{\"login\":[1624829744,1626401507,1626527442]}'),(1041,'54.191.200.152','normal','',0,0,0,0,0,'[]'),(1042,'174.138.26.9','normal','',0,0,0,1,0,'{\"login\":[1624832210]}'),(1043,'116.62.48.216','normal','',0,0,0,1,0,'{\"login\":[1624833489]}'),(1044,'151.236.34.192','normal','',0,0,0,1,0,'{\"login\":[1624834750]}'),(1045,'106.12.192.127','normal','',0,0,0,2,0,'{\"login\":[1624835996,1625000968]}'),(1046,'208.97.188.209','normal','',0,0,0,3,0,'{\"login\":[1624836128,1625216986,1627481060]}'),(1047,'164.90.187.127','normal','',0,0,0,3,0,'{\"login\":[1624837530,1625644336,1626427568]}'),(1048,'62.210.207.196','normal','',0,0,0,0,0,'[]'),(1049,'178.128.230.35','normal','',0,0,0,1,0,'{\"login\":[1624843354]}'),(1050,'104.248.42.100','normal','',0,0,0,4,0,'{\"login\":[1624844907,1624856486,1631711482,1632192398]}'),(1051,'167.71.218.191','normal','',0,0,0,2,0,'{\"login\":[1624847933,1625759060]}'),(1052,'104.149.130.198','normal','',0,0,0,2,0,'{\"login\":[1624851100,1625819430]}'),(1053,'62.210.113.228','normal','',0,0,0,1,0,'{\"login\":[1624852754]}'),(1054,'162.144.59.107','normal','',0,0,0,2,0,'{\"login\":[1624854441,1627858004]}'),(1055,'104.248.116.202','normal','',0,0,0,1,0,'{\"login\":[1624857166]}'),(1056,'165.22.147.65','normal','',0,0,0,3,0,'{\"login\":[1624857729,1625760378,1626352889]}'),(1057,'178.63.253.1','normal','',0,0,0,1,0,'{\"login\":[1624858159]}'),(1058,'192.185.219.16','normal','',0,0,0,1,0,'{\"login\":[1624859173]}'),(1059,'188.34.195.0','normal','',0,0,0,1,0,'{\"login\":[1624859660]}'),(1060,'47.254.247.161','normal','',0,0,0,4,0,'{\"login\":[1624860185,1625318548,1632914682,1635860600]}'),(1061,'49.129.221.89','normal','',0,0,0,1,0,'{\"login\":[1624861805]}'),(1062,'123.207.30.63','normal','',0,0,0,4,0,'{\"login\":[1624862286,1624866004,1625056759,1625246390]}'),(1063,'23.95.217.2','normal','',0,0,0,17,0,'{\"login\":[1624863005,1625623982,1625634098,1625664053,1626578339,1628580402,1628703229,1629913581,1630245597,1630617431,1633706741,1634089077,1634359612,1634984278,1636671413,1638152020,1638266910]}'),(1064,'109.95.213.37','normal','',0,0,0,1,0,'{\"login\":[1624865531]}'),(1065,'47.106.118.205','normal','',0,0,0,1,0,'{\"login\":[1624865599]}'),(1066,'69.163.225.118','normal','',0,0,0,1,0,'{\"login\":[1624866110]}'),(1067,'180.178.127.192','normal','',0,0,0,4,0,'{\"login\":[1624867278,1625591205,1625611759,1625820250]}'),(1068,'54.36.149.27','normal','',0,0,0,0,0,'[]'),(1069,'159.203.37.43','normal','',0,0,0,29,0,'{\"login\":[1624867908,1626065843,1627087461,1627131067,1627140947,1627621844,1629178916,1629253322,1629350119,1630118500,1630666511,1630698078,1630732407,1630788975,1631379344,1631384434,1631437209,1631696621,1631965457,1632172362,1632620560,1633639895,1633809424,1633937526,1634255779,1634512989,1635460589,1635482244,1635860929]}'),(1070,'195.93.152.83','normal','',0,0,0,77,0,'{\"login\":[1624869172,1625965475,1626595947,1628142095,1628796492,1629025843,1629909043,1630283157,1630926594,1632537626,1633595694,1633606070,1634283872,1634921004,1634981373,1635630245,1636750076,1637463468,1637739453,1637891740,1637896360,1638469793,1639000979,1639788452,1640268018,1641946862,1642175255,1642356607,1642625392,1642989101,1643500772,1644681181,1644832342,1646264460,1646441344,1646536672,1646623291,1646686360,1646887206,1647374480,1647768205,1648119814,1648190313,1648277262,1649480949,1649522549,1649595978,1649708044,1649851029,1650133377,1651063880,1651152057,1651153974,1651281081,1651327684,1651751135,1651946560,1652170168,1652762082,1652793203,1653307767,1653910723,1654373120,1654527453,1654773603,1655744293,1656831612,1656910891,1657282328,1657452976,1657723223,1657868588,1658219049,1658495840,1659112902,1661679944,1662231366]}'),(1071,'162.55.189.205','normal','',0,0,0,0,0,'[]'),(1072,'162.241.101.54','normal','',0,0,0,1,0,'{\"login\":[1624869824]}'),(1073,'142.44.224.10','normal','',0,0,0,2,0,'{\"login\":[1624872293,1625313856]}'),(1074,'149.202.133.92','normal','',0,0,0,1,0,'{\"login\":[1624872946]}'),(1075,'50.115.120.245','normal','',0,0,0,1,0,'{\"login\":[1624873619]}'),(1076,'79.99.166.92','normal','',0,0,0,2,0,'{\"login\":[1624875630,1624892442]}'),(1077,'124.150.129.87','normal','',0,0,0,2,0,'{\"login\":[1624876311,1625303812]}'),(1078,'136.144.249.246','normal','',0,0,0,1,0,'{\"login\":[1624877056]}'),(1079,'166.62.84.192','normal','',0,0,0,5,0,'{\"login\":[1624879178,1625294198,1626405043,1626584895,1626586761]}'),(1080,'95.216.161.194','normal','',0,0,0,1,0,'{\"login\":[1624880590]}'),(1081,'202.172.28.184','normal','',0,0,0,2,0,'{\"login\":[1624880873,1625017741]}'),(1082,'162.241.131.11','normal','',0,0,0,3,0,'{\"login\":[1624881361,1626389117,1627570452]}'),(1083,'66.113.207.49','normal','',0,0,0,1,0,'{\"login\":[1624881984]}'),(1084,'144.91.97.162','normal','',0,0,0,3,0,'{\"login\":[1624882765,1626595964,1631608196]}'),(1085,'162.214.188.24','normal','',0,0,0,3,0,'{\"login\":[1624883575,1626966431,1629299171]}'),(1086,'104.238.118.25','normal','',0,0,0,5,0,'{\"login\":[1624886676,1625627359,1625647905,1627219211,1627451443]}'),(1087,'96.62.119.11','normal','',0,0,0,5,0,'{\"login\":[1624888286,1631981810,1631986107,1632479609,1632913267]}'),(1088,'211.125.122.47','normal','',0,0,0,4,0,'{\"login\":[1624889940,1625617564,1627827329,1627910316]}'),(1089,'13.67.49.60','normal','',0,0,0,4,0,'{\"login\":[1624891674,1626498703,1626617237,1627884106]}'),(1090,'49.232.109.167','normal','',0,0,0,2,0,'{\"login\":[1624892253,1625342253]}'),(1091,'188.225.40.131','normal','',0,0,0,1,0,'{\"login\":[1624893368]}'),(1092,'159.89.167.144','normal','',0,0,0,2,0,'{\"login\":[1624896293,1627089897]}'),(1093,'51.195.111.194','normal','',0,0,0,2,0,'{\"login\":[1624901912,1626446209]}'),(1094,'42.193.21.177','normal','',0,0,0,40,0,'{\"login\":[1624906138,1625741727,1626461888,1628733621,1628787727,1628816184,1630215992,1630568408,1633576338,1636738184,1638366671,1638848007,1640089569,1640407814,1640503920,1642181082,1643326514,1646023295,1646721277,1647206430,1649589019,1650410009,1650565621,1650708520,1651970735,1652144477,1652312818,1652369285,1652770751,1652899296,1654605351,1655692871,1655905479,1656827434,1657512100,1657676773,1658264018,1658332793,1660407536,1660499255]}'),(1095,'185.2.4.71','normal','',0,0,0,98,0,'{\"login\":[1624910558,1626408714,1627870047,1629187712,1629209697,1629312679,1629337663,1629491465,1629507589,1629788410,1630783303,1631426073,1631724863,1631978576,1632309900,1632730679,1633578995,1633835141,1634043719,1637133435,1637853664,1638339625,1638405869,1638430789,1638541531,1639582440,1639708592,1639860218,1640914415,1641110444,1641497175,1642415361,1642537313,1642646406,1643054860,1644127241,1644236115,1644612652,1645277543,1645361492,1645850958,1645934906,1646074749,1646239831,1646546257,1646690715,1646870781,1647127043,1647307203,1647346989,1647481757,1647510555,1647955556,1648093246,1648122176,1648410550,1648618910,1648655772,1648707649,1648730184,1649745678,1650572464,1650896704,1651011536,1651042207,1651135943,1652297948,1652602395,1652613170,1652627503,1652737199,1653233337,1653254648,1653390060,1654101554,1654491335,1654881936,1655693541,1656253315,1656315975,1657478520,1657663456,1657726562,1657736386,1657866691,1658058669,1658542985,1658564567,1658645806,1658678493,1659736996,1660098270,1660485329,1661079468,1661296524,1661344390,1661411696,1661540885]}'),(1096,'193.112.127.112','normal','',0,0,0,2,0,'{\"login\":[1624911113,1625004651]}'),(1097,'114.119.130.87','normal','',0,0,0,0,0,'[]'),(1098,'18.236.77.119','normal','',0,0,0,0,0,'[]'),(1099,'95.217.201.199','normal','',0,0,0,35,0,'{\"login\":[1624912548,1625712510,1626593981,1626751803,1626955361,1627532642,1627553742,1627597648,1631737386,1633082737,1639464534,1639515493,1639773126,1640018062,1640176658,1640273011,1640654171,1640751771,1640761930,1642251749,1642422343,1642487409,1642539493,1642952991,1643090078,1643124543,1644652473,1645266024,1645341146,1645820164,1646489032,1646693612,1646849228,1647096437,1647100987]}'),(1100,'54.186.20.100','normal','',0,0,0,0,0,'[]'),(1101,'52.36.94.247','normal','',0,0,0,0,0,'[]'),(1102,'69.64.40.160','normal','',0,0,0,1,0,'{\"login\":[1624914399]}'),(1103,'111.231.107.30','normal','',0,0,0,1,0,'{\"login\":[1624918347]}'),(1104,'34.93.36.100','normal','',0,0,0,24,0,'{\"login\":[1624920161,1625367242,1625669223,1626113258,1626385303,1626441545,1626596919,1626676665,1627808874,1628868762,1628986772,1629062365,1629164845,1630619364,1631496627,1631955626,1632320868,1632345798,1632706194,1634268693,1635426542,1635518545,1636761674,1637144922]}'),(1105,'104.131.210.58','normal','',0,0,0,8,0,'{\"login\":[1624922540,1626385120,1626710506,1627264454,1627828325,1627857079,1627943943,1628141064]}'),(1106,'134.122.68.110','normal','',0,0,0,2,0,'{\"login\":[1624924933,1626711877]}'),(1107,'207.154.206.1','normal','',0,0,0,1,0,'{\"login\":[1624927480]}'),(1108,'94.73.142.2','normal','',0,0,0,3,0,'{\"login\":[1624928970,1625219084,1625322593]}'),(1109,'81.88.52.114','normal','',0,0,0,58,0,'{\"login\":[1624930098,1625716496,1626438413,1626460447,1627116177,1627816073,1627873297,1628964832,1630258717,1630612914,1630654575,1630719560,1630953234,1631491460,1632183855,1632674547,1634272823,1634430025,1636963538,1636980544,1638310165,1640283659,1640994594,1640997542,1641283856,1641351259,1641524738,1641857292,1642102344,1643568413,1644349933,1644769777,1645066228,1645360818,1645740096,1645830293,1645912938,1646059726,1646502799,1646517176,1646607278,1646674816,1647161640,1647747972,1648292393,1648456130,1648604778,1648731743,1649488450,1649705967,1649826302,1650617152,1651291467,1651554587,1651574696,1652106742,1653400184,1653534473]}'),(1110,'62.171.159.200','normal','',0,0,0,0,0,'[]'),(1111,'202.120.234.105','normal','',0,0,0,0,0,'[]'),(1112,'207.180.203.19','normal','',0,0,0,25,1,'{\"login\":[1624931374,1625861927,1625895549,1626036846,1626083852,1626660068,1626701644,1627070401,1627080898,1627234655,1628745018,1628775431,1628882040,1628968742,1628988077,1628997235,1629547344,1629919675,1629929669,1630142588,1631374835,1631416893,1631493528,1631778738,1631937260],\"nf\":[1645634916]}'),(1113,'35.72.34.17','normal','',0,0,0,1,0,'{\"login\":[1624934087]}'),(1114,'128.14.224.177','normal','',0,0,0,3,0,'{\"login\":[1624935429,1625324069,1626063289]}'),(1115,'213.32.58.223','normal','',0,0,0,1,0,'{\"login\":[1624939819]}'),(1116,'18.205.203.131','normal','',0,0,0,1,0,'{\"login\":[1624942855]}'),(1117,'82.202.172.211','normal','',0,0,0,17,0,'{\"login\":[1624946335,1625626663,1626013631,1626379611,1626677610,1627562313,1629652330,1629757732,1630711130,1630948251,1631393457,1631470935,1631909314,1632018497,1632025050,1632329609,1632475296]}'),(1118,'34.246.120.127','normal','',0,0,0,1,0,'{\"login\":[1624951460]}'),(1119,'104.131.183.184','normal','',0,0,0,10,0,'{\"login\":[1624954682,1624966565,1626045557,1626745731,1627226936,1628146088,1629346440,1630954913,1632284584,1632296582]}'),(1120,'54.36.148.146','normal','',0,0,0,0,0,'[]'),(1121,'116.62.49.96','normal','',0,0,0,2,0,'{\"login\":[1624958434,1625215239]}'),(1122,'138.201.173.161','normal','',0,0,0,1,0,'{\"login\":[1624959063]}'),(1123,'85.214.195.246','normal','',0,0,0,6,0,'{\"login\":[1624961010,1625880745,1625930939,1626390530,1626529531,1627000845]}'),(1124,'18.236.187.54','normal','',0,0,0,0,0,'[]'),(1125,'142.93.225.137','normal','',0,0,0,5,0,'{\"login\":[1624963822,1627503755,1627986528,1632315791,1632360479]}'),(1126,'54.200.105.236','normal','',0,0,0,0,0,'[]'),(1127,'54.200.105.236','normal','',0,0,0,0,0,'[]'),(1128,'34.223.225.186','normal','',0,0,0,0,0,'[]'),(1129,'47.99.54.166','normal','',0,0,0,7,0,'{\"login\":[1624966075,1624973873,1625081220,1625177418,1625181123,1625203653,1625261544]}'),(1130,'114.119.150.186','normal','',0,0,0,0,0,'[]'),(1131,'114.119.152.142','normal','',0,0,0,0,0,'[]'),(1132,'62.210.180.176','normal','',0,0,0,0,0,'[]'),(1133,'103.3.245.113','normal','',0,0,0,3,0,'{\"login\":[1624997270,1625072249,1625291733]}'),(1134,'34.217.127.91','normal','',0,0,0,0,0,'[]'),(1135,'54.214.121.37','normal','',0,0,0,0,0,'[]'),(1136,'69.64.55.91','normal','',0,0,0,0,0,'[]'),(1137,'185.191.34.215','normal','',0,0,0,0,925,'{\"nf\":[1625067704,1625068304,1625068779,1625069636,1625070142,1625070707,1625071205,1625071736,1625072237,1625072720,1625073186,1625073725,1625074201,1625074670,1625075153,1625075652,1625076211,1625076685,1625077376,1625078287,1625078661,1625079174,1625079688,1625080257,1625080774,1625081321,1625081842,1625082415,1625083042,1625083588,1625084124,1625084717,1625085571,1625086173,1625087041,1625087963,1625088467,1625089874,1625091592,1625093127,1625094685,1625096217,1625097807,1625099251,1625100821,1625102536,1625104284,1625105878,1625107355,1625109025,1625110999,1625112670,1625114433,1625116094,1625117856,1625119523,1625121189,1625122845,1625124348,1625125841,1625127398,1625128922,1625130645,1625132320,1625137464,1625184684,1625401911,1625412579,1625473302,1625482084,1625525470,1625545177,1625555263,1625564890,1625604730,1625611926,1625617313,1625617666,1625626584,1625629308,1625632573,1625637499,1625649274,1625664706,1625671807,1625692934,1625706433,1625711336,1625716548,1625725386,1625726797,1625727993,1625730025,1625737675,1625745018,1625755573,1625756568,1625769339,1625778359,1625787692,1625797365,1625797832,1625802785,1625803777,1625815962,1625821079,1625826031,1625826259,1625834419,1625841948,1625842553,1625843716,1625847666,1625854860,1625856565,1625856920,1625861841,1625863913,1625865494,1625872876,1625873003,1625875470,1625885834,1625900469,1625902801,1625905839,1625906596,1625920556,1625923467,1625925117,1625928370,1625932446,1625934206,1625947343,1625948393,1625955397,1625963020,1625968406,1625969929,1625970395,1625971560,1625974710,1625983657,1625987386,1625991193,1625994367,1625999409,1626009251,1626026159,1626027389,1626029779,1626031284,1626037739,1626040039,1626044506,1626045503,1626053837,1626056474,1626057971,1626063811,1626072559,1626081289,1626091065,1626100376,1626103819,1626111535,1626112967,1626120275,1626121685,1626131989,1626136822,1626156132,1626162610,1626167983,1626174756,1626188253,1626189550,1626192641,1626196120,1626203297,1626207097,1626208467,1626209564,1626214667,1626215178,1626223221,1626225386,1626233692,1626236934,1626243389,1626249264,1626305477,1626336079,1626344035,1626356753,1626489487,1626511157,1626527014,1626594839,1626622894,1626746939,1626913131,1627021678,1627477615,1627582086,1627598857,1627607572,1627628904,1627650598,1627657337,1627669650,1627675174,1627693608,1627697655,1627703320,1627703990,1627706659,1627707964,1627716046,1627740886,1627745316,1627753553,1627765939,1627772843,1627773371,1627777345,1627783637,1627793961,1627794629,1627798707,1627802275,1627809278,1627813616,1627815456,1627817146,1627818332,1627822107,1627824490,1627835316,1627835694,1627837924,1627842988,1627843928,1627855297,1627855911,1627857685,1627867541,1627868429,1627872190,1627874650,1627875208,1627880202,1627887811,1627890726,1627890875,1627894787,1627896220,1627896867,1627897174,1627900357,1627902261,1627903770,1627906109,1627908740,1627911861,1627912512,1627920589,1627923102,1627925015,1627928921,1627930867,1627932299,1627933048,1627935150,1627935862,1627940645,1627942059,1627948522,1627949095,1627957521,1627958259,1627959166,1627960867,1627961046,1627963618,1627970064,1627975504,1627976912,1627982122,1627988578,1627991540,1627993396,1627994662,1628003706,1628016278,1628025678,1628028758,1628029665,1628036174,1628040258,1628042942,1628043503,1628047276,1628049573,1628072361,1628073223,1628074727,1628076606,1628079967,1628083750,1628100384,1628101670,1628112349,1628112587,1628114841,1628124137,1628131244,1628145249,1628152929,1628156883,1628172145,1628172742,1628174815,1628180218,1628185340,1628189189,1628189782,1628191506,1628198896,1628202259,1628202597,1628203584,1628209089,1628221802,1628227624,1628232518,1628243412,1628245723,1628250124,1628257852,1628258871,1628259883,1628269066,1628274603,1628275029,1628275544,1628279297,1628279597,1628283144,1628288068,1628292443,1628293159,1628299067,1628302010,1628302758,1628304663,1628305407,1628306297,1628310630,1628312072,1628318712,1628319788,1628322214,1628327074,1628330485,1628336698,1628337790,1628347005,1628350331,1628352226,1628353863,1628360430,1628360757,1628365072,1628365533,1628365890,1628368155,1628368356,1628368799,1628370515,1628373416,1628380107,1628381176,1628384977,1628390956,1628393542,1628396509,1628404628,1628405947,1628449670,1628451208,1628455192,1628456520,1628468000,1628474436,1628479126,1628481261,1628488066,1628491007,1628495963,1628500639,1628500885,1628504164,1628506947,1628510251,1628516196,1628526961,1628528080,1628528428,1628529077,1628530444,1628532218,1628535655,1628545589,1628553627,1628555452,1628566280,1628599034,1628605746,1628610803,1628622917,1628625024,1628666212,1628694434,1628704956,1628706831,1628865131,1628893926,1628908820,1628911725,1628915034,1628919454,1628924118,1628959837,1628991815,1629001141,1629032139,1629045490,1629065820,1629092515,1629106509,1629107470,1629109717,1629114284,1629117663,1629121851,1629150004,1629186548,1629205604,1629218955,1629224705,1629231687,1629235156,1629239696,1629254001,1629281950,1629332912,1629419653,1629438983,1629457144,1629480891,1629482268,1629485055,1629520845,1629534026,1629535906,1629558631,1629574983,1629578403,1629595084,1629623123,1629629416,1629636129,1629640302,1629736490,1629753758,1629755578,1629756802,1629759089,1629760946,1629794967,1629832052,1629836358,1629850956,1629859632,1629909844,1629912719,1629922393,1629923642,1629935635,1629953029,1629966305,1629971297,1630037730,1630059633,1630091841,1630101208,1630105074,1630110314,1630114003,1630114975,1630126241,1630128010,1630142793,1630158536,1630193061,1630209274,1630215775,1630239168,1630245487,1630313469,1630314721,1630341541,1630346807,1630354437,1630355481,1630374450,1630414465,1630417035,1630419110,1630435099,1630465858,1630477830,1630478961,1630494478,1630505659,1630514869,1630539589,1630568927,1630631710,1630642902,1630659449,1630679312,1630704620,1630712770,1630724846,1630737742,1630754548,1630758384,1630761040,1630763932,1630788573,1630834346,1630858511,1630861662,1630869432,1630908157,1630924144,1630925324,1630935661,1630941073,1630972619,1630988109,1631023716,1631042568,1631124506,1631126673,1631127856,1631131883,1631197129,1631198073,1631203818,1631205798,1631209880,1631212789,1631214883,1631219902,1631224113,1631247520,1631283369,1631296290,1631384529,1631398967,1631406830,1631418917,1631419219,1631456152,1631458336,1631464056,1631465932,1631493192,1631507741,1631519215,1631583247,1631607730,1631607730,1631617795,1631619511,1631634664,1631654006,1631660969,1631678782,1631681399,1631701778,1631710727,1631725453,1631725989,1631743147,1631773784,1631801092,1631837310,1631851849,1631859458,1631863184,1631864199,1631897496,1631921191,1631933033,1631934338,1631968376,1632025863,1632030150,1632064178,1632067539,1632080593,1632102336,1632102338,1632116918,1632151583,1632152779,1632166562,1632168815,1632208847,1632229993,1632233641,1632255243,1632274279,1632276704,1632283045,1632320485,1632326112,1632349165,1632352237,1632354621,1632355166,1632401478,1632402413,1632413353,1632415072,1632447921,1632448199,1632476641,1632480434,1632485766,1632520513,1632539445,1632548432,1632549096,1632574348,1632590836,1632608012,1632628244,1632632506,1632646804,1632647931,1632668656,1632689929,1632698517,1632729233,1632735442,1632739263,1632775571,1632776929,1632801394,1632819170,1632831180,1632834987,1632859444,1632883390,1632902603,1632928457,1632941097,1632982837,1632985798,1633012449,1633029379,1633043071,1633057777,1633060143,1633104647,1633105073,1633125825,1633145935,1633151587,1633162914,1633175221,1633189039,1633197611,1633215648,1633227829,1633251653,1633264416,1633294440,1633299254,1633321534,1633328128,1633328766,1633367601,1633381568,1633390479,1633403300,1633454522,1633482900,1633509734,1633511963,1633548252,1633564297,1633564825,1633571869,1633575100,1633601400,1633609603,1633612214,1633623655,1633632341,1633634285,1633638630,1633729184,1633730453,1633745351,1633746162,1633750975,1633753285,1633759735,1633766032,1633768449,1633783757,1633783764,1633785849,1633813021,1633818432,1633818970,1633823761,1633829474,1633844400,1633844843,1633860290,1633863292,1633863355,1633863451,1633864383,1633869080,1633872298,1633882191,1633886049,1633886289,1633893470,1633905366,1633913882,1633919253,1633920805,1633936960,1633943540,1633948101,1633949230,1633950216,1633951199,1633960345,1633960497,1634001116,1634004389,1634023520,1634026852,1634028457,1634040553,1634046406,1634046676,1634063098,1634283535,1634291736,1634294060,1634305175,1634305463,1634307861,1634308522,1634309246,1634318587,1634321102,1634322305,1634323032,1634323900,1634324226,1634325142,1634329139,1634330361,1634333492,1634335796,1634336980,1634340159,1634341556,1634347531,1634350740,1634352657,1634353389,1634356315,1634358700,1634360059,1634367254,1634373041,1634379963,1634381743,1634382272,1634382389,1634383116,1634383456,1634386625,1634390694,1634392672,1634402880,1634408131,1634408411,1634411316,1634414445,1634418654,1634421164,1634429480,1634433334,1634435487,1634442405,1634444018,1634447895,1634448618,1634449371,1634457183,1634458093,1634461831,1634469470,1634470515,1634476354,1634480429,1634481687,1634488197,1634491699,1634495562,1634495703,1634509360,1634516824,1634518545,1634547152,1634548201,1634548278,1634554692,1634592654,1634594277,1634610695,1634618914,1634630779,1634658198,1634667402,1634677659,1634682727,1634706691,1634714553,1634724770,1634735657,1634765917,1634775497,1634776226,1634778830,1634800871,1634811166,1634839790,1634841743,1634866356,1637643868,1637723812,1637893959,1638065396,1638169799,1638175144,1638368957,1638543967,1638607623,1638947406,1638956761,1639194987,1640236336,1640413090,1640417612,1640422655,1640423068,1641450290,1641549199,1645157060,1645233996,1645394804,1645455315,1645482716,1645709321,1646966927,1647042799,1647274510,1647305228,1647342876,1647360754,1647460395,1647598276,1647630113,1647683090,1647776106,1647920498,1648002322,1648058145,1648429840,1648493024,1648560853,1648563385,1648564428,1648565402,1648565948,1648567529,1648569089,1648570946,1648572003,1648577881,1649221504,1649224227,1650509351,1650615230,1650645204,1650701667,1650712900,1650820684,1653456762,1653477493]}'),(1138,'17.121.115.77','normal','',0,0,0,0,0,'[]'),(1139,'114.119.156.138','normal','',0,0,0,0,0,'[]'),(1140,'54.36.149.74','normal','',0,0,0,0,0,'[]'),(1141,'114.119.133.201','normal','',0,0,0,0,0,'[]'),(1142,'54.36.149.104','normal','',0,0,0,0,0,'[]'),(1143,'54.36.148.105','normal','',0,0,0,0,0,'[]'),(1144,'34.77.162.6','normal','',0,0,0,0,0,'[]'),(1145,'114.119.135.181','normal','',0,0,0,0,0,'[]'),(1146,'51.158.108.77','normal','',0,0,0,0,0,'[]'),(1147,'165.255.94.195','normal','',0,0,0,0,0,'[]'),(1148,'152.136.234.172','normal','',0,0,0,2,0,'{\"login\":[1625084913,1625211388]}'),(1149,'18.236.214.171','normal','',0,0,0,0,0,'[]'),(1150,'54.214.176.3','normal','',0,0,0,0,0,'[]'),(1151,'34.219.212.228','normal','',0,0,0,0,0,'[]'),(1152,'167.99.48.249','normal','',0,0,0,0,0,'[]'),(1153,'114.119.138.206','normal','',0,0,0,0,0,'[]'),(1154,'114.119.135.83','normal','',0,0,0,0,0,'[]'),(1155,'54.36.148.160','normal','',0,0,0,0,0,'[]'),(1156,'208.80.194.42','normal','',0,0,0,0,0,'[]'),(1157,'168.151.142.143','normal','',0,0,0,0,0,'[]'),(1158,'105.242.149.172','normal','',0,0,0,0,0,'[]'),(1159,'54.36.148.67','normal','',0,0,0,0,0,'[]'),(1160,'66.249.75.122','normal','',0,0,0,0,0,'[]'),(1161,'66.249.69.228','normal','',0,0,0,0,0,'[]'),(1162,'66.249.75.120','normal','',0,0,0,0,0,'[]'),(1163,'114.119.157.108','normal','',0,0,0,0,0,'[]'),(1164,'54.36.149.73','normal','',0,0,0,0,0,'[]'),(1165,'34.96.130.19','normal','',0,0,0,0,0,'[]'),(1166,'167.99.61.171','normal','',0,0,0,0,0,'[]'),(1167,'123.24.109.22','normal','',0,0,0,0,0,'[]'),(1168,'54.201.140.152','normal','',0,0,0,0,0,'[]'),(1169,'114.119.157.26','normal','',0,0,0,0,2,'{\"nf\":[1627428313,1628123796]}'),(1170,'114.119.154.5','normal','',0,0,0,0,0,'[]'),(1171,'107.190.136.210','normal','',0,0,0,1,0,'{\"login\":[1625202564]}'),(1172,'142.93.34.169','normal','',0,0,0,2,0,'{\"login\":[1625204190,1627018263]}'),(1173,'159.89.116.203','normal','',0,0,0,4,0,'{\"login\":[1625205815,1625293037,1625308050,1627092155]}'),(1174,'35.228.237.163','normal','',0,0,0,4,0,'{\"login\":[1625207617,1625259164,1625351875,1627486450]}'),(1175,'159.65.225.6','normal','',0,0,0,3,0,'{\"login\":[1625209532,1625304571,1626408849]}'),(1176,'34.101.97.3','normal','',0,0,0,1,0,'{\"login\":[1625211554]}'),(1177,'103.247.141.199','normal','',0,0,0,1,0,'{\"login\":[1625215568]}'),(1178,'191.101.217.70','normal','',0,0,0,0,0,'[]'),(1179,'66.249.69.230','normal','',0,0,0,0,0,'[]'),(1180,'79.98.24.7','normal','',0,0,0,1,0,'{\"login\":[1626060798]}'),(1181,'69.163.225.120','normal','',0,0,0,2,0,'{\"login\":[1625220791,1636027009]}'),(1182,'46.101.36.231','normal','',0,0,0,0,0,'[]'),(1183,'64.227.78.130','normal','',0,0,0,6,0,'{\"login\":[1625224854,1625799203,1628972595,1631610264,1632186747,1640664807]}'),(1184,'35.201.246.43','normal','',0,0,0,3,0,'{\"login\":[1625226241,1625835277,1627179943]}'),(1185,'163.44.193.60','normal','',0,0,0,1,0,'{\"login\":[1625227796]}'),(1186,'185.28.62.201','normal','',0,0,0,0,0,'[]'),(1187,'54.190.25.239','normal','',0,0,0,0,0,'[]'),(1188,'54.214.228.4','normal','',0,0,0,0,0,'[]'),(1189,'46.101.99.15','normal','',0,0,0,5,0,'{\"login\":[1625251203,1626345239,1627807112,1628039740,1631977540]}'),(1190,'112.196.72.188','normal','',0,0,0,6,0,'{\"login\":[1625253267,1627561718,1632199616,1634946298,1640009311,1640565668]}'),(1191,'64.90.36.110','normal','',0,0,0,1,0,'{\"login\":[1625255446]}'),(1192,'47.107.33.26','normal','',0,0,0,8,0,'{\"login\":[1625256633,1625276384,1625629425,1625788411,1625794794,1631684095,1634015236,1640901698]}'),(1193,'142.93.253.189','normal','',0,0,0,2,0,'{\"login\":[1625257776,1640806641]}'),(1194,'192.34.60.141','normal','',0,0,0,1,0,'{\"login\":[1625258880]}'),(1195,'188.164.198.99','normal','',0,0,0,1,0,'{\"login\":[1625260043]}'),(1196,'35.161.88.85','normal','',0,0,0,0,0,'[]'),(1197,'114.119.159.20','normal','',0,0,0,0,0,'[]'),(1198,'159.89.99.68','normal','',0,0,0,4,0,'{\"login\":[1625263848,1626366435,1631963836,1634014857]}'),(1199,'167.71.89.92','normal','',0,0,0,16,0,'{\"login\":[1625266526,1626674747,1628546058,1629318104,1631292150,1631495602,1631755509,1632598492,1636983422,1637331502,1640419972,1640460058,1640541851,1640895473,1644185214,1644236707]}'),(1200,'62.210.209.245','normal','',0,0,0,2,0,'{\"login\":[1625267838,1633849030]}'),(1201,'176.235.216.155','normal','',0,0,0,5,0,'{\"login\":[1625270582,1625274861,1625620091,1625755097,1634947497]}'),(1202,'103.109.161.51','normal','',0,0,0,1,0,'{\"login\":[1625271952]}'),(1203,'192.185.130.170','normal','',0,0,0,2,0,'{\"login\":[1625277857,1628059655]}'),(1204,'35.203.161.141','normal','',0,0,0,1,0,'{\"login\":[1625287237]}'),(1205,'159.203.176.82','normal','',0,0,0,4,0,'{\"login\":[1625288714,1632590853,1632593765,1658934336]}'),(1206,'206.72.193.170','normal','',0,0,0,1,0,'{\"login\":[1625289580]}'),(1207,'110.173.132.17','normal','',0,0,0,4,0,'{\"login\":[1625290298,1626549919,1632181339,1634923804]}'),(1208,'92.53.96.130','normal','',0,0,0,1,0,'{\"login\":[1625291933]}'),(1209,'185.129.251.33','normal','',0,0,0,1,0,'{\"login\":[1625292601]}'),(1210,'77.120.107.183','normal','',0,0,0,1,0,'{\"login\":[1625292798]}'),(1211,'75.119.211.21','normal','',0,0,0,1,0,'{\"login\":[1625295310]}'),(1212,'167.71.63.47','normal','',0,0,0,59,0,'{\"login\":[1625296466,1627833196,1632480803,1642275124,1645769656,1645952118,1646040706,1646502446,1646605113,1646616170,1646821610,1647856635,1649611074,1649692355,1650323598,1650369242,1651015263,1651018802,1651515290,1652104911,1652313465,1652521282,1652615343,1652879540,1652898602,1653019664,1653027366,1653028872,1653321937,1654006793,1654103144,1654149612,1654151491,1654362503,1654442993,1654879432,1655133896,1655734535,1656034685,1656072371,1656132682,1657068616,1657082591,1657141722,1657402681,1658073876,1658355813,1658403518,1659302780,1659312044,1659720831,1660285697,1660523990,1661292802,1661308655,1661754967,1662338614,1662769630,1663152251]}'),(1213,'69.163.224.111','normal','',0,0,0,1,0,'{\"login\":[1625298203]}'),(1214,'173.236.168.109','normal','',0,0,0,23,0,'{\"login\":[1625298465,1625891846,1626017877,1626694919,1626956219,1629180379,1629481602,1629701422,1629762068,1630111215,1630114131,1630395616,1630611623,1631469604,1631660739,1631685452,1632201928,1632696702,1634022400,1634119604,1634390150,1635398198,1637275773]}'),(1215,'5.9.124.188','normal','',0,0,0,0,0,'[]'),(1216,'23.99.97.154','normal','',0,0,0,3,0,'{\"login\":[1625300036,1632299660,1640412012]}'),(1217,'157.245.84.6','normal','',0,0,0,0,0,'[]'),(1218,'184.174.10.30','normal','',0,0,0,0,0,'[]'),(1219,'54.212.4.161','normal','',0,0,0,0,0,'[]'),(1220,'104.131.18.212','normal','',0,0,0,5,0,'{\"login\":[1625301273,1625638143,1627449863,1632296806,1632594689]}'),(1221,'34.200.33.208','normal','',0,0,0,2,0,'{\"login\":[1625301397,1625888138]}'),(1222,'173.236.184.100','normal','',0,0,0,1,0,'{\"login\":[1625301872]}'),(1223,'78.46.217.245','normal','',0,0,0,1,0,'{\"login\":[1625302547]}'),(1224,'142.93.113.173','normal','',0,0,0,5,0,'{\"login\":[1625303232,1632293520,1633564362,1636638298,1650304615]}'),(1225,'150.95.83.201','normal','',0,0,0,38,0,'{\"login\":[1625303798,1625738733,1627032734,1627926320,1628738578,1629185490,1629345675,1630191918,1630781432,1631429775,1632277883,1632339708,1632575970,1632601872,1632638602,1632707010,1633023392,1633831431,1634307752,1635709745,1637096289,1637468699,1639383941,1639793823,1640077198,1641460392,1641493220,1641931832,1642186732,1642451225,1642641367,1642678340,1642685959,1642880976,1644335114,1644499346,1644519557,1644686690]}'),(1226,'177.73.237.45','normal','',0,0,0,15,0,'{\"login\":[1625305717,1626725692,1626755578,1628122461,1629335242,1629540893,1630300615,1630586179,1630622607,1631924185,1631936630,1631972179,1632266219,1632333044,1632603061]}'),(1227,'91.222.238.1','normal','',0,0,0,3,0,'{\"login\":[1625305868,1625616378,1628056120]}'),(1228,'183.91.7.244','normal','',0,0,0,2,0,'{\"login\":[1625306755,1658807300]}'),(1229,'222.252.25.162','normal','',0,0,0,2,0,'{\"login\":[1659294787,1660001303]}'),(1230,'138.68.134.118','normal','',0,0,0,3,0,'{\"login\":[1625307446,1626002327,1626008630]}'),(1231,'92.118.160.9','normal','',0,0,0,0,0,'[]'),(1232,'162.241.232.228','normal','',0,0,0,1,0,'{\"login\":[1625309558]}'),(1233,'134.122.28.82','normal','',0,0,0,4,0,'{\"login\":[1625312443,1625807234,1631982693,1634013970]}'),(1234,'82.223.117.156','normal','',0,0,0,2,0,'{\"login\":[1625315832,1626487881]}'),(1235,'207.46.13.49','normal','',0,0,0,0,0,'[]'),(1236,'102.165.228.108','normal','',0,0,0,0,0,'[]'),(1237,'212.227.89.27','normal','',0,0,0,1,0,'{\"login\":[1625316936]}'),(1238,'47.115.77.219','normal','',0,0,0,15,0,'{\"login\":[1625322433,1626444766,1626620435,1627075636,1627220016,1629493078,1631797398,1631970912,1632220594,1632226723,1632227964,1632277426,1632381339,1633188658,1633905662]}'),(1239,'162.214.194.51','normal','',0,0,0,1,0,'{\"login\":[1625326977]}'),(1240,'91.79.58.36','normal','',0,0,0,0,0,'[]'),(1241,'89.47.58.23','normal','',0,0,0,6,0,'{\"login\":[1625329734,1626105011,1626545356,1626618506,1626703000,1627954453]}'),(1242,'103.221.223.208','normal','',0,0,0,7,0,'{\"login\":[1625333552,1625827008,1625833675,1636808385,1636831573,1637276294,1637316389]}'),(1243,'88.99.29.145','normal','',0,0,0,1,0,'{\"login\":[1625334744]}'),(1244,'114.119.133.204','normal','',0,0,0,0,0,'[]'),(1245,'155.133.142.66','normal','',0,0,0,9,0,'{\"login\":[1625338790,1626673783,1627976754,1629982673,1630207999,1630349554,1630944937,1631176955,1631725926]}'),(1246,'162.252.87.208','normal','',0,0,0,1,0,'{\"login\":[1625339736]}'),(1247,'42.193.23.126','normal','',0,0,0,0,0,'[]'),(1248,'124.123.105.173','normal','',0,0,0,1,0,'{\"login\":[1625341659]}'),(1249,'35.155.112.95','normal','',0,0,0,2,0,'{\"login\":[1625342533,1625835355]}'),(1250,'54.148.137.235','normal','',0,0,0,0,0,'[]'),(1251,'178.18.245.78','normal','',0,0,0,2,0,'{\"login\":[1625343379,1625709526]}'),(1252,'39.102.33.181','normal','',0,0,0,1,0,'{\"login\":[1625346051]}'),(1253,'52.25.206.45','normal','',0,0,0,0,0,'[]'),(1254,'18.237.64.2','normal','',0,0,0,0,0,'[]'),(1255,'143.110.176.92','normal','',0,0,0,1,0,'{\"login\":[1625347849]}'),(1256,'173.249.1.55','normal','',0,0,0,5,0,'{\"login\":[1625349003,1625366351,1626390713,1626605646,1626638264]}'),(1257,'194.247.179.164','normal','',0,0,0,15,0,'{\"login\":[1625354506,1625806820,1625947389,1625952999,1626604685,1626968990,1627559074,1627577389,1628151381,1628552898,1628872379,1629355262,1629537730,1629782546,1630294788]}'),(1258,'162.214.0.216','normal','',0,0,0,5,0,'{\"login\":[1625355421,1626345567,1626592371,1626602599,1627914868]}'),(1259,'104.198.1.26','normal','',0,0,0,11,0,'{\"login\":[1625359050,1625761688,1625984795,1625985846,1627284014,1629202079,1630379719,1631473153,1635707330,1636823067,1636886047]}'),(1260,'54.36.149.13','normal','',0,0,0,0,0,'[]'),(1261,'66.175.213.47','normal','',0,0,0,1,0,'{\"login\":[1625360855]}'),(1262,'5.135.72.184','normal','',0,0,0,6,0,'{\"login\":[1625369027,1626186403,1626433886,1627573378,1629010900,1629677935]}'),(1263,'37.139.13.163','normal','',0,0,0,58,0,'{\"login\":[1625369925,1625390868,1626441742,1626521496,1626555873,1627258435,1628043825,1628073333,1629332810,1629342574,1629651489,1629707757,1630185091,1630584887,1631713088,1631750415,1632597103,1633800680,1634321810,1634494623,1634945361,1635749769,1636816880,1636840667,1636929819,1637322540,1638334083,1638495570,1639516370,1639527889,1640127615,1640449732,1640549970,1640672742,1640923030,1640926219,1641518656,1643766079,1644204309,1644274356,1644285397,1644584563,1644608847,1645078841,1645834938,1646094672,1646922463,1647587711,1648065748,1648607259,1648652928,1649741977,1650264182,1651390327,1652257378,1653396283,1653626551,1653761465]}'),(1264,'136.243.71.5','normal','',0,0,0,1,0,'{\"login\":[1625370827]}'),(1265,'139.162.239.166','normal','',0,0,0,1,0,'{\"login\":[1625374444]}'),(1266,'40.69.160.139','normal','',0,0,0,17,0,'{\"login\":[1625375351,1625948498,1629059246,1631479080,1632972564,1633149303,1633155099,1633694404,1634879034,1635411428,1637458281,1639768398,1639771548,1645762994,1646641235,1647302783,1648708591]}'),(1267,'192.241.147.185','normal','',0,0,0,2,0,'{\"login\":[1625379887,1625950454]}'),(1268,'66.249.75.107','normal','',0,0,0,0,0,'[]'),(1269,'66.249.69.252','normal','',0,0,0,0,0,'[]'),(1270,'66.249.75.105','normal','',0,0,0,0,0,'[]'),(1271,'82.223.245.41','normal','',0,0,0,1,0,'{\"login\":[1625389110]}'),(1272,'78.47.201.143','normal','',0,0,0,14,0,'{\"login\":[1625392670,1625998186,1626020579,1626383750,1626572328,1627139358,1627211785,1627526825,1628761636,1628929282,1629078062,1629792868,1629939062,1630238212]}'),(1273,'54.227.85.77','normal','',0,0,0,2,0,'{\"login\":[1625393573,1626059978]}'),(1274,'95.217.3.203','normal','',0,0,0,68,0,'{\"login\":[1625394505,1625691309,1625954666,1626012262,1626375086,1626459195,1626466223,1626471930,1626632345,1627015397,1628568820,1628866381,1628886925,1629305059,1629361248,1630827230,1630832795,1630907673,1631278787,1631347240,1631902491,1632177936,1632208694,1632591827,1632623446,1633641127,1635405205,1638332490,1638496269,1638616209,1638730620,1639875743,1640074485,1640591239,1640625744,1640886069,1641456025,1641702232,1641915342,1641942339,1641954226,1642174516,1642857969,1643522213,1643556980,1645329699,1646020436,1646495728,1646499091,1646589618,1646706700,1646823888,1647709918,1647711896,1647816856,1647845229,1647929931,1648132428,1648280596,1648414270,1649690248,1650053034,1650263710,1650519754,1651937499,1652796157,1652796903,1652913865]}'),(1275,'83.220.174.114','normal','',0,0,0,1,0,'{\"login\":[1625395461]}'),(1276,'82.165.111.93','normal','',0,0,0,1,0,'{\"login\":[1625398244]}'),(1277,'207.244.224.60','normal','',0,0,0,3,0,'{\"login\":[1625400149,1625661665,1625704627]}'),(1278,'51.210.111.113','normal','',0,0,0,3,0,'{\"login\":[1625401047,1625685023,1625836956]}'),(1279,'58.97.8.18','normal','',0,0,0,1,0,'{\"login\":[1625402894]}'),(1280,'114.119.146.129','normal','',0,0,0,0,0,'[]'),(1281,'66.249.65.133','normal','',0,0,0,0,0,'[]'),(1282,'34.216.64.211','normal','',0,0,0,0,0,'[]'),(1283,'34.216.10.170','normal','',0,0,0,0,0,'[]'),(1284,'35.167.75.125','normal','',0,0,0,0,0,'[]'),(1285,'35.160.186.1','normal','',0,0,0,0,0,'[]'),(1286,'54.218.29.8','normal','',0,0,0,0,0,'[]'),(1287,'34.217.120.37','normal','',0,0,0,0,0,'[]'),(1288,'5.255.231.165','normal','',0,0,0,0,8,'{\"nf\":[1625618113,1625632282,1625639614,1625646791,1625663477,1625896612,1625905011,1625928467]}'),(1289,'185.220.101.193','normal','',0,0,0,0,1,'{\"nf\":[1625455366]}'),(1290,'185.220.101.130','normal','',0,0,0,0,0,'[]'),(1291,'185.220.100.251','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1655213388,0,1655213088,0,21,'{\"nf\":[1625455368,1655213051,1655213054,1655213057,1655213058,1655213059,1655213061,1655213063,1655213064,1655213067,1655213069,1655213070,1655213073,1655213075,1655213076,1655213078,1655213079,1655213081,1655213082,1655213084,1655213088]}'),(1292,'207.244.70.35','normal','',0,0,0,0,0,'[]'),(1293,'185.100.87.41','normal','',0,0,0,0,1,'{\"nf\":[1625455374]}'),(1294,'192.160.102.169','normal','',0,0,0,0,1,'{\"nf\":[1625455377]}'),(1295,'103.89.89.253','normal','',0,0,0,0,0,'[]'),(1296,'75.119.129.90','normal','',0,0,0,0,1,'{\"nf\":[1634536528]}'),(1297,'102.65.161.5','normal','',0,0,0,0,0,'[]'),(1298,'197.95.151.79','normal','',0,0,0,0,0,'[]'),(1299,'66.249.65.136','normal','',0,0,0,0,0,'[]'),(1300,'114.119.133.165','normal','',0,0,0,0,0,'[]'),(1301,'102.132.242.149','normal','',0,0,0,0,0,'[]'),(1302,'105.9.32.183','normal','',0,0,0,0,2,'{\"nf\":[1625487462,1625487471]}'),(1303,'54.36.148.150','normal','',0,0,0,0,0,'[]'),(1304,'157.230.214.131','normal','',0,0,0,1,0,'{\"login\":[1626081150]}'),(1305,'157.230.214.131','normal','',0,0,0,0,0,'[]'),(1306,'52.36.176.166','normal','',0,0,0,0,0,'[]'),(1307,'66.249.64.90','normal','',0,0,0,0,0,'[]'),(1308,'54.189.44.13','normal','',0,0,0,0,0,'[]'),(1309,'34.215.18.181','normal','',0,0,0,0,0,'[]'),(1310,'34.217.193.147','normal','',0,0,0,0,0,'[]'),(1311,'34.77.162.4','normal','',0,0,0,0,0,'[]'),(1312,'150.95.9.158','normal','',0,0,0,0,0,'[]'),(1313,'93.113.111.100','normal','',0,0,0,2,0,'{\"login\":[1633561893,1661073539]}'),(1314,'136.243.212.93','normal','',0,0,0,0,4,'{\"nf\":[1625549665,1625552055,1642347235,1642349535]}'),(1315,'188.166.113.91','normal','',0,0,0,0,0,'[]'),(1316,'40.77.167.48','normal','',0,0,0,0,0,'[]'),(1317,'207.46.13.1','normal','',0,0,0,0,0,'[]'),(1318,'138.197.4.141','normal','',0,0,0,3,0,'{\"login\":[1627152355,1644358925,1644376476]}'),(1319,'35.188.119.145','normal','',0,0,0,1,0,'{\"login\":[1626092390]}'),(1320,'45.64.54.158','normal','',0,0,0,8,0,'{\"login\":[1625591813,1626416889,1629278385,1631620564,1631701601,1633627708,1634428947,1637400338]}'),(1321,'178.128.76.96','normal','',0,0,0,2,0,'{\"login\":[1626436203,1627053748]}'),(1322,'88.99.71.3','normal','',0,0,0,0,0,'[]'),(1323,'35.187.151.152','normal','',0,0,0,0,0,'[]'),(1324,'199.34.20.37','normal','',0,0,0,1,0,'{\"login\":[1626071828]}'),(1325,'165.22.255.242','normal','',0,0,0,12,0,'{\"login\":[1625779211,1626547476,1627149952,1628028645,1628878406,1628945142,1629331209,1630577262,1630641284,1631919549,1632097300,1632478616]}'),(1326,'51.77.157.167','normal','',0,0,0,0,0,'[]'),(1327,'222.124.196.118','normal','',0,0,0,0,0,'[]'),(1328,'134.209.144.86','normal','',0,0,0,0,0,'[]'),(1329,'51.254.46.51','normal','',0,0,0,0,0,'[]'),(1330,'114.119.133.251','normal','',0,0,0,0,0,'[]'),(1331,'148.251.8.250','normal','',0,0,0,0,0,'[]'),(1332,'124.158.12.202','normal','',0,0,0,4,0,'{\"login\":[1625628771,1625824358,1628017214,1634930079]}'),(1333,'64.90.40.100','normal','',0,0,0,3,0,'{\"login\":[1625716835,1625815561,1625829575]}'),(1334,'40.77.167.36','normal','',0,0,0,0,0,'[]'),(1335,'8.129.20.30','normal','',0,0,0,0,0,'[]'),(1336,'212.110.92.155','normal','',0,0,0,44,0,'{\"login\":[1625580786,1625719417,1625921456,1627498507,1629118735,1630109758,1630144203,1630610333,1631691582,1631925434,1632094002,1632193366,1632707840,1633797872,1634280990,1634962512,1635374999,1635781943,1637335677,1637460588,1638458097,1638518932,1639019883,1639042107,1639247908,1644643048,1646095613,1651241230,1651503615,1652660888,1652713257,1654233119,1654964760,1655680246,1657405844,1657470679,1657724043,1658232414,1659812899,1660011879,1660092990,1662000658,1662898202,1663148034]}'),(1337,'62.109.25.126','normal','',0,0,0,0,0,'[]'),(1338,'54.162.22.215','normal','',0,0,0,1,0,'{\"login\":[1625582328]}'),(1339,'167.71.228.44','normal','',0,0,0,6,0,'{\"login\":[1625583907,1629321174,1634343716,1638774227,1640356282,1641481837]}'),(1340,'199.192.24.32','normal','',0,0,0,4,0,'{\"login\":[1625590165,1625661788,1625988837,1626056575]}'),(1341,'110.50.85.203','normal','',0,0,0,2,0,'{\"login\":[1625593354,1627036079]}'),(1342,'185.208.182.123','normal','',0,0,0,1,0,'{\"login\":[1625594831]}'),(1343,'134.209.233.173','normal','',0,0,0,1,0,'{\"login\":[1625596348]}'),(1344,'58.177.156.100','normal','',0,0,0,3,0,'{\"login\":[1625596500,1625825386,1626367889]}'),(1345,'142.93.218.96','normal','',0,0,0,1,0,'{\"login\":[1625598064]}'),(1346,'128.199.246.51','normal','',0,0,0,1,0,'{\"login\":[1625598128]}'),(1347,'103.118.16.198','normal','',0,0,0,1,0,'{\"login\":[1625599818]}'),(1348,'178.128.247.244','normal','',0,0,0,19,0,'{\"login\":[1625599818,1627245495,1628549968,1629678796,1631973449,1632547093,1635662553,1637461975,1639749868,1640343272,1641408600,1641927110,1647178248,1647361920,1650419284,1650595895,1650635985,1651392155,1651741118]}'),(1349,'160.153.249.218','normal','',0,0,0,1,0,'{\"login\":[1625600599]}'),(1350,'217.235.38.175','normal','',0,0,0,1,0,'{\"login\":[1625601880]}'),(1351,'152.228.170.248','normal','',0,0,0,1,0,'{\"login\":[1625602411]}'),(1352,'34.218.81.95','normal','',0,0,0,0,0,'[]'),(1353,'103.139.202.83','normal','',0,0,0,1,0,'{\"login\":[1625603667]}'),(1354,'52.12.98.253','normal','',0,0,0,0,0,'[]'),(1355,'148.251.78.109','normal','',0,0,0,3,0,'{\"login\":[1625605273,1625983719,1625987836]}'),(1356,'188.68.47.96','normal','',0,0,0,2,0,'{\"login\":[1625605310,1627210039]}'),(1357,'64.90.48.197','normal','',0,0,0,3,0,'{\"login\":[1625606315,1627151041,1628040782]}'),(1358,'5.196.91.241','normal','',0,0,0,4,0,'{\"login\":[1625606670,1625653309,1625875342,1626040539]}'),(1359,'103.233.0.218','normal','',0,0,0,3,0,'{\"login\":[1625608044,1626369664,1626729778]}'),(1360,'192.185.130.172','normal','',0,0,0,15,0,'{\"login\":[1625609362,1626533623,1626596783,1627172707,1627438933,1632194941,1632281410,1633993664,1634006457,1634950557,1636839083,1637953351,1637965030,1638236399,1638711748]}'),(1361,'173.212.219.223','normal','',0,0,0,6,0,'{\"login\":[1625609523,1626549061,1627912127,1631683192,1631693722,1633999446]}'),(1362,'159.65.76.38','normal','',0,0,0,72,0,'{\"login\":[1625614433,1626411602,1626591128,1627599027,1627650060,1627831641,1628766749,1628950393,1628954391,1629682282,1631439423,1631457938,1632045592,1632317053,1632323867,1632581163,1633145577,1633914482,1634123825,1634353553,1635636851,1639494690,1639952890,1640294992,1640683322,1640744468,1641046231,1641203040,1641388471,1641458936,1641490049,1641816877,1642052002,1643051688,1643053284,1644140928,1645246157,1645905420,1646055925,1646587871,1646634026,1646745196,1647005853,1647134358,1647368118,1647657947,1648228164,1649071598,1649568423,1649944680,1650186088,1651589181,1651983735,1652371315,1653227452,1653383681,1653771527,1653781689,1654124890,1654212396,1654425994,1654493124,1654889861,1654901475,1655058654,1656050533,1657263402,1658055157,1658167115,1658969805,1659363666,1660474403]}'),(1363,'163.172.33.228','normal','',0,0,0,6,0,'{\"login\":[1625617074,1632500694,1632522712,1632711319,1633896635,1634505849]}'),(1364,'132.145.48.174','normal','',0,0,0,2,0,'{\"login\":[1625621091,1626727725]}'),(1365,'206.189.89.148','normal','',0,0,0,3,0,'{\"login\":[1625622506,1626424179,1629736292]}'),(1366,'138.197.131.66','normal','',0,0,0,5,0,'{\"login\":[1625624077,1627845854,1632300630,1633551508,1634942684]}'),(1367,'89.47.58.158','normal','',0,0,0,2,0,'{\"login\":[1625626488,1627058843]}'),(1368,'67.205.12.216','normal','',0,0,0,2,0,'{\"login\":[1625628020,1627188056]}'),(1369,'95.216.221.91','normal','',0,0,0,59,0,'{\"login\":[1625629129,1626053951,1626125336,1627266035,1628925504,1628939389,1629183288,1629308123,1629316542,1630233951,1630397037,1631237900,1631241245,1632256192,1632491362,1632605218,1634510259,1635715192,1637272961,1637470138,1637660351,1637671245,1638592951,1638860798,1639386362,1640024692,1640173393,1640501216,1640623701,1641068359,1641144764,1641172949,1641173686,1641178090,1641230084,1641485853,1641726955,1641913807,1642090100,1642285084,1642360220,1642425490,1643521065,1644482390,1645839613,1646291057,1646314847,1646317211,1646630005,1646845561,1646916612,1646919534,1646951383,1647001412,1647186573,1647566772,1647591711,1647700826,1648498821]}'),(1370,'134.209.147.60','normal','',0,0,0,1,0,'{\"login\":[1625630102]}'),(1371,'165.22.35.21','normal','',0,0,0,1,0,'{\"login\":[1625630691]}'),(1372,'116.12.48.101','normal','',0,0,0,5,0,'{\"login\":[1625631335,1626611086,1627221042,1642202363,1650355406]}'),(1373,'34.90.92.66','normal','',0,0,0,12,0,'{\"login\":[1625631557,1625815630,1626019255,1626093461,1626129921,1626396115,1626721547,1626751060,1627137715,1627227801,1627493657,1627876553]}'),(1374,'144.126.223.177','normal','',0,0,0,49,0,'{\"login\":[1625632847,1625953818,1628592102,1629478420,1629912823,1629971359,1630098237,1630912279,1638725268,1639782068,1639956805,1640197404,1641537022,1645951235,1648151492,1650490056,1650841659,1650992669,1651170557,1651185307,1651516176,1651726411,1651732586,1652381227,1652595968,1652936361,1653784467,1654282479,1654313333,1654382718,1654937532,1655152389,1655421510,1655547501,1656570157,1656893477,1657434421,1657503964,1657864795,1658344255,1658507431,1658983685,1659387487,1659775085,1661238504,1661533268,1661640327,1661729253,1663094011]}'),(1375,'162.214.108.192','normal','',0,0,0,2,0,'{\"login\":[1625633275,1629018383]}'),(1376,'52.8.62.10','normal','',0,0,0,2,0,'{\"login\":[1625634137,1625927226]}'),(1377,'190.229.238.225','normal','',0,0,0,2,0,'{\"login\":[1625634607,1626009644]}'),(1378,'54.36.148.70','normal','',0,0,0,0,0,'[]'),(1379,'54.36.148.14','normal','',0,0,0,0,0,'[]'),(1380,'164.68.100.64','normal','',0,0,0,13,0,'{\"login\":[1625635465,1626607581,1626974506,1627531693,1627962892,1628588999,1628785953,1628931806,1629154394,1629527865,1629967384,1631943463,1632196236]}'),(1381,'161.35.30.72','normal','',0,0,0,1,0,'{\"login\":[1625636559]}'),(1382,'149.28.138.100','normal','',0,0,0,2,0,'{\"login\":[1625636823,1626128999]}'),(1383,'18.136.96.125','normal','',0,0,0,1,0,'{\"login\":[1625637402]}'),(1384,'40.77.167.28','normal','',0,0,0,0,0,'[]'),(1385,'185.78.164.87','normal','',0,0,0,1,0,'{\"login\":[1625639085]}'),(1386,'157.55.39.46','normal','',0,0,0,0,0,'[]'),(1387,'157.55.39.85','normal','',0,0,0,0,0,'[]'),(1388,'96.125.170.234','normal','',0,0,0,1,0,'{\"login\":[1625641221]}'),(1389,'66.249.64.173','normal','',0,0,0,0,0,'[]'),(1390,'66.249.64.94','normal','',0,0,0,0,0,'[]'),(1391,'66.249.64.171','normal','',0,0,0,0,0,'[]'),(1392,'213.180.203.45','normal','',0,0,0,0,3,'{\"nf\":[1625757669,1625899900,1625905793]}'),(1393,'187.51.127.28','normal','',0,0,0,25,0,'{\"login\":[1625642656,1625762696,1625830473,1628984759,1629018952,1629280163,1629970556,1630205851,1631227164,1635643611,1636753209,1637461264,1637712966,1637723352,1638145082,1638192839,1638243517,1638252726,1638854409,1639025164,1639320631,1639725379,1640512098,1640871354,1641093522]}'),(1394,'148.72.232.125','normal','',0,0,0,0,0,'[]'),(1395,'213.180.203.178','normal','',0,0,0,0,1,'{\"nf\":[1625643364]}'),(1396,'139.196.187.160','normal','',0,0,0,8,0,'{\"login\":[1625644134,1625756404,1625859851,1626119577,1626350926,1626743394,1629001964,1629137865]}'),(1397,'192.3.105.119','normal','',0,0,0,0,0,'[]'),(1398,'205.234.152.104','normal','',0,0,0,0,1,'{\"nf\":[1625647938]}'),(1399,'3.93.211.92','normal','',0,0,0,1,0,'{\"login\":[1625648291]}'),(1400,'213.108.241.243','normal','',0,0,0,2,0,'{\"login\":[1625649776,1626091058]}'),(1401,'54.38.73.237','normal','',0,0,0,19,0,'{\"login\":[1625649809,1625664902,1625766362,1625967453,1626109581,1626118339,1627589460,1628154456,1629133575,1629148628,1629705229,1648396625,1648460709,1648599113,1648695088,1649248594,1649479872,1650125146,1654490149]}'),(1402,'88.99.57.41','normal','',0,0,0,1,0,'{\"login\":[1625650629]}'),(1403,'92.51.130.74','normal','',0,0,0,1,0,'{\"login\":[1625651266]}'),(1404,'139.196.88.192','normal','',0,0,0,2,0,'{\"login\":[1625653545,1634937963]}'),(1405,'177.101.148.233','normal','',0,0,0,1,0,'{\"login\":[1625655485]}'),(1406,'162.144.78.149','normal','',0,0,0,3,0,'{\"login\":[1625657545,1625836289,1627087603]}'),(1407,'147.135.114.242','normal','',0,0,0,2,0,'{\"login\":[1625658496,1626588793]}'),(1408,'180.97.237.9','normal','',0,0,0,0,0,'[]'),(1409,'114.119.154.63','normal','',0,0,0,0,0,'[]'),(1410,'194.147.142.41','normal','',0,0,0,3,0,'{\"login\":[1625662814,1626050544,1626541096]}'),(1411,'114.119.132.153','normal','',0,0,0,0,0,'[]'),(1412,'183.181.98.160','normal','',0,0,0,3,0,'{\"login\":[1625665797,1626069311,1626568315]}'),(1413,'192.163.197.220','normal','',0,0,0,9,0,'{\"login\":[1625666701,1625841529,1626092485,1626352839,1626940818,1627167285,1627566320,1640552421,1640592573]}'),(1414,'114.119.135.35','normal','',0,0,0,0,0,'[]'),(1415,'67.205.157.14','normal','',0,0,0,10,0,'{\"login\":[1625674153,1626685378,1627588104,1627871676,1628741761,1628839678,1628910396,1628970018,1630225382,1630341748]}'),(1416,'138.68.154.69','normal','',0,0,0,4,0,'{\"login\":[1625675177,1626371989,1627096716,1627887002]}'),(1417,'13.233.237.6','normal','',0,0,0,1,0,'{\"login\":[1625678300]}'),(1418,'114.119.149.195','normal','',0,0,0,0,0,'[]'),(1419,'165.22.93.230','normal','',0,0,0,1,0,'{\"login\":[1625679296]}'),(1420,'103.75.184.188','normal','',0,0,0,5,0,'{\"login\":[1625680459,1626477728,1627134363,1627240289,1628557818]}'),(1421,'27.115.124.70','normal','',0,0,0,0,0,'[]'),(1422,'114.119.153.242','normal','',0,0,0,0,0,'[]'),(1423,'34.212.167.171','normal','',0,0,0,0,0,'[]'),(1424,'54.36.148.173','normal','',0,0,0,0,0,'[]'),(1425,'67.205.12.204','normal','',0,0,0,9,0,'{\"login\":[1625699874,1625752032,1625867998,1626509279,1626544275,1627194170,1628889373,1630587453,1630813053]}'),(1426,'69.163.224.112','normal','',0,0,0,17,0,'{\"login\":[1625700931,1625759033,1625780571,1627860304,1628707908,1628811685,1629309644,1630226121,1631985563,1633719940,1636654078,1636843902,1637159156,1637655144,1637740417,1637924308,1637932334]}'),(1427,'193.169.255.121','normal','',0,0,0,0,1,'{\"nf\":[1625703251]}'),(1428,'104.248.233.244','normal','',0,0,0,27,0,'{\"login\":[1625705604,1625832053,1625946240,1626130848,1626189145,1626446017,1626460649,1626470695,1626557177,1627126060,1627523974,1627567199,1627934346,1629360494,1629980230,1629983493,1630322721,1630359017,1630623913,1630816975,1632684507,1633623068,1634557748,1635391681,1635619636,1635801953,1636672702]}'),(1429,'13.36.171.62','normal','',0,0,0,2,0,'{\"login\":[1625706646,1625708559]}'),(1430,'157.245.103.73','normal','',0,0,0,4,0,'{\"login\":[1625707601,1630269067,1631784344,1633524377]}'),(1431,'91.134.254.82','normal','',0,0,0,1,0,'{\"login\":[1625711719]}'),(1432,'40.77.167.40','normal','',0,0,0,0,0,'[]'),(1433,'93.113.111.153','normal','',0,0,0,1,0,'{\"login\":[1625714100]}'),(1434,'40.77.167.99','normal','',0,0,0,0,0,'[]'),(1435,'183.90.238.16','normal','',0,0,0,1,0,'{\"login\":[1625715494]}'),(1436,'161.35.208.18','normal','',0,0,0,16,0,'{\"login\":[1625717512,1625808648,1626162767,1626422786,1626483469,1626623360,1626644277,1626680497,1627113491,1627940430,1628748223,1629968968,1630819321,1631247536,1631655336,1632032061]}'),(1437,'173.236.224.141','normal','',0,0,0,2,0,'{\"login\":[1625717949,1626496582]}'),(1438,'51.210.109.41','normal','',0,0,0,1,0,'{\"login\":[1625719045]}'),(1439,'162.241.115.161','normal','',0,0,0,1,0,'{\"login\":[1625720413]}'),(1440,'165.227.201.208','normal','',0,0,0,8,0,'{\"login\":[1625721449,1626594978,1630928503,1630950739,1631991185,1633334842,1635778448,1639902014]}'),(1441,'112.78.4.131','normal','',0,0,0,1,0,'{\"login\":[1625722698]}'),(1442,'91.121.158.177','normal','',0,0,0,1,0,'{\"login\":[1625723411]}'),(1443,'52.37.131.80','normal','',0,0,0,2,0,'{\"login\":[1625723962,1626337074]}'),(1444,'105.225.42.172','normal','',0,0,0,0,0,'[]'),(1445,'166.62.89.169','normal','',0,0,0,2,0,'{\"login\":[1625728209,1627459469]}'),(1446,'41.71.19.55','normal','',0,0,0,0,0,'[]'),(1447,'157.245.216.154','normal','',0,0,0,0,0,'[]'),(1448,'8.131.70.186','normal','',0,0,0,4,0,'{\"login\":[1625731399,1626947834,1633849612,1638438212]}'),(1449,'67.205.11.196','normal','',0,0,0,4,0,'{\"login\":[1625732902,1625833313,1626343626,1628089031]}'),(1450,'176.9.78.112','normal','',0,0,0,9,0,'{\"login\":[1625734902,1626026811,1626489518,1626550606,1627271688,1627517559,1627829973,1627937721,1627980949]}'),(1451,'143.110.224.182','normal','',0,0,0,35,0,'{\"login\":[1625735799,1625797898,1627977462,1635477099,1638271743,1639731629,1639823570,1640750868,1641348432,1642848201,1643043189,1643478655,1644447445,1645452628,1645787421,1646027110,1646304693,1646430223,1648399375,1651127588,1651428283,1651722700,1652718399,1653027104,1654144565,1654647030,1655183700,1655225135,1655237721,1655541752,1656205769,1656751893,1656856927,1657394781,1657720690]}'),(1452,'150.109.51.168','normal','',0,0,0,3,0,'{\"login\":[1625737727,1625777813,1626421393]}'),(1453,'104.155.119.227','normal','',0,0,0,7,0,'{\"login\":[1625739723,1626172757,1626482203,1626511540,1626606621,1627281933,1627533626]}'),(1454,'117.6.44.214','normal','',0,0,0,2,0,'{\"login\":[1625739856,1627463228]}'),(1455,'117.20.6.180','normal','',0,0,0,2,0,'{\"login\":[1625740715,1625863623]}'),(1456,'172.247.250.138','normal','',0,0,0,0,0,'[]'),(1457,'34.67.176.220','normal','',0,0,0,10,0,'{\"login\":[1625743639,1625838540,1626373635,1626590158,1626648214,1626715259,1627282979,1627519364,1627593540,1629140014]}'),(1458,'133.18.66.114','normal','',0,0,0,1,0,'{\"login\":[1625744616]}'),(1459,'208.113.171.183','normal','',0,0,0,2,0,'{\"login\":[1625747110,1625812642]}'),(1460,'51.79.156.198','normal','',0,0,0,1,0,'{\"login\":[1625749121]}'),(1461,'68.183.101.34','normal','',0,0,0,1,0,'{\"login\":[1625749191]}'),(1462,'178.128.113.244','normal','',0,0,0,5,0,'{\"login\":[1625751101,1626507706,1626581345,1632118114,1632291835]}'),(1463,'197.94.231.218','normal','',0,0,0,0,0,'[]'),(1464,'159.253.41.162','normal','',0,0,0,1,0,'{\"login\":[1625753074]}'),(1465,'68.183.237.98','normal','',0,0,0,2,0,'{\"login\":[1625754639,1626635315]}'),(1466,'138.68.191.9','normal','',0,0,0,6,0,'{\"login\":[1625757273,1627024762,1628780671,1631712414,1632484980,1637379937]}'),(1467,'129.146.235.45','normal','',0,0,0,2,0,'{\"login\":[1625759893,1626072828]}'),(1468,'167.99.207.228','normal','',0,0,0,1,0,'{\"login\":[1625760816]}'),(1469,'104.248.144.242','normal','',0,0,0,40,0,'{\"login\":[1625761561,1628946420,1629920442,1631700478,1632206073,1635376140,1635841047,1640618940,1640807428,1645777777,1646527893,1647378381,1647682692,1647886542,1649532775,1650419615,1650579530,1650596209,1652632346,1652719195,1652793940,1653214734,1653216702,1653309751,1653758677,1654518502,1655029017,1655579759,1655692200,1656020351,1656575008,1656804461,1656879115,1657041723,1657118139,1657671988,1658051652,1658185083,1658261455,1659811739]}'),(1470,'193.93.237.95','normal','',0,0,0,7,0,'{\"login\":[1625762597,1627601756,1630096795,1630328891,1630799833,1632556402,1634129297]}'),(1471,'139.59.154.27','normal','',0,0,0,23,0,'{\"login\":[1625764420,1625951329,1626962763,1627046404,1627257631,1628804145,1628921695,1629125426,1629189200,1629496314,1629717963,1630605689,1631994401,1632034053,1632034693,1632099024,1632630119,1632685774,1633591951,1633601183,1634341605,1634447741,1635667024]}'),(1472,'68.183.236.242','normal','',0,0,0,1,0,'{\"login\":[1625766119]}'),(1473,'65.21.148.16','normal','',0,0,0,0,2,'{\"nf\":[1625767261,1625881083]}'),(1474,'198.12.227.3','normal','',0,0,0,4,0,'{\"login\":[1625769536,1625896473,1626378364,1626546669]}'),(1475,'138.197.100.108','normal','',0,0,0,2,0,'{\"login\":[1626576464,1629238598]}'),(1476,'70.36.15.82','normal','',0,0,0,11,0,'{\"login\":[1625775097,1626084681,1626175462,1626558430,1629489847,1629734642,1629773774,1631314062,1632015882,1632218727,1632710500]}'),(1477,'207.148.120.234','normal','',0,0,0,1,0,'{\"login\":[1625776435]}'),(1478,'125.212.221.22','normal','',0,0,0,1,0,'{\"login\":[1625778972]}'),(1479,'102.65.187.55','normal','',0,0,0,0,0,'[]'),(1480,'185.86.77.163','normal','',0,0,0,2,0,'{\"login\":[1625780703,1640691795]}'),(1481,'40.77.167.100','normal','',0,0,0,0,0,'[]'),(1482,'104.197.204.112','normal','',0,0,0,2,0,'{\"login\":[1625782005,1625796303]}'),(1483,'104.199.41.243','normal','',0,0,0,1,0,'{\"login\":[1625782427]}'),(1484,'77.233.7.222','normal','',0,0,0,2,0,'{\"login\":[1625783363,1626046384]}'),(1485,'68.183.192.217','normal','',0,0,0,4,0,'{\"login\":[1625784426,1625806669,1629285712,1631688793]}'),(1486,'138.68.149.180','normal','',0,0,0,1,0,'{\"login\":[1625784757]}'),(1487,'54.251.124.59','normal','',0,0,0,2,0,'{\"login\":[1625786197,1626656112]}'),(1488,'54.36.148.116','normal','',0,0,0,0,0,'[]'),(1489,'192.81.214.168','normal','',0,0,0,8,0,'{\"login\":[1625790527,1626510462,1627435660,1629235420,1631695219,1632568167,1636633209,1640256738]}'),(1490,'76.72.172.166','normal','',0,0,0,0,0,'[]'),(1491,'107.180.103.185','normal','',0,0,0,7,0,'{\"login\":[1625792519,1626350836,1632297763,1632929349,1650303646,1653994973,1653995211]}'),(1492,'114.119.149.118','normal','',0,0,0,0,0,'[]'),(1493,'103.74.54.192','normal','',0,0,0,9,0,'{\"login\":[1625794641,1626380996,1626654141,1627142347,1627843588,1652197780,1652242051,1652837484,1653629286]}'),(1494,'34.221.227.153','normal','',0,0,0,0,0,'[]'),(1495,'54.184.103.156','normal','',0,0,0,0,0,'[]'),(1496,'52.207.208.229','normal','',0,0,0,1,0,'{\"login\":[1625798340]}'),(1497,'213.159.209.230','normal','',0,0,0,1,0,'{\"login\":[1625800413]}'),(1498,'202.61.241.232','normal','',0,0,0,12,0,'{\"login\":[1625801275,1625861030,1626023281,1626087886,1626474815,1626477901,1626696245,1630387872,1631287423,1631366447,1631641410,1632037325]}'),(1499,'35.229.136.14','normal','',0,0,0,1,0,'{\"login\":[1625801594]}'),(1500,'34.83.69.158','normal','',0,0,0,3,0,'{\"login\":[1625802143,1626580001,1627046644]}'),(1501,'207.154.212.155','normal','',0,0,0,2,0,'{\"login\":[1625802726,1632169346]}'),(1502,'157.230.118.118','normal','',0,0,0,2,0,'{\"login\":[1625803865,1625821089]}'),(1503,'152.67.52.194','normal','',0,0,0,1,0,'{\"login\":[1625804400]}'),(1504,'162.214.54.112','normal','',0,0,0,4,0,'{\"login\":[1625804895,1626066030,1626949661,1628061427]}'),(1505,'54.36.148.81','normal','',0,0,0,0,0,'[]'),(1506,'114.119.129.36','normal','',0,0,0,0,0,'[]'),(1507,'158.101.145.176','normal','',0,0,0,1,0,'{\"login\":[1625812000]}'),(1508,'35.232.89.133','normal','',0,0,0,1,0,'{\"login\":[1625812147]}'),(1509,'62.28.184.124','normal','',0,0,0,4,0,'{\"login\":[1625813346,1626340526,1626554322,1627918513]}'),(1510,'54.36.149.85','normal','',0,0,0,0,0,'[]'),(1511,'54.36.148.242','normal','',0,0,0,0,0,'[]'),(1512,'86.57.254.101','normal','',0,0,0,2,0,'{\"login\":[1625814122,1626424923]}'),(1513,'62.210.211.48','normal','',0,0,0,0,0,'[]'),(1514,'149.56.14.35','normal','',0,0,0,1,0,'{\"login\":[1625817087]}'),(1515,'162.220.244.47','normal','',0,0,0,2,0,'{\"login\":[1625817859,1625841428]}'),(1516,'213.149.103.132','normal','',0,0,0,8,0,'{\"login\":[1625821845,1626587436,1627102238,1627467237,1632594242,1640242212,1650348752,1657103307]}'),(1517,'66.249.75.211','normal','',0,0,0,0,0,'[]'),(1518,'106.52.171.211','normal','',0,0,0,24,0,'{\"login\":[1625823707,1625995003,1627978858,1628578532,1630600141,1630631090,1631311758,1631518734,1632613762,1632983885,1633695351,1634250754,1634973753,1636989436,1639240829,1639561322,1639843051,1640532051,1641123383,1641207542,1641402504,1641867698,1643723142,1644700290]}'),(1519,'46.101.28.132','normal','',0,0,0,4,0,'{\"login\":[1625826010,1626062938,1628037915,1628042707]}'),(1520,'166.62.86.117','normal','',0,0,0,1,0,'{\"login\":[1625826896]}'),(1521,'157.245.107.81','normal','',0,0,0,4,3,'{\"login\":[1625827872,1627066460,1632917508,1640864159],\"nf\":[1654808001,1654808003,1654808004]}'),(1522,'51.178.17.108','normal','',0,0,0,3,0,'{\"login\":[1625828662,1626516579,1626645260]}'),(1523,'159.89.234.226','normal','',0,0,0,8,0,'{\"login\":[1625830379,1626095382,1631178981,1631276559,1632550210,1632933651,1633556508,1634423321]}'),(1524,'17.121.115.82','normal','',0,0,0,0,0,'[]'),(1525,'150.95.176.38','normal','',0,0,0,1,0,'{\"login\":[1625832378]}'),(1526,'72.13.46.3','normal','',0,0,0,0,0,'[]'),(1527,'105.184.149.121','normal','',0,0,0,0,0,'[]'),(1528,'166.62.122.244','normal','',0,0,0,2,0,'{\"login\":[1625840415,1642184908]}'),(1529,'157.245.38.42','normal','',0,0,0,4,0,'{\"login\":[1625844308,1628071449,1650304893,1654009991]}'),(1530,'95.131.182.119','normal','',0,0,0,0,7,'{\"nf\":[1625855063,1625855068,1625856076,1625880106,1626013278,1626282433,1626299715]}'),(1531,'3.122.228.252','normal','',0,0,0,1,0,'{\"login\":[1625855195]}'),(1532,'66.33.194.39','normal','',0,0,0,0,26,'{\"nf\":[1625855916,1625915894,1625946506,1625972832,1625972833,1627436612,1629969553,1632014784,1632014786,1632411314,1632419143,1633400406,1633400409,1633952494,1634094585,1634094587,1637634434,1638202528,1638202532,1638348254,1639147726,1643359538,1643359542,1645476564,1646842675,1646842677]}'),(1533,'108.62.9.107','normal','',0,0,0,0,0,'[]'),(1534,'5.61.25.2','normal','',0,0,0,0,2,'{\"nf\":[1625856046,1625961621]}'),(1535,'34.140.92.141','normal','',0,0,0,4,0,'{\"login\":[1625857652,1626479138,1626580319,1626943469]}'),(1536,'103.48.193.28','normal','',0,0,0,0,3,'{\"nf\":[1625862062,1625862067,1626200288]}'),(1537,'69.163.152.113','normal','',0,0,0,0,2,'{\"nf\":[1625862209,1628296297]}'),(1538,'10.3.46.20','normal','',0,0,0,0,6,'{\"nf\":[1625864160,1629511161,1632408475,1637316792,1638203014,1640005473]}'),(1539,'35.166.141.87','normal','',0,0,0,1,0,'{\"login\":[1625866228]}'),(1540,'185.145.13.85','normal','',0,0,0,0,6,'{\"nf\":[1625868932,1625874348,1626417304,1626417307,1626503223,1629215028]}'),(1541,'35.197.147.242','normal','',0,0,0,10,0,'{\"login\":[1625869827,1626101411,1626121668,1626636300,1626696918,1626718024,1626985787,1627054399,1627086146,1628136501]}'),(1542,'199.231.188.248','normal','',0,0,0,0,4,'{\"nf\":[1625870210,1625939268,1625939272,1626043450]}'),(1543,'64.39.176.172','normal','',0,0,0,3,0,'{\"login\":[1625870740,1626584320,1627091417]}'),(1544,'17.121.113.206','normal','',0,0,0,0,0,'[]'),(1545,'192.210.231.28','normal','',0,0,0,0,5,'{\"nf\":[1625873342,1625873346,1626006143,1626006148,1626022350]}'),(1546,'103.104.73.111','normal','',0,0,0,8,0,'{\"login\":[1625873482,1626173671,1627568910,1627637916,1627948120,1628555848,1628575742,1628731966]}'),(1547,'198.71.228.70','normal','',0,0,0,0,3,'{\"nf\":[1625875209,1626023570,1626628061]}'),(1548,'5.160.200.204','normal','',0,0,0,0,4,'{\"nf\":[1625875260,1625944183,1626056914,1627112860]}'),(1549,'54.202.7.168','normal','',0,0,0,0,0,'[]'),(1550,'44.242.135.195','normal','',0,0,0,0,0,'[]'),(1551,'37.97.145.155','normal','',0,0,0,3,0,'{\"login\":[1625881652,1626038739,1626080637]}'),(1552,'47.75.44.156','normal','',0,0,0,0,13,'{\"nf\":[1625882293,1625882299,1626196388,1627414729,1630335000,1631929418,1632678973,1634560947,1636523016,1636865869,1636865876,1636865882,1637864539]}'),(1553,'34.87.135.115','normal','',0,0,0,3,0,'{\"login\":[1625882578,1626389340,1626514252]}'),(1554,'45.207.65.42','normal','',0,0,0,13,0,'{\"login\":[1625883494,1626152633,1626164574,1626382564,1626598856,1626642292,1626679553,1627255231,1627916336,1628720546,1628728676,1629366701,1629669467]}'),(1555,'149.129.255.178','normal','',0,0,0,2,0,'{\"login\":[1625885322,1626073975]}'),(1556,'47.91.128.217','normal','',0,0,0,0,5,'{\"nf\":[1625885933,1625885936,1625973981,1625973983,1625998918]}'),(1557,'64.111.126.32','normal','',0,0,0,40,0,'{\"login\":[1625886292,1626456302,1627645514,1627655964,1628826473,1628893045,1629093687,1629318855,1629351575,1629690757,1629969761,1630147607,1630247113,1630579780,1630586813,1630602693,1631331425,1631543702,1631754901,1631763077,1631784952,1631789577,1632116974,1632211837,1632268124,1632373867,1632518119,1632712239,1633624171,1633781119,1633834199,1634246890,1634287161,1634882063,1635469518,1635651505,1635738811,1636723792,1636892078,1638202904]}'),(1558,'148.70.125.137','normal','',0,0,0,0,1,'{\"nf\":[1625887155]}'),(1559,'159.65.30.80','normal','',0,0,0,0,2,'{\"nf\":[1625888846,1626261059]}'),(1560,'93.236.81.110','normal','',0,0,0,3,0,'{\"login\":[1625890915,1626132695,1626495594]}'),(1561,'17.121.113.43','normal','',0,0,0,0,0,'[]'),(1562,'121.41.118.55','normal','',0,0,0,0,1,'{\"nf\":[1625895921]}'),(1563,'107.180.72.143','normal','',0,0,0,5,0,'{\"login\":[1625900095,1626170069,1626366268,1626411422,1627878181]}'),(1564,'47.90.42.101','normal','',0,0,0,0,7,'{\"nf\":[1625903733,1626009685,1626009691,1626452669,1626921075,1630108591,1634301624]}'),(1565,'149.56.150.123','normal','',0,0,0,0,4,'{\"nf\":[1625904209,1625904226,1639334707,1639334717]}'),(1566,'34.77.162.30','normal','',0,0,0,0,0,'[]'),(1567,'31.202.101.40','normal','',0,0,0,0,0,'[]'),(1568,'114.119.136.132','normal','',0,0,0,0,0,'[]'),(1569,'54.36.148.36','normal','',0,0,0,0,0,'[]'),(1570,'167.71.226.139','normal','',0,0,0,1,1,'{\"nf\":[1625916691],\"login\":[1628930547]}'),(1571,'146.212.115.207','normal','',0,0,0,2,0,'{\"login\":[1625922483,1626443289]}'),(1572,'66.249.75.209','normal','',0,0,0,0,0,'[]'),(1573,'47.52.135.58','normal','',0,0,0,0,6,'{\"nf\":[1625926010,1625935162,1628173802,1632383522,1633704907,1634152381]}'),(1574,'157.90.40.40','normal','',0,0,0,1,0,'{\"login\":[1625929082]}'),(1575,'173.236.152.146','normal','',0,0,0,4,0,'{\"login\":[1625929986,1626165465,1626174570,1626187319]}'),(1576,'185.182.56.216','normal','',0,0,0,0,7,'{\"nf\":[1625931238,1625972740,1625972743,1626030451,1626312894,1634315306,1641751749]}'),(1577,'37.120.142.61','normal','',0,0,0,0,0,'[]'),(1578,'185.235.41.80','normal','',0,0,0,2,0,'{\"login\":[1625935296,1626066728]}'),(1579,'185.142.159.194','normal','',0,0,0,0,2,'{\"nf\":[1625938104,1626256332]}'),(1580,'51.89.36.202','normal','',0,0,0,1,0,'{\"login\":[1625941647]}'),(1581,'114.119.153.245','normal','',0,0,0,0,0,'[]'),(1582,'167.172.175.147','normal','',0,0,0,22,0,'{\"login\":[1625943768,1626448915,1626748778,1627014585,1627062878,1627508796,1628547027,1628953063,1629176737,1629347940,1631459629,1631970274,1632378316,1633633007,1633863309,1633923895,1634889742,1634906435,1635798041,1636011982,1636876477,1637075309]}'),(1583,'148.251.54.72','normal','',0,0,0,0,1,'{\"nf\":[1625948793]}'),(1584,'81.88.49.27','normal','',0,0,0,0,1,'{\"nf\":[1625948942]}'),(1585,'81.88.49.43','normal','',0,0,0,0,2,'{\"nf\":[1625948942,1642839164]}'),(1586,'34.221.177.174','normal','',0,0,0,0,0,'[]'),(1587,'200.0.135.1','normal','',0,0,0,2,0,'{\"login\":[1625949512,1626083045]}'),(1588,'34.214.20.179','normal','',0,0,0,0,0,'[]'),(1589,'34.217.36.214','normal','',0,0,0,0,0,'[]'),(1590,'34.222.211.45','normal','',0,0,0,0,0,'[]'),(1591,'94.232.41.169','blocked','You have been locked out due to too many invalid login attempts.',1627118328,1627118028,0,5,0,'{\"nf\":[],\"login\":[1627117985,1627117996,1627118004,1627118018,1627118027]}'),(1592,'171.22.26.50','normal','',0,0,0,0,3,'{\"nf\":[1625951755,1628145814,1628916345]}'),(1593,'64.227.73.218','normal','',0,0,0,6,0,'{\"login\":[1625955533,1626028683,1626137341,1628971307,1630918449,1633157961]}'),(1594,'81.88.52.26','normal','',0,0,0,26,0,'{\"login\":[1625956370,1626144779,1627153017,1627926989,1628722155,1629129343,1629501141,1629747457,1630639095,1632205205,1632361239,1632487031,1633614870,1633929931,1634323880,1634386665,1634859926,1634922578,1634942839,1635559971,1635775655,1637293973,1638124573,1639302452,1639578721,1639717226]}'),(1595,'159.65.154.142','normal','',0,0,0,9,0,'{\"login\":[1625964494,1626049709,1626142005,1627274106,1627610008,1628753169,1628877200,1628989380,1629715381]}'),(1596,'65.60.5.221','normal','',0,0,0,0,2,'{\"nf\":[1625967718,1626283474]}'),(1597,'17.121.113.171','normal','',0,0,0,0,0,'[]'),(1598,'69.163.163.120','normal','',0,0,0,24,0,'{\"login\":[1625970514,1626651188,1627036054,1627623228,1628545078,1629979406,1630217458,1630739310,1631308248,1631687509,1632033398,1632303900,1633028905,1633529113,1633590618,1634085719,1634335796,1634351159,1634511176,1635368208,1635627917,1637384692,1638263382,1638363927]}'),(1599,'168.62.197.62','blocked','You have been locked out due to too many invalid login attempts.',1625971603,1625971303,0,5,0,'{\"login\":[1625971271,1625971277,1625971287,1625971294,1625971303]}'),(1600,'92.118.160.1','normal','',0,0,0,0,0,'[]'),(1601,'216.19.195.188','normal','',0,0,0,0,0,'[]'),(1602,'116.202.229.140','normal','',0,0,0,11,0,'{\"login\":[1625977368,1626470503,1627127734,1628569838,1628960854,1629127918,1629328849,1629512466,1629720554,1630224634,1630333525]}'),(1603,'47.89.31.26','normal','',0,0,0,0,10,'{\"nf\":[1626232315,1626271243,1626271244,1626515748,1626515751,1632493294,1632493298,1633726489,1645443155,1645443156]}'),(1604,'69.163.224.107','normal','',0,0,0,68,0,'{\"login\":[1625981593,1649207174,1650128085,1650289917,1654592364,1654645694,1654751612,1654795747,1654864129,1654887123,1654936743,1655172941,1655384803,1655411332,1655540570,1655542769,1655552215,1655795131,1655818077,1656012779,1656822146,1657097468,1657102811,1657133252,1657454009,1657498554,1657583205,1657600017,1658217397,1658317688,1658450148,1658599237,1659308932,1659430255,1659434256,1659588084,1659622720,1659726573,1659755855,1659803372,1659998515,1660078594,1660248392,1660620978,1660630557,1660701820,1660716590,1660962330,1660979351,1661125755,1661138298,1661194352,1661306794,1661336111,1661386031,1661387053,1661425672,1661529290,1661645373,1662174040,1662300935,1662334946,1662356981,1662420632,1662876316,1663058014,1663061231,1663120674]}'),(1605,'158.69.42.164','normal','',0,0,0,0,10,'{\"nf\":[1625989601,1626043294,1629203906,1629279467,1630048399,1633732036,1635306831,1637081554,1641225945,1641533901]}'),(1606,'103.248.25.26','normal','',0,0,0,11,0,'{\"login\":[1625990893,1626133611,1626467641,1626722251,1627078268,1627524946,1628598332,1628777178,1628791285,1628981606,1629548911]}'),(1607,'43.243.118.2','normal','',0,0,0,0,2,'{\"nf\":[1625991041,1626025964]}'),(1608,'69.163.163.198','normal','',0,0,0,0,5,'{\"nf\":[1625993791,1626000237,1627367340,1628579905,1634374107]}'),(1609,'205.169.39.244','normal','',0,0,0,0,0,'[]'),(1610,'204.44.88.35','normal','',0,0,0,12,0,'{\"login\":[1626006306,1626034918,1626043014,1626054806,1626359390,1626505477,1626525595,1627151453,1627798535,1627800160,1627918296,1628829082]}'),(1611,'51.15.27.8','normal','',0,0,0,19,0,'{\"login\":[1626007345,1626062448,1626525171,1626989435,1627825022,1628597317,1628778920,1630352729,1630631747,1631502911,1632201011,1632247917,1632276047,1632637682,1632986846,1633652905,1634037188,1634081456,1634233022]}'),(1612,'173.236.172.182','normal','',0,0,0,0,1,'{\"nf\":[1626010026]}'),(1613,'54.36.158.65','normal','',0,0,0,1,0,'{\"login\":[1626010506]}'),(1614,'156.146.35.37','normal','',0,0,0,0,0,'[]'),(1615,'1.116.75.216','normal','',0,0,0,33,0,'{\"login\":[1626021926,1626158632,1626517707,1627225180,1627496889,1628159860,1629179654,1629197518,1629476858,1629695649,1629769376,1630805266,1630949079,1631517679,1631710889,1632055635,1632123273,1632147484,1632184879,1632251703,1634314483,1636910765,1637142502,1637358633,1638384280,1640116550,1640625071,1641131461,1641153222,1641177369,1641834646,1641896772,1642088635]}'),(1616,'114.119.143.101','normal','',0,0,0,0,0,'[]'),(1617,'98.159.40.10','normal','',0,0,0,0,2,'{\"nf\":[1626022699,1626245054]}'),(1618,'120.26.168.231','normal','',0,0,0,0,1,'{\"nf\":[1626023232]}'),(1619,'54.36.149.49','normal','',0,0,0,0,0,'[]'),(1620,'66.249.75.213','normal','',0,0,0,0,0,'[]'),(1621,'173.236.184.111','normal','',0,0,0,7,0,'{\"login\":[1626033368,1626053100,1626076327,1626397642,1628874781,1628972588,1629157500]}'),(1622,'52.34.163.71','normal','',0,0,0,0,0,'[]'),(1623,'114.119.157.206','normal','',0,0,0,0,0,'[]'),(1624,'34.217.84.214','normal','',0,0,0,0,0,'[]'),(1625,'34.213.85.31','normal','',0,0,0,0,0,'[]'),(1626,'52.41.111.198','normal','',0,0,0,0,0,'[]'),(1627,'103.81.84.152','normal','',0,0,0,0,4,'{\"nf\":[1626037126,1626072602,1626203158,1626203162]}'),(1628,'52.39.134.140','normal','',0,0,0,0,0,'[]'),(1629,'34.208.241.30','normal','',0,0,0,0,0,'[]'),(1630,'102.65.62.226','normal','',0,0,0,0,0,'[]'),(1631,'34.222.72.163','normal','',0,0,0,0,0,'[]'),(1632,'34.221.46.135','normal','',0,0,0,0,0,'[]'),(1633,'120.76.201.177','normal','',0,0,0,0,6,'{\"nf\":[1626040014,1626040018,1626054937,1626054942,1632789462,1632789464]}'),(1634,'10.1.129.4','normal','',0,0,0,0,9,'{\"nf\":[1626053344,1630144593,1636805634,1637746140,1639547110,1641587623,1641587624,1644427853,1644651195]}'),(1635,'213.238.169.59','normal','',0,0,0,0,6,'{\"nf\":[1626055290,1626283380,1626293139,1629144300,1634873546,1635406460]}'),(1636,'142.93.148.182','normal','',0,0,0,2,0,'{\"login\":[1626058282,1633620735]}'),(1637,'208.113.170.111','normal','',0,0,0,0,1,'{\"nf\":[1626059027]}'),(1638,'80.82.113.57','normal','',0,0,0,1,0,'{\"login\":[1626064988]}'),(1639,'67.205.3.168','normal','',0,0,0,1,0,'{\"login\":[1626069791]}'),(1640,'193.138.99.1','normal','',0,0,0,1,0,'{\"login\":[1626070799]}'),(1641,'107.180.104.71','normal','',0,0,0,7,0,'{\"login\":[1626071964,1626694254,1627079587,1627446041,1627633949,1627875613,1627896473]}'),(1642,'138.68.140.0','normal','',0,0,0,37,0,'{\"login\":[1626074598,1626392015,1630717439,1639382744,1641961983,1641999112,1642178200,1642431867,1644170165,1647963187,1652101778,1652732220,1652747129,1653033452,1653260530,1653439449,1653458788,1654940702,1655029423,1657309121,1657340524,1657498835,1658056925,1658573850,1658834909,1659823092,1660611463,1660778925,1661246172,1661766448,1662008156,1662056116,1662222090,1662399715,1662671264,1662895222,1663003338]}'),(1643,'34.87.224.45','normal','',0,0,0,6,0,'{\"login\":[1626078950,1626450343,1626558463,1627985620,1628137219,1628548004]}'),(1644,'146.70.11.13','normal','',0,0,0,0,0,'[]'),(1645,'159.65.148.56','normal','',0,0,0,1,0,'{\"login\":[1626081461]}'),(1646,'43.128.57.178','normal','',0,0,0,0,5,'{\"nf\":[1626081894,1626094888,1626094892,1626240934,1627727896]}'),(1647,'162.214.193.48','normal','',0,0,0,2,0,'{\"login\":[1626084831,1626566673]}'),(1648,'210.86.239.43','normal','',0,0,0,0,4,'{\"nf\":[1626085276,1626210858,1626257965,1626289877]}'),(1649,'62.210.185.4','normal','',0,0,0,4,0,'{\"login\":[1626087259,1659397634,1661788450,1661797782]}'),(1650,'45.40.166.142','normal','',0,0,0,31,0,'{\"login\":[1626090588,1626705050,1627580055,1628711047,1628717348,1629340938,1629505970,1629531226,1631298780,1633928201,1633948566,1634051914,1635602595,1637048154,1637204824,1637326283,1637908442,1638759158,1639426200,1639688761,1640345842,1640362288,1640499874,1640738954,1641318720,1641322896,1641480217,1641720926,1641877209,1642097282,1642914117]}'),(1651,'47.99.180.146','normal','',0,0,0,0,4,'{\"nf\":[1626091830,1629414077,1629414078,1629414088]}'),(1652,'119.18.52.177','normal','',0,0,0,10,0,'{\"login\":[1626097554,1626964354,1627473109,1628088124,1631959953,1631976746,1632001023,1653819165,1654520695,1654531158]}'),(1653,'103.127.30.241','normal','',0,0,0,2,0,'{\"login\":[1626101660,1631628106]}'),(1654,'94.19.34.161','normal','',0,0,0,3,0,'{\"login\":[1626112337,1626541430,1627266817]}'),(1655,'149.224.196.166','normal','',0,0,0,1,0,'{\"login\":[1626114164]}'),(1656,'176.9.23.4','normal','',0,0,0,0,0,'[]'),(1657,'102.22.197.159','normal','',0,0,0,0,0,'[]'),(1658,'34.214.98.31','normal','',0,0,0,0,0,'[]'),(1659,'114.119.148.103','normal','',0,0,0,0,0,'[]'),(1660,'34.219.232.135','normal','',0,0,0,0,0,'[]'),(1661,'18.236.96.91','normal','',0,0,0,0,0,'[]'),(1662,'217.25.89.48','normal','',0,0,0,2,0,'{\"login\":[1626124421,1627082216]}'),(1663,'114.119.143.210','normal','',0,0,0,0,0,'[]'),(1664,'188.213.34.104','normal','',0,0,0,0,0,'[]'),(1665,'54.36.149.69','normal','',0,0,0,0,0,'[]'),(1666,'221.2.163.231','normal','',0,0,0,0,0,'[]'),(1667,'208.113.155.2','normal','',0,0,0,8,0,'{\"login\":[1626139223,1626381186,1626485136,1627814397,1627858680,1628740174,1628871170,1629723171]}'),(1668,'220.167.101.24','normal','',0,0,0,60,0,'{\"login\":[1626142937,1626459002,1627254440,1627941873,1629171561,1630263090,1630914570,1631716340,1632207813,1632286296,1632332556,1632562070,1633705823,1633907547,1634983124,1635811371,1637198289,1637807099,1637914264,1639236340,1639588894,1640000723,1640051626,1640093730,1640284908,1641211953,1641304419,1641757156,1642020699,1642026376,1642068608,1642095123,1642468166,1642548700,1642588535,1642650604,1643746253,1644095629,1646424733,1646443597,1646587465,1646799954,1647201042,1647916602,1648069120,1648668625,1648688406,1648694642,1649994565,1650183477,1650492219,1650728312,1650965086,1651271585,1653433399,1654349462,1654383322,1654977418,1655043592,1655194342]}'),(1669,'47.242.169.32','normal','',0,0,0,14,0,'{\"login\":[1626143856,1627058371,1627213840,1627510516,1627847142,1627861915,1629013191,1629121578,1630151083,1630320045,1630376494,1631492506,1632206934,1632295029]}'),(1670,'157.55.39.66','normal','',0,0,0,0,0,'[]'),(1671,'183.90.173.95','normal','',0,0,0,7,0,'{\"login\":[1626155846,1626506309,1627521226,1627607237,1627608624,1627880083,1629353044]}'),(1672,'64.225.70.87','normal','',0,0,0,43,0,'{\"login\":[1626157232,1627647038,1629029310,1629164100,1629205124,1632344326,1632717180,1634982535,1637443746,1637674170,1638439302,1639504208,1639611147,1639679500,1641028149,1641245835,1641308778,1641399617,1641979584,1642051298,1642167127,1642240664,1642302842,1642335988,1642389589,1642532768,1642576257,1642666676,1644252802,1644521342,1646016669,1646243420,1646463783,1646522768,1646668827,1647720761,1647917829,1648088598,1648134189,1648176735,1648474301,1650210580,1650253202]}'),(1673,'166.62.124.228','normal','',0,0,0,6,0,'{\"login\":[1626161860,1626418531,1626712554,1629208169,1629660580,1629687430]}'),(1674,'124.123.104.147','normal','',0,0,0,1,0,'{\"login\":[1626176363]}'),(1675,'173.236.152.120','normal','',0,0,0,5,0,'{\"login\":[1626182717,1626692265,1627812496,1627888581,1628024749]}'),(1676,'34.77.162.16','normal','',0,0,0,0,0,'[]'),(1677,'18.117.253.30','normal','',0,0,0,0,1,'{\"nf\":[1626186071]}'),(1678,'34.204.15.100','normal','',0,0,0,0,1,'{\"nf\":[1626186111]}'),(1679,'51.161.15.95','normal','',0,0,0,0,0,'[]'),(1680,'102.65.60.126','normal','',0,0,0,0,0,'[]'),(1681,'77.221.130.5','normal','',0,0,0,0,1,'{\"nf\":[1626208015]}'),(1682,'45.151.248.60','normal','',0,0,0,0,2,'{\"nf\":[1626209938,1626234913]}'),(1683,'54.69.18.165','normal','',0,0,0,0,0,'[]'),(1684,'54.186.254.233','normal','',0,0,0,0,0,'[]'),(1685,'35.167.138.166','normal','',0,0,0,0,0,'[]'),(1686,'54.218.134.254','normal','',0,0,0,0,0,'[]'),(1687,'34.211.75.139','normal','',0,0,0,0,0,'[]'),(1688,'10.1.106.181','normal','',0,0,0,0,9,'{\"nf\":[1626222758,1626242461,1626252555,1634056269,1634056273,1634482859,1638074000,1638140178,1638277295]}'),(1689,'114.119.130.167','normal','',0,0,0,0,0,'[]'),(1690,'81.16.28.65','normal','',0,0,0,0,1,'{\"nf\":[1626234519]}'),(1691,'105.225.38.120','normal','',0,0,0,0,0,'[]'),(1692,'54.36.148.2','normal','',0,0,0,0,0,'[]'),(1693,'45.92.108.126','normal','',0,0,0,0,6,'{\"nf\":[1626253572,1626253574,1626253585,1626274573,1632519312,1632604630]}'),(1694,'209.126.30.101','normal','',0,0,0,0,6,'{\"nf\":[1626262616,1626873295,1630143832,1636290840,1636290845,1637035545]}'),(1695,'197.92.132.58','normal','',0,0,0,0,1,'[]'),(1696,'173.212.220.70','normal','',0,0,0,0,0,'[]'),(1697,'165.255.253.236','normal','',0,0,0,0,2,'{\"nf\":[1626272293,1626272293]}'),(1698,'54.36.148.90','normal','',0,0,0,0,0,'[]'),(1699,'195.181.167.42','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1626285595,0,1626285295,0,20,'{\"nf\":[1626285225,1626285233,1626285237,1626285244,1626285248,1626285254,1626285258,1626285262,1626285267,1626285272,1626285274,1626285277,1626285279,1626285280,1626285282,1626285284,1626285286,1626285288,1626285291,1626285294]}'),(1700,'193.239.45.74','normal','',0,0,0,0,2,'{\"nf\":[1626288372,1626354345]}'),(1701,'107.174.67.174','normal','',0,0,0,0,3,'{\"nf\":[1626291526,1626291528,1626295682]}'),(1702,'95.217.198.13','normal','',0,0,0,0,1,'{\"nf\":[1626293016]}'),(1703,'66.249.69.226','normal','',0,0,0,0,0,'[]'),(1704,'52.12.195.222','normal','',0,0,0,0,0,'[]'),(1705,'34.210.156.216','normal','',0,0,0,0,0,'[]'),(1706,'34.220.209.212','normal','',0,0,0,0,0,'[]'),(1707,'54.244.5.205','normal','',0,0,0,0,0,'[]'),(1708,'35.163.215.41','normal','',0,0,0,0,0,'[]'),(1709,'54.187.133.196','normal','',0,0,0,0,0,'[]'),(1710,'114.119.152.219','normal','',0,0,0,0,0,'[]'),(1711,'207.46.13.120','normal','',0,0,0,0,0,'[]'),(1712,'114.119.146.55','normal','',0,0,0,0,1,'{\"nf\":[1628079001]}'),(1713,'62.210.140.247','normal','',0,0,0,0,0,'[]'),(1714,'69.46.91.154','normal','',0,0,0,0,1,'{\"nf\":[1626321410]}'),(1715,'88.208.252.224','normal','',0,0,0,0,1,'{\"nf\":[1626328337]}'),(1716,'142.93.99.56','normal','',0,0,0,6,0,'{\"login\":[1626331698,1627061860,1627877402,1628949545,1633565287,1640674696]}'),(1717,'209.97.161.52','normal','',0,0,0,1,0,'{\"login\":[1626331723]}'),(1718,'169.1.254.9','normal','',0,0,0,0,0,'[]'),(1719,'179.107.83.250','normal','',0,0,0,1,0,'{\"login\":[1626334599]}'),(1720,'142.93.131.65','normal','',0,0,0,2,0,'{\"login\":[1626338955,1627790773]}'),(1721,'31.171.155.8','normal','',0,0,0,0,0,'[]'),(1722,'205.169.39.163','normal','',0,0,0,0,0,'[]'),(1723,'162.214.198.70','normal','',0,0,0,18,0,'{\"login\":[1626349236,1626552407,1626614071,1627190994,1627632631,1628124038,1629302745,1630080534,1630159250,1631315365,1631765539,1631901847,1632177147,1632201972,1632269526,1632489367,1633650423,1634251732]}'),(1724,'93.113.111.34','normal','',0,0,0,8,0,'{\"login\":[1626354932,1626548212,1627215702,1629239236,1631985266,1632199275,1632582485,1634944818]}'),(1725,'5.101.156.20','normal','',0,0,0,2,0,'{\"login\":[1626354936,1626589450]}'),(1726,'89.252.137.57','normal','',0,0,0,3,0,'{\"login\":[1626356443,1626686364,1628805652]}'),(1727,'173.236.170.203','normal','',0,0,0,3,0,'{\"login\":[1626357128,1628057303,1628057876]}'),(1728,'197.155.4.192','normal','',0,0,0,0,1,'{\"nf\":[1626357215]}'),(1729,'66.249.75.46','normal','',0,0,0,0,0,'[]'),(1730,'66.249.75.44','normal','',0,0,0,0,0,'[]'),(1731,'47.112.203.31','normal','',0,0,0,1,0,'{\"login\":[1626361825]}'),(1732,'213.217.34.100','normal','',0,0,0,2,0,'{\"login\":[1626364231,1632197866]}'),(1733,'203.205.21.168','normal','',0,0,0,14,0,'{\"login\":[1626364664,1627913785,1628919176,1629186968,1629320391,1629657852,1629684019,1629916624,1630769129,1631704729,1632024382,1632530049,1632720367,1632749829]}'),(1734,'54.255.96.187','normal','',0,0,0,2,0,'{\"login\":[1626366057,1626404399]}'),(1735,'167.172.115.176','normal','',0,0,0,5,0,'{\"login\":[1626368010,1628014135,1656784752,1656787698,1656808253]}'),(1736,'161.97.178.213','normal','',0,0,0,3,0,'{\"login\":[1628060235,1640683821,1640867577]}'),(1737,'114.119.156.49','normal','',0,0,0,0,0,'[]'),(1738,'90.50.98.98','normal','',0,0,0,1,0,'{\"login\":[1626373830]}'),(1739,'157.90.246.104','normal','',0,0,0,3,0,'{\"login\":[1626375288,1626520279,1626522401]}'),(1740,'62.171.186.29','normal','',0,0,0,4,0,'{\"login\":[1626379799,1628843721,1628867568,1629750497]}'),(1741,'34.216.195.234','normal','',0,0,0,0,0,'[]'),(1742,'34.217.149.69','normal','',0,0,0,0,0,'[]'),(1743,'18.236.67.226','normal','',0,0,0,0,0,'[]'),(1744,'34.217.93.135','normal','',0,0,0,0,0,'[]'),(1745,'34.212.7.84','normal','',0,0,0,0,0,'[]'),(1746,'176.31.247.193','normal','',0,0,0,9,0,'{\"login\":[1626382377,1626641274,1626706418,1627639327,1627840233,1627908419,1627950936,1628556830,1628596247]}'),(1747,'199.188.205.53','normal','',0,0,0,0,0,'[]'),(1748,'54.189.138.108','normal','',0,0,0,0,0,'[]'),(1749,'34.96.130.26','normal','',0,0,0,0,0,'[]'),(1750,'193.169.254.217','normal','',0,0,0,0,17,'{\"nf\":[1626397011,1626397154,1626397200,1626397526,1626486937,1626486999,1626487325,1626494342,1626494621,1626832960,1627606873,1627817070,1627989786,1628204108,1628400547,1628598714,1628847388]}'),(1751,'162.214.231.25','normal','',0,0,0,1,0,'{\"login\":[1626398813]}'),(1752,'186.10.136.78','normal','',0,0,0,2,0,'{\"login\":[1626400183,1627247392]}'),(1753,'208.97.137.233','normal','',0,0,0,4,0,'{\"login\":[1626401805,1627242676,1627924967,1628152928]}'),(1754,'81.88.52.175','normal','',0,0,0,45,0,'{\"login\":[1626405880,1627249732,1627620459,1628599332,1628696903,1629655099,1629776699,1630287516,1630920013,1631361412,1631435369,1631742544,1632015225,1632346280,1634406138,1636171794,1636775264,1636931853,1637336974,1637734036,1638277655,1638379912,1639341931,1639720246,1639958109,1640358186,1640648298,1640748147,1641310254,1641398892,1642260444,1642400435,1642578061,1642991102,1643027589,1643050738,1643317513,1643330776,1643525686,1643734668,1643756683,1644290945,1644439267,1644462930,1644539418]}'),(1755,'104.45.41.45','normal','',0,0,0,9,0,'{\"login\":[1626410605,1627471613,1628036130,1631612268,1634934102,1640597496,1654519387,1660738195,1660740129]}'),(1756,'142.93.172.126','normal','',0,0,0,5,0,'{\"login\":[1626412813,1626516955,1626747273,1627256026,1627911095]}'),(1757,'165.22.78.79','normal','',0,0,0,3,0,'{\"login\":[1626413980,1626515763,1626593155]}'),(1758,'173.236.136.5','normal','',0,0,0,19,0,'{\"login\":[1626414352,1626418351,1626683382,1627642398,1627826674,1627888940,1629196756,1629207404,1630581051,1630650106,1630933211,1632179122,1632525899,1633911910,1634336435,1634484781,1635394843,1637313028,1638260064]}'),(1759,'105.233.49.50','normal','',0,0,0,0,0,'[]'),(1760,'143.110.211.27','normal','',0,0,0,1,0,'{\"login\":[1626421201]}'),(1761,'197.87.136.115','normal','',0,0,0,0,0,'[]'),(1762,'188.143.235.92','normal','',0,0,0,0,0,'[]'),(1763,'193.141.126.195','normal','',0,0,0,1,0,'{\"login\":[1626424139]}'),(1764,'41.177.39.233','normal','',0,0,0,0,0,'[]'),(1765,'208.68.39.4','normal','',0,0,0,1,0,'{\"login\":[1627055635]}'),(1766,'66.33.212.126','normal','',0,0,0,1,0,'{\"login\":[1626578129]}'),(1767,'66.33.212.126','normal','',0,0,0,0,0,'[]'),(1768,'66.33.212.126','normal','',0,0,0,1,0,'{\"login\":[1626441456]}'),(1769,'114.119.128.142','normal','',0,0,0,0,0,'[]'),(1770,'114.119.132.61','normal','',0,0,0,0,0,'[]'),(1771,'37.186.221.178','normal','',0,0,0,0,1,'{\"nf\":[1626453506]}'),(1772,'68.183.232.22','normal','',0,0,0,6,0,'{\"login\":[1626457555,1629184027,1632217427,1632244859,1632365864,1632573913]}'),(1773,'3.7.182.241','normal','',0,0,0,0,1,'{\"nf\":[1626459644]}'),(1774,'114.119.130.32','normal','',0,0,0,0,0,'[]'),(1775,'207.244.224.242','normal','',0,0,0,8,0,'{\"login\":[1626462081,1626519263,1626601808,1628131118,1628135754,1628847985,1628859150,1630919232]}'),(1776,'192.241.150.125','normal','',0,0,0,3,0,'{\"login\":[1626464797,1627983824,1628993320]}'),(1777,'41.177.118.53','normal','',0,0,0,0,1,'{\"nf\":[1626466344]}'),(1778,'103.147.47.202','normal','',0,0,0,2,0,'{\"login\":[1626466414,1627237924]}'),(1779,'52.39.50.107','normal','',0,0,0,0,0,'[]'),(1780,'52.88.242.237','normal','',0,0,0,0,0,'[]'),(1781,'54.203.134.76','normal','',0,0,0,0,0,'[]'),(1782,'18.236.106.204','normal','',0,0,0,0,0,'[]'),(1783,'54.191.216.81','normal','',0,0,0,0,0,'[]'),(1784,'62.210.140.62','normal','',0,0,0,0,0,'[]'),(1785,'34.209.136.94','normal','',0,0,0,0,0,'[]'),(1786,'47.241.31.202','normal','',0,0,0,11,0,'{\"login\":[1626473573,1626627366,1626671855,1627501095,1627635284,1629946253,1630575379,1631223101,1631424275,1638767621,1638929084]}'),(1787,'54.36.148.219','normal','',0,0,0,0,0,'[]'),(1788,'124.123.105.145','normal','',0,0,0,1,0,'{\"login\":[1626476461]}'),(1789,'173.231.223.247','normal','',0,0,0,0,1,'{\"nf\":[1626487790]}'),(1790,'188.166.215.115','normal','',0,0,0,1,0,'{\"login\":[1626488081]}'),(1791,'88.99.150.173','normal','',0,0,0,2,0,'{\"login\":[1626494760,1629318183]}'),(1792,'5.9.22.148','normal','',0,0,0,2,0,'{\"login\":[1626501980,1627425494]}'),(1793,'74.208.93.118','normal','',0,0,0,3,0,'{\"login\":[1626503099,1626561208,1626579376]}'),(1794,'34.75.206.41','normal','',0,0,0,1,0,'{\"login\":[1626504293]}'),(1795,'157.55.39.8','normal','',0,0,0,0,0,'[]'),(1796,'5.61.248.143','normal','',0,0,0,0,1,'{\"nf\":[1626507793]}'),(1797,'104.42.51.138','normal','',0,0,0,1,0,'{\"login\":[1626507908]}'),(1798,'47.97.80.51','normal','',0,0,0,1,0,'{\"login\":[1626511787]}'),(1799,'165.232.131.127','normal','',0,0,0,1,0,'{\"login\":[1626512463]}'),(1800,'155.93.208.85','normal','',0,0,0,0,1,'{\"nf\":[1626512889]}'),(1801,'208.113.217.164','normal','',0,0,0,2,0,'{\"login\":[1626513037,1626572676]}'),(1802,'82.66.55.247','normal','',0,0,0,2,0,'{\"login\":[1626513781,1627883225]}'),(1803,'95.216.246.185','normal','',0,0,0,5,0,'{\"login\":[1626516403,1626617545,1627099377,1627233808,1627513149]}'),(1804,'185.224.138.230','normal','',0,0,0,0,1,'{\"nf\":[1626517877]}'),(1805,'212.33.246.57','normal','',0,0,0,1,0,'{\"login\":[1626519977]}'),(1806,'54.36.148.222','normal','',0,0,0,0,0,'[]'),(1807,'54.36.149.9','normal','',0,0,0,0,0,'[]'),(1808,'41.71.8.69','normal','',0,0,0,0,0,'[]'),(1809,'91.121.89.189','normal','',0,0,0,1,0,'{\"login\":[1626522908]}'),(1810,'51.15.197.24','normal','',0,0,0,0,0,'[]'),(1811,'167.99.185.30','normal','',0,0,0,2,0,'{\"login\":[1626524384,1627048908]}'),(1812,'162.144.82.123','normal','',0,0,0,2,0,'{\"login\":[1626525947,1628074933]}'),(1813,'95.217.187.106','normal','',0,0,0,0,0,'[]'),(1814,'49.50.68.181','normal','',0,0,0,5,0,'{\"login\":[1626527552,1626588228,1627557994,1627933628,1627935029]}'),(1815,'197.215.167.180','normal','',0,0,0,0,0,'[]'),(1816,'41.147.0.114','normal','',0,0,0,0,0,'[]'),(1817,'41.147.0.11','normal','',0,0,0,0,0,'[]'),(1818,'116.62.102.247','normal','',0,0,0,5,0,'{\"login\":[1626530565,1626582554,1627812620,1631607397,1634927160]}'),(1819,'66.249.65.130','normal','',0,0,0,0,0,'[]'),(1820,'103.67.235.103','normal','',0,0,0,0,1,'{\"nf\":[1626537670]}'),(1821,'54.36.148.207','normal','',0,0,0,0,0,'[]'),(1822,'54.36.149.23','normal','',0,0,0,0,0,'[]'),(1823,'46.105.121.210','normal','',0,0,0,1,0,'{\"login\":[1626545277]}'),(1824,'34.97.248.193','normal','',0,0,0,3,0,'{\"login\":[1626546771,1627207847,1629250102]}'),(1825,'114.119.149.83','normal','',0,0,0,0,0,'[]'),(1826,'54.212.139.2','normal','',0,0,0,0,0,'[]'),(1827,'54.245.144.53','normal','',0,0,0,0,0,'[]'),(1828,'35.167.51.213','normal','',0,0,0,0,0,'[]'),(1829,'58.177.156.178','normal','',0,0,0,2,0,'{\"login\":[1626555596,1626570319]}'),(1830,'114.119.153.25','normal','',0,0,0,0,0,'[]'),(1831,'111.229.159.70','normal','',0,0,0,2,0,'{\"login\":[1626558142,1629248364]}'),(1832,'35.202.236.112','normal','',0,0,0,1,0,'{\"login\":[1626562231]}'),(1833,'114.119.145.137','normal','',0,0,0,0,0,'[]'),(1834,'134.209.124.246','normal','',0,0,0,2,0,'{\"login\":[1626563354,1627460105]}'),(1835,'139.59.224.201','normal','',0,0,0,1,0,'{\"login\":[1626564322]}'),(1836,'143.244.150.74','normal','',0,0,0,2,0,'{\"login\":[1626565638,1628069876]}'),(1837,'92.246.84.133','normal','',0,0,0,0,0,'[]'),(1838,'5.188.62.140','normal','',0,0,0,11,22,'{\"nf\":[1626570660,1638600635,1639522742,1639548698,1639705919,1639854396,1640020862,1640919043,1640919044,1640919044,1641263442,1641263442,1641537434,1641679086,1641833382,1646497033,1646588124,1646676372,1656284443,1657544516,1661685694,1661685704],\"login\":[1630866074,1630866076,1630867998,1630867999,1632708678,1632708680,1632710804,1632710805,1652555850,1652555855,1662828045]}'),(1839,'35.189.29.206','normal','',0,0,0,2,0,'{\"login\":[1626570191,1626951603]}'),(1840,'114.119.136.87','normal','',0,0,0,0,0,'[]'),(1841,'107.180.77.130','normal','',0,0,0,1,0,'{\"login\":[1626577353]}'),(1842,'114.119.128.20','normal','',0,0,0,0,0,'[]'),(1843,'85.128.143.45','normal','',0,0,0,1,0,'{\"login\":[1626578738]}'),(1844,'67.205.46.22','normal','',0,0,0,3,0,'{\"login\":[1626583030,1626946054,1628012987]}'),(1845,'85.111.66.195','normal','',0,0,0,1,0,'{\"login\":[1626583634]}'),(1846,'103.146.202.150','normal','',0,0,0,4,0,'{\"login\":[1626584290,1627208576,1628009962,1660486685]}'),(1847,'206.189.50.175','normal','',0,0,0,39,0,'{\"login\":[1626585355,1626725019,1629344149,1629349395,1631780633,1631910756,1632129155,1632608170,1633005191,1633919584,1634228463,1634547147,1634837028,1634899965,1636747391,1637714790,1637865656,1637866759,1637988531,1638512005,1639245816,1639537607,1639772600,1639893486,1640195838,1640539200,1640734387,1641038976,1642509964,1642535391,1644155238,1645073918,1645339069,1646233133,1646458206,1646941777,1647157457,1647207323,1647403338]}'),(1848,'173.236.184.113','normal','',0,0,0,2,0,'{\"login\":[1626586103,1627844748]}'),(1849,'206.189.142.40','normal','',0,0,0,1,0,'{\"login\":[1626588119]}'),(1850,'62.210.82.22','normal','',0,0,0,0,0,'[]'),(1851,'35.221.181.187','normal','',0,0,0,2,0,'{\"login\":[1626590891,1633566124]}'),(1852,'169.1.211.240','normal','',0,0,0,0,0,'[]'),(1853,'132.148.241.219','normal','',0,0,0,2,0,'{\"login\":[1626595460,1628023319]}'),(1854,'72.167.42.45','normal','',0,0,0,7,0,'{\"login\":[1626597590,1634009215,1634932489,1635863499,1640248608,1640579689,1640600995]}'),(1855,'54.38.191.144','normal','',0,0,0,2,0,'{\"login\":[1626598354,1629237049]}'),(1856,'81.6.43.167','normal','',0,0,0,0,0,'[]'),(1857,'142.4.206.24','normal','',0,0,0,2,0,'{\"login\":[1626602769,1627554824]}'),(1858,'178.124.160.57','normal','',0,0,0,2,0,'{\"login\":[1626603506,1628009279]}'),(1859,'58.120.227.28','normal','',0,0,0,2,0,'{\"login\":[1626604437,1626610095]}'),(1860,'220.118.83.70','normal','',0,0,0,3,0,'{\"login\":[1626605367,1627107758,1627873777]}'),(1861,'54.201.120.194','normal','',0,0,0,0,0,'[]'),(1862,'161.35.161.13','normal','',0,0,0,3,0,'{\"login\":[1626607210,1632478996,1634939485]}'),(1863,'34.215.148.56','normal','',0,0,0,0,0,'[]'),(1864,'173.212.227.221','normal','',0,0,0,2,0,'{\"login\":[1626608108,1627851669]}'),(1865,'64.227.76.205','normal','',0,0,0,2,0,'{\"login\":[1626612044,1628030071]}'),(1866,'46.160.121.111','normal','',0,0,0,70,0,'{\"login\":[1626613449,1626672815,1626726373,1627275708,1627492062,1628573830,1628814687,1629150060,1629703553,1629802308,1630136416,1630202091,1630277385,1630802930,1631219158,1631304617,1631316549,1631638529,1631724063,1631915114,1631952549,1631964659,1631976649,1631987147,1632053184,1632098153,1632276507,1632303013,1632370255,1632646685,1632735522,1633151175,1633258546,1633917888,1634028628,1634235509,1634396263,1634880035,1635663681,1635905674,1638415826,1638460690,1638827370,1639731113,1639768922,1639809406,1639935935,1640032779,1640434805,1640629069,1640685326,1640696174,1640705284,1640843136,1641024347,1641278923,1641324319,1641338508,1641342752,1642312380,1642420923,1642581599,1644153168,1644226929,1644234459,1644537594,1644549556,1645835902,1645964608,1646028067]}'),(1867,'62.234.28.244','normal','',0,0,0,5,0,'{\"login\":[1626615145,1627143115,1631692255,1632011077,1634920595]}'),(1868,'104.155.146.8','normal','',0,0,0,1,0,'{\"login\":[1626619470]}'),(1869,'199.241.184.82','normal','',0,0,0,0,1,'{\"nf\":[1626637914]}'),(1870,'134.209.108.118','normal','',0,0,0,5,0,'{\"login\":[1626640284,1628127196,1631645597,1631652868,1633921329]}'),(1871,'66.249.64.95','normal','',0,0,0,0,0,'[]'),(1872,'207.244.244.237','normal','',0,0,0,2,0,'{\"login\":[1626659081,1627504676]}'),(1873,'62.210.91.2','normal','',0,0,0,0,0,'[]'),(1874,'5.255.231.17','normal','',0,0,0,0,0,'[]'),(1875,'185.220.100.253','normal','',0,0,0,0,0,'[]'),(1876,'142.93.157.141','normal','',0,0,0,0,0,'[]'),(1877,'143.198.33.5','normal','',0,0,0,0,0,'[]'),(1878,'165.227.222.136','normal','',0,0,0,0,0,'[]'),(1879,'165.232.180.174','normal','',0,0,0,40,0,'{\"login\":[1626690929,1628562794,1629664747,1630632414,1630683457,1630690438,1630821686,1634896788,1638355420,1639174784,1640569214,1642437250,1642967692,1648086276,1649698147,1650686276,1650965910,1652347973,1652509496,1652913174,1652985120,1653385037,1653409253,1653505209,1653917425,1654524615,1654893028,1655180785,1655534501,1657122049,1657315321,1657537866,1657694584,1658819296,1659202496,1660167247,1660753818,1662012622,1662233975,1662882088]}'),(1880,'40.77.167.49','normal','',0,0,0,0,0,'[]'),(1881,'35.237.208.151','normal','',0,0,0,2,0,'{\"login\":[1626709821,1626754811]}'),(1882,'185.220.101.16','normal','',0,0,0,0,0,'[]'),(1883,'62.210.88.24','normal','',0,0,0,0,0,'[]'),(1884,'54.189.5.177','normal','',0,0,0,0,0,'[]'),(1885,'155.93.234.115','normal','',0,0,0,0,0,'[]'),(1886,'54.212.102.116','normal','',0,0,0,0,0,'[]'),(1887,'54.188.3.254','normal','',0,0,0,0,0,'[]'),(1888,'34.221.176.146','normal','',0,0,0,0,0,'[]'),(1889,'47.103.77.10','normal','',0,0,0,0,6,'{\"nf\":[1626725561,1626725565,1626725572,1634574449,1634574450,1634574455]}'),(1890,'62.210.222.136','normal','',0,0,0,0,0,'[]'),(1891,'148.251.69.139','normal','',0,0,0,0,0,'[]'),(1892,'185.33.118.20','normal','',0,0,0,0,1,'{\"nf\":[1626763905]}'),(1893,'114.119.130.177','normal','',0,0,0,0,0,'[]'),(1894,'185.220.102.242','normal','',0,0,0,0,4,'{\"nf\":[1649253540,1649253543,1649253546,1649253549]}'),(1895,'5.196.70.182','normal','',0,0,0,0,0,'[]'),(1896,'114.119.156.133','normal','',0,0,0,0,0,'[]'),(1897,'52.88.30.161','normal','',0,0,0,0,0,'[]'),(1898,'54.212.45.149','normal','',0,0,0,0,0,'[]'),(1899,'63.33.204.88','normal','',0,0,0,0,0,'[]'),(1900,'41.177.109.169','normal','',0,0,0,0,0,'[]'),(1901,'114.119.157.146','normal','',0,0,0,0,0,'[]'),(1902,'185.10.16.41','normal','',0,0,0,0,0,'[]'),(1903,'114.119.157.4','normal','',0,0,0,0,0,'[]'),(1904,'54.39.23.35','normal','',0,0,0,1,0,'{\"login\":[1628053961]}'),(1905,'105.233.65.135','normal','',0,0,0,0,2,'{\"nf\":[1626805438,1626805468]}'),(1906,'35.163.187.156','normal','',0,0,0,0,0,'[]'),(1907,'34.214.27.97','normal','',0,0,0,0,0,'[]'),(1908,'27.0.14.22','normal','',0,0,0,0,0,'[]'),(1909,'134.122.93.99','normal','',0,0,0,2,0,'{\"login\":[1626811947,1627515241]}'),(1910,'13.90.58.199','normal','',0,0,0,1,0,'{\"login\":[1626813575]}'),(1911,'31.207.39.12','normal','',0,0,0,2,0,'{\"login\":[1626816879,1629304803]}'),(1912,'66.249.64.83','normal','',0,0,0,0,0,'[]'),(1913,'34.140.49.202','normal','',0,0,0,5,0,'{\"login\":[1626820224,1626843701,1627491862,1627927802,1628000187]}'),(1914,'45.79.124.8','normal','',0,0,0,2,0,'{\"login\":[1626821882,1627538276]}'),(1915,'54.36.140.116','normal','',0,0,0,4,0,'{\"login\":[1626823480,1627480278,1627928137,1627955638]}'),(1916,'51.178.68.226','normal','',0,0,0,13,0,'{\"login\":[1626825066,1657718580,1657854841,1657866797,1657881669,1659371963,1659392325,1659420931,1659741582,1659775797,1659946911,1660395959,1660612506]}'),(1917,'103.130.213.36','normal','',0,0,0,5,0,'{\"login\":[1626826731,1627503874,1629166933,1629319679,1630812040]}'),(1918,'198.54.128.101','normal','',0,0,0,0,0,'[]'),(1919,'82.64.255.120','normal','',0,0,0,8,0,'{\"login\":[1626828405,1627470326,1627520275,1630424863,1630455958,1631726235,1631743860,1631751734]}'),(1920,'150.136.58.98','normal','',0,0,0,0,22,'{\"nf\":[1626828901,1626828912,1626828920,1626828927,1626828938,1626828946,1626828956,1626828965,1626828973,1626828979,1626828985,1627687327,1627687341,1627687348,1627687356,1627687364,1627687371,1627687377,1627687383,1627687389,1627687395,1627687401]}'),(1921,'182.92.122.198','normal','',0,0,0,1,0,'{\"login\":[1626829985]}'),(1922,'34.220.202.124','normal','',0,0,0,0,0,'[]'),(1923,'34.220.135.253','normal','',0,0,0,0,1,'{\"nf\":[1626831733]}'),(1924,'45.159.196.35','normal','',0,0,0,7,0,'{\"login\":[1626831837,1626833551,1627481368,1629113953,1630451259,1630460887,1633555427]}'),(1925,'85.128.143.66','normal','',0,0,0,1,0,'{\"login\":[1626835160]}'),(1926,'45.143.99.2','normal','',0,0,0,4,0,'{\"login\":[1626836813,1627522446,1629108554,1629153353]}'),(1927,'46.101.49.124','normal','',0,0,0,3,0,'{\"login\":[1626838546,1627485945,1627523108]}'),(1928,'165.227.43.224','normal','',0,0,0,1,0,'{\"login\":[1626840209]}'),(1929,'31.207.33.82','normal','',0,0,0,0,0,'[]'),(1930,'62.210.140.161','normal','',0,0,0,0,0,'[]'),(1931,'81.169.232.155','normal','',0,0,0,1,0,'{\"login\":[1626845408]}'),(1932,'54.190.18.65','normal','',0,0,0,0,0,'[]'),(1933,'66.249.64.79','normal','',0,0,0,0,0,'[]'),(1934,'34.216.252.81','normal','',0,0,0,0,0,'[]'),(1935,'52.11.157.1','normal','',0,0,0,0,1,'{\"nf\":[1626889332]}'),(1936,'34.210.43.146','normal','',0,0,0,0,0,'[]'),(1937,'212.83.188.138','normal','',0,0,0,3,0,'{\"login\":[1631269473,1631730860,1634153107]}'),(1938,'34.92.46.58','normal','',0,0,0,0,0,'[]'),(1939,'221.143.48.2','normal','',0,0,0,8,0,'{\"login\":[1627518618,1627930977,1653550312,1653561206,1653563620,1653567249,1653587861,1655305643]}'),(1940,'198.211.105.189','normal','',0,0,0,0,0,'[]'),(1941,'216.137.188.111','normal','',0,0,0,0,0,'[]'),(1942,'111.90.140.47','normal','',0,0,0,0,0,'[]'),(1943,'65.1.140.18','normal','',0,0,0,0,0,'[]'),(1944,'136.243.92.92','normal','',0,0,0,13,1,'{\"login\":[1627473678,1627929577,1627934199,1628055183,1630398552,1630401055,1630406036,1630409067,1630427609,1630443654,1630461429,1630816570,1649070555],\"nf\":[1643716347]}'),(1945,'103.50.205.179','normal','',0,0,0,2,0,'{\"login\":[1627469185,1627975808]}'),(1946,'66.249.64.81','normal','',0,0,0,0,0,'[]'),(1947,'52.14.165.207','normal','',0,0,0,0,0,'[]'),(1948,'131.72.236.93','normal','',0,0,0,0,0,'[]'),(1949,'51.81.152.36','normal','',0,0,0,16,0,'{\"login\":[1627937103,1627954073,1630828587,1632021225,1634011151,1634169383,1634745058,1635532767,1637050311,1637508102,1637541444,1637644523,1637923557,1637942712,1638716915,1638913315]}'),(1950,'89.163.249.192','normal','',0,0,0,0,0,'[]'),(1951,'15.236.132.110','normal','',0,0,0,0,0,'[]'),(1952,'62.171.145.57','normal','',0,0,0,3,0,'{\"login\":[1627940318,1627957175,1628540743]}'),(1953,'93.125.75.17','normal','',0,0,0,0,0,'[]'),(1954,'199.192.27.35','normal','',0,0,0,0,0,'[]'),(1955,'201.238.194.109','normal','',0,0,0,0,0,'[]'),(1956,'157.55.39.159','normal','',0,0,0,0,0,'[]'),(1957,'157.175.108.116','normal','',0,0,0,0,0,'[]'),(1958,'37.187.128.139','normal','',0,0,0,0,0,'[]'),(1959,'89.163.143.87','normal','',0,0,0,0,0,'[]'),(1960,'103.9.159.226','normal','',0,0,0,7,0,'{\"login\":[1627525794,1627932033,1627949194,1629349413,1630423077,1631764355,1632029730]}'),(1961,'62.221.252.146','normal','',0,0,0,2,0,'{\"login\":[1627928839,1627939970]}'),(1962,'150.109.37.71','normal','',0,0,0,0,2,'{\"nf\":[1626914133,1628169294]}'),(1963,'130.211.141.170','normal','',0,0,0,0,0,'[]'),(1964,'85.128.142.155','normal','',0,0,0,0,0,'[]'),(1965,'124.156.150.43','normal','',0,0,0,4,0,'{\"login\":[1627479758,1627969195,1627971134,1629109887]}'),(1966,'23.111.182.210','normal','',0,0,0,0,0,'[]'),(1967,'62.171.168.218','normal','',0,0,0,4,0,'{\"login\":[1627537632,1627943995,1627961773,1627972248]}'),(1968,'35.240.188.174','normal','',0,0,0,1,0,'{\"login\":[1627498331]}'),(1969,'160.153.246.233','normal','',0,0,0,6,1,'{\"login\":[1627482744,1627500581,1627510282,1627942541,1627945089,1628012375],\"nf\":[1632685816]}'),(1970,'198.13.48.45','normal','',0,0,0,0,0,'[]'),(1971,'54.189.36.222','normal','',0,0,0,0,0,'[]'),(1972,'75.119.141.150','normal','',0,0,0,5,0,'{\"login\":[1630471699,1630863972,1634183460,1634769992,1634791366]}'),(1973,'46.101.213.183','normal','',0,0,0,0,0,'[]'),(1974,'34.210.237.195','normal','',0,0,0,0,0,'[]'),(1975,'172.105.37.239','normal','',0,0,0,1,0,'{\"login\":[1627517455]}'),(1976,'125.253.121.132','normal','',0,0,0,0,0,'[]'),(1977,'209.126.80.255','normal','',0,0,0,4,0,'{\"login\":[1627937457,1628052752,1628058877,1629310437]}'),(1978,'173.82.165.202','normal','',0,0,0,5,0,'{\"login\":[1627939280,1627943285,1627952555,1628019273,1628061358]}'),(1979,'163.123.183.28','normal','',0,0,0,0,0,'[]'),(1980,'185.18.213.70','normal','',0,0,0,0,0,'[]'),(1981,'131.72.236.178','normal','',0,0,0,0,0,'[]'),(1982,'177.66.0.38','normal','',0,0,0,0,0,'[]'),(1983,'185.220.100.243','normal','',0,0,0,0,0,'[]'),(1984,'217.79.178.53','normal','',0,0,0,1,0,'{\"login\":[1653410660]}'),(1985,'62.171.186.30','normal','',0,0,0,6,0,'{\"login\":[1626942721,1627499360,1627919608,1627920974,1627921634,1627964851]}'),(1986,'34.81.171.218','normal','',0,0,0,1,0,'{\"login\":[1626944438]}'),(1987,'164.132.161.90','normal','',0,0,0,0,0,'[]'),(1988,'54.36.148.159','normal','',0,0,0,0,0,'[]'),(1989,'54.36.148.1','normal','',0,0,0,0,0,'[]'),(1990,'167.86.75.216','normal','',0,0,0,2,0,'{\"login\":[1626957829,1628079513]}'),(1991,'13.127.227.149','normal','',0,0,0,5,0,'{\"login\":[1626959173,1627044768,1627051280,1627129434,1627215911]}'),(1992,'114.119.137.145','normal','',0,0,0,0,0,'[]'),(1993,'114.119.147.239','normal','',0,0,0,0,2,'{\"nf\":[1627461163,1628575110]}'),(1994,'81.68.68.194','normal','',0,0,0,3,0,'{\"login\":[1626960085,1629283159,1633985747]}'),(1995,'34.78.185.17','normal','',0,0,0,2,0,'{\"login\":[1626962362,1627148435]}'),(1996,'164.132.230.11','normal','',0,0,0,2,0,'{\"login\":[1626968218,1626980676]}'),(1997,'114.119.155.149','normal','',0,0,0,0,0,'[]'),(1998,'88.198.22.11','normal','',0,0,0,3,0,'{\"login\":[1627205617,1637314898,1637894091]}'),(1999,'85.143.219.155','normal','',0,0,0,0,5,'{\"nf\":[1626978639,1627101477,1628065441,1631854579,1632372033]}'),(2000,'136.243.150.96','normal','',0,0,0,0,1,'{\"nf\":[1626980722]}'),(2001,'139.59.85.224','normal','',0,0,0,40,0,'{\"login\":[1626983765,1627917638,1631414974,1637213251,1639632523,1640908084,1643529089,1644288748,1647891246,1649488984,1650619865,1652402542,1652965698,1652973380,1653384938,1653511779,1654302177,1654364284,1654419430,1654796574,1655216391,1656329749,1657252464,1657277017,1657280179,1657747352,1658280232,1658663419,1658704328,1658842793,1659419983,1660368961,1660465759,1661093672,1661295589,1661303044,1661633391,1662430910,1662819355,1662950202]}'),(2002,'54.212.223.219','normal','',0,0,0,0,0,'[]'),(2003,'54.71.22.243','normal','',0,0,0,0,0,'[]'),(2004,'62.210.99.33','normal','',0,0,0,0,0,'[]'),(2005,'202.172.28.177','normal','',0,0,0,0,7,'{\"nf\":[1626992172,1626992174,1628609693,1630144755,1642943682,1645689930,1648026534]}'),(2006,'167.172.151.91','normal','',0,0,0,83,0,'{\"login\":[1626995113,1627515785,1629710294,1630202861,1630604220,1631373732,1631510949,1632086908,1632090529,1632713836,1633232971,1633242332,1633850549,1635904388,1635980158,1635987467,1636670087,1636976896,1637104731,1637972858,1638382053,1638435041,1638505893,1638535785,1638878446,1639156838,1639240095,1639511130,1639971232,1640416571,1640592127,1640718029,1640872416,1640880946,1641084094,1641129252,1641157460,1641191488,1641405252,1642977357,1644570698,1645834002,1646047285,1646310914,1646521303,1646651673,1646866004,1646894457,1646978526,1647020054,1647081679,1647177328,1647580094,1647937263,1648101204,1648112764,1648116274,1648631153,1649759571,1649981958,1650581583,1650891213,1650983567,1651116592,1651147298,1651159653,1651263850,1651419921,1652419512,1652639711,1653217686,1653375658,1653535135,1653799268,1654088009,1654541363,1654612679,1654901069,1654991479,1655367588,1656249682,1656935080,1657666836]}'),(2007,'103.121.89.184','normal','',0,0,0,11,0,'{\"login\":[1627000038,1627280878,1627455876,1627574711,1627612782,1627614173,1629294512,1630460419,1630752364,1631380599,1632892759]}'),(2008,'198.50.227.49','normal','',0,0,0,1,0,'{\"login\":[1627007867]}'),(2009,'167.99.224.219','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1627008816,0,1627008516,0,20,'{\"nf\":[1627008481,1627008484,1627008486,1627008488,1627008490,1627008492,1627008493,1627008495,1627008496,1627008498,1627008500,1627008501,1627008503,1627008505,1627008507,1627008509,1627008511,1627008512,1627008514,1627008515]}'),(2010,'185.141.214.12','normal','',0,0,0,2,0,'{\"login\":[1627011117,1627216555]}'),(2011,'130.149.80.199','normal','',0,0,0,0,0,'[]'),(2012,'91.238.165.145','normal','',0,0,0,1,0,'{\"login\":[1627012426]}'),(2013,'144.86.173.33','normal','',0,0,0,0,0,'[]'),(2014,'93.84.117.146','normal','',0,0,0,1,0,'{\"login\":[1627013820]}'),(2015,'50.116.98.31','normal','',0,0,0,1,0,'{\"login\":[1627015270]}'),(2016,'54.199.111.73','normal','',0,0,0,1,0,'{\"login\":[1627017068]}'),(2017,'79.196.80.187','normal','',0,0,0,1,0,'{\"login\":[1627018345]}'),(2018,'58.177.156.94','normal','',0,0,0,43,0,'{\"login\":[1627019615,1627061104,1627071689,1627248183,1627488146,1627534557,1627560645,1627594907,1627841853,1627947420,1627962231,1628156991,1628746609,1628802622,1628825121,1628879603,1628891809,1628911643,1629006378,1629120633,1629142169,1629192950,1629198274,1629488233,1629666476,1629677077,1629798815,1629931224,1630164704,1630190377,1630233582,1630612265,1630784102,1630788123,1631345570,1631793431,1631947319,1632059723,1632150183,1632466693,1632577605,1632590254,1632741118]}'),(2019,'103.129.176.145','normal','',0,0,0,5,0,'{\"login\":[1627021491,1627441244,1627885304,1628032664,1628046825]}'),(2020,'64.90.48.181','normal','',0,0,0,5,0,'{\"login\":[1627023065,1627448845,1627456393,1627571900,1629293337]}'),(2021,'198.50.211.44','normal','',0,0,0,2,0,'{\"login\":[1627024763,1627042158]}'),(2022,'8.210.150.89','normal','',0,0,0,0,0,'[]'),(2023,'8.210.31.112','normal','',0,0,0,0,0,'[]'),(2024,'47.242.37.105','normal','',0,0,0,0,0,'[]'),(2025,'161.35.178.43','normal','',0,0,0,2,0,'{\"login\":[1627026593,1640671994]}'),(2026,'109.70.100.34','normal','',0,0,0,0,0,'[]'),(2027,'173.208.239.155','normal','',0,0,0,1,0,'{\"login\":[1627030182]}'),(2028,'128.199.73.51','normal','',0,0,0,1,0,'{\"login\":[1627031375]}'),(2029,'54.38.199.4','normal','',0,0,0,1,0,'{\"login\":[1627032079]}'),(2030,'69.163.176.52','normal','',0,0,0,1,0,'{\"login\":[1627033939]}'),(2031,'45.90.44.132','normal','',0,0,0,0,1,'{\"nf\":[1627034866]}'),(2032,'159.65.128.164','normal','',0,0,0,3,0,'{\"login\":[1627037964,1627915772,1638419928]}'),(2033,'104.238.101.37','normal','',0,0,0,1,0,'{\"login\":[1627039992]}'),(2034,'114.119.134.148','normal','',0,0,0,0,0,'[]'),(2035,'197.215.167.186','normal','',0,0,0,0,0,'[]'),(2036,'104.244.74.28','normal','',0,0,0,0,0,'[]'),(2037,'8.210.146.161','normal','',0,0,0,85,0,'{\"login\":[1627057434,1627462519,1628062560,1628986934,1629252237,1646012886,1646228605,1646445846,1646518296,1646621525,1646799354,1646977670,1647336042,1648075936,1648117479,1648260502,1648562627,1649202489,1649234933,1649480405,1649649374,1649971678,1649992342,1650035900,1650145257,1650145733,1650179959,1650341401,1650390998,1650530019,1650577179,1650683422,1651043371,1651119402,1651240336,1651368909,1651572741,1651709741,1652340657,1652661757,1652783703,1652837052,1652884409,1653333120,1653438585,1653515078,1653605063,1653618580,1653770610,1653809301,1654089623,1654377313,1654421211,1654497798,1654549674,1654903497,1655355011,1655414305,1655774652,1656304576,1656527392,1656749926,1656757130,1656832937,1656833599,1657261216,1657545060,1657746565,1658017290,1658592410,1658612078,1658719713,1658751292,1658943387,1658959520,1658996899,1659841869,1659984226,1659995738,1660470698,1660548056,1660579717,1660602106,1660625076,1660790891]}'),(2038,'78.162.235.5','normal','',0,0,0,0,0,'[]'),(2039,'178.238.231.203','normal','',0,0,0,1,0,'{\"login\":[1627063291]}'),(2040,'178.128.5.109','normal','',0,0,0,49,0,'{\"login\":[1627069088,1628130331,1631660035,1632181518,1633316473,1634225234,1634407085,1637125243,1638302923,1638479172,1639248613,1641976705,1642306848,1644693427,1646982021,1647355416,1650653911,1650858499,1651502683,1652926561,1652951996,1653398815,1653481922,1653513759,1653517761,1653519776,1653801987,1654049434,1654161660,1654371344,1654490738,1654503740,1654512443,1654708993,1655236752,1655536860,1657108813,1657436477,1657739529,1658472532,1659408226,1659991626,1660134473,1660277113,1660757189,1661250065,1661258677,1661511856,1661656964]}'),(2041,'125.212.241.179','normal','',0,0,0,1,0,'{\"login\":[1627069848]}'),(2042,'80.87.128.36','normal','',0,0,0,1,0,'{\"login\":[1627071568]}'),(2043,'34.211.244.213','normal','',0,0,0,0,0,'[]'),(2044,'54.185.137.120','normal','',0,0,0,0,0,'[]'),(2045,'54.213.229.246','normal','',0,0,0,0,0,'[]'),(2046,'52.88.162.100','normal','',0,0,0,0,0,'[]'),(2047,'54.245.211.142','normal','',0,0,0,0,0,'[]'),(2048,'52.42.225.194','normal','',0,0,0,0,0,'[]'),(2049,'167.172.56.36','normal','',0,0,0,4,0,'{\"login\":[1627073390,1634944115,1640264681,1653983450]}'),(2050,'203.210.102.54','normal','',0,0,0,2,0,'{\"login\":[1627075236,1627094614]}'),(2051,'157.55.39.57','normal','',0,0,0,0,0,'[]'),(2052,'92.61.37.171','normal','',0,0,0,1,0,'{\"login\":[1627081060]}'),(2053,'74.208.90.100','normal','',0,0,0,34,0,'{\"login\":[1627083212,1646652538,1646664299,1649034844,1649045371,1650171958,1650198837,1650235468,1652186483,1653564506,1654496153,1654540482,1654602014,1655310486,1655336249,1656786227,1656799251,1656803366,1656831001,1657476407,1657514607,1657686985,1657859511,1659403768,1659418974,1659982078,1660110536,1660122580,1660215684,1660345231,1660532399,1661784472,1661805405,1661830536]}'),(2054,'104.43.245.53','normal','',0,0,0,2,0,'{\"login\":[1627085388,1627879455]}'),(2055,'54.36.148.253','normal','',0,0,0,0,0,'[]'),(2056,'134.209.190.224','normal','',0,0,0,1,0,'{\"login\":[1627105044]}'),(2057,'150.95.25.117','normal','',0,0,0,1,0,'{\"login\":[1627113531]}'),(2058,'114.119.149.228','normal','',0,0,0,0,0,'[]'),(2059,'185.232.14.44','normal','',0,0,0,0,2,'{\"nf\":[1627117885,1643727927]}'),(2060,'194.180.12.96','normal','',0,0,0,0,0,'[]'),(2061,'199.249.230.112','normal','',0,0,0,0,0,'[]'),(2062,'105.185.159.210','normal','',0,0,0,0,0,'[]'),(2063,'40.77.167.45','normal','',0,0,0,0,0,'[]'),(2064,'64.246.165.140','normal','',0,0,0,0,0,'[]'),(2065,'136.243.93.113','normal','',0,0,0,2,0,'{\"login\":[1627139363,1627204281]}'),(2066,'157.245.55.146','normal','',0,0,0,2,0,'{\"login\":[1627145503,1628019230]}'),(2067,'192.232.252.78','normal','',0,0,0,1,0,'{\"login\":[1627154946]}'),(2068,'157.245.106.215','normal','',0,0,0,1,0,'{\"login\":[1627176190]}'),(2069,'157.245.106.215','normal','',0,0,0,1,0,'{\"login\":[1627156481]}'),(2070,'152.228.163.241','normal','',0,0,0,1,0,'{\"login\":[1627157739]}'),(2071,'34.209.47.246','normal','',0,0,0,0,0,'[]'),(2072,'34.219.197.46','normal','',0,0,0,0,0,'[]'),(2073,'34.219.180.43','normal','',0,0,0,0,0,'[]'),(2074,'118.25.72.104','normal','',0,0,0,4,0,'{\"login\":[1627160546,1628907905,1629182560,1629937483]}'),(2075,'193.176.78.121','normal','',0,0,0,1,0,'{\"login\":[1627161899]}'),(2076,'185.104.187.115','blocked','You have been locked out due to too many invalid login attempts.',1627162492,1627162192,0,5,0,'{\"login\":[1627162175,1627162179,1627162183,1627162187,1627162190]}'),(2077,'51.222.104.94','normal','',0,0,0,1,0,'{\"login\":[1627162271]}'),(2078,'74.208.135.38','normal','',0,0,0,1,0,'{\"login\":[1627168912]}'),(2079,'67.205.36.181','normal','',0,0,0,1,0,'{\"login\":[1627170726]}'),(2080,'218.161.23.39','normal','',0,0,0,1,0,'{\"login\":[1627178076]}'),(2081,'91.205.175.35','normal','',0,0,0,2,0,'{\"login\":[1627181843,1632292163]}'),(2082,'79.101.44.3','normal','',0,0,0,10,0,'{\"login\":[1627185961,1629297663,1629303543,1629320925,1631686446,1631704310,1631975105,1632174759,1632203062,1632906183]}'),(2083,'162.241.131.41','normal','',0,0,0,1,0,'{\"login\":[1627189416]}'),(2084,'200.223.155.186','normal','',0,0,0,1,0,'{\"login\":[1627190211]}'),(2085,'77.247.181.165','normal','',0,0,0,0,0,'[]'),(2086,'209.159.155.2','normal','',0,0,0,0,1,'{\"nf\":[1627194124]}'),(2087,'104.255.169.135','normal','',0,0,0,1,0,'{\"login\":[1627194601]}'),(2088,'18.27.197.252','normal','',0,0,0,0,0,'[]'),(2089,'128.199.245.21','normal','',0,0,0,33,0,'{\"login\":[1627198165,1627617014,1629909802,1630911524,1632731572,1637455219,1638210564,1639397383,1639566785,1640453157,1640799389,1640956429,1640958617,1641129989,1641236109,1642893535,1645930066,1646008191,1646851099,1647109847,1647617312,1648577566,1650163873,1650291224,1650386437,1650441381,1650466317,1650632023,1650900843,1650988091,1651023676,1651336498,1651562130]}'),(2090,'192.42.116.17','normal','',0,0,0,0,0,'[]'),(2091,'46.138.242.154','normal','',0,0,0,0,0,'[]'),(2092,'188.244.191.189','normal','',0,0,0,1,0,'{\"login\":[1627203737]}'),(2093,'202.157.134.62','normal','',0,0,0,1,0,'{\"login\":[1627204974]}'),(2094,'195.211.45.157','normal','',0,0,0,2,0,'{\"login\":[1627206459,1629236455]}'),(2095,'114.119.158.13','normal','',0,0,0,0,0,'[]'),(2096,'72.167.46.203','normal','',0,0,0,3,0,'{\"login\":[1627207083,1627785304,1629235748]}'),(2097,'208.113.170.116','normal','',0,0,0,1,0,'{\"login\":[1627209317]}'),(2098,'209.182.203.78','normal','',0,0,0,3,1,'{\"login\":[1627212392,1627876791,1627893369],\"nf\":[1646027265]}'),(2099,'208.110.85.68','normal','',0,0,0,3,0,'{\"login\":[1627213049,1629812724,1629971378]}'),(2100,'190.229.236.133','normal','',0,0,0,1,0,'{\"login\":[1627214110]}'),(2101,'167.71.69.173','normal','',0,0,0,2,0,'{\"login\":[1627214831,1642225308]}'),(2102,'18.139.21.246','normal','',0,0,0,1,0,'{\"login\":[1627218338]}'),(2103,'94.182.140.43','normal','',0,0,0,1,0,'{\"login\":[1627221936]}'),(2104,'146.185.134.51','normal','',0,0,0,16,0,'{\"login\":[1627222070,1627552698,1628147589,1628819219,1629012055,1629356761,1629675372,1629698120,1629908319,1630267579,1630585529,1631656696,1632259746,1633821800,1634234124,1634249855]}'),(2105,'142.54.188.78','normal','',0,0,0,2,0,'{\"login\":[1627223214,1627273324]}'),(2106,'198.204.234.254','normal','',0,0,0,6,0,'{\"login\":[1627225399,1627254029,1627256474,1627269348,1627316679,1627332638]}'),(2107,'107.150.52.196','normal','',0,0,0,1,0,'{\"login\":[1627226960]}'),(2108,'5.253.27.95','normal','',0,0,0,2,0,'{\"login\":[1627228663,1627803484]}'),(2109,'107.150.59.245','normal','',0,0,0,12,0,'{\"login\":[1627229014,1627229594,1627238040,1627251037,1627261164,1627288092,1627306890,1627311738,1627458018,1628096044,1628903755,1629028626]}'),(2110,'107.150.48.230','normal','',0,0,0,11,0,'{\"login\":[1627230116,1627263559,1627270579,1627278792,1627311446,1627388798,1627486630,1627491324,1627505127,1627532653,1627544509]}'),(2111,'63.141.251.234','normal','',0,0,0,8,0,'{\"login\":[1627233363,1627300950,1627325592,1627351472,1627372821,1627482940,1627490145,1627493299]}'),(2112,'142.54.177.3','normal','',0,0,0,34,0,'{\"login\":[1627235042,1627246682,1627266306,1627275448,1627351774,1627362983,1627381914,1627412189,1627416395,1627428219,1627434870,1627459858,1627479257,1627497807,1627500280,1633013995,1633071175,1633090621,1633124314,1633129044,1633133637,1633316864,1633333610,1633409725,1633410256,1633410715,1633411437,1633467834,1633496239,1633511409,1633511420,1633540663,1633540663,1633572765]}'),(2113,'165.227.221.94','normal','',0,0,0,2,0,'{\"login\":[1627235490,1627514907]}'),(2114,'54.36.149.82','normal','',0,0,0,0,0,'[]'),(2115,'92.118.160.45','normal','',0,0,0,0,0,'[]'),(2116,'107.150.46.53','normal','',0,0,0,6,0,'{\"login\":[1627244096,1627363931,1627539370,1629248937,1629272528,1629621033]}'),(2117,'54.191.200.48','normal','',0,0,0,0,0,'[]'),(2118,'34.221.30.218','normal','',0,0,0,0,0,'[]'),(2119,'35.167.242.139','normal','',0,0,0,0,0,'[]'),(2120,'34.222.127.204','normal','',0,0,0,0,0,'[]'),(2121,'40.127.111.29','normal','',0,0,0,0,0,'[]'),(2122,'13.69.199.207','normal','',0,0,0,0,0,'[]'),(2123,'13.79.160.159','normal','',0,0,0,0,0,'[]'),(2124,'52.88.200.89','normal','',0,0,0,0,0,'[]'),(2125,'34.67.145.170','normal','',0,0,0,3,0,'{\"login\":[1627248952,1628576682,1636153800]}'),(2126,'69.30.225.102','normal','',0,0,0,7,0,'{\"login\":[1627249013,1627258938,1627862007,1627951949,1627969045,1627978946,1628053032]}'),(2127,'146.212.48.96','normal','',0,0,0,2,0,'{\"login\":[1627252870,1627287142]}'),(2128,'34.209.140.44','normal','',0,0,0,0,0,'[]'),(2129,'197.94.11.148','normal','',0,0,0,0,0,'[]'),(2130,'205.186.128.5','normal','',0,0,0,0,1,'{\"nf\":[1627275702]}'),(2131,'114.119.135.30','normal','',0,0,0,0,0,'[]'),(2132,'159.75.134.236','normal','',0,0,0,0,0,'[]'),(2133,'66.249.66.131','normal','',0,0,0,0,0,'[]'),(2134,'66.249.66.159','normal','',0,0,0,0,0,'[]'),(2135,'192.151.145.142','normal','',0,0,0,6,0,'{\"login\":[1627280399,1627335008,1627340897,1627393862,1627450689,1627594502]}'),(2136,'61.135.15.130','normal','',0,0,0,0,0,'[]'),(2137,'91.134.248.253','normal','',0,0,0,1,11,'{\"nf\":[1627285232,1628141342,1636113551,1636730161,1636823435,1638944572,1639057787,1639157040,1639160875,1639451053,1639935773],\"login\":[1643605547]}'),(2138,'85.206.164.32','normal','',0,0,0,0,1,'{\"nf\":[1627294110]}'),(2139,'107.150.52.197','normal','',0,0,0,6,0,'{\"login\":[1627295587,1627339667,1627371211,1627469526,1628101473,1629038100]}'),(2140,'185.220.100.252','normal','',0,0,0,0,0,'[]'),(2141,'66.249.66.141','normal','',0,0,0,0,0,'[]'),(2142,'107.150.63.172','normal','',0,0,0,17,0,'{\"login\":[1627325004,1633750639,1633790839,1633798377,1633806135,1633813595,1633828172,1634150578,1634162972,1634170161,1634531942,1644311204,1644312202,1644343365,1644390691,1644399810,1644400513]}'),(2143,'54.200.236.214','normal','',0,0,0,0,0,'[]'),(2144,'54.214.58.64','normal','',0,0,0,0,0,'[]'),(2145,'114.119.146.107','normal','',0,0,0,0,0,'[]'),(2146,'216.244.66.231','normal','',0,0,0,0,0,'[]'),(2147,'40.77.167.15','normal','',0,0,0,0,0,'[]'),(2148,'69.30.225.99','normal','',0,0,0,6,0,'{\"login\":[1627353997,1627367410,1627419016,1627421032,1627432611,1627437276]}'),(2149,'198.204.234.250','normal','',0,0,0,4,0,'{\"login\":[1627357752,1627368289,1627409986,1627546462]}'),(2150,'209.141.54.195','normal','',0,0,0,0,0,'[]'),(2151,'62.210.140.14','normal','',0,0,0,0,0,'[]'),(2152,'202.39.54.2','normal','',0,0,0,0,0,'[]'),(2153,'105.184.149.15','normal','',0,0,0,0,0,'[]'),(2154,'107.150.63.174','normal','',0,0,0,28,0,'{\"login\":[1627374643,1627379211,1627395845,1627430191,1627442579,1627462751,1627520839,1627556790,1627575285,1627577646,1627753653,1628075450,1633556966,1633572710,1633649187,1633652150,1633654288,1633657325,1633665756,1633694187,1633696523,1633698775,1634276107,1634746945,1634805940,1644533286,1644551048,1644551862]}'),(2155,'198.204.240.242','normal','',0,0,0,9,0,'{\"login\":[1627377599,1627384323,1627386868,1627398627,1627580146,1627647979,1627666737,1627690219,1629234447]}'),(2156,'114.119.131.218','normal','',0,0,0,0,0,'[]'),(2157,'36.100.163.39','normal','',0,0,0,0,0,'[]'),(2158,'34.208.33.148','normal','',0,0,0,0,0,'[]'),(2159,'54.36.148.180','normal','',0,0,0,0,0,'[]'),(2160,'192.151.144.58','normal','',0,0,0,6,0,'{\"login\":[1627400734,1627425580,1627537077,1627559946,1627648857,1627672141]}'),(2161,'194.187.171.142','normal','',0,0,0,0,0,'[]'),(2162,'34.105.219.249','normal','',0,0,0,0,0,'[]'),(2163,'142.54.188.75','normal','',0,0,0,5,0,'{\"login\":[1627404998,1627441220,1627445086,1627487752,1627527818]}'),(2164,'34.71.156.94','normal','',0,0,0,0,1,'{\"nf\":[1627405616]}'),(2165,'107.150.46.210','normal','',0,0,0,16,0,'{\"login\":[1627407301,1627423302,1627447713,1627464127,1627473859,1627485249,1627534378,1627562409,1627589911,1627706605,1627866367,1627873674,1627925350,1628991822,1629257948,1629441855]}'),(2166,'34.132.195.63','normal','',0,0,0,1,0,'{\"login\":[1627445499]}'),(2167,'5.9.66.203','normal','',0,0,0,2,0,'{\"login\":[1627414296,1629249057]}'),(2168,'208.113.163.214','normal','',0,0,0,2,0,'{\"login\":[1627415008,1627884658]}'),(2169,'102.69.197.47','normal','',0,0,0,0,0,'[]'),(2170,'114.119.150.65','normal','',0,0,0,0,0,'[]'),(2171,'132.148.91.104','normal','',0,0,0,2,0,'{\"login\":[1627416646,1628015989]}'),(2172,'54.212.52.71','normal','',0,0,0,0,0,'[]'),(2173,'172.245.211.58','normal','',0,0,0,5,0,'{\"login\":[1627418281,1627482697,1627932768,1627944370,1627967566]}'),(2174,'34.220.6.9','normal','',0,0,0,0,0,'[]'),(2175,'54.69.167.50','normal','',0,0,0,0,0,'[]'),(2176,'185.220.100.246','normal','',0,0,0,0,0,'[]'),(2177,'34.209.90.158','normal','',0,0,0,0,0,'[]'),(2178,'42.236.10.75','normal','',0,0,0,0,0,'[]'),(2179,'51.222.21.231','normal','',0,0,0,2,0,'{\"login\":[1627420916,1627796806]}'),(2180,'160.16.141.232','normal','',0,0,0,1,0,'{\"login\":[1627421806]}'),(2181,'204.101.161.19','normal','',0,0,0,0,0,'[]'),(2182,'143.198.174.223','normal','',0,0,0,2,0,'{\"login\":[1627424620,1629323339]}'),(2183,'165.227.141.39','normal','',0,0,0,1,0,'{\"login\":[1627426468]}'),(2184,'207.154.226.165','normal','',0,0,0,8,0,'{\"login\":[1627427427,1633619141,1633836063,1639555007,1639749324,1641523465,1641700630,1642042145]}'),(2185,'159.65.219.142','normal','',0,0,0,6,0,'{\"login\":[1627428475,1631697305,1631706438,1631974239,1633539545,1636640615]}'),(2186,'208.113.163.224','normal','',0,0,0,2,0,'{\"login\":[1627431469,1629227252]}'),(2187,'212.193.12.158','normal','',0,0,0,0,0,'[]'),(2188,'92.204.249.181','normal','',0,0,0,3,0,'{\"login\":[1627436689,1627855383,1628072644]}'),(2189,'192.81.217.140','normal','',0,0,0,1,0,'{\"login\":[1627437849]}'),(2190,'61.135.15.177','normal','',0,0,0,0,0,'[]'),(2191,'142.93.205.80','normal','',0,0,0,2,0,'{\"login\":[1627440205,1629243667]}'),(2192,'66.249.66.219','normal','',0,0,0,0,0,'[]'),(2193,'212.83.183.215','normal','',0,0,0,1,0,'{\"login\":[1627443573]}'),(2194,'148.72.210.140','normal','',0,0,0,3,0,'{\"login\":[1627444270,1627547496,1631983536]}'),(2195,'165.22.224.56','normal','',0,0,0,1,0,'{\"login\":[1627444984]}'),(2196,'185.85.189.10','normal','',0,0,0,1,0,'{\"login\":[1627447737]}'),(2197,'78.46.142.210','normal','',0,0,0,1,0,'{\"login\":[1627448248]}'),(2198,'75.119.200.127','normal','',0,0,0,1,0,'{\"login\":[1627450370]}'),(2199,'169.1.11.198','normal','',0,0,0,0,0,'[]'),(2200,'77.55.222.236','normal','',0,0,0,1,0,'{\"login\":[1627451927]}'),(2201,'173.208.244.90','normal','',0,0,0,11,0,'{\"login\":[1627452753,1627564623,1627572774,1627592301,1627680125,1627726895,1627762748,1627783757,1627817269,1627878804,1627883297]}'),(2202,'75.147.246.147','normal','',0,0,0,1,0,'{\"login\":[1627453048]}'),(2203,'134.209.176.202','normal','',0,0,0,1,0,'{\"login\":[1627453559]}'),(2204,'45.134.8.32','normal','',0,0,0,1,0,'{\"login\":[1627454104]}'),(2205,'173.82.6.226','normal','',0,0,0,2,0,'{\"login\":[1627455254,1629279810]}'),(2206,'104.131.95.85','normal','',0,0,0,1,0,'{\"login\":[1627457075]}'),(2207,'94.247.178.227','normal','',0,0,0,1,0,'{\"login\":[1627458177]}'),(2208,'124.158.11.209','normal','',0,0,0,2,0,'{\"login\":[1627461278,1628014716]}'),(2209,'80.241.141.109','normal','',0,0,0,3,0,'{\"login\":[1630845321,1630892305,1630897137]}'),(2210,'216.194.164.6','normal','',0,0,0,1,0,'{\"login\":[1627463844]}'),(2211,'182.16.179.70','normal','',0,0,0,1,0,'{\"login\":[1627465172]}'),(2212,'51.144.101.50','normal','',0,0,0,1,0,'{\"login\":[1627466564]}'),(2213,'143.110.185.130','normal','',0,0,0,7,0,'{\"login\":[1627467987,1630837810,1631235820,1631322521,1633769676,1634446006,1634994741]}'),(2214,'62.171.171.43','normal','',0,0,0,1,0,'{\"login\":[1627468667]}'),(2215,'89.44.138.250','normal','',0,0,0,3,0,'{\"login\":[1627469406,1640783756,1642194847]}'),(2216,'159.65.25.89','normal','',0,0,0,4,0,'{\"login\":[1627469576,1627939565,1627958649,1628020347]}'),(2217,'157.230.227.172','normal','',0,0,0,2,0,'{\"login\":[1627469851,1627951003]}'),(2218,'109.70.100.20','normal','',0,0,0,0,0,'[]'),(2219,'144.86.173.22','normal','',0,0,0,0,0,'[]'),(2220,'125.214.76.49','normal','',0,0,0,5,0,'{\"login\":[1627470744,1627496841,1627943673,1627975029,1628570218]}'),(2221,'64.227.12.160','normal','',0,0,0,3,0,'{\"login\":[1627470843,1629289446,1638441358]}'),(2222,'129.226.15.70','normal','',0,0,0,0,0,'[]'),(2223,'129.226.15.70','normal','',0,0,0,1,0,'{\"login\":[1627471284]}'),(2224,'150.95.115.11','normal','',0,0,0,3,0,'{\"login\":[1627471744,1627945855,1627968367]}'),(2225,'62.210.119.205','normal','',0,0,0,2,0,'{\"login\":[1627472111,1627496125]}'),(2226,'144.217.72.168','normal','',0,0,0,1,0,'{\"login\":[1627472333]}'),(2227,'210.245.90.247','normal','',0,0,0,2,0,'{\"login\":[1627473222,1627972667]}'),(2228,'200.147.58.16','normal','',0,0,0,1,0,'{\"login\":[1627474068]}'),(2229,'195.154.225.16','normal','',0,0,0,4,0,'{\"login\":[1627474507,1629144204,1630398885,1631261952]}'),(2230,'167.71.102.17','normal','',0,0,0,3,0,'{\"login\":[1627474681,1631697867,1640798979]}'),(2231,'143.110.232.113','normal','',0,0,0,1,0,'{\"login\":[1627474953]}'),(2232,'45.55.234.133','normal','',0,0,0,1,0,'{\"login\":[1627475448]}'),(2233,'92.53.106.182','normal','',0,0,0,4,0,'{\"login\":[1627475590,1627529768,1627982349,1628006749]}'),(2234,'150.95.110.113','normal','',0,0,0,15,0,'{\"login\":[1627476120,1627509199,1627524686,1627969971,1627990492,1628060163,1632190527,1632932329,1634920397,1640356574,1650345064,1650349659,1653979558,1653994217,1655129474]}'),(2235,'200.41.232.114','normal','',0,0,0,1,0,'{\"login\":[1627476224]}'),(2236,'46.101.144.71','normal','',0,0,0,2,0,'{\"login\":[1627476507,1627482108]}'),(2237,'165.227.223.221','normal','',0,0,0,1,0,'{\"login\":[1627476994]}'),(2238,'212.129.0.202','normal','',0,0,0,4,0,'{\"login\":[1627477189,1627948055,1629115274,1629160093]}'),(2239,'46.101.31.59','normal','',0,0,0,3,0,'{\"login\":[1627477685,1627514740,1627534903]}'),(2240,'37.187.95.163','normal','',0,0,0,1,0,'{\"login\":[1627478243]}'),(2241,'45.77.175.92','normal','',0,0,0,2,0,'{\"login\":[1627479159,1627510870]}'),(2242,'179.108.192.148','normal','',0,0,0,5,0,'{\"login\":[1627479409,1627829423,1627906876,1628082030,1628965116]}'),(2243,'69.164.205.135','normal','',0,0,0,2,0,'{\"login\":[1627480794,1627530958]}'),(2244,'185.182.59.14','normal','',0,0,0,1,0,'{\"login\":[1627481770]}'),(2245,'94.152.156.62','normal','',0,0,0,1,0,'{\"login\":[1627483161]}'),(2246,'46.101.60.127','normal','',0,0,0,2,0,'{\"login\":[1627484445,1629155988]}'),(2247,'167.172.231.219','normal','',0,0,0,1,0,'{\"login\":[1627484997]}'),(2248,'190.210.182.215','normal','',0,0,0,1,0,'{\"login\":[1627485242]}'),(2249,'62.109.31.176','normal','',0,0,0,1,0,'{\"login\":[1627486984]}'),(2250,'149.156.136.178','normal','',0,0,0,9,0,'{\"login\":[1627487365,1627925639,1627939078,1628982895,1629021223,1629173048,1629702262,1629947856,1630216723]}'),(2251,'3.238.39.127','normal','',0,0,0,1,0,'{\"login\":[1627487540]}'),(2252,'188.166.211.98','normal','',0,0,0,1,0,'{\"login\":[1627487998]}'),(2253,'13.232.22.80','normal','',0,0,0,3,0,'{\"login\":[1627488664,1627511432,1627527032]}'),(2254,'143.198.131.15','normal','',0,0,0,1,0,'{\"login\":[1627489158]}'),(2255,'114.119.137.65','normal','',0,0,0,0,0,'[]'),(2256,'178.128.78.162','normal','',0,0,0,2,0,'{\"login\":[1627490235,1629175108]}'),(2257,'54.36.148.215','normal','',0,0,0,0,0,'[]'),(2258,'45.92.108.158','normal','',0,0,0,1,0,'{\"login\":[1627490712]}'),(2259,'185.53.59.128','normal','',0,0,0,1,0,'{\"login\":[1627491287]}'),(2260,'45.149.78.36','normal','',0,0,0,5,0,'{\"login\":[1627492463,1627520873,1627947277,1627973372,1628016978]}'),(2261,'143.244.137.30','normal','',0,0,0,0,0,'[]'),(2262,'35.241.91.161','normal','',0,0,0,2,0,'{\"login\":[1627493404,1627505384]}'),(2263,'167.99.242.83','normal','',0,0,0,1,0,'{\"login\":[1627493833]}'),(2264,'46.101.121.11','normal','',0,0,0,4,0,'{\"login\":[1627494459,1627512024,1627938850,1627984466]}'),(2265,'113.161.97.220','normal','',0,0,0,1,0,'{\"login\":[1627495002]}'),(2266,'69.30.225.101','normal','',0,0,0,5,0,'{\"login\":[1627495430,1627515373,1627569927,1627599150,1627610799]}'),(2267,'178.128.93.77','normal','',0,0,0,5,0,'{\"login\":[1627495589,1627497141,1627944643,1627962841,1627963985]}'),(2268,'51.15.59.15','normal','',0,0,0,0,0,'[]'),(2269,'43.231.112.68','normal','',0,0,0,1,0,'{\"login\":[1627497797]}'),(2270,'134.122.88.145','normal','',0,0,0,4,0,'{\"login\":[1627498819,1627518064,1628008906,1629344992]}'),(2271,'107.182.17.174','normal','',0,0,0,2,0,'{\"login\":[1627500016,1627963678]}'),(2272,'81.169.165.126','normal','',0,0,0,1,0,'{\"login\":[1627501010]}'),(2273,'51.15.155.252','normal','',0,0,0,2,0,'{\"login\":[1627502174,1629169674]}'),(2274,'139.59.170.20','normal','',0,0,0,0,0,'[]'),(2275,'52.13.93.47','normal','',0,0,0,0,0,'[]'),(2276,'162.55.52.73','normal','',0,0,0,0,0,'[]'),(2277,'46.101.191.73','normal','',0,0,0,1,0,'{\"login\":[1627503265]}'),(2278,'52.27.158.168','normal','',0,0,0,0,0,'[]'),(2279,'35.164.0.155','normal','',0,0,0,0,0,'[]'),(2280,'34.217.133.26','normal','',0,0,0,0,0,'[]'),(2281,'91.134.248.211','normal','',0,0,0,1,12,'{\"nf\":[1636816368,1637658419,1637821559,1637821562,1637918332,1637990082,1638073239,1638278720,1638760191,1638901100,1638991104,1639911615],\"login\":[1657463230]}'),(2282,'212.224.95.31','normal','',0,0,0,3,0,'{\"login\":[1627505906,1627524099,1627983424]}'),(2283,'188.92.149.71','normal','',0,0,0,2,0,'{\"login\":[1627506465,1627949897]}'),(2284,'52.39.174.33','normal','',0,0,0,0,0,'[]'),(2285,'76.72.172.168','normal','',0,0,0,0,0,'[]'),(2286,'210.245.80.75','normal','',0,0,0,11,0,'{\"login\":[1627507022,1632893331,1635541979,1635545339,1635559761,1642732901,1643172624,1643195383,1644444308,1645609931,1645645930]}'),(2287,'176.9.58.12','normal','',0,0,0,2,0,'{\"login\":[1627507171,1628754840]}'),(2288,'164.90.229.241','normal','',0,0,0,2,0,'{\"login\":[1627507566,1627521956]}'),(2289,'207.46.13.123','normal','',0,0,0,0,0,'[]'),(2290,'185.138.42.145','normal','',0,0,0,2,0,'{\"login\":[1627509698,1627531392]}'),(2291,'77.247.126.152','normal','',0,0,0,2,0,'{\"login\":[1627512470,1627926463]}'),(2292,'3.9.154.222','normal','',0,0,0,8,0,'{\"login\":[1627512967,1636807598,1637123637,1637225395,1638782399,1639149589,1639255671,1639304856]}'),(2293,'173.236.139.221','normal','',0,0,0,11,0,'{\"login\":[1627514034,1627535558,1629208931,1629357499,1630254396,1630601929,1630623257,1631391532,1631800073,1632216834,1632275589]}'),(2294,'195.146.139.131','normal','',0,0,0,1,0,'{\"login\":[1627514190]}'),(2295,'101.32.26.253','normal','',0,0,0,8,0,'{\"login\":[1627954474,1630445070,1631769037,1631976249,1631978954,1631987923,1631999911,1632265977]}'),(2296,'167.99.76.13','normal','',0,0,0,1,0,'{\"login\":[1627516224]}'),(2297,'185.211.88.224','normal','',0,0,0,2,0,'{\"login\":[1627516880,1627531954]}'),(2298,'139.59.224.190','normal','',0,0,0,1,0,'{\"login\":[1627519089]}'),(2299,'47.93.27.70','normal','',0,0,0,3,0,'{\"login\":[1627519775,1627927120,1628550254]}'),(2300,'134.209.155.161','normal','',0,0,0,1,0,'{\"login\":[1627521251]}'),(2301,'167.71.79.252','normal','',0,0,0,1,0,'{\"login\":[1627522142]}'),(2302,'178.128.202.122','normal','',0,0,0,22,0,'{\"login\":[1627525261,1628047772,1630423440,1630767661,1631747702,1631978191,1632016981,1634023974,1634739704,1634752016,1635458622,1635877171,1635933739,1636217278,1637489644,1637816774,1637965079,1638515222,1638900033,1639984226,1640853289,1641294393]}'),(2303,'35.203.4.9','normal','',0,0,0,1,0,'{\"login\":[1627526444]}'),(2304,'46.101.120.8','normal','',0,0,0,0,0,'[]'),(2305,'46.101.120.8','normal','',0,0,0,0,0,'[]'),(2306,'116.203.195.221','normal','',0,0,0,2,0,'{\"login\":[1627528478,1627952940]}'),(2307,'104.244.72.65','normal','',0,0,0,0,0,'[]'),(2308,'69.30.244.18','normal','',0,0,0,5,0,'{\"login\":[1627530338,1627615645,1627620449,1627726353,1627890656]}'),(2309,'194.163.154.7','normal','',0,0,0,2,0,'{\"login\":[1627530365,1627942920]}'),(2310,'194.26.29.21','blocked','You have been locked out due to too many invalid login attempts.',1631234830,1631234530,0,5,0,'{\"nf\":[],\"login\":[1631234516,1631234518,1631234521,1631234526,1631234530]}'),(2311,'67.43.232.70','normal','',0,0,0,5,0,'{\"login\":[1627532629,1627926803,1627936744,1627948437,1627966034]}'),(2312,'103.229.42.42','normal','',0,0,0,2,0,'{\"login\":[1627533188,1628029753]}'),(2313,'66.249.75.192','normal','',0,0,0,0,0,'[]'),(2314,'66.249.75.221','normal','',0,0,0,0,0,'[]'),(2315,'35.189.1.146','normal','',0,0,0,4,0,'{\"login\":[1627535346,1627938513,1627959119,1627961326]}'),(2316,'206.189.37.69','normal','',0,0,0,1,0,'{\"login\":[1627535934]}'),(2317,'157.245.253.221','normal','',0,0,0,1,0,'{\"login\":[1627536465]}'),(2318,'46.242.130.153','normal','',0,0,0,4,0,'{\"login\":[1627537060,1629143004,1629321173,1629335150]}'),(2319,'198.8.85.206','blocked','You have been locked out due to too many invalid login attempts.',1627537458,1627537158,0,5,0,'{\"login\":[1627537146,1627537148,1627537151,1627537154,1627537157]}'),(2320,'138.68.168.249','normal','',0,0,0,4,0,'{\"login\":[1627537426,1629683148,1630138116,1630357450]}'),(2321,'159.138.146.15','normal','',0,0,0,0,1,'{\"nf\":[1627539780]}'),(2322,'70.32.89.166','normal','',0,0,0,1,0,'{\"login\":[1627545255]}'),(2323,'63.141.251.235','normal','',0,0,0,3,0,'{\"login\":[1627549569,1627746485,1629471820]}'),(2324,'64.90.48.104','normal','',0,0,0,2,0,'{\"login\":[1627550898,1628031006]}'),(2325,'107.150.52.194','normal','',0,0,0,11,0,'{\"login\":[1627551881,1627582463,1627597098,1627618045,1627624666,1627629512,1627636026,1627705590,1627714873,1627801017,1627804574]}'),(2326,'178.128.76.233','normal','',0,0,0,2,0,'{\"login\":[1627551984,1629300736]}'),(2327,'107.150.46.50','normal','',0,0,0,9,0,'{\"login\":[1627554262,1627584957,1627626973,1627672845,1627695381,1627699790,1627767403,1627778255,1627813192]}'),(2328,'45.84.191.215','normal','',0,0,0,1,1,'{\"login\":[1627554976],\"nf\":[1637746903]}'),(2329,'114.119.152.128','normal','',0,0,0,0,0,'[]'),(2330,'169.1.248.147','normal','',0,0,0,0,0,'[]'),(2331,'192.169.244.239','normal','',0,0,0,1,0,'{\"login\":[1627558149]}'),(2332,'162.243.78.241','normal','',0,0,0,1,0,'{\"login\":[1627559214]}'),(2333,'134.209.97.11','normal','',0,0,0,0,2,'{\"nf\":[1627560222,1627560223]}'),(2334,'167.99.248.142','normal','',0,0,0,0,0,'[]'),(2335,'198.199.86.40','normal','',0,0,0,2,0,'{\"login\":[1627564072,1629906048]}'),(2336,'101.32.62.196','normal','',0,0,0,4,0,'{\"login\":[1627569078,1634922197,1653806290,1653982081]}'),(2337,'34.126.175.226','normal','',0,0,0,1,0,'{\"login\":[1627570563]}'),(2338,'52.163.127.23','normal','',0,0,0,1,0,'{\"login\":[1627573344]}'),(2339,'182.93.24.226','normal','',0,0,0,6,0,'{\"login\":[1627584065,1628890592,1630186594,1630625868,1631167133,1631904488]}'),(2340,'54.36.148.47','normal','',0,0,0,0,0,'[]'),(2341,'198.204.234.251','normal','',0,0,0,11,0,'{\"login\":[1627587428,1627601396,1627608476,1627613087,1627622647,1627631541,1627655043,1627658766,1627675734,1627678541,1627680159]}'),(2342,'52.35.91.110','normal','',0,0,0,0,0,'[]'),(2343,'54.190.169.167','normal','',0,0,0,0,0,'[]'),(2344,'34.217.128.69','normal','',0,0,0,0,0,'[]'),(2345,'18.237.47.48','normal','',0,0,0,0,0,'[]'),(2346,'52.88.201.236','normal','',0,0,0,0,0,'[]'),(2347,'46.242.145.20','normal','',0,0,0,0,2,'{\"nf\":[1627592836,1637920760]}'),(2348,'142.54.188.76','normal','',0,0,0,9,0,'{\"login\":[1627603909,1627654852,1627660062,1627791765,1627813294,1627859329,1627871731,1627888068,1627944658]}'),(2349,'69.197.163.227','normal','',0,0,0,7,0,'{\"login\":[1627606006,1627641002,1627645234,1627650228,1627683950,1627735759,1627761741]}'),(2350,'45.154.255.147','normal','',0,0,0,0,0,'[]'),(2351,'43.242.128.32','normal','',0,0,0,0,2,'{\"nf\":[1627608825,1627608837]}'),(2352,'157.55.39.167','normal','',0,0,0,0,0,'[]'),(2353,'148.66.129.233','normal','',0,0,0,19,0,'{\"login\":[1627618400,1627955168,1629167817,1629693201,1630310973,1631481186,1632288706,1632689615,1634227419,1634869828,1637923188,1638522412,1639015611,1639580581,1640138942,1640371309,1640583145,1641037156,1641311598]}'),(2354,'62.210.84.49','normal','',0,0,0,0,0,'[]'),(2355,'180.163.220.5','normal','',0,0,0,0,0,'[]'),(2356,'17.121.112.133','normal','',0,0,0,0,0,'[]'),(2357,'27.115.124.38','normal','',0,0,0,0,0,'[]'),(2358,'114.119.141.34','normal','',0,0,0,0,0,'[]'),(2359,'91.250.242.12','normal','',0,0,0,0,0,'[]'),(2360,'144.86.173.132','normal','',0,0,0,0,0,'[]'),(2361,'142.54.181.62','normal','',0,0,0,6,0,'{\"login\":[1627647685,1627671161,1627685732,1627688548,1627726960,1628090785]}'),(2362,'42.236.10.72','normal','',0,0,0,0,0,'[]'),(2363,'107.150.59.246','normal','',0,0,0,5,0,'{\"login\":[1627667520,1627773387,1629046680,1629129620,1629287159]}'),(2364,'185.50.25.34','normal','',0,0,0,0,0,'[]'),(2365,'52.10.65.18','normal','',0,0,0,0,0,'[]'),(2366,'54.185.166.241','normal','',0,0,0,0,0,'[]'),(2367,'18.236.170.33','normal','',0,0,0,0,0,'[]'),(2368,'18.236.134.44','normal','',0,0,0,0,0,'[]'),(2369,'139.59.243.247','normal','',0,0,0,1,0,'{\"login\":[1629322491]}'),(2370,'151.80.195.102','normal','',0,0,0,0,0,'[]'),(2371,'168.119.35.98','normal','',0,0,0,0,0,'[]'),(2372,'51.254.203.49','normal','',0,0,0,0,0,'[]'),(2373,'54.36.149.76','normal','',0,0,0,0,0,'[]'),(2374,'198.8.85.202','blocked','You have been locked out due to too many invalid login attempts.',1627689413,1627689113,0,5,0,'{\"login\":[1627689103,1627689105,1627689107,1627689109,1627689112]}'),(2375,'3.7.184.63','normal','',0,0,0,1,0,'{\"login\":[1629306151]}'),(2376,'18.138.146.221','normal','',0,0,0,0,0,'[]'),(2377,'5.189.132.239','normal','',0,0,0,8,0,'{\"login\":[1627928482,1627930615,1627931613,1627955250,1628033239,1630422170,1630427963,1631768218]}'),(2378,'35.226.151.121','normal','',0,0,0,0,9,'{\"nf\":[1627702942,1627702947,1627702949,1627702951,1627702953,1627702955,1627702958,1627702960,1627702962]}'),(2379,'207.46.13.178','normal','',0,0,0,0,0,'[]'),(2380,'203.137.115.113','normal','',0,0,0,4,0,'{\"login\":[1629168354,1629171049,1630433931,1631733172]}'),(2381,'103.57.221.178','normal','',0,0,0,0,0,'[]'),(2382,'81.22.243.241','normal','',0,0,0,0,0,'[]'),(2383,'114.119.156.131','normal','',0,0,0,0,0,'[]'),(2384,'114.119.144.209','normal','',0,0,0,0,0,'[]'),(2385,'89.163.249.244','normal','',0,0,0,0,0,'[]'),(2386,'104.248.144.191','normal','',0,0,0,0,0,'[]'),(2387,'185.220.100.255','normal','',0,0,0,0,0,'[]'),(2388,'34.69.60.114','normal','',0,0,0,0,0,'[]'),(2389,'157.245.131.230','normal','',0,0,0,14,0,'{\"login\":[1627964476,1629127609,1629149420,1629176609,1642730049,1642741543,1644460781,1649064257,1649778226,1650213825,1650238768,1651393752,1652196173,1652252747]}'),(2390,'207.46.13.85','normal','',0,0,0,0,0,'[]'),(2391,'45.77.71.79','normal','',0,0,0,0,0,'[]'),(2392,'103.42.111.59','normal','',0,0,0,1,0,'{\"login\":[1627991472]}'),(2393,'17.121.113.141','normal','',0,0,0,0,0,'[]'),(2394,'23.94.198.206','normal','',0,0,0,2,0,'{\"login\":[1627967236,1628030922]}'),(2395,'185.208.164.107','normal','',0,0,0,1,0,'{\"login\":[1628004501]}'),(2396,'5.255.231.85','normal','',0,0,0,0,0,'[]'),(2397,'198.98.57.230','normal','',0,0,0,0,0,'[]'),(2398,'163.172.198.75','normal','',0,0,0,1,0,'{\"login\":[1627961004]}'),(2399,'198.204.234.252','normal','',0,0,0,7,0,'{\"login\":[1627748989,1627755768,1627770619,1627776925,1628042734,1628072710,1628088356]}'),(2400,'206.189.183.179','normal','',0,0,0,0,0,'[]'),(2401,'85.128.143.40','normal','',0,0,0,3,0,'{\"login\":[1628041734,1638909316,1659364284]}'),(2402,'45.61.102.253','normal','',0,0,0,2,0,'{\"login\":[1627935589,1627956392]}'),(2403,'157.245.101.51','normal','',0,0,0,1,0,'{\"login\":[1627951780]}'),(2404,'134.175.238.206','normal','',0,0,0,0,0,'[]'),(2405,'198.251.81.188','normal','',0,0,0,2,0,'{\"login\":[1627962538,1628028471]}'),(2406,'41.208.72.154','normal','',0,0,0,33,0,'{\"login\":[1627969597,1627970296,1628541918,1629300836,1629328133,1630411549,1630414689,1630807407,1631737782,1631986466,1632002081,1632009804,1634056900,1634146340,1635451135,1635554788,1636705754,1637059842,1637070797,1637084625,1637618336,1637791679,1637805028,1638263311,1638285775,1638335773,1638720182,1638907549,1638909795,1638917517,1638919632,1640749198,1641337822]}'),(2407,'34.220.48.133','normal','',0,0,0,0,0,'[]'),(2408,'54.212.141.200','normal','',0,0,0,0,0,'[]'),(2409,'54.189.106.128','normal','',0,0,0,0,0,'[]'),(2410,'52.38.145.30','normal','',0,0,0,0,0,'[]'),(2411,'54.36.149.94','normal','',0,0,0,0,0,'[]'),(2412,'54.36.148.142','normal','',0,0,0,0,0,'[]'),(2413,'202.191.56.65','normal','',0,0,0,0,0,'[]'),(2414,'54.36.148.199','normal','',0,0,0,0,0,'[]'),(2415,'54.36.148.133','normal','',0,0,0,0,0,'[]'),(2416,'69.49.229.201','normal','',0,0,0,1,0,'{\"login\":[1627803418]}'),(2417,'34.197.231.61','normal','',0,0,0,0,0,'[]'),(2418,'206.189.98.7','normal','',0,0,0,0,0,'[]'),(2419,'109.234.160.153','normal','',0,0,0,6,0,'{\"login\":[1627950305,1630391682,1630394455,1630789585,1631329714,1632875388]}'),(2420,'66.249.66.137','normal','',0,0,0,0,0,'[]'),(2421,'66.249.66.139','normal','',0,0,0,0,0,'[]'),(2422,'185.252.28.129','normal','',0,0,0,1,0,'{\"login\":[1628552678]}'),(2423,'184.168.122.66','normal','',0,0,0,1,0,'{\"login\":[1627786644]}'),(2424,'114.119.150.27','normal','',0,0,0,0,0,'[]'),(2425,'42.236.10.110','normal','',0,0,0,0,0,'[]'),(2426,'159.65.173.77','normal','',0,0,0,1,0,'{\"login\":[1627789336]}'),(2427,'46.101.26.20','normal','',0,0,0,3,0,'{\"login\":[1627933521,1627971518,1628044122]}'),(2428,'114.119.146.12','normal','',0,0,0,0,0,'[]'),(2429,'54.36.148.126','normal','',0,0,0,0,0,'[]'),(2430,'35.198.229.229','normal','',0,0,0,2,0,'{\"login\":[1627796919,1629712004]}'),(2431,'68.183.195.108','normal','',0,0,0,1,0,'{\"login\":[1627801784]}'),(2432,'68.183.92.42','normal','',0,0,0,2,0,'{\"login\":[1627801785,1629068633]}'),(2433,'203.210.102.45','normal','',0,0,0,1,0,'{\"login\":[1627805238]}'),(2434,'195.154.104.37','normal','',0,0,0,0,0,'[]'),(2435,'34.221.13.196','normal','',0,0,0,0,0,'[]'),(2436,'198.204.225.194','normal','',0,0,0,9,0,'{\"login\":[1627810141,1627848339,1627853626,1627885753,1627897767,1627976216,1628064473,1629841504,1629925131]}'),(2437,'103.153.73.157','normal','',0,0,0,1,0,'{\"login\":[1627973048]}'),(2438,'198.204.240.243','normal','',0,0,0,3,0,'{\"login\":[1627814885,1627851467,1627868842]}'),(2439,'199.168.102.130','normal','',0,0,0,9,0,'{\"login\":[1627819775,1627822966,1627892663,1628060019,1628067292,1628896960,1628964781,1629057477,1629396330]}'),(2440,'205.169.39.28','normal','',0,0,0,0,0,'[]'),(2441,'185.220.100.241','normal','',0,0,0,0,0,'[]'),(2442,'221.143.48.139','normal','',0,0,0,3,0,'{\"login\":[1627948701,1627950586,1628005626]}'),(2443,'146.59.235.217','normal','',0,0,0,1,0,'{\"login\":[1628057624]}'),(2444,'65.49.221.220','normal','',0,0,0,2,0,'{\"login\":[1627941822,1627955987]}'),(2445,'103.221.220.216','normal','',0,0,0,3,0,'{\"login\":[1627936297,1627937758,1628062537]}'),(2446,'107.150.63.170','normal','',0,0,0,12,0,'{\"login\":[1627833449,1627842938,1627915408,1627932700,1633300487,1633316510,1643955497,1643961341,1644004172,1644570309,1644572435,1644575224]}'),(2447,'144.91.112.39','normal','',0,0,0,2,0,'{\"login\":[1627834975,1627935701]}'),(2448,'107.150.46.51','normal','',0,0,0,2,0,'{\"login\":[1627836238,1627881300]}'),(2449,'159.89.163.238','normal','',0,0,0,1,0,'{\"login\":[1627892662]}'),(2450,'107.150.52.195','normal','',0,0,0,8,0,'{\"login\":[1627839318,1627845735,1627876410,1627907967,1627920668,1627922894,1627956792,1627959344]}'),(2451,'139.162.122.96','normal','',0,0,0,0,0,'[]'),(2452,'142.93.49.104','normal','',0,0,0,0,0,'[]'),(2453,'162.214.93.227','normal','',0,0,0,1,0,'{\"login\":[1627846956]}'),(2454,'54.213.221.104','normal','',0,0,0,0,0,'[]'),(2455,'54.244.37.141','normal','',0,0,0,0,0,'[]'),(2456,'54.186.11.210','normal','',0,0,0,0,0,'[]'),(2457,'171.244.8.25','normal','',0,0,0,3,0,'{\"login\":[1627927522,1630471232,1632860545]}'),(2458,'199.249.230.175','normal','',0,0,0,0,0,'[]'),(2459,'159.203.37.131','normal','',0,0,0,1,0,'{\"login\":[1627852853]}'),(2460,'93.113.224.118','normal','',0,0,0,2,0,'{\"login\":[1627854237,1629241511]}'),(2461,'35.184.131.94','normal','',0,0,0,1,0,'{\"login\":[1627856713]}'),(2462,'107.150.45.58','normal','',0,0,0,14,0,'{\"login\":[1627856967,1627863738,1628020658,1628047444,1628103433,1628105720,1628868346,1628937715,1628983598,1629418835,1629520399,1629542307,1629750815,1629916768]}'),(2463,'185.220.100.248','normal','',0,0,0,0,0,'[]'),(2464,'207.154.203.45','normal','',0,0,0,1,0,'{\"login\":[1627860548]}'),(2465,'46.4.27.7','normal','',0,0,0,0,0,'[]'),(2466,'47.254.172.206','normal','',0,0,0,3,0,'{\"login\":[1627938156,1628560023,1630885188]}'),(2467,'148.251.168.10','normal','',0,0,0,0,0,'[]'),(2468,'62.152.182.2','normal','',0,0,0,1,0,'{\"login\":[1627872089]}'),(2469,'114.119.159.134','normal','',0,0,0,0,0,'[]'),(2470,'143.198.208.86','normal','',0,0,0,6,0,'{\"login\":[1627960137,1627967905,1628046516,1630419466,1630435703,1630470691]}'),(2471,'159.65.0.156','normal','',0,0,0,1,0,'{\"login\":[1627876257]}'),(2472,'67.205.152.127','normal','',0,0,0,1,0,'{\"login\":[1627881772]}'),(2473,'54.36.149.35','normal','',0,0,0,0,0,'[]'),(2474,'91.238.165.173','normal','',0,0,0,1,0,'{\"login\":[1627885893]}'),(2475,'46.105.103.215','normal','',0,0,0,0,0,'[]'),(2476,'34.125.54.204','normal','',0,0,0,5,0,'{\"login\":[1627886510,1627897993,1632290804,1633553070,1635847504]}'),(2477,'54.36.148.238','normal','',0,0,0,0,0,'[]'),(2478,'54.36.149.64','normal','',0,0,0,0,0,'[]'),(2479,'185.208.180.244','normal','',0,0,0,1,0,'{\"login\":[1627887230]}'),(2480,'124.40.255.186','normal','',0,0,0,4,0,'{\"login\":[1627889153,1627917656,1631683655,1632198213]}'),(2481,'89.41.176.247','normal','',0,0,0,2,0,'{\"login\":[1627890537,1654524693]}'),(2482,'34.80.149.96','normal','',0,0,0,2,0,'{\"login\":[1627891921,1628075634]}'),(2483,'1.241.153.36','normal','',0,0,0,1,0,'{\"login\":[1627894001]}'),(2484,'192.151.144.59','normal','',0,0,0,8,0,'{\"login\":[1627895295,1627935485,1627940126,1627981518,1628062778,1628077666,1628956451,1629725338]}'),(2485,'142.4.2.185','normal','',0,0,0,1,0,'{\"login\":[1627895804]}'),(2486,'68.183.10.57','normal','',0,0,0,4,0,'{\"login\":[1627897312,1627900306,1629239509,1632289908]}'),(2487,'162.214.163.37','normal','',0,0,0,1,0,'{\"login\":[1627898792]}'),(2488,'102.222.181.101','normal','',0,0,0,0,0,'[]'),(2489,'142.54.177.4','normal','',0,0,0,6,0,'{\"login\":[1627900475,1627927675,1627989984,1627992959,1628015660,1628028152]}'),(2490,'162.214.187.181','normal','',0,0,0,2,0,'{\"login\":[1627901834,1628027044]}'),(2491,'69.163.216.116','normal','',0,0,0,2,0,'{\"login\":[1627902660,1628993545]}'),(2492,'173.208.244.91','normal','',0,0,0,5,0,'{\"login\":[1627902913,1627966158,1628000990,1628069931,1628083370]}'),(2493,'213.202.229.14','normal','',0,0,0,1,0,'{\"login\":[1627903457]}'),(2494,'162.144.35.248','normal','',0,0,0,1,0,'{\"login\":[1627905155]}'),(2495,'192.151.145.141','normal','',0,0,0,8,0,'{\"login\":[1627905453,1627954404,1628928437,1628947895,1629137719,1629165878,1629352991,1629906182]}'),(2496,'115.148.152.106','normal','',0,0,0,0,0,'[]'),(2497,'185.50.197.159','normal','',0,0,0,1,0,'{\"login\":[1627909458]}'),(2498,'142.54.181.61','normal','',0,0,0,6,0,'{\"login\":[1627910625,1627947177,1627949832,1627973696,1628008062,1628025263]}'),(2499,'104.248.146.136','normal','',0,0,0,3,0,'{\"login\":[1627912446,1629348675,1630157748]}'),(2500,'3.6.112.245','normal','',0,0,0,1,0,'{\"login\":[1627913047]}'),(2501,'69.197.163.228','normal','',0,0,0,1,0,'{\"login\":[1627913110]}'),(2502,'186.29.69.67','normal','',0,0,0,1,0,'{\"login\":[1627916663]}'),(2503,'42.236.10.91','normal','',0,0,0,0,0,'[]'),(2504,'104.155.6.0','normal','',0,0,0,2,0,'{\"login\":[1627922320,1630154518]}'),(2505,'185.87.64.123','normal','',0,0,0,1,0,'{\"login\":[1627927669]}'),(2506,'139.59.25.246','normal','',0,0,0,6,0,'{\"login\":[1627929000,1628587996,1628735284,1629315772,1629716240,1629928120]}'),(2507,'45.139.102.211','normal','',0,0,0,1,0,'{\"login\":[1627929135]}'),(2508,'144.217.139.27','normal','',0,0,0,2,0,'{\"login\":[1627930174,1632931708]}'),(2509,'41.5.120.228','normal','',0,0,0,0,0,'[]'),(2510,'129.232.205.10','normal','',0,0,0,2,0,'{\"login\":[1627932388,1628040540]}'),(2511,'142.93.1.133','normal','',0,0,0,2,0,'{\"login\":[1627933068,1627959468]}'),(2512,'207.46.13.6','normal','',0,0,0,0,0,'[]'),(2513,'34.219.40.150','normal','',0,0,0,0,0,'[]'),(2514,'112.196.20.252','normal','',0,0,0,6,0,'{\"login\":[1630392187,1632858107,1645579724,1654496858,1656777303,1657504242]}'),(2515,'54.190.251.121','normal','',0,0,0,0,0,'[]'),(2516,'54.188.161.217','normal','',0,0,0,0,0,'[]'),(2517,'169.0.61.74','normal','',0,0,0,0,1,'{\"nf\":[1627935921]}'),(2518,'135.148.27.91','normal','',0,0,0,3,0,'{\"login\":[1627935991,1627966409,1628034501]}'),(2519,'63.141.251.236','normal','',0,0,0,1,0,'{\"login\":[1627937381]}'),(2520,'91.149.225.131','normal','',0,0,0,0,0,'[]'),(2521,'131.72.236.38','normal','',0,0,0,4,0,'{\"login\":[1627942189,1627953345,1627958297,1628018080]}'),(2522,'178.128.119.207','normal','',0,0,0,1,0,'{\"login\":[1627946496]}'),(2523,'45.80.69.78','normal','',0,0,0,1,0,'{\"login\":[1627951641]}'),(2524,'35.222.142.115','normal','',0,0,0,5,0,'{\"login\":[1627952162,1627959832,1627985724,1628537343,1629133982]}'),(2525,'159.89.180.182','normal','',0,0,0,3,0,'{\"login\":[1627954758,1627957489,1632885491]}'),(2526,'193.122.144.138','normal','',0,0,0,0,11,'{\"nf\":[1627955810,1627955819,1627955827,1627955834,1627955843,1627955851,1627955858,1627955874,1627955887,1627955898,1627955901]}'),(2527,'134.209.144.88','normal','',0,0,0,1,0,'{\"login\":[1627955877]}'),(2528,'44.195.76.63','normal','',0,0,0,1,0,'{\"login\":[1627956589]}'),(2529,'51.75.77.13','normal','',0,0,0,3,0,'{\"login\":[1627958041,1628153676,1628698518]}'),(2530,'5.255.231.27','normal','',0,0,0,0,0,'[]'),(2531,'45.129.181.85','normal','',0,0,0,1,0,'{\"login\":[1627960185]}'),(2532,'103.147.92.120','normal','',0,0,0,2,0,'{\"login\":[1627960506,1631318277]}'),(2533,'143.198.229.94','normal','',0,0,0,3,0,'{\"login\":[1627960877,1628602213,1630627817]}'),(2534,'107.150.59.244','normal','',0,0,0,4,0,'{\"login\":[1627961882,1627986894,1627995762,1628012170]}'),(2535,'198.204.240.244','normal','',0,0,0,4,0,'{\"login\":[1627963836,1627998411,1628018634,1628023319]}'),(2536,'185.220.101.9','normal','',0,0,0,0,0,'[]'),(2537,'158.58.187.51','normal','',0,0,0,3,0,'{\"login\":[1627971781,1630425779,1630436687]}'),(2538,'95.217.126.241','normal','',0,0,0,2,0,'{\"login\":[1627972667,1628123247]}'),(2539,'186.234.80.218','normal','',0,0,0,1,0,'{\"login\":[1627974168]}'),(2540,'54.36.148.87','normal','',0,0,0,0,0,'[]'),(2541,'175.24.93.252','normal','',0,0,0,2,0,'{\"login\":[1627974598,1630782892]}'),(2542,'52.56.206.96','normal','',0,0,0,1,0,'{\"login\":[1627974699]}'),(2543,'46.105.29.31','normal','',0,0,0,1,0,'{\"login\":[1627975386]}'),(2544,'158.69.243.99','normal','',0,0,0,0,0,'[]'),(2545,'139.180.138.74','normal','',0,0,0,1,0,'{\"login\":[1627981374]}'),(2546,'173.255.112.220','normal','',0,0,0,28,0,'{\"login\":[1627982336,1628119391,1628593123,1630574127,1631341781,1631688785,1632330107,1633327048,1633347071,1633621817,1634342284,1634862571,1636837744,1637046949,1637696395,1638343633,1638851211,1639269398,1639313313,1639391214,1639658715,1640134678,1640303840,1642272692,1643484736,1644149054,1644276557,1644328403]}'),(2547,'185.100.87.242','normal','',0,0,0,0,0,'[]'),(2548,'82.208.167.69','normal','',0,0,0,3,0,'{\"login\":[1627986942,1627999071,1629131429]}'),(2549,'195.230.180.186','normal','',0,0,0,0,0,'[]'),(2550,'195.224.117.82','normal','',0,0,0,0,0,'[]'),(2551,'54.183.72.173','normal','',0,0,0,1,0,'{\"login\":[1627988269]}'),(2552,'62.171.166.158','normal','',0,0,0,2,0,'{\"login\":[1627989333,1628022699]}'),(2553,'41.147.0.72','normal','',0,0,0,0,0,'[]'),(2554,'139.59.13.174','normal','',0,0,0,2,0,'{\"login\":[1627992526,1628011182]}'),(2555,'54.162.175.112','normal','',0,0,0,2,0,'{\"login\":[1627993694,1627996948]}'),(2556,'171.244.50.60','normal','',0,0,0,4,0,'{\"login\":[1627994750,1628002353,1628571498,1630454559]}'),(2557,'129.205.156.40','normal','',0,0,0,0,0,'[]'),(2558,'143.198.128.239','normal','',0,0,0,1,0,'{\"login\":[1627997955]}'),(2559,'52.25.12.185','normal','',0,0,0,0,0,'[]'),(2560,'209.97.164.174','normal','',0,0,0,2,0,'{\"login\":[1628003391,1628561350]}'),(2561,'107.150.63.173','normal','',0,0,0,15,0,'{\"login\":[1628004179,1633037556,1633067953,1633078593,1633090393,1633136465,1644465902,1644469577,1644475736,1644827283,1644834136,1644845493,1644850840,1644852990,1644854294]}'),(2562,'207.46.13.157','normal','',0,0,0,0,0,'[]'),(2563,'62.182.20.25','normal','',0,0,0,1,0,'{\"login\":[1628007831]}'),(2564,'69.163.224.11','normal','',0,0,0,1,0,'{\"login\":[1628008021]}'),(2565,'167.172.23.224','normal','',0,0,0,0,0,'[]'),(2566,'149.202.174.28','normal','',0,0,0,1,0,'{\"login\":[1628010124]}'),(2567,'157.55.39.87','normal','',0,0,0,0,0,'[]'),(2568,'64.227.50.254','normal','',0,0,0,1,0,'{\"login\":[1628011250]}'),(2569,'162.241.149.137','normal','',0,0,0,1,0,'{\"login\":[1628011875]}'),(2570,'104.248.234.131','normal','',0,0,0,1,0,'{\"login\":[1628013569]}'),(2571,'91.185.208.27','normal','',0,0,0,1,0,'{\"login\":[1628014631]}'),(2572,'138.68.175.235','normal','',0,0,0,1,0,'{\"login\":[1628015752]}'),(2573,'192.169.249.201','normal','',0,0,0,1,0,'{\"login\":[1628019798]}'),(2574,'175.24.107.98','normal','',0,0,0,1,0,'{\"login\":[1628020501]}'),(2575,'144.91.68.146','normal','',0,0,0,10,0,'{\"login\":[1628021537,1633204260,1635378620,1635804719,1636743825,1637858139,1637876467,1637980401,1638833824,1638856535]}'),(2576,'138.68.22.176','normal','',0,0,0,1,0,'{\"login\":[1628021935]}'),(2577,'54.191.87.142','normal','',0,0,0,0,0,'[]'),(2578,'54.244.92.16','normal','',0,0,0,0,0,'[]'),(2579,'192.163.198.248','normal','',0,0,0,1,0,'{\"login\":[1628022614]}'),(2580,'18.236.73.132','normal','',0,0,0,0,0,'[]'),(2581,'178.128.166.56','normal','',0,0,0,1,0,'{\"login\":[1628025552]}'),(2582,'45.143.228.5','normal','',0,0,0,2,0,'{\"login\":[1628026212,1628042975]}'),(2583,'81.19.215.13','normal','',0,0,0,0,1,'{\"nf\":[1628031179]}'),(2584,'173.212.213.212','normal','',0,0,0,2,0,'{\"login\":[1628031816,1629322127]}'),(2585,'51.79.160.231','normal','',0,0,0,1,0,'{\"login\":[1628033494]}'),(2586,'50.62.57.15','normal','',0,0,0,1,0,'{\"login\":[1628035284]}'),(2587,'5.39.90.21','normal','',0,0,0,1,0,'{\"login\":[1628035679]}'),(2588,'45.79.214.18','normal','',0,0,0,1,0,'{\"login\":[1628037024]}'),(2589,'138.201.116.194','normal','',0,0,0,1,0,'{\"login\":[1628038070]}'),(2590,'107.150.48.229','normal','',0,0,0,1,0,'{\"login\":[1628038514]}'),(2591,'95.216.0.19','normal','',0,0,0,1,0,'{\"login\":[1628039334]}'),(2592,'209.126.7.138','normal','',0,0,0,1,0,'{\"login\":[1628044765]}'),(2593,'192.46.212.36','normal','',0,0,0,1,0,'{\"login\":[1628045371]}'),(2594,'107.150.46.54','normal','',0,0,0,3,0,'{\"login\":[1628045676,1628055007,1629200590]}'),(2595,'51.178.86.137','normal','',0,0,0,0,0,'[]'),(2596,'192.151.145.139','normal','',0,0,0,7,0,'{\"login\":[1628050193,1628057377,1628085694,1628093466,1629404135,1629475811,1629653906]}'),(2597,'128.199.85.148','normal','',0,0,0,1,0,'{\"login\":[1628050196]}'),(2598,'103.124.95.89','normal','',0,0,0,1,0,'{\"login\":[1628051085]}'),(2599,'198.199.116.205','normal','',0,0,0,2,0,'{\"login\":[1628053282,1629248029]}'),(2600,'103.123.16.140','normal','',0,0,0,1,0,'{\"login\":[1628053963]}'),(2601,'193.226.12.204','normal','',0,0,0,1,0,'{\"login\":[1628054563]}'),(2602,'157.90.242.67','normal','',0,0,0,2,0,'{\"login\":[1628056364,1630420360]}'),(2603,'192.241.159.53','normal','',0,0,0,1,0,'{\"login\":[1628058573]}'),(2604,'35.224.216.78','normal','',0,0,0,3,0,'{\"login\":[1628059079,1640253242,1661687673]}'),(2605,'62.138.0.171','normal','',0,0,0,1,0,'{\"login\":[1628060816]}'),(2606,'159.203.127.144','normal','',0,0,0,4,0,'{\"login\":[1628063838,1628545435,1629161540,1629316727]}'),(2607,'148.66.130.114','normal','',0,0,0,2,0,'{\"login\":[1628063857,1628978629]}'),(2608,'35.236.151.140','normal','',0,0,0,1,0,'{\"login\":[1628065102]}'),(2609,'75.119.218.13','normal','',0,0,0,1,0,'{\"login\":[1628066452]}'),(2610,'146.185.163.81','normal','',0,0,0,2,0,'{\"login\":[1628068417,1634948692]}'),(2611,'144.86.173.26','normal','',0,0,0,0,0,'[]'),(2612,'165.232.176.78','normal','',0,0,0,3,0,'{\"login\":[1628077168,1631694216,1633524914]}'),(2613,'47.114.3.188','normal','',0,0,0,3,0,'{\"login\":[1628078000,1640516604,1650168676]}'),(2614,'107.189.29.41','normal','',0,0,0,0,0,'[]'),(2615,'69.197.163.229','normal','',0,0,0,1,0,'{\"login\":[1628080700]}'),(2616,'142.93.152.19','normal','',0,0,0,1,0,'{\"login\":[1628081133]}'),(2617,'49.50.240.107','normal','',0,0,0,1,0,'{\"login\":[1628082872]}'),(2618,'54.203.73.198','normal','',0,0,0,0,0,'[]'),(2619,'107.150.48.228','normal','',0,0,0,1,0,'{\"login\":[1628098434]}'),(2620,'62.210.38.233','normal','',0,0,0,0,0,'[]'),(2621,'34.221.192.69','normal','',0,0,0,0,0,'[]'),(2622,'52.13.111.50','normal','',0,0,0,0,0,'[]'),(2623,'34.221.190.246','normal','',0,0,0,0,0,'[]'),(2624,'83.97.117.83','normal','',0,0,0,0,0,'[]'),(2625,'52.221.240.93','normal','',0,0,0,1,0,'{\"login\":[1628117868]}'),(2626,'13.127.75.144','normal','',0,0,0,4,0,'{\"login\":[1628120151,1628869974,1628938133,1629007505]}'),(2627,'105.184.81.49','normal','',0,0,0,0,0,'[]'),(2628,'91.121.245.251','normal','',0,0,0,1,0,'{\"login\":[1628127969]}'),(2629,'144.34.161.223','normal','',0,0,0,1,0,'{\"login\":[1628134233]}'),(2630,'45.77.47.164','normal','',0,0,0,0,3,'{\"nf\":[1628136038,1633664531,1635681995]}'),(2631,'54.158.138.119','normal','',0,0,0,1,0,'{\"login\":[1628148337]}'),(2632,'3.68.66.167','normal','',0,0,0,1,0,'{\"login\":[1628149092]}'),(2633,'20.62.193.224','normal','',0,0,0,8,0,'{\"login\":[1628149850,1628691972,1629090663,1629941448,1630754413,1632875065,1633696300,1634944141]}'),(2634,'105.185.158.74','normal','',0,0,0,0,0,'[]'),(2635,'109.70.100.23','normal','',0,0,0,0,0,'[]'),(2636,'139.99.61.168','normal','',0,0,0,1,0,'{\"login\":[1628155239]}'),(2637,'5.45.207.76','normal','',0,0,0,0,0,'[]'),(2638,'82.146.44.214','normal','',0,0,0,20,0,'{\"login\":[1628158901,1628756526,1628951725,1629102709,1629174522,1629178193,1629940652,1630273974,1630588726,1630829614,1631433457,1632042772,1633561323,1633841680,1636688154,1636925036,1637279657,1637281525,1637299069,1637661201]}'),(2639,'20.191.45.212','normal','',0,0,0,0,0,'[]'),(2640,'89.46.108.100','normal','',0,0,0,0,3,'{\"nf\":[1628163298,1629608354,1634456415]}'),(2641,'192.169.147.249','normal','',0,0,0,0,3,'{\"nf\":[1628175107,1628257139,1631823935]}'),(2642,'217.138.217.2','normal','',0,0,0,0,0,'[]'),(2643,'173.244.209.254','normal','',0,0,0,0,0,'[]'),(2644,'142.93.182.119','normal','',0,0,0,0,0,'[]'),(2645,'185.220.101.23','normal','',0,0,0,0,0,'[]'),(2646,'34.220.8.19','normal','',0,0,0,0,0,'[]'),(2647,'34.217.99.250','normal','',0,0,0,0,0,'[]'),(2648,'54.202.148.154','normal','',0,0,0,0,0,'[]'),(2649,'54.187.148.227','normal','',0,0,0,0,0,'[]'),(2650,'174.138.26.144','normal','',0,0,0,0,0,'[]'),(2651,'144.86.173.155','normal','',0,0,0,0,0,'[]'),(2652,'13.229.63.54','normal','',0,0,0,0,2,'{\"nf\":[1628222003,1628222005]}'),(2653,'144.86.173.75','normal','',0,0,0,0,0,'[]'),(2654,'42.236.10.81','normal','',0,0,0,0,0,'[]'),(2655,'40.84.150.108','normal','',0,0,0,0,0,'[]'),(2656,'51.15.195.246','normal','',0,0,0,0,0,'[]'),(2657,'195.225.118.40','normal','',0,0,0,0,0,'[]'),(2658,'92.118.160.13','normal','',0,0,0,0,0,'[]'),(2659,'34.221.136.121','normal','',0,0,0,0,0,'[]'),(2660,'193.189.100.195','normal','',0,0,0,0,0,'[]'),(2661,'45.32.114.152','normal','',0,0,0,0,2,'{\"nf\":[1628308377,1628833190]}'),(2662,'176.119.141.249','normal','',0,0,0,0,0,'[]'),(2663,'51.195.103.74','normal','',0,0,0,0,0,'[]'),(2664,'52.38.246.170','normal','',0,0,0,0,0,'[]'),(2665,'42.236.10.84','normal','',0,0,0,0,0,'[]'),(2666,'77.243.24.24','normal','',0,0,0,1,0,'{\"login\":[1628418126]}'),(2667,'86.120.224.234','normal','',0,0,0,1,0,'{\"login\":[1628418127]}'),(2668,'105.102.239.226','normal','',0,0,0,1,0,'{\"login\":[1628418130]}'),(2669,'125.160.232.190','normal','',0,0,0,1,0,'{\"login\":[1628418129]}'),(2670,'27.3.9.42','normal','',0,0,0,1,0,'{\"login\":[1628418131]}'),(2671,'103.130.165.141','normal','',0,0,0,1,0,'{\"login\":[1628418132]}'),(2672,'185.220.103.9','normal','',0,0,0,0,0,'[]'),(2673,'93.158.66.18','normal','',0,0,0,0,6,'{\"nf\":[1628428523,1628484916,1628545917,1628589735,1628602052,1628645857]}'),(2674,'65.60.10.250','normal','',0,0,0,2,0,'{\"login\":[1628963269,1629296070]}'),(2675,'185.220.101.250','normal','',0,0,0,0,0,'[]'),(2676,'139.224.198.47','normal','',0,0,0,2,0,'{\"login\":[1638424061,1638424608]}'),(2677,'85.128.142.164','normal','',0,0,0,0,0,'[]'),(2678,'89.163.222.77','normal','',0,0,0,0,0,'[]'),(2679,'95.213.175.52','normal','',0,0,0,0,0,'[]'),(2680,'98.142.96.66','normal','',0,0,0,0,0,'[]'),(2681,'109.123.76.182','normal','',0,0,0,0,0,'[]'),(2682,'144.91.104.243','normal','',0,0,0,0,0,'[]'),(2683,'185.98.5.148','normal','',0,0,0,1,0,'{\"login\":[1629228110]}'),(2684,'94.20.43.46','normal','',0,0,0,0,0,'[]'),(2685,'211.20.18.64','normal','',0,0,0,0,0,'[]'),(2686,'190.36.73.212','normal','',0,0,0,1,0,'{\"login\":[1628450999]}'),(2687,'89.163.146.177','normal','',0,0,0,0,0,'[]'),(2688,'80.66.202.183','normal','',0,0,0,0,0,'[]'),(2689,'34.81.183.110','normal','',0,0,0,0,0,'[]'),(2690,'103.30.0.66','normal','',0,0,0,0,0,'[]'),(2691,'85.14.108.34','normal','',0,0,0,0,0,'[]'),(2692,'102.130.118.107','normal','',0,0,0,5,0,'{\"login\":[1653567107,1653574312,1653579891,1653600560,1653617615]}'),(2693,'31.193.1.105','normal','',0,0,0,1,0,'{\"login\":[1629235169]}'),(2694,'185.126.219.43','normal','',0,0,0,78,0,'{\"login\":[1633838873,1634087954,1634403236,1634912803,1635467593,1636683073,1636701604,1636867113,1637962734,1638778312,1638985517,1639297643,1639533064,1639729541,1640346488,1640563673,1640608464,1640645057,1640683986,1641511464,1641978255,1642190016,1642293924,1642514592,1642639694,1644086647,1644207247,1644255505,1644796813,1645088852,1646253444,1646653495,1646912735,1647234549,1647364269,1647513884,1647912921,1647958089,1648183599,1648405559,1648561327,1648686204,1649762252,1650311686,1650403635,1650564876,1650703944,1650947087,1652267777,1652653600,1652708914,1652747839,1652851861,1652995638,1653257911,1654092850,1654239085,1654321842,1654873319,1655468197,1655814365,1655823248,1656834258,1658203457,1659101399,1659118651,1659382109,1660915609,1660941926,1661164324,1661203606,1661395789,1661655252,1661728236,1662121581,1662388300,1662391172,1663054797]}'),(2695,'216.237.122.82','normal','',0,0,0,1,0,'{\"login\":[1628957819]}'),(2696,'45.148.233.20','normal','',0,0,0,0,0,'[]'),(2697,'51.83.140.235','normal','',0,0,0,0,0,'[]'),(2698,'67.222.17.111','normal','',0,0,0,0,0,'[]'),(2699,'178.18.247.147','normal','',0,0,0,0,0,'[]'),(2700,'54.79.166.165','normal','',0,0,0,0,0,'[]'),(2701,'209.126.4.7','normal','',0,0,0,1,0,'{\"login\":[1629228379]}'),(2702,'5.9.77.30','normal','',0,0,0,0,0,'[]'),(2703,'186.64.114.15','normal','',0,0,0,0,0,'[]'),(2704,'95.154.230.192','normal','',0,0,0,0,0,'[]'),(2705,'185.220.101.13','normal','',0,0,0,0,0,'[]'),(2706,'162.241.136.25','normal','',0,0,0,0,0,'[]'),(2707,'62.165.70.247','normal','',0,0,0,0,0,'[]'),(2708,'94.23.41.220','normal','',0,0,0,0,0,'[]'),(2709,'35.222.228.119','normal','',0,0,0,0,0,'[]'),(2710,'51.68.112.94','normal','',0,0,0,0,0,'[]'),(2711,'94.130.124.218','normal','',0,0,0,0,0,'[]'),(2712,'51.75.90.39','normal','',0,0,0,0,0,'[]'),(2713,'192.227.69.182','normal','',0,0,0,0,0,'[]'),(2714,'177.101.144.168','normal','',0,0,0,0,0,'[]'),(2715,'103.86.176.93','normal','',0,0,0,2,0,'{\"login\":[1628956086,1629012572]}'),(2716,'182.53.18.35','normal','',0,0,0,0,0,'[]'),(2717,'77.68.126.192','normal','',0,0,0,0,0,'[]'),(2718,'5.61.250.15','normal','',0,0,0,0,0,'[]'),(2719,'84.16.227.247','normal','',0,0,0,1,0,'{\"login\":[1628999622]}'),(2720,'109.108.144.142','normal','',0,0,0,0,0,'[]'),(2721,'45.119.83.250','normal','',0,0,0,1,0,'{\"login\":[1650298019]}'),(2722,'108.163.245.250','normal','',0,0,0,0,0,'[]'),(2723,'185.61.153.77','normal','',0,0,0,3,0,'{\"login\":[1631684986,1632589317,1632933848]}'),(2724,'94.130.143.87','normal','',0,0,0,0,0,'[]'),(2725,'161.35.13.253','normal','',0,0,0,1,0,'{\"login\":[1636643231]}'),(2726,'34.145.194.122','normal','',0,0,0,0,0,'[]'),(2727,'176.9.70.145','normal','',0,0,0,0,0,'[]'),(2728,'136.243.219.86','normal','',0,0,0,0,0,'[]'),(2729,'103.120.177.244','normal','',0,0,0,0,0,'[]'),(2730,'103.83.81.53','normal','',0,0,0,0,0,'[]'),(2731,'45.79.117.73','normal','',0,0,0,0,0,'[]'),(2732,'66.115.173.18','normal','',0,0,0,4,0,'{\"login\":[1631966232,1632294458,1640601540,1640670691]}'),(2733,'173.209.57.149','normal','',0,0,0,0,0,'[]'),(2734,'173.249.147.111','normal','',0,0,0,0,0,'[]'),(2735,'107.161.177.10','normal','',0,0,0,2,0,'{\"login\":[1632178316,1642212701]}'),(2736,'72.52.152.17','normal','',0,0,0,0,0,'[]'),(2737,'208.113.153.217','normal','',0,0,0,0,0,'[]'),(2738,'146.88.238.242','normal','',0,0,0,0,0,'[]'),(2739,'185.101.158.100','normal','',0,0,0,0,0,'[]'),(2740,'110.4.45.112','normal','',0,0,0,0,0,'[]'),(2741,'162.214.118.72','normal','',0,0,0,1,0,'{\"login\":[1628940927]}'),(2742,'193.112.212.10','normal','',0,0,0,0,0,'[]'),(2743,'173.212.224.225','normal','',0,0,0,0,0,'[]'),(2744,'103.143.46.249','normal','',0,0,0,0,0,'[]'),(2745,'178.128.254.132','normal','',0,0,0,0,0,'[]'),(2746,'193.189.75.222','normal','',0,0,0,1,0,'{\"login\":[1632899333]}'),(2747,'173.249.44.230','normal','',0,0,0,0,0,'[]'),(2748,'96.125.173.221','normal','',0,0,0,0,0,'[]'),(2749,'205.169.39.126','normal','',0,0,0,0,0,'[]'),(2750,'173.236.184.136','normal','',0,0,0,0,0,'[]'),(2751,'43.229.84.147','normal','',0,0,0,0,0,'[]'),(2752,'66.42.58.231','normal','',0,0,0,0,0,'[]'),(2753,'63.143.41.18','normal','',0,0,0,5,0,'{\"login\":[1629251846,1629291385,1631613676,1632302552,1633987099]}'),(2754,'173.236.82.242','normal','',0,0,0,0,0,'[]'),(2755,'24.172.246.199','normal','',0,0,0,0,0,'[]'),(2756,'65.60.20.182','normal','',0,0,0,2,0,'{\"login\":[1633073182,1633097749]}'),(2757,'161.35.106.236','normal','',0,0,0,3,0,'{\"login\":[1629302315,1631967770,1632580720]}'),(2758,'173.208.249.194','normal','',0,0,0,0,0,'[]'),(2759,'109.123.71.220','normal','',0,0,0,0,0,'[]'),(2760,'150.136.213.184','normal','',0,0,0,0,11,'{\"nf\":[1628534022,1628534029,1628534035,1628534041,1628534046,1628534050,1628534056,1628534061,1628534066,1628534070,1628534075]}'),(2761,'45.32.102.145','normal','',0,0,0,1,0,'{\"login\":[1628536237]}'),(2762,'42.112.38.85','normal','',0,0,0,3,0,'{\"login\":[1628538488,1629313495,1630399378]}'),(2763,'195.201.194.33','normal','',0,0,0,1,0,'{\"login\":[1628539644]}'),(2764,'52.12.26.242','normal','',0,0,0,0,0,'[]'),(2765,'217.182.183.95','normal','',0,0,0,1,0,'{\"login\":[1628543058]}'),(2766,'193.37.152.120','normal','',0,0,0,0,0,'[]'),(2767,'51.81.28.74','normal','',0,0,0,1,0,'{\"login\":[1628546569]}'),(2768,'62.171.146.66','normal','',0,0,0,1,0,'{\"login\":[1628547762]}'),(2769,'139.99.91.180','normal','',0,0,0,2,0,'{\"login\":[1628548964,1632018393]}'),(2770,'18.195.181.131','normal','',0,0,0,1,0,'{\"login\":[1628551498]}'),(2771,'109.241.118.133','normal','',0,0,0,1,0,'{\"login\":[1628552922]}'),(2772,'186.99.41.114','normal','',0,0,0,1,0,'{\"login\":[1628552921]}'),(2773,'186.179.192.146','normal','',0,0,0,1,0,'{\"login\":[1628552921]}'),(2774,'187.167.75.103','normal','',0,0,0,1,0,'{\"login\":[1628552921]}'),(2775,'69.30.250.10','normal','',0,0,0,3,0,'{\"login\":[1628553803,1630410745,1630450744]}'),(2776,'50.30.38.174','normal','',0,0,0,2,0,'{\"login\":[1628554863,1629193699]}'),(2777,'85.128.143.20','normal','',0,0,0,1,0,'{\"login\":[1628556253]}'),(2778,'134.213.27.84','normal','',0,0,0,2,0,'{\"login\":[1628557490,1629164184]}'),(2779,'165.22.9.219','normal','',0,0,0,1,0,'{\"login\":[1628558773]}'),(2780,'147.83.2.20','normal','',0,0,0,1,0,'{\"login\":[1628562579]}'),(2781,'186.234.80.64','normal','',0,0,0,1,0,'{\"login\":[1628563803]}'),(2782,'52.163.223.126','normal','',0,0,0,14,0,'{\"login\":[1628564790,1628784190,1628835683,1628841029,1629127185,1629145030,1629341763,1629672826,1631990429,1632063124,1634011663,1634335082,1636641295,1637394361]}'),(2783,'161.97.71.224','normal','',0,0,0,2,0,'{\"login\":[1628565104,1629148178]}'),(2784,'75.119.140.175','normal','',0,0,0,2,2,'{\"login\":[1628566307,1642177212],\"nf\":[1641499210,1641499213]}'),(2785,'46.101.115.116','normal','',0,0,0,11,0,'{\"login\":[1628566808,1628759921,1628973883,1629074924,1640619615,1640731645,1641807580,1641987597,1642358417,1643087594,1643575914]}'),(2786,'212.83.138.90','normal','',0,0,0,1,0,'{\"login\":[1628567601]}'),(2787,'154.53.132.193','normal','',0,0,0,1,0,'{\"login\":[1628568903]}'),(2788,'104.248.241.209','normal','',0,0,0,11,0,'{\"login\":[1628570851,1629658767,1632249126,1632708843,1634030755,1634398297,1635914545,1637092340,1637360954,1639422513,1639869364]}'),(2789,'217.174.250.105','normal','',0,0,0,4,0,'{\"login\":[1628574786,1628949048,1628999676,1630221881]}'),(2790,'66.249.69.244','normal','',0,0,0,0,0,'[]'),(2791,'35.226.194.118','normal','',0,0,0,2,0,'{\"login\":[1628581338,1631719709]}'),(2792,'34.126.146.135','normal','',0,0,0,8,0,'{\"login\":[1628582284,1628842372,1632146576,1632521661,1634320788,1634903172,1635669189,1637853191]}'),(2793,'88.245.193.59','normal','',0,0,0,1,0,'{\"login\":[1628586341]}'),(2794,'128.199.200.213','normal','',0,0,0,0,1,'{\"nf\":[1628587422]}'),(2795,'47.52.105.66','normal','',0,0,0,0,1,'{\"nf\":[1628589913]}'),(2796,'196.24.39.242','normal','',0,0,0,0,0,'[]'),(2797,'128.199.81.122','normal','',0,0,0,1,0,'{\"login\":[1628594170]}'),(2798,'199.249.230.156','normal','',0,0,0,0,0,'[]'),(2799,'149.224.196.31','normal','',0,0,0,1,0,'{\"login\":[1628600355]}'),(2800,'37.19.223.219','normal','',0,0,0,0,0,'[]'),(2801,'197.89.37.113','normal','',0,0,0,0,1,'{\"nf\":[1629289996]}'),(2802,'156.223.143.39','normal','',0,0,0,1,0,'{\"login\":[1628619998]}'),(2803,'34.219.4.43','normal','',0,0,0,0,0,'[]'),(2804,'54.245.35.75','normal','',0,0,0,0,0,'[]'),(2805,'5.188.62.76','normal','You have been locked out due to too many invalid login attempts.',1652851597,1652851297,0,11,0,'{\"nf\":[],\"login\":[1652882421,1652882426,1653004574,1653004580,1653142881,1653142886,1653448405,1653448411,1662844767,1662850372,1662851931]}'),(2806,'52.38.109.82','normal','',0,0,0,0,0,'[]'),(2807,'161.10.120.251','normal','',0,0,0,1,0,'{\"login\":[1628629389]}'),(2808,'18.219.200.250','normal','',0,0,0,0,0,'[]'),(2809,'18.219.200.250','normal','',0,0,0,0,0,'[]'),(2810,'144.86.173.86','normal','',0,0,0,0,0,'[]'),(2811,'45.182.46.69','normal','',0,0,0,1,0,'{\"login\":[1628649518]}'),(2812,'113.161.143.169','normal','',0,0,0,1,0,'{\"login\":[1628649533]}'),(2813,'149.56.150.229','normal','',0,0,0,0,2,'{\"nf\":[1628659331,1628659361]}'),(2814,'51.77.129.159','normal','',0,0,0,0,0,'[]'),(2815,'37.187.132.114','normal','',0,0,0,0,0,'[]'),(2816,'51.68.40.21','normal','',0,0,0,2,0,'{\"login\":[1632176547,1632289486]}'),(2817,'185.104.144.45','normal','',0,0,0,0,0,'[]'),(2818,'37.187.91.7','normal','',0,0,0,0,0,'[]'),(2819,'202.0.103.51','normal','',0,0,0,0,0,'[]'),(2820,'45.153.160.132','normal','',0,0,0,0,0,'[]'),(2821,'54.36.148.68','normal','',0,0,0,0,0,'[]'),(2822,'54.36.148.4','normal','',0,0,0,0,0,'[]'),(2823,'198.251.87.24','normal','',0,0,0,0,0,'[]'),(2824,'54.36.148.61','normal','',0,0,0,0,0,'[]'),(2825,'54.36.148.26','normal','',0,0,0,0,0,'[]'),(2826,'80.172.253.26','normal','',0,0,0,0,0,'[]'),(2827,'103.209.153.32','normal','',0,0,0,2,0,'{\"login\":[1631953035,1640574245]}'),(2828,'148.251.213.218','normal','',0,0,0,0,0,'[]'),(2829,'87.98.252.203','normal','',0,0,0,0,0,'[]'),(2830,'162.0.208.15','normal','',0,0,0,2,0,'{\"login\":[1629231568,1631956062]}'),(2831,'199.188.207.205','normal','',0,0,0,0,0,'[]'),(2832,'119.240.150.241','normal','',0,0,0,0,0,'[]'),(2833,'114.119.130.202','normal','',0,0,0,0,0,'[]'),(2834,'139.99.148.32','normal','',0,0,0,0,0,'[]'),(2835,'92.62.99.99','normal','',0,0,0,0,0,'[]'),(2836,'54.36.149.98','normal','',0,0,0,0,0,'[]'),(2837,'54.36.148.64','normal','',0,0,0,0,0,'[]'),(2838,'159.65.216.18','normal','',0,0,0,56,0,'{\"login\":[1628700096,1628857740,1629034626,1629914340,1629924268,1629981849,1630195043,1630235365,1630290439,1630354310,1630355874,1630645704,1630917669,1631478049,1632745851,1633784794,1635495658,1637227300,1637829097,1637930898,1637939372,1638342828,1638764738,1639031447,1639239372,1639303653,1640564596,1641924334,1642082558,1642491804,1643577060,1643660045,1644253886,1644284284,1644497452,1644541248,1644823856,1645958338,1645968702,1646280061,1646542826,1646624649,1646660929,1646881445,1646900159,1647336301,1647451867,1647792638,1647939748,1648262203,1649735160,1650137189,1650262300,1650497996,1650617460,1650653345]}'),(2839,'149.3.170.147','normal','',0,0,0,0,0,'[]'),(2840,'47.242.61.245','normal','',0,0,0,19,0,'{\"login\":[1628706352,1628749862,1628990699,1629544195,1630167429,1630643495,1630723811,1630760671,1630938308,1631490402,1631764899,1631903112,1632367337,1633065962,1633337643,1634421565,1634487216,1634499987,1634518283]}'),(2841,'186.64.115.80','normal','',0,0,0,0,0,'[]'),(2842,'185.220.102.253','normal','',0,0,0,0,0,'[]'),(2843,'78.157.36.98','normal','',0,0,0,1,0,'{\"login\":[1630472232]}'),(2844,'47.106.201.134','normal','',0,0,0,3,0,'{\"login\":[1629006947,1640263301,1662136342]}'),(2845,'146.185.135.169','normal','',0,0,0,0,0,'[]'),(2846,'54.244.44.60','normal','',0,0,0,0,0,'[]'),(2847,'144.91.76.61','normal','',0,0,0,1,0,'{\"login\":[1629231861]}'),(2848,'185.165.116.13','normal','',0,0,0,1,0,'{\"login\":[1629233017]}'),(2849,'144.217.123.236','normal','',0,0,0,1,0,'{\"login\":[1631609308]}'),(2850,'161.97.134.160','normal','',0,0,0,0,0,'[]'),(2851,'185.117.168.200','normal','',0,0,0,0,0,'[]'),(2852,'107.190.131.50','normal','',0,0,0,1,0,'{\"login\":[1629245025]}'),(2853,'68.183.113.63','normal','',0,0,0,1,0,'{\"login\":[1628725392]}'),(2854,'83.69.139.151','normal','',0,0,0,0,0,'[]'),(2855,'199.192.23.119','normal','',0,0,0,1,0,'{\"login\":[1631957614]}'),(2856,'198.54.120.93','normal','',0,0,0,7,0,'{\"login\":[1629228928,1629292120,1631611265,1632478420,1633543937,1634943340,1650303957]}'),(2857,'1.234.27.10','normal','',0,0,0,1,0,'{\"login\":[1632475913]}'),(2858,'114.119.147.246','normal','',0,0,0,0,0,'[]'),(2859,'142.93.250.165','normal','',0,0,0,0,0,'[]'),(2860,'91.134.201.164','normal','',0,0,0,1,0,'{\"login\":[1633561053]}'),(2861,'64.90.48.195','normal','',0,0,0,0,0,'[]'),(2862,'41.185.64.75','normal','',0,0,0,0,0,'[]'),(2863,'162.214.150.93','normal','',0,0,0,2,0,'{\"login\":[1629001469,1629245664]}'),(2864,'66.249.64.65','normal','',0,0,0,0,0,'[]'),(2865,'66.249.64.69','normal','',0,0,0,0,0,'[]'),(2866,'58.153.4.157','normal','',0,0,0,1,0,'{\"login\":[1628758218]}'),(2867,'110.4.45.63','normal','',0,0,0,0,0,'[]'),(2868,'17.121.114.95','normal','',0,0,0,0,0,'[]'),(2869,'108.178.42.114','normal','',0,0,0,4,0,'{\"login\":[1628771958,1628834337,1628909149,1628941306]}'),(2870,'119.157.69.183','normal','',0,0,0,1,0,'{\"login\":[1628774338]}'),(2871,'49.228.225.248','normal','',0,0,0,1,0,'{\"login\":[1628774342]}'),(2872,'41.75.99.174','normal','',0,0,0,1,0,'{\"login\":[1628774788]}'),(2873,'54.36.148.190','normal','',0,0,0,0,0,'[]'),(2874,'125.64.94.212','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1629413421,0,1629413121,0,80,'{\"nf\":[1629413054,1629413058,1629413062,1629413065,1629413068,1629413070,1629413073,1629413076,1629413079,1629413081,1629413085,1629413088,1629413092,1629413097,1629413103,1629413108,1629413112,1629413115,1629413117,1629413121],\"login\":[]}'),(2875,'114.119.147.237','normal','',0,0,0,0,0,'[]'),(2876,'155.94.163.77','normal','',0,0,0,48,0,'{\"login\":[1628794985,1628926763,1629935906,1630594605,1631484263,1631910035,1632311869,1632331573,1632362016,1632541825,1634006579,1634281956,1634343044,1634350402,1634420735,1634549241,1635486283,1637910712,1638817755,1639009308,1639524329,1640061141,1640085410,1640372426,1640540078,1641053598,1641095405,1641251959,1641948139,1642046302,1642369305,1642406018,1643004010,1643333830,1643569565,1644239489,1644705251,1645267064,1645962815,1645992364,1646098491,1646280791,1646503906,1646580328,1646808828,1646857551,1647221778,1647368364]}'),(2877,'103.212.121.160','normal','',0,0,0,0,0,'[]'),(2878,'162.214.75.206','normal','',0,0,0,2,0,'{\"login\":[1629252662,1629299711]}'),(2879,'190.224.163.182','normal','',0,0,0,0,0,'[]'),(2880,'91.79.55.109','normal','',0,0,0,0,0,'[]'),(2881,'81.250.135.234','normal','',0,0,0,0,0,'[]'),(2882,'186.64.117.95','normal','',0,0,0,0,0,'[]'),(2883,'162.214.121.146','normal','',0,0,0,1,0,'{\"login\":[1632584210]}'),(2884,'186.64.114.30','normal','',0,0,0,0,0,'[]'),(2885,'46.19.139.250','normal','',0,0,0,0,0,'[]'),(2886,'138.197.174.231','normal','',0,0,0,2,0,'{\"login\":[1629227822,1640910668]}'),(2887,'75.119.132.240','normal','',0,0,0,0,0,'[]'),(2888,'157.55.39.92','normal','',0,0,0,0,0,'[]'),(2889,'162.214.106.81','normal','',0,0,0,0,0,'[]'),(2890,'106.12.92.151','normal','',0,0,0,1,0,'{\"login\":[1628817690]}'),(2891,'103.145.51.190','normal','',0,0,0,0,0,'[]'),(2892,'64.227.53.63','normal','',0,0,0,1,0,'{\"login\":[1632202239]}'),(2893,'103.124.92.79','normal','',0,0,0,0,0,'[]'),(2894,'101.37.28.132','normal','',0,0,0,2,0,'{\"login\":[1632017547,1632579001]}'),(2895,'198.144.120.177','normal','',0,0,0,0,0,'[]'),(2896,'162.214.52.83','normal','',0,0,0,0,0,'[]'),(2897,'2.59.117.27','normal','',0,0,0,0,0,'[]'),(2898,'109.234.160.26','normal','',0,0,0,1,0,'{\"login\":[1629243071]}'),(2899,'115.164.177.204','normal','',0,0,0,1,0,'{\"login\":[1628827263]}'),(2900,'179.51.3.213','normal','',0,0,0,1,0,'{\"login\":[1628827276]}'),(2901,'109.74.195.178','normal','',0,0,0,0,0,'[]'),(2902,'34.68.76.32','normal','',0,0,0,3,0,'{\"login\":[1628827778,1634411263,1634529751]}'),(2903,'197.248.5.22','normal','',0,0,0,1,0,'{\"login\":[1640608554]}'),(2904,'51.38.80.7','normal','',0,0,0,0,0,'[]'),(2905,'5.77.39.102','normal','',0,0,0,1,0,'{\"login\":[1629026581]}'),(2906,'45.56.64.153','normal','',0,0,0,0,0,'[]'),(2907,'78.46.213.205','normal','',0,0,0,0,0,'[]'),(2908,'51.178.240.56','normal','',0,0,0,0,0,'[]'),(2909,'47.112.135.16','normal','',0,0,0,0,0,'[]'),(2910,'198.44.127.32','normal','',0,0,0,0,0,'[]'),(2911,'162.241.35.88','normal','',0,0,0,1,0,'{\"login\":[1629229828]}'),(2912,'185.107.47.171','normal','',0,0,0,0,0,'[]'),(2913,'217.160.15.151','normal','',0,0,0,0,0,'[]'),(2914,'185.46.120.131','normal','',0,0,0,0,0,'[]'),(2915,'94.23.150.239','normal','',0,0,0,0,0,'[]'),(2916,'5.2.201.120','normal','',0,0,0,0,0,'[]'),(2917,'161.97.171.234','normal','',0,0,0,0,0,'[]'),(2918,'185.46.121.66','normal','',0,0,0,5,0,'{\"login\":[1631693212,1631721861,1650351525,1660739032,1662094813]}'),(2919,'144.91.104.217','normal','',0,0,0,0,0,'[]'),(2920,'162.214.151.189','normal','',0,0,0,1,0,'{\"login\":[1628942027]}'),(2921,'138.68.235.36','normal','',0,0,0,0,0,'[]'),(2922,'144.86.173.81','normal','',0,0,0,0,0,'[]'),(2923,'34.87.35.250','normal','',0,0,0,2,0,'{\"login\":[1628845077,1629108782]}'),(2924,'208.97.176.83','normal','',0,0,0,0,0,'[]'),(2925,'138.128.170.242','normal','',0,0,0,0,0,'[]'),(2926,'139.99.123.41','normal','',0,0,0,1,0,'{\"login\":[1629294109]}'),(2927,'162.144.234.201','normal','',0,0,0,0,0,'[]'),(2928,'5.189.153.231','normal','',0,0,0,0,0,'[]'),(2929,'103.146.221.82','normal','',0,0,0,0,0,'[]'),(2930,'192.254.138.161','normal','',0,0,0,0,1,'{\"nf\":[1628848979]}'),(2931,'161.97.90.4','normal','',0,0,0,5,0,'{\"login\":[1628849360,1629009754,1629926574,1632017199,1632343816]}'),(2932,'217.147.232.131','normal','',0,0,0,1,0,'{\"login\":[1629238287]}'),(2933,'72.34.34.150','normal','',0,0,0,0,0,'[]'),(2934,'162.0.237.68','normal','',0,0,0,0,0,'[]'),(2935,'103.88.122.117','normal','',0,0,0,10,0,'{\"login\":[1649552812,1649746212,1650303494,1650726998,1651296587,1651432854,1652058648,1652300522,1654005985,1654415885]}'),(2936,'52.42.2.127','normal','',0,0,0,0,0,'[]'),(2937,'51.255.84.190','normal','',0,0,0,1,0,'{\"login\":[1629230971]}'),(2938,'54.236.42.54','normal','',0,0,0,0,0,'[]'),(2939,'201.217.243.93','normal','',0,0,0,0,0,'[]'),(2940,'34.81.150.87','normal','',0,0,0,1,0,'{\"login\":[1629295689]}'),(2941,'185.3.164.156','normal','',0,0,0,2,0,'{\"login\":[1628863427,1629081210]}'),(2942,'103.90.220.40','normal','',0,0,0,0,0,'[]'),(2943,'197.155.158.21','normal','',0,0,0,19,0,'{\"login\":[1635660326,1652852774,1653607093,1654522780,1654623204,1654707820,1654788370,1654975540,1657670220,1657760040,1657845157,1659263973,1660182111,1660422925,1660448687,1660516071,1660684347,1661147107,1661282800]}'),(2944,'192.3.176.233','normal','',0,0,0,0,0,'[]'),(2945,'34.77.35.166','normal','',0,0,0,0,0,'[]'),(2946,'207.46.13.135','normal','',0,0,0,0,0,'[]'),(2947,'107.150.63.171','normal','',0,0,0,12,0,'{\"login\":[1628875180,1629075250,1629147437,1629212099,1629300827,1629413119,1629602601,1629734405,1633379722,1633467835,1634414356,1634433940]}'),(2948,'167.86.69.51','normal','',0,0,0,0,0,'[]'),(2949,'162.55.220.55','normal','',0,0,0,0,0,'[]'),(2950,'209.97.169.15','normal','',0,0,0,5,0,'{\"login\":[1628880820,1629196002,1630132796,1631929156,1632079615]}'),(2951,'186.64.116.115','normal','',0,0,0,0,0,'[]'),(2952,'139.59.73.212','normal','',0,0,0,0,0,'[]'),(2953,'35.237.185.177','normal','',0,0,0,0,0,'[]'),(2954,'190.107.177.239','normal','',0,0,0,1,0,'{\"login\":[1661784389]}'),(2955,'164.52.208.110','normal','',0,0,0,0,0,'[]'),(2956,'115.29.203.111','normal','',0,0,0,0,8,'{\"nf\":[1628885691,1630299154,1630299156,1631800229,1633888843,1634078012,1635265631,1635880551]}'),(2957,'144.202.64.66','normal','',0,0,0,0,0,'[]'),(2958,'182.160.96.130','normal','',0,0,0,0,0,'[]'),(2959,'150.95.81.183','normal','',0,0,0,0,1,'{\"nf\":[1628891830]}'),(2960,'144.86.173.154','normal','',0,0,0,0,0,'[]'),(2961,'3.133.83.145','normal','',0,0,0,1,0,'{\"login\":[1628896741]}'),(2962,'95.128.43.176','normal','',0,0,0,59,0,'{\"login\":[1629286100,1629321949,1629668601,1629696467,1629714538,1629789887,1630303560,1630593795,1630949902,1631317693,1632085699,1632368083,1635661467,1635733700,1636928605,1637198670,1637199758,1637719620,1637820423,1637898440,1638375572,1638480532,1638745418,1639251424,1639577792,1639640865,1639686699,1639819286,1640465474,1640838028,1641049019,1641435467,1641933328,1642032754,1642042875,1642043605,1642319541,1643053907,1643104434,1643575327,1644200307,1644481352,1644692467,1644737160,1645270196,1646458965,1646827207,1647083114,1647516103,1649007395,1649240426,1649503501,1649746742,1650042899,1650131936,1650984396,1651323205,1651752484,1652156608]}'),(2963,'103.1.93.195','normal','',0,0,0,1,0,'{\"login\":[1628899442]}'),(2964,'60.134.228.110','normal','',0,0,0,1,0,'{\"login\":[1628899446]}'),(2965,'186.148.194.130','normal','',0,0,0,1,0,'{\"login\":[1628899450]}'),(2966,'78.190.144.210','normal','',0,0,0,1,0,'{\"login\":[1628899456]}'),(2967,'39.108.0.223','normal','',0,0,0,5,0,'{\"login\":[1628901689,1630124357,1630936656,1631397467,1631794757]}'),(2968,'42.236.10.113','normal','',0,0,0,0,0,'[]'),(2969,'163.172.99.156','normal','',0,0,0,0,0,'[]'),(2970,'203.78.103.56','normal','',0,0,0,0,0,'[]'),(2971,'23.81.227.93','normal','',0,0,0,0,0,'[]'),(2972,'216.145.11.94','normal','',0,0,0,0,0,'[]'),(2973,'103.116.16.173','normal','',0,0,0,5,0,'{\"login\":[1629229248,1631698938,1632474570,1653815752,1661078025]}'),(2974,'161.117.44.63','normal','',0,0,0,1,0,'{\"login\":[1631969426]}'),(2975,'167.86.119.239','normal','',0,0,0,1,0,'{\"login\":[1629301564]}'),(2976,'123.231.204.2','normal','',0,0,0,1,0,'{\"login\":[1629283905]}'),(2977,'108.62.69.239','normal','',0,0,0,0,0,'[]'),(2978,'194.233.75.106','normal','',0,0,0,2,0,'{\"login\":[1628914128,1630937477]}'),(2979,'178.128.211.81','normal','',0,0,0,1,0,'{\"login\":[1629010581]}'),(2980,'177.10.165.117','normal','',0,0,0,1,0,'{\"login\":[1629028705]}'),(2981,'67.225.241.18','normal','',0,0,0,0,0,'[]'),(2982,'195.201.172.76','normal','',0,0,0,2,0,'{\"login\":[1630854664,1631715342]}'),(2983,'198.27.82.45','normal','',0,0,0,1,0,'{\"login\":[1632588237]}'),(2984,'52.146.64.212','normal','',0,0,0,3,0,'{\"login\":[1631625477,1653546724,1653559828]}'),(2985,'91.214.124.220','normal','',0,0,0,0,0,'[]'),(2986,'1.116.18.228','normal','',0,0,0,0,0,'[]'),(2987,'34.81.181.54','normal','',0,0,0,0,0,'[]'),(2988,'194.233.69.114','normal','',0,0,0,0,0,'[]'),(2989,'35.208.14.82','normal','',0,0,0,0,0,'[]'),(2990,'146.59.29.171','normal','',0,0,0,0,0,'[]'),(2991,'162.214.94.69','normal','',0,0,0,0,0,'[]'),(2992,'184.171.244.231','normal','',0,0,0,2,0,'{\"login\":[1631718376,1635853768]}'),(2993,'195.206.105.217','normal','',0,0,0,0,0,'[]'),(2994,'120.24.110.68','normal','',0,0,0,0,0,'[]'),(2995,'162.241.127.73','normal','',0,0,0,0,0,'[]'),(2996,'162.214.79.150','normal','',0,0,0,0,0,'[]'),(2997,'117.53.152.65','normal','',0,0,0,0,0,'[]'),(2998,'110.4.45.150','normal','',0,0,0,0,0,'[]'),(2999,'207.46.13.42','normal','',0,0,0,0,0,'[]'),(3000,'45.153.160.134','normal','',0,0,0,0,0,'[]'),(3001,'120.79.22.193','normal','',0,0,0,1,0,'{\"login\":[1628942582]}'),(3002,'156.146.56.106','normal','',0,0,0,0,0,'[]'),(3003,'193.138.101.26','normal','',0,0,0,1,0,'{\"login\":[1628966911]}'),(3004,'157.245.71.228','normal','',0,0,0,4,0,'{\"login\":[1628967451,1629172307,1630203637,1631343518]}'),(3005,'173.211.76.220','normal','',0,0,0,0,0,'[]'),(3006,'209.145.62.123','normal','',0,0,0,1,0,'{\"login\":[1628970673]}'),(3007,'104.168.157.134','normal','',0,0,0,1,0,'{\"login\":[1628976578]}'),(3008,'46.161.60.81','normal','',0,0,0,0,0,'[]'),(3009,'185.220.101.11','normal','',0,0,0,0,0,'[]'),(3010,'198.154.249.67','normal','',0,0,0,1,0,'{\"login\":[1628979029]}'),(3011,'103.6.196.179','normal','',0,0,0,2,0,'{\"login\":[1628982707,1629008786]}'),(3012,'114.119.147.42','normal','',0,0,0,0,1,'{\"nf\":[1632753910]}'),(3013,'198.199.85.223','normal','',0,0,0,1,0,'{\"login\":[1629000854]}'),(3014,'159.89.1.19','normal','',0,0,0,5,0,'{\"login\":[1629004998,1632577299,1632597122,1635838007,1642205915]}'),(3015,'186.64.119.125','normal','',0,0,0,1,0,'{\"login\":[1629014487]}'),(3016,'162.55.43.51','normal','',0,0,0,2,0,'{\"login\":[1629016421,1640686633]}'),(3017,'84.17.48.219','normal','',0,0,0,0,0,'[]'),(3018,'129.226.123.133','normal','',0,0,0,0,3,'{\"nf\":[1632037151,1633289247,1634399677]}'),(3019,'193.202.80.50','normal','',0,0,0,0,0,'[]'),(3020,'63.141.251.237','normal','',0,0,0,2,0,'{\"login\":[1629018206,1629999839]}'),(3021,'138.199.59.141','normal','',0,0,0,0,0,'[]'),(3022,'176.10.99.200','normal','',0,0,0,1,0,'{\"login\":[1641963221]}'),(3023,'106.52.196.205','normal','',0,0,0,0,0,'[]'),(3024,'185.220.100.249','normal','',0,0,0,0,2,'{\"nf\":[1632892931,1645820964]}'),(3025,'105.184.82.234','normal','',0,0,0,0,0,'[]'),(3026,'54.36.148.46','normal','',0,0,0,0,0,'[]'),(3027,'173.208.244.93','normal','',0,0,0,4,0,'{\"login\":[1629066971,1629872116,1629890785,1629898843]}'),(3028,'114.119.147.233','normal','',0,0,0,0,0,'[]'),(3029,'138.199.59.156','normal','',0,0,0,0,0,'[]'),(3030,'165.22.5.84','normal','',0,0,0,2,0,'{\"login\":[1629087533,1630175965]}'),(3031,'54.225.89.201','normal','',0,0,0,0,0,'[]'),(3032,'139.59.153.133','normal','',0,0,0,2,0,'{\"login\":[1632175286,1635856953]}'),(3033,'91.234.195.179','normal','',0,0,0,0,0,'[]'),(3034,'186.64.116.235','normal','',0,0,0,1,0,'{\"login\":[1633535807]}'),(3035,'160.153.252.247','normal','',0,0,0,0,0,'[]'),(3036,'162.214.229.147','normal','',0,0,0,2,0,'{\"login\":[1631719528,1636639911]}'),(3037,'209.126.5.104','normal','',0,0,0,0,0,'[]'),(3038,'207.45.183.66','normal','',0,0,0,0,0,'[]'),(3039,'112.199.119.66','normal','',0,0,0,1,0,'{\"login\":[1629100544]}'),(3040,'77.68.17.32','normal','',0,0,0,5,0,'{\"login\":[1629101687,1629123816,1631325917,1631760426,1634142165]}'),(3041,'209.236.118.251','normal','',0,0,0,0,0,'[]'),(3042,'144.168.230.162','normal','',0,0,0,1,0,'{\"login\":[1629102807]}'),(3043,'103.122.106.234','normal','',0,0,0,1,0,'{\"login\":[1632281923]}'),(3044,'93.114.184.162','normal','',0,0,0,32,0,'{\"login\":[1629105069,1637518743,1637523308,1637600973,1637611845,1637908374,1638497204,1638917024,1640719545,1640728828,1641596670,1641629655,1642793737,1643186308,1648145451,1648155277,1649025256,1649038830,1651395261,1652197628,1652199260,1652202069,1652203960,1652208148,1652212852,1652216352,1652820112,1652832509,1653548028,1653564900,1653583290,1653606388]}'),(3045,'85.17.88.170','normal','',0,0,0,6,0,'{\"login\":[1629106232,1629338047,1631744561,1631753284,1632935003,1633989890]}'),(3046,'45.63.109.229','normal','',0,0,0,1,0,'{\"login\":[1629107371]}'),(3047,'185.171.24.33','normal','',0,0,0,0,0,'[]'),(3048,'167.86.66.101','normal','',0,0,0,0,0,'[]'),(3049,'141.85.216.231','normal','',0,0,0,3,0,'{\"login\":[1635865780,1638432275,1640596431]}'),(3050,'63.141.227.178','normal','',0,0,0,2,0,'{\"login\":[1629113544,1629555713]}'),(3051,'27.112.78.72','normal','',0,0,0,0,0,'[]'),(3052,'207.244.252.128','normal','',0,0,0,0,0,'[]'),(3053,'5.63.10.206','normal','',0,0,0,0,0,'[]'),(3054,'18.218.137.50','normal','',0,0,0,1,0,'{\"login\":[1629116413]}'),(3055,'63.34.207.206','normal','',0,0,0,2,0,'{\"login\":[1629117674,1630467833]}'),(3056,'82.223.120.143','normal','',0,0,0,2,0,'{\"login\":[1629120139,1632005591]}'),(3057,'23.94.120.151','normal','',0,0,0,78,0,'{\"login\":[1629122590,1629163356,1629177460,1629339290,1629364323,1631467376,1631472052,1631512030,1631663331,1631718889,1631954838,1632213600,1632219975,1632299488,1633611105,1634297207,1635986645,1636686938,1636829139,1637222766,1637284944,1638504561,1638710381,1639324280,1639769966,1639890652,1639985111,1640171863,1640379155,1640498547,1640585912,1640689362,1640713509,1640763801,1640919788,1641054518,1641154620,1641210473,1641397455,1641521858,1641820633,1641916638,1642074452,1642583333,1642879835,1643332608,1643476388,1643676113,1644233920,1644256561,1644684748,1644738134,1645209650,1645356155,1646252723,1646282982,1646317998,1646433528,1646539309,1646679133,1646915645,1646969768,1647036886,1647064260,1647175505,1647327881,1647390869,1647484013,1647697260,1647742813,1647776371,1647895973,1648268955,1648583834,1648585098,1649700238,1649969481,1650553941]}'),(3058,'80.253.246.193','normal','',0,0,0,2,0,'{\"login\":[1629125056,1640609068]}'),(3059,'103.124.95.47','normal','',0,0,0,1,0,'{\"login\":[1629126356]}'),(3060,'192.3.15.163','normal','',0,0,0,1,0,'{\"login\":[1629128876]}'),(3061,'66.249.64.67','normal','',0,0,0,0,0,'[]'),(3062,'135.181.107.178','normal','',0,0,0,1,0,'{\"login\":[1629130159]}'),(3063,'139.180.184.103','normal','',0,0,0,1,0,'{\"login\":[1629135230]}'),(3064,'185.255.89.191','normal','',0,0,0,0,1,'{\"nf\":[1629137604]}'),(3065,'195.154.167.133','normal','',0,0,0,0,0,'[]'),(3066,'144.76.97.27','normal','',0,0,0,2,0,'{\"login\":[1629139235,1629162883]}'),(3067,'51.178.83.113','normal','',0,0,0,1,0,'{\"login\":[1629139296]}'),(3068,'185.182.57.100','normal','',0,0,0,2,0,'{\"login\":[1629140427,1630436221]}'),(3069,'37.97.146.160','normal','',0,0,0,2,0,'{\"login\":[1629142882,1629725801]}'),(3070,'52.35.136.193','normal','',0,0,0,0,0,'[]'),(3071,'34.129.46.146','normal','',0,0,0,0,0,'[]'),(3072,'124.70.208.247','normal','',0,0,0,1,0,'{\"login\":[1629145576]}'),(3073,'34.216.249.80','normal','',0,0,0,0,0,'[]'),(3074,'139.59.82.122','normal','',0,0,0,31,0,'{\"login\":[1629149345,1629965016,1629966595,1630222621,1631280118,1631501826,1636024687,1636992563,1638128277,1639571341,1639986356,1640441484,1640456025,1640491144,1640617588,1640846241,1640920874,1640990639,1641107629,1642007270,1642317154,1642642213,1643036958,1643096236,1643720870,1644097645,1644178231,1644630807,1644842791,1661631765,1662542074]}'),(3075,'34.73.135.119','normal','',0,0,0,1,0,'{\"login\":[1629150793]}'),(3076,'102.65.63.89','normal','',0,0,0,0,1,'{\"nf\":[1629151250]}'),(3077,'95.216.208.32','normal','',0,0,0,19,0,'{\"login\":[1629151489,1629152205,1629718832,1629925806,1630293336,1630365341,1630578529,1630609684,1631979214,1632084489,1632126248,1633627127,1633704844,1634311763,1634828503,1635371612,1637187426,1637333832,1637398775]}'),(3078,'14.139.87.210','normal','',0,0,0,5,0,'{\"login\":[1629152092,1630395534,1630427069,1630438011,1630444556]}'),(3079,'35.154.1.177','normal','',0,0,0,1,0,'{\"login\":[1629153666]}'),(3080,'88.135.36.252','normal','',0,0,0,1,0,'{\"login\":[1629154809]}'),(3081,'37.61.201.218','normal','',0,0,0,0,1,'{\"nf\":[1629155657]}'),(3082,'206.189.104.23','normal','',0,0,0,5,0,'{\"login\":[1629155864,1630924655,1631260875,1632326858,1633861423]}'),(3083,'172.105.28.113','normal','',0,0,0,0,0,'[]'),(3084,'157.90.251.56','normal','',0,0,0,2,0,'{\"login\":[1629158228,1629191448]}'),(3085,'113.161.72.211','normal','',0,0,0,4,0,'{\"login\":[1629158799,1629311922,1630414229,1630880456]}'),(3086,'188.126.73.220','normal','',0,0,0,0,0,'[]'),(3087,'135.181.92.172','normal','',0,0,0,10,0,'{\"login\":[1629162621,1629184818,1629327266,1629359745,1629712861,1630288979,1630583601,1630915343,1631796726,1632197171]}'),(3088,'91.219.237.21','normal','',0,0,0,0,0,'[]'),(3089,'103.253.194.228','normal','',0,0,0,4,0,'{\"login\":[1629166327,1629921209,1630762769,1630796795]}'),(3090,'66.154.14.171','normal','',0,0,0,3,0,'{\"login\":[1629168565,1630141095,1630309486]}'),(3091,'144.202.79.222','normal','',0,0,0,1,0,'{\"login\":[1629170819]}'),(3092,'94.23.250.140','normal','',0,0,0,0,1,'{\"nf\":[1629173482]}'),(3093,'103.92.235.122','normal','',0,0,0,3,0,'{\"login\":[1629173828,1629343630,1630402278]}'),(3094,'144.86.173.131','normal','',0,0,0,0,0,'[]'),(3095,'128.199.68.179','normal','',0,0,0,2,0,'{\"login\":[1629175263,1629176001]}'),(3096,'174.138.36.163','normal','',0,0,0,1,0,'{\"login\":[1629177911]}'),(3097,'188.166.213.164','normal','',0,0,0,1,0,'{\"login\":[1629179243]}'),(3098,'42.236.10.83','normal','',0,0,0,0,0,'[]'),(3099,'188.40.37.189','normal','',0,0,0,5,0,'{\"login\":[1629181109,1629199036,1629656024,1629934342,1631378296]}'),(3100,'102.164.83.10','normal','',0,0,0,0,1,'{\"nf\":[1629181343]}'),(3101,'116.203.187.178','normal','',0,0,0,1,0,'{\"login\":[1629186223]}'),(3102,'112.111.170.241','normal','',0,0,0,0,0,'[]'),(3103,'143.198.207.210','normal','',0,0,0,1,0,'{\"login\":[1629194462]}'),(3104,'169.0.138.58','normal','',0,0,0,0,1,'{\"nf\":[1629195896]}'),(3105,'105.186.64.95','normal','',0,0,0,0,3,'{\"nf\":[1629199631,1629199646,1629199997]}'),(3106,'188.166.187.223','normal','',0,0,0,10,0,'{\"login\":[1629199793,1629310405,1629925034,1631351919,1631499756,1631686241,1631695168,1632144312,1632282134,1632326282]}'),(3107,'103.153.2.5','normal','',0,0,0,4,0,'{\"login\":[1629202840,1629661428,1630704920,1630795271]}'),(3108,'175.44.42.139','normal','',0,0,0,0,0,'[]'),(3109,'197.95.149.108','normal','',0,0,0,0,3,'{\"nf\":[1629206874,1629206934,1663061200]}'),(3110,'197.95.150.161','normal','',0,0,0,0,4,'{\"nf\":[1629208595,1629208619,1629208647,1629208701]}'),(3111,'37.120.145.86','normal','',0,0,0,0,0,'[]'),(3112,'50.16.186.180','normal','',0,0,0,0,0,'[]'),(3113,'64.202.186.69','normal','',0,0,0,0,0,'[]'),(3114,'45.62.226.111','normal','',0,0,0,0,0,'[]'),(3115,'51.68.11.207','normal','',0,0,0,0,11,'{\"nf\":[1629222320,1629222324,1629398451,1629398454,1634670834,1635182942,1635276206,1635276209,1635305496,1636184299,1639073830]}'),(3116,'197.13.10.11','normal','',0,0,0,0,0,'[]'),(3117,'188.40.2.11','normal','',0,0,0,0,0,'[]'),(3118,'162.241.102.138','normal','',0,0,0,0,0,'[]'),(3119,'77.221.130.50','normal','',0,0,0,0,0,'[]'),(3120,'64.111.120.73','normal','',0,0,0,2,0,'{\"login\":[1629253650,1629292922]}'),(3121,'107.152.42.142','normal','',0,0,0,0,0,'[]'),(3122,'119.8.160.253','normal','',0,0,0,0,0,'[]'),(3123,'173.249.147.129','normal','',0,0,0,0,0,'[]'),(3124,'103.11.101.130','normal','',0,0,0,0,0,'[]'),(3125,'104.37.175.156','normal','',0,0,0,1,0,'{\"login\":[1629226956]}'),(3126,'202.4.96.74','normal','',0,0,0,2,0,'{\"login\":[1629227519,1629287962]}'),(3127,'75.119.155.237','normal','',0,0,0,2,0,'{\"login\":[1629229533,1629278726]}'),(3128,'54.179.187.200','normal','',0,0,0,2,0,'{\"login\":[1629230095,1629244672]}'),(3129,'81.69.56.47','normal','',0,0,0,1,0,'{\"login\":[1629231284]}'),(3130,'52.36.91.242','normal','',0,0,0,0,0,'[]'),(3131,'134.122.46.215','normal','',0,0,0,7,0,'{\"login\":[1629232169,1631714343,1631718955,1632282418,1632475240,1635857618,1640567108]}'),(3132,'186.64.116.65','normal','',0,0,0,1,0,'{\"login\":[1629232403]}'),(3133,'142.4.10.236','normal','',0,0,0,1,0,'{\"login\":[1629249699]}'),(3134,'142.4.10.236','normal','',0,0,0,1,0,'{\"login\":[1629234301]}'),(3135,'62.210.177.28','normal','',0,0,0,0,0,'[]'),(3136,'131.221.77.15','normal','',0,0,0,1,0,'{\"login\":[1629234539]}'),(3137,'37.97.192.42','normal','',0,0,0,1,0,'{\"login\":[1629236721]}'),(3138,'207.38.86.25','normal','',0,0,0,2,0,'{\"login\":[1629237646,1629284627]}'),(3139,'3.18.225.104','normal','',0,0,0,1,0,'{\"login\":[1629237982]}'),(3140,'176.31.134.145','normal','',0,0,0,1,0,'{\"login\":[1629238935]}'),(3141,'95.217.104.84','normal','',0,0,0,1,0,'{\"login\":[1629239828]}'),(3142,'144.91.75.9','normal','',0,0,0,3,0,'{\"login\":[1629240175,1629317615,1654507595]}'),(3143,'85.236.153.44','normal','',0,0,0,1,0,'{\"login\":[1629240473]}'),(3144,'52.173.252.16','normal','',0,0,0,1,0,'{\"login\":[1629240806]}'),(3145,'195.154.87.159','normal','',0,0,0,1,0,'{\"login\":[1629241162]}'),(3146,'157.230.109.157','normal','',0,0,0,0,0,'[]'),(3147,'162.214.109.27','normal','',0,0,0,1,0,'{\"login\":[1629241725]}'),(3148,'8.210.53.246','normal','',0,0,0,2,0,'{\"login\":[1629242382,1632573088]}'),(3149,'46.101.28.212','normal','',0,0,0,1,0,'{\"login\":[1629242729]}'),(3150,'47.114.4.136','normal','',0,0,0,2,0,'{\"login\":[1629243380,1632936029]}'),(3151,'156.146.35.43','normal','',0,0,0,0,0,'[]'),(3152,'27.50.77.95','normal','',0,0,0,1,0,'{\"login\":[1629244045]}'),(3153,'146.88.237.33','normal','',0,0,0,1,0,'{\"login\":[1629244358]}'),(3154,'42.193.8.97','normal','',0,0,0,0,0,'[]'),(3155,'103.1.208.207','normal','',0,0,0,1,0,'{\"login\":[1629246010]}'),(3156,'194.110.169.16','normal','',0,0,0,1,0,'{\"login\":[1629246325]}'),(3157,'139.180.156.205','normal','',0,0,0,1,0,'{\"login\":[1629246655]}'),(3158,'186.64.118.70','normal','',0,0,0,1,0,'{\"login\":[1629246964]}'),(3159,'206.189.52.133','normal','',0,0,0,2,0,'{\"login\":[1629247290,1631699414]}'),(3160,'34.84.117.248','normal','',0,0,0,1,0,'{\"login\":[1629247680]}'),(3161,'207.46.13.149','normal','',0,0,0,0,0,'[]'),(3162,'116.202.36.12','normal','',0,0,0,1,0,'{\"login\":[1629248692]}'),(3163,'35.165.194.72','normal','',0,0,0,0,0,'[]'),(3164,'35.160.216.84','normal','',0,0,0,0,0,'[]'),(3165,'159.75.71.179','normal','',0,0,0,3,0,'{\"login\":[1629251161,1633523904,1642194249]}'),(3166,'47.244.166.23','normal','',0,0,0,2,0,'{\"login\":[1629251497,1631704804]}'),(3167,'146.88.238.251','normal','',0,0,0,1,0,'{\"login\":[1629254003]}'),(3168,'79.137.45.31','normal','',0,0,0,0,0,'[]'),(3169,'91.206.200.29','normal','',0,0,0,0,0,'[]'),(3170,'47.91.43.183','normal','',0,0,0,0,0,'[]'),(3171,'102.39.239.161','normal','',0,0,0,0,5,'{\"nf\":[1629259074,1629259080,1629259098,1629259358,1629259410]}'),(3172,'186.64.114.80','normal','',0,0,0,1,0,'{\"login\":[1633986178]}'),(3173,'144.86.173.130','normal','',0,0,0,0,0,'[]'),(3174,'45.158.12.222','normal','',0,0,0,0,0,'[]'),(3175,'178.254.32.145','normal','',0,0,0,0,0,'[]'),(3176,'162.214.122.88','normal','',0,0,0,5,0,'{\"login\":[1631971843,1631999217,1638442631,1640662256,1640900179]}'),(3177,'159.203.77.13','normal','',0,0,0,0,0,'[]'),(3178,'143.110.243.30','normal','',0,0,0,0,0,'[]'),(3179,'188.0.241.91','normal','',0,0,0,0,0,'[]'),(3180,'135.125.234.236','normal','',0,0,0,0,0,'[]'),(3181,'207.55.255.20','normal','',0,0,0,2,0,'{\"login\":[1632936621,1650302390]}'),(3182,'31.24.227.8','normal','',0,0,0,0,0,'[]'),(3183,'62.171.166.71','normal','',0,0,0,0,0,'[]'),(3184,'172.96.181.81','normal','',0,0,0,0,0,'[]'),(3185,'135.181.3.99','normal','',0,0,0,0,0,'[]'),(3186,'159.203.101.143','normal','',0,0,0,0,0,'[]'),(3187,'120.79.29.217','normal','',0,0,0,2,0,'{\"login\":[1632189850,1634014618]}'),(3188,'51.89.166.185','normal','',0,0,0,0,0,'[]'),(3189,'109.228.59.45','normal','',0,0,0,0,0,'[]'),(3190,'158.69.65.109','normal','',0,0,0,0,0,'[]'),(3191,'173.212.245.79','normal','',0,0,0,1,0,'{\"login\":[1629301174]}'),(3192,'217.24.17.44','normal','',0,0,0,1,0,'{\"login\":[1629287580]}'),(3193,'158.140.169.92','normal','',0,0,0,2,0,'{\"login\":[1629291762,1629305110]}'),(3194,'148.66.129.250','normal','',0,0,0,0,0,'[]'),(3195,'51.255.106.85','normal','',0,0,0,0,0,'[]'),(3196,'156.67.218.117','normal','',0,0,0,0,0,'[]'),(3197,'209.141.34.232','normal','',0,0,0,0,0,'[]'),(3198,'213.175.196.22','normal','',0,0,0,1,0,'{\"login\":[1629289078]}'),(3199,'173.212.207.156','normal','',0,0,0,0,0,'[]'),(3200,'194.163.130.136','normal','',0,0,0,0,0,'[]'),(3201,'183.111.67.184','normal','',0,0,0,1,0,'{\"login\":[1629279470]}'),(3202,'188.240.191.163','normal','',0,0,0,1,0,'{\"login\":[1629280553]}'),(3203,'112.78.3.83','normal','',0,0,0,2,0,'{\"login\":[1629281281,1629284264]}'),(3204,'45.224.131.194','normal','',0,0,0,1,0,'{\"login\":[1629281607]}'),(3205,'69.163.152.139','normal','',0,0,0,1,0,'{\"login\":[1629282030]}'),(3206,'111.93.53.163','normal','',0,0,0,1,0,'{\"login\":[1629284986]}'),(3207,'103.107.183.115','normal','',0,0,0,2,0,'{\"login\":[1629285379,1629288730]}'),(3208,'103.148.156.231','normal','',0,0,0,2,0,'{\"login\":[1629286494,1632191145]}'),(3209,'103.129.178.69','normal','',0,0,0,4,0,'{\"login\":[1629286842,1633535071,1635851903,1653808483]}'),(3210,'217.113.0.244','normal','',0,0,0,1,0,'{\"login\":[1629289924]}'),(3211,'185.148.81.229','normal','',0,0,0,1,0,'{\"login\":[1629290269]}'),(3212,'191.252.60.200','normal','',0,0,0,1,0,'{\"login\":[1629291010]}'),(3213,'31.171.152.132','normal','',0,0,0,0,0,'[]'),(3214,'162.214.231.52','normal','',0,0,0,1,0,'{\"login\":[1629293721]}'),(3215,'72.10.175.226','normal','',0,0,0,2,0,'{\"login\":[1629294899,1629299992]}'),(3216,'74.40.47.238','normal','',0,0,0,1,0,'{\"login\":[1629296468]}'),(3217,'183.181.89.88','normal','',0,0,0,1,0,'{\"login\":[1629297262]}'),(3218,'197.156.74.192','normal','',0,0,0,1,0,'{\"login\":[1629298036]}'),(3219,'167.71.206.107','normal','',0,0,0,2,0,'{\"login\":[1629298798,1634920051]}'),(3220,'206.189.142.139','normal','',0,0,0,1,0,'{\"login\":[1629298836]}'),(3221,'13.58.61.71','normal','',0,0,0,1,0,'{\"login\":[1629299638]}'),(3222,'13.76.132.231','normal','',0,0,0,4,0,'{\"login\":[1629300380,1633995093,1634013643,1638439484]}'),(3223,'103.254.72.180','normal','',0,0,0,1,0,'{\"login\":[1629300452]}'),(3224,'165.232.140.105','normal','',0,0,0,4,0,'{\"login\":[1629301244,1630370112,1630620020,1631305924]}'),(3225,'107.6.142.239','normal','',0,0,0,1,0,'{\"login\":[1629301977]}'),(3226,'134.236.250.160','normal','',0,0,0,7,0,'{\"login\":[1629302012,1629333617,1630669074,1630820902,1630943276,1631173004,1631918086]}'),(3227,'5.175.41.249','normal','',0,0,0,1,0,'{\"login\":[1629302111]}'),(3228,'185.178.45.155','normal','',0,0,0,10,0,'{\"login\":[1629302773,1631307028,1631671933,1632256795,1632338064,1633159934,1633191099,1633613764,1634394021,1634533390]}'),(3229,'103.124.95.104','normal','',0,0,0,2,0,'{\"login\":[1629303469,1630440834]}'),(3230,'188.166.32.16','normal','',0,0,0,3,0,'{\"login\":[1629303529,1629786944,1630620664]}'),(3231,'3.0.53.157','normal','',0,0,0,1,0,'{\"login\":[1629303917]}'),(3232,'186.64.119.165','normal','',0,0,0,1,0,'{\"login\":[1629304274]}'),(3233,'178.128.59.73','normal','',0,0,0,2,0,'{\"login\":[1629304292,1629907548]}'),(3234,'186.234.80.162','normal','',0,0,0,1,0,'{\"login\":[1629305464]}'),(3235,'46.161.14.104','normal','',0,0,0,0,3,'{\"nf\":[1648703727,1648703743,1648703751]}'),(3236,'164.68.116.12','normal','',0,0,0,1,0,'{\"login\":[1629305825]}'),(3237,'203.90.228.38','normal','',0,0,0,1,0,'{\"login\":[1629308879]}'),(3238,'67.225.162.91','normal','',0,0,0,1,0,'{\"login\":[1629309022]}'),(3239,'63.141.251.238','normal','',0,0,0,1,0,'{\"login\":[1629312635]}'),(3240,'192.81.211.136','normal','',0,0,0,4,0,'{\"login\":[1629314233,1629681405,1630218932,1632078413]}'),(3241,'35.195.29.143','normal','',0,0,0,11,0,'{\"login\":[1629315002,1629932001,1629973756,1630211603,1630242578,1630378100,1630809159,1632260223,1632688764,1634284900,1635983389]}'),(3242,'155.93.231.54','normal','',0,0,0,0,5,'{\"nf\":[1629315614,1629660829,1629660942,1629661164,1629661557]}'),(3243,'54.201.158.27','normal','',0,0,0,0,0,'[]'),(3244,'46.4.100.44','normal','',0,0,0,1,0,'{\"login\":[1629317313]}'),(3245,'157.55.39.90','normal','',0,0,0,0,0,'[]'),(3246,'144.91.104.163','normal','',0,0,0,1,0,'{\"login\":[1629318653]}'),(3247,'42.236.10.114','normal','',0,0,0,0,1,'{\"nf\":[1631584982]}'),(3248,'88.135.36.147','normal','',0,0,0,2,0,'{\"login\":[1629319806,1632286448]}'),(3249,'135.125.55.162','normal','',0,0,0,4,0,'{\"login\":[1629323512,1629654164,1630812271,1631460808]}'),(3250,'67.220.184.130','normal','',0,0,0,4,0,'{\"login\":[1629323967,1630901957,1631722042,1631759631]}'),(3251,'43.128.41.188','normal','',0,0,0,1,0,'{\"login\":[1629324723]}'),(3252,'206.189.23.28','normal','',0,0,0,9,0,'{\"login\":[1629325082,1630161998,1630624559,1630721687,1630916908,1632241779,1632488032,1632715510,1638437176]}'),(3253,'178.32.64.47','normal','',0,0,0,1,0,'{\"login\":[1629325346]}'),(3254,'186.64.116.135','normal','',0,0,0,0,0,'[]'),(3255,'103.93.17.248','normal','',0,0,0,2,0,'{\"login\":[1629326840,1629342250]}'),(3256,'199.249.230.149','normal','',0,0,0,0,0,'[]'),(3257,'3.90.226.205','normal','',0,0,0,1,0,'{\"login\":[1629332321]}'),(3258,'207.244.234.52','normal','',0,0,0,0,0,'[]'),(3259,'103.226.139.153','normal','',0,0,0,1,0,'{\"login\":[1629333773]}'),(3260,'62.210.114.97','normal','',0,0,0,0,0,'[]'),(3261,'206.189.180.181','normal','',0,0,0,1,0,'{\"login\":[1629336523]}'),(3262,'159.75.25.179','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1638718371,0,1638718071,0,104,'{\"nf\":[1638718051,1638718052,1638718053,1638718054,1638718055,1638718056,1638718057,1638718058,1638718059,1638718060,1638718061,1638718063,1638718064,1638718066,1638718067,1638718068,1638718069,1638718069,1638718070,1638718071],\"login\":[]}'),(3263,'186.64.119.15','normal','',0,0,0,0,0,'[]'),(3264,'186.64.117.195','normal','',0,0,0,0,0,'[]'),(3265,'103.227.62.61','normal','',0,0,0,1,0,'{\"login\":[1629339400]}'),(3266,'200.137.215.30','normal','',0,0,0,5,0,'{\"login\":[1629340826,1630809798,1631748562,1632015555,1632028980]}'),(3267,'185.3.235.238','normal','',0,0,0,1,0,'{\"login\":[1636635204]}'),(3268,'103.138.116.50','normal','',0,0,0,0,0,'[]'),(3269,'192.145.47.204','normal','',0,0,0,1,0,'{\"login\":[1629344912]}'),(3270,'173.249.9.251','normal','',0,0,0,0,0,'[]'),(3271,'107.161.176.122','normal','',0,0,0,1,0,'{\"login\":[1632201620]}'),(3272,'68.66.213.18','normal','',0,0,0,0,0,'[]'),(3273,'149.56.45.50','normal','',0,0,0,0,0,'[]'),(3274,'37.156.145.147','normal','',0,0,0,1,0,'{\"login\":[1631623037]}'),(3275,'138.128.173.10','normal','',0,0,0,0,0,'[]'),(3276,'185.68.19.215','normal','',0,0,0,1,0,'{\"login\":[1631618180]}'),(3277,'103.124.94.44','normal','',0,0,0,3,0,'{\"login\":[1629350881,1630464859,1630793981]}'),(3278,'152.228.225.229','normal','',0,0,0,0,0,'[]'),(3279,'17.121.114.191','normal','',0,0,0,0,0,'[]'),(3280,'143.110.248.117','normal','',0,0,0,1,0,'{\"login\":[1629352302]}'),(3281,'64.91.250.31','normal','',0,0,0,0,0,'[]'),(3282,'142.4.14.165','normal','',0,0,0,0,0,'[]'),(3283,'186.64.119.95','normal','',0,0,0,0,0,'[]'),(3284,'186.64.114.25','normal','',0,0,0,1,0,'{\"login\":[1633545402]}'),(3285,'103.13.51.82','normal','',0,0,0,1,0,'{\"login\":[1629355397]}'),(3286,'161.97.68.199','normal','',0,0,0,6,0,'{\"login\":[1629356006,1629689118,1630730251,1636828541,1637007896,1637093927]}'),(3287,'15.206.130.107','normal','',0,0,0,0,0,'[]'),(3288,'185.72.243.46','normal','',0,0,0,3,0,'{\"login\":[1629356779,1630405194,1630462850]}'),(3289,'82.196.12.203','normal','',0,0,0,1,0,'{\"login\":[1629358187]}'),(3290,'34.123.123.122','normal','',0,0,0,4,0,'{\"login\":[1629358994,1631250430,1631741907,1634020319]}'),(3291,'69.30.244.19','normal','',0,0,0,1,0,'{\"login\":[1629361129]}'),(3292,'185.143.145.3','normal','',0,0,0,1,0,'{\"login\":[1630442215]}'),(3293,'129.205.140.210','normal','',0,0,0,0,1,'{\"nf\":[1629365807]}'),(3294,'142.47.216.34','normal','',0,0,0,7,0,'{\"login\":[1629365892,1630934136,1631335966,1631992486,1632261985,1632290252,1633723129]}'),(3295,'210.211.113.133','normal','',0,0,0,0,0,'[]'),(3296,'196.250.151.194','normal','',0,0,0,0,1,'{\"nf\":[1629367207]}'),(3297,'40.88.21.235','normal','',0,0,0,0,0,'[]'),(3298,'197.94.78.186','normal','',0,0,0,0,4,'[]'),(3299,'128.199.23.162','normal','',0,0,0,1,0,'{\"login\":[1629744306]}'),(3300,'84.17.48.23','normal','',0,0,0,0,0,'[]'),(3301,'186.64.119.80','normal','',0,0,0,0,0,'[]'),(3302,'35.200.137.92','normal','',0,0,0,1,0,'{\"login\":[1631299422]}'),(3303,'103.47.60.44','normal','',0,0,0,0,0,'[]'),(3304,'185.20.51.238','normal','',0,0,0,0,0,'[]'),(3305,'188.132.204.22','normal','',0,0,0,0,0,'[]'),(3306,'41.147.1.109','normal','',0,0,0,0,1,'{\"nf\":[1629375246]}'),(3307,'41.147.1.48','normal','',0,0,0,0,1,'{\"nf\":[1629375311]}'),(3308,'185.142.157.109','normal','',0,0,0,0,0,'[]'),(3309,'41.13.200.248','normal','',0,0,0,0,1,'{\"nf\":[1629377608]}'),(3310,'82.64.135.27','normal','',0,0,0,10,0,'{\"login\":[1629502746,1629663911,1629698947,1629706911,1629948651,1630083780,1630099661,1630630431,1631367556,1631765116]}'),(3311,'13.233.227.46','normal','',0,0,0,0,0,'[]'),(3312,'202.189.179.194','normal','',0,0,0,15,0,'{\"login\":[1631248509,1631922713,1632048292,1632320228,1632490367,1633062922,1633832369,1633842638,1634337699,1634444164,1636846335,1636904543,1636972107,1637365232,1637425914]}'),(3313,'94.230.208.147','normal','',0,0,0,0,0,'[]'),(3314,'193.200.74.129','normal','',0,0,0,0,0,'[]'),(3315,'103.130.218.178','normal','',0,0,0,76,0,'{\"login\":[1629749003,1630922716,1630952406,1631318955,1631927302,1632262587,1632291022,1632675554,1632896525,1633195262,1634419168,1634503336,1634968420,1634972438,1637785996,1638270866,1638323775,1638481894,1638872971,1639557700,1639880756,1640458709,1640538306,1642278334,1642645564,1642985206,1644289299,1644334562,1644506041,1644609799,1645090974,1645098064,1645359476,1646076627,1646472748,1646566577,1646921487,1647097984,1647196513,1647646740,1647705925,1647841852,1647885346,1648092086,1648200507,1648586281,1648636359,1648666360,1651082775,1651122101,1651258685,1651701315,1651947546,1652291596,1652376614,1652554028,1654219341,1654423598,1654441212,1654447721,1654736254,1654853573,1654935559,1654944289,1655376725,1656877582,1656903879,1657546879,1658337926,1658406864,1658942378,1660080621,1660203466,1661005091,1661530906,1662807075]}'),(3316,'103.28.37.180','normal','',0,0,0,38,0,'{\"login\":[1630445552,1631322155,1637309079,1637483365,1638471759,1639385149,1639389997,1640440092,1640531357,1641868903,1642181792,1642519548,1642598166,1642862621,1643572440,1643649802,1643681886,1644211138,1644337333,1644467994,1645204502,1645726992,1645961917,1646898240,1647678605,1647766177,1648097800,1649665637,1650417527,1650426643,1650609080,1650659525,1650706228,1651079987,1652840814,1653393747,1654718382,1656754517]}'),(3317,'142.44.142.153','normal','',0,0,0,0,0,'[]'),(3318,'65.0.246.38','normal','',0,0,0,0,0,'[]'),(3319,'54.201.98.197','normal','',0,0,0,0,0,'[]'),(3320,'34.219.57.150','normal','',0,0,0,0,0,'[]'),(3321,'54.148.147.105','normal','',0,0,0,0,0,'[]'),(3322,'64.187.225.233','normal','',0,0,0,0,0,'[]'),(3323,'34.210.81.111','normal','',0,0,0,0,0,'[]'),(3324,'59.110.143.12','normal','',0,0,0,0,0,'[]'),(3325,'138.197.78.221','normal','',0,0,0,0,5,'{\"nf\":[1629407851,1629407854,1629407857,1629407862,1629407863]}'),(3326,'178.63.146.46','normal','',0,0,0,1,0,'{\"login\":[1661684194]}'),(3327,'136.144.130.214','normal','',0,0,0,0,0,'[]'),(3328,'185.18.213.193','normal','',0,0,0,0,0,'[]'),(3329,'186.64.118.60','normal','',0,0,0,0,0,'[]'),(3330,'136.243.113.116','normal','',0,0,0,0,0,'[]'),(3331,'203.218.98.99','normal','',0,0,0,1,0,'{\"login\":[1629797306]}'),(3332,'171.37.174.141','normal','',0,0,0,0,0,'[]'),(3333,'205.196.222.192','normal','',0,0,0,4,0,'{\"login\":[1631703210,1631720119,1632168314,1633553829]}'),(3334,'135.181.7.82','normal','',0,0,0,1,0,'{\"login\":[1654065358]}'),(3335,'3.96.76.168','normal','',0,0,0,0,0,'[]'),(3336,'64.235.231.20','normal','',0,0,0,1,0,'{\"login\":[1631980102]}'),(3337,'103.118.27.88','normal','',0,0,0,0,0,'[]'),(3338,'177.55.111.14','normal','',0,0,0,30,0,'{\"login\":[1629772317,1629986780,1630257277,1630384603,1630573498,1631281257,1631310492,1631411049,1631514404,1631540537,1631939630,1632132133,1632207368,1634410231,1635506093,1635756948,1636736911,1636832147,1637082572,1639603947,1640525140,1640652202,1641290999,1641338443,1641789646,1641930113,1641993906,1642085615,1642349307,1643049793]}'),(3339,'159.203.27.31','normal','',0,0,0,0,0,'[]'),(3340,'186.64.114.60','normal','',0,0,0,0,0,'[]'),(3341,'106.75.147.172','normal','',0,0,0,0,0,'[]'),(3342,'63.250.36.133','normal','',0,0,0,0,0,'[]'),(3343,'107.150.46.52','normal','',0,0,0,2,0,'{\"login\":[1629427747,1629535175]}'),(3344,'81.69.203.163','normal','',0,0,0,9,0,'{\"login\":[1629932786,1630681160,1630748307,1630785703,1631323661,1632194315,1632223624,1633069224,1634395339]}'),(3345,'157.55.39.96','normal','',0,0,0,0,0,'[]'),(3346,'114.119.147.32','normal','',0,0,0,0,1,'{\"nf\":[1631744784]}'),(3347,'210.57.216.56','normal','',0,0,0,1,0,'{\"login\":[1630209422]}'),(3348,'203.150.48.118','normal','',0,0,0,0,0,'[]'),(3349,'87.98.251.172','normal','',0,0,0,0,10,'{\"nf\":[1631091320,1631091364,1635404789,1639383169,1641816761,1653350198,1653350205,1653350242,1653350337,1653350382]}'),(3350,'34.94.247.253','normal','',0,0,0,0,0,'[]'),(3351,'188.166.182.132','normal','',0,0,0,4,0,'{\"login\":[1630412894,1630413713,1631997721,1632017665]}'),(3352,'146.88.237.7','normal','',0,0,0,0,0,'[]'),(3353,'102.65.11.132','normal','',0,0,0,0,2,'{\"nf\":[1629441630,1629441659]}'),(3354,'114.119.147.248','normal','',0,0,0,0,0,'[]'),(3355,'182.254.156.95','normal','',0,0,0,1,0,'{\"login\":[1634053176]}'),(3356,'41.147.1.11','normal','',0,0,0,0,2,'{\"nf\":[1629446889,1629446953]}'),(3357,'41.147.1.112','normal','',0,0,0,0,1,'{\"nf\":[1629446894]}'),(3358,'161.35.126.102','normal','',0,0,0,53,0,'{\"login\":[1630834396,1632558601,1632639518,1632714633,1635553070,1635649203,1637837400,1638689386,1639006178,1639254259,1639811514,1641203773,1642553588,1643059329,1644280970,1645822925,1645829360,1646569130,1646609058,1651067756,1651513521,1652014162,1652752123,1652966385,1652998669,1653067794,1654125724,1654154025,1654394298,1654610394,1654791218,1654907171,1655458924,1655559329,1655783307,1656151842,1656209600,1657114989,1657262334,1657420914,1657749729,1657819461,1658163736,1658171384,1658195578,1658333358,1659144710,1659147935,1661318623,1661663774,1662043024,1663104475,1663128812]}'),(3359,'164.90.154.119','normal','',0,0,0,8,0,'{\"login\":[1629739498,1630271983,1630582962,1630618717,1630839537,1631967722,1632038004,1632300206]}'),(3360,'34.146.142.71','normal','',0,0,0,0,0,'[]'),(3361,'138.199.59.150','normal','',0,0,0,0,0,'[]'),(3362,'149.255.57.96','normal','',0,0,0,0,0,'[]'),(3363,'165.227.170.189','normal','',0,0,0,28,0,'{\"login\":[1633586875,1634905413,1636752625,1639631487,1641504318,1642182505,1642603857,1643671501,1644672562,1645850011,1646626823,1650373499,1651055082,1651194071,1651741785,1652535291,1652541751,1652563360,1652757839,1652800614,1654175754,1654181040,1654444187,1654559600,1654723098,1654801504,1655246404,1655470876]}'),(3364,'46.161.14.84','normal','',0,0,0,0,6,'{\"nf\":[1648720000,1648720004,1648720012,1648720025,1648720034,1648720042]}'),(3365,'186.64.117.125','normal','',0,0,0,0,0,'[]'),(3366,'35.224.131.150','normal','',0,0,0,2,0,'{\"login\":[1630215260,1631258649]}'),(3367,'89.39.224.73','normal','',0,0,0,0,0,'[]'),(3368,'197.94.6.208','normal','',0,0,0,0,1,'{\"nf\":[1629456356]}'),(3369,'147.139.136.124','normal','',0,0,0,4,0,'{\"login\":[1631691266,1634006978,1638451582,1641607089]}'),(3370,'103.147.10.253','normal','',0,0,0,0,0,'[]'),(3371,'5.101.157.43','normal','',0,0,0,2,0,'{\"login\":[1631713782,1632284659]}'),(3372,'186.64.118.190','normal','',0,0,0,1,0,'{\"login\":[1634001879]}'),(3373,'198.252.98.181','normal','',0,0,0,4,0,'{\"login\":[1629470685,1629745884,1633208759,1634025495]}'),(3374,'46.243.183.208','normal','',0,0,0,4,0,'{\"login\":[1629472217,1629686593,1629719684,1630307999]}'),(3375,'139.59.189.1','normal','',0,0,0,1,0,'{\"login\":[1629473758]}'),(3376,'102.65.63.97','normal','',0,0,0,0,9,'{\"nf\":[1629473810,1629473841,1629473870,1629473917,1629473957,1629473975,1629474107,1629474119,1629474250]}'),(3377,'45.55.41.53','normal','',0,0,0,0,6,'{\"nf\":[1629475695,1629475701,1632825010,1643643622,1646095613,1646095622]}'),(3378,'185.3.235.227','normal','',0,0,0,0,1,'{\"nf\":[1629481141]}'),(3379,'102.182.187.218','normal','',0,0,0,0,2,'{\"nf\":[1629483944,1629483963]}'),(3380,'62.210.97.19','normal','',0,0,0,0,0,'[]'),(3381,'173.208.244.92','normal','',0,0,0,2,0,'{\"login\":[1629490891,1629684253]}'),(3382,'54.190.0.9','normal','',0,0,0,0,0,'[]'),(3383,'66.249.66.156','normal','',0,0,0,0,0,'[]'),(3384,'185.220.102.240','normal','',0,0,0,0,0,'[]'),(3385,'37.187.159.167','normal','',0,0,0,5,0,'{\"login\":[1629504359,1629713698,1629795805,1630232087,1630368513]}'),(3386,'66.249.66.157','normal','',0,0,0,0,0,'[]'),(3387,'91.208.99.2','normal','',0,0,0,1,16,'{\"nf\":[1629506983,1635525346,1635863383,1636650670,1637409987,1637817037,1637817039,1638724771,1638737248,1639469706,1639469709,1640065208,1642011724,1642635349,1643692128,1643714228],\"login\":[1639885026]}'),(3388,'121.199.11.240','normal','',0,0,0,0,11,'{\"nf\":[1629509419,1629766706,1632724388,1634518448,1637165721,1637883596,1637883603,1639334156,1639334158,1643295727,1643830571]}'),(3389,'212.175.7.141','normal','',0,0,0,2,0,'{\"login\":[1629510840,1629521242]}'),(3390,'92.118.160.41','normal','',0,0,0,0,0,'[]'),(3391,'20.69.208.30','normal','',0,0,0,9,0,'{\"login\":[1629529548,1630194262,1630909997,1631768189,1632312852,1632471694,1633690916,1634276611,1634315365]}'),(3392,'213.180.203.48','normal','',0,0,0,0,0,'[]'),(3393,'5.45.207.186','normal','',0,0,0,0,0,'[]'),(3394,'5.255.253.103','normal','',0,0,0,0,1,'{\"nf\":[1658402053]}'),(3395,'144.86.173.94','normal','',0,0,0,0,0,'[]'),(3396,'54.36.148.200','normal','',0,0,0,0,0,'[]'),(3397,'54.36.148.181','normal','',0,0,0,0,0,'[]'),(3398,'117.26.52.74','normal','',0,0,0,0,0,'[]'),(3399,'23.100.232.233','normal','',0,0,0,0,2,'{\"nf\":[1629542265,1634243581]}'),(3400,'207.46.13.82','normal','',0,0,0,0,0,'[]'),(3401,'213.136.93.170','normal','',0,0,0,1,0,'{\"login\":[1629553553]}'),(3402,'124.126.78.196','normal','',0,0,0,0,0,'[]'),(3403,'107.150.59.243','normal','',0,0,0,1,0,'{\"login\":[1629565809]}'),(3404,'163.172.45.18','normal','',0,0,0,0,0,'[]'),(3405,'125.206.171.197','normal','',0,0,0,3,0,'{\"login\":[1631627102,1632172935,1632571462]}'),(3406,'47.104.199.204','normal','',0,0,0,0,1,'{\"nf\":[1629576478]}'),(3407,'103.216.62.28','normal','',0,0,0,4,0,'{\"login\":[1630220408,1632282880,1632590392,1632591853]}'),(3408,'34.216.201.139','normal','',0,0,0,0,0,'[]'),(3409,'207.244.251.142','normal','',0,0,0,0,0,'[]'),(3410,'186.64.119.145','normal','',0,0,0,0,0,'[]'),(3411,'186.64.116.210','normal','',0,0,0,0,0,'[]'),(3412,'152.32.150.65','normal','',0,0,0,0,0,'[]'),(3413,'185.49.20.78','normal','',0,0,0,15,0,'{\"login\":[1629711146,1629915103,1631504950,1632341279,1633737512,1633929089,1642669171,1642679171,1643100500,1644112982,1644246229,1644257623,1644271619,1645080254,1645248260]}'),(3414,'121.40.209.22','normal','',0,0,0,0,6,'{\"nf\":[1629592096,1629592099,1633779054,1633779062,1634186196,1634186204]}'),(3415,'64.111.109.226','normal','',0,0,0,0,0,'[]'),(3416,'66.29.143.127','normal','',0,0,0,0,0,'[]'),(3417,'103.213.116.178','normal','',0,0,0,3,0,'{\"login\":[1632003760,1632005570,1632294013]}'),(3418,'67.23.254.254','normal','',0,0,0,1,0,'{\"login\":[1632473874]}'),(3419,'45.93.168.195','normal','',0,0,0,0,0,'[]'),(3420,'139.155.225.232','normal','',0,0,0,0,0,'[]'),(3421,'129.211.173.215','normal','',0,0,0,0,0,'[]'),(3422,'167.99.54.31','normal','',0,0,0,3,0,'{\"login\":[1631625015,1632198567,1654000321]}'),(3423,'146.59.195.13','normal','',0,0,0,0,0,'[]'),(3424,'157.245.37.203','normal','',0,0,0,0,0,'[]'),(3425,'140.143.247.188','normal','',0,0,0,0,1,'{\"nf\":[1629607254]}'),(3426,'42.236.10.112','normal','',0,0,0,0,0,'[]'),(3427,'195.201.27.201','normal','',0,0,0,0,0,'[]'),(3428,'185.227.138.227','normal','',0,0,0,2,0,'{\"login\":[1631695742,1632006473]}'),(3429,'198.11.177.173','normal','',0,0,0,2,0,'{\"login\":[1631968620,1634924974]}'),(3430,'103.130.213.29','normal','',0,0,0,1,0,'{\"login\":[1634007489]}'),(3431,'81.88.52.134','normal','',0,0,0,7,0,'{\"login\":[1634925367,1634930558,1634935669,1634936348,1640790296,1653999352,1661160477]}'),(3432,'69.36.94.214','normal','',0,0,0,0,0,'[]'),(3433,'51.144.36.211','normal','',0,0,0,0,0,'[]'),(3434,'69.163.216.124','normal','',0,0,0,0,0,'[]'),(3435,'185.220.102.248','normal','',0,0,0,0,0,'[]'),(3436,'103.120.176.86','normal','',0,0,0,0,0,'[]'),(3437,'103.124.93.236','normal','',0,0,0,2,0,'{\"login\":[1632575650,1632920377]}'),(3438,'62.210.180.146','normal','',0,0,0,0,0,'[]'),(3439,'54.36.148.135','normal','',0,0,0,0,0,'[]'),(3440,'54.36.149.44','normal','',0,0,0,0,0,'[]'),(3441,'142.54.181.58','normal','',0,0,0,2,0,'{\"login\":[1629661230,1629702779]}'),(3442,'178.128.42.125','normal','',0,0,0,6,0,'{\"login\":[1629674519,1630824053,1631405264,1632091730,1632328122,1632364337]}'),(3443,'77.88.5.226','normal','',0,0,0,0,0,'[]'),(3444,'114.119.147.240','normal','',0,0,0,0,0,'[]'),(3445,'35.184.13.183','normal','',0,0,0,0,0,'[]'),(3446,'217.70.186.133','normal','',0,0,0,10,0,'{\"login\":[1629694014,1629779647,1629927351,1630181400,1630744099,1630756467,1630793755,1630921788,1631476986,1631792803]}'),(3447,'87.107.146.184','normal','',0,0,0,0,0,'[]'),(3448,'3.25.153.98','normal','',0,0,0,0,0,'[]'),(3449,'102.182.190.210','normal','',0,0,0,0,1,'{\"nf\":[1629701282]}'),(3450,'23.236.48.117','normal','',0,0,0,0,9,'{\"nf\":[1629703835,1629703843,1629703845,1629703848,1629703851,1629703854,1629703856,1629703858,1629703861]}'),(3451,'103.73.189.211','normal','',0,0,0,0,0,'[]'),(3452,'179.43.172.37','normal','',0,0,0,0,0,'[]'),(3453,'154.0.175.208','normal','',0,0,0,0,0,'[]'),(3454,'66.33.204.108','normal','',0,0,0,0,0,'[]'),(3455,'105.226.13.247','normal','',0,0,0,0,4,'{\"nf\":[1629717258,1629718420,1629733466,1629734351]}'),(3456,'197.221.189.224','normal','',0,0,0,0,2,'{\"nf\":[1629720041,1629819222]}'),(3457,'157.245.110.251','normal','',0,0,0,97,0,'{\"login\":[1629722294,1629729682,1629918148,1630346450,1630576001,1630932265,1631264340,1631377238,1631420595,1631507945,1631980498,1632175559,1632214052,1632365088,1632469109,1632504771,1632529043,1632744066,1633030437,1633055938,1633256032,1633989514,1636825338,1637435973,1637800670,1637823755,1638225429,1638297122,1638748140,1639153961,1639605994,1639925429,1640275513,1641185117,1641812304,1641927335,1642053411,1642091538,1642116900,1642299589,1642512735,1642547820,1642623698,1642662418,1643638487,1643648669,1643752046,1644620293,1645339756,1645849058,1647144962,1647185650,1647203741,1647309039,1647956809,1648090923,1648096662,1649500806,1649552255,1652307637,1652561911,1652651110,1652893082,1652903453,1653007678,1654100757,1654234812,1654522174,1654947481,1655032263,1655534657,1655820904,1656334378,1656561527,1656774748,1656824804,1656869991,1657115764,1657405056,1657613236,1658531732,1658659399,1659758193,1659792688,1660151797,1660225421,1660447428,1660505647,1661202034,1662144599,1662152349,1662271802,1662275024,1662776279,1662777622,1662805726,1663149432]}'),(3458,'196.216.238.180','normal','',0,0,0,0,1,'{\"nf\":[1629723894]}'),(3459,'66.29.139.124','normal','',0,0,0,0,0,'[]'),(3460,'178.17.174.164','normal','',0,0,0,0,0,'[]'),(3461,'105.186.141.113','normal','',0,0,0,0,1,'{\"nf\":[1629742083]}'),(3462,'27.115.124.101','normal','',0,0,0,0,2,'{\"nf\":[1630333434,1631584896]}'),(3463,'169.0.139.47','normal','',0,0,0,0,2,'{\"nf\":[1629751413,1629789523]}'),(3464,'51.255.164.109','normal','',0,0,0,0,3,'{\"nf\":[1629754468,1629754652,1634547358]}'),(3465,'45.123.118.160','blocked','You have been locked out due to too many invalid login attempts.',1629759554,1629759254,0,5,0,'{\"login\":[1629759242,1629759244,1629759248,1629759251,1629759254]}'),(3466,'50.116.71.87','normal','',0,0,0,0,1,'{\"nf\":[1629767437]}'),(3467,'110.249.201.114','normal','',0,0,0,0,0,'[]'),(3468,'173.236.176.10','normal','',0,0,0,14,0,'{\"login\":[1629775243,1630208706,1630574751,1630706976,1630930373,1631739297,1631798079,1634344363,1634354619,1634358581,1634946209,1635711053,1635751463,1638346053]}'),(3469,'64.227.88.155','normal','',0,0,0,0,4,'{\"nf\":[1629787808,1633704812,1635662968,1635662974]}'),(3470,'156.155.177.253','normal','',0,0,0,0,2,'{\"nf\":[1629788156,1629788194]}'),(3471,'102.165.65.193','normal','',0,0,0,0,2,'{\"nf\":[1629791427,1629791453]}'),(3472,'149.202.56.93','normal','',0,0,0,0,0,'[]'),(3473,'102.39.32.56','normal','',0,0,0,0,1,'{\"nf\":[1629793776]}'),(3474,'142.54.181.59','normal','',0,0,0,1,0,'{\"login\":[1629798947]}'),(3475,'144.86.173.151','normal','',0,0,0,0,0,'[]'),(3476,'185.107.47.215','normal','',0,0,0,0,0,'[]'),(3477,'5.45.77.102','normal','',0,0,0,0,0,'[]'),(3478,'104.248.18.239','normal','',0,0,0,0,0,'[]'),(3479,'186.10.53.9','normal','',0,0,0,0,0,'[]'),(3480,'40.84.217.227','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1629833971,0,1629833671,0,20,'{\"nf\":[1629833515,1629833528,1629833534,1629833539,1629833561,1629833569,1629833576,1629833582,1629833591,1629833599,1629833606,1629833613,1629833622,1629833627,1629833632,1629833639,1629833648,1629833654,1629833662,1629833670]}'),(3481,'37.156.145.140','normal','',0,0,0,0,0,'[]'),(3482,'107.167.82.152','normal','',0,0,0,0,0,'[]'),(3483,'123.56.228.164','normal','',0,0,0,0,2,'{\"nf\":[1629834735,1629834740]}'),(3484,'162.241.152.27','normal','',0,0,0,1,0,'{\"login\":[1631620183]}'),(3485,'54.213.39.229','normal','',0,0,0,0,0,'[]'),(3486,'62.171.177.175','normal','',0,0,0,0,1,'{\"nf\":[1629842138]}'),(3487,'54.188.5.200','normal','',0,0,0,0,0,'[]'),(3488,'212.83.147.15','normal','',0,0,0,0,13,'{\"nf\":[1629846377,1629846382,1629846478,1637108142,1637108161,1637108191,1637108335,1641998812,1641998894,1641999019,1641999046,1645847882,1646953151]}'),(3489,'186.64.115.90','normal','',0,0,0,0,0,'[]'),(3490,'213.136.76.66','normal','',0,0,0,0,0,'[]'),(3491,'185.220.100.242','normal','',0,0,0,0,0,'[]'),(3492,'31.210.79.220','normal','',0,0,0,1,0,'{\"login\":[1632019498]}'),(3493,'1.241.163.138','normal','',0,0,0,0,0,'[]'),(3494,'103.90.232.106','normal','',0,0,0,6,0,'{\"login\":[1634939503,1635858979,1638436420,1650164008,1654515047,1661169941]}'),(3495,'107.181.185.226','normal','',0,0,0,0,0,'[]'),(3496,'69.30.225.100','normal','',0,0,0,1,0,'{\"login\":[1629862044]}'),(3497,'105.19.57.111','normal','',0,0,0,1,0,'{\"login\":[1631955319]}'),(3498,'181.95.108.28','normal','',0,0,0,0,0,'[]'),(3499,'35.231.49.189','normal','',0,0,0,0,0,'[]'),(3500,'157.245.240.102','normal','',0,0,0,2,0,'{\"login\":[1653976796,1654066108]}'),(3501,'197.95.146.214','normal','',0,0,0,0,0,'[]'),(3502,'108.170.55.250','normal','',0,0,0,1,0,'{\"login\":[1631618679]}'),(3503,'185.160.67.20','normal','',0,0,0,0,0,'[]'),(3504,'62.221.254.190','normal','',0,0,0,0,0,'[]'),(3505,'5.101.157.56','normal','',0,0,0,0,0,'[]'),(3506,'78.137.164.52','normal','',0,0,0,0,0,'[]'),(3507,'185.81.96.5','normal','',0,0,0,0,0,'[]'),(3508,'103.42.58.102','normal','',0,0,0,3,0,'{\"login\":[1631613210,1631696844,1632024234]}'),(3509,'162.241.200.25','normal','',0,0,0,2,0,'{\"login\":[1632013849,1632477846]}'),(3510,'185.51.202.58','normal','',0,0,0,0,0,'[]'),(3511,'186.64.117.145','normal','',0,0,0,0,0,'[]'),(3512,'104.131.102.251','normal','',0,0,0,0,0,'[]'),(3513,'142.54.181.60','normal','',0,0,0,1,0,'{\"login\":[1629881213]}'),(3514,'186.64.118.215','normal','',0,0,0,0,0,'[]'),(3515,'144.86.173.91','normal','',0,0,0,0,0,'[]'),(3516,'144.91.123.189','normal','',0,0,0,0,4,'{\"nf\":[1629886707,1629886714,1643225308,1643225309]}'),(3517,'31.47.0.36','normal','',0,0,0,0,0,'[]'),(3518,'103.142.25.112','normal','',0,0,0,0,0,'[]'),(3519,'157.175.132.92','normal','',0,0,0,0,0,'[]'),(3520,'162.55.190.191','normal','',0,0,0,0,0,'[]'),(3521,'43.242.128.31','normal','',0,0,0,0,0,'[]'),(3522,'64.111.126.81','normal','',0,0,0,0,0,'[]'),(3523,'66.249.65.7','normal','',0,0,0,0,0,'[]'),(3524,'110.249.202.104','normal','',0,0,0,0,0,'[]'),(3525,'111.225.148.54','normal','',0,0,0,0,0,'[]'),(3526,'111.225.149.28','normal','',0,0,0,0,0,'[]'),(3527,'110.249.202.64','normal','',0,0,0,0,0,'[]'),(3528,'110.249.202.7','normal','',0,0,0,0,0,'[]'),(3529,'111.225.148.17','normal','',0,0,0,0,0,'[]'),(3530,'220.243.136.193','normal','',0,0,0,0,0,'[]'),(3531,'111.225.149.106','normal','',0,0,0,0,0,'[]'),(3532,'111.225.149.109','normal','',0,0,0,0,0,'[]'),(3533,'110.249.202.101','normal','',0,0,0,0,0,'[]'),(3534,'111.225.148.40','normal','',0,0,0,0,0,'[]'),(3535,'111.225.148.32','normal','',0,0,0,0,0,'[]'),(3536,'110.249.201.235','normal','',0,0,0,0,0,'[]'),(3537,'207.154.231.132','normal','',0,0,0,4,0,'{\"login\":[1629911305,1630241081,1631353178,1631931654]}'),(3538,'197.245.201.138','normal','',0,0,0,0,0,'[]'),(3539,'34.219.66.46','normal','',0,0,0,0,0,'[]'),(3540,'109.70.100.35','normal','',0,0,0,0,0,'[]'),(3541,'69.30.244.20','normal','',0,0,0,2,0,'{\"login\":[1629934281,1629952813]}'),(3542,'196.41.122.224','normal','',0,0,0,5,0,'{\"login\":[1629939858,1630923667,1634738980,1634781212,1635553472]}'),(3543,'159.65.118.118','normal','',0,0,0,37,0,'{\"login\":[1629943043,1629975354,1630338456,1630920877,1631339945,1631644730,1631971547,1632216334,1632694200,1634221995,1636020313,1636814657,1636919773,1636939909,1637954677,1639142268,1639155404,1639182739,1639501613,1639666260,1639726937,1643488143,1644119150,1644150082,1644278759,1644425074,1645221849,1645354843,1645824758,1646284438,1647045479,1647153295,1647899540,1647901956,1648664560,1650517629,1650601770]}'),(3544,'17.121.114.121','normal','',0,0,0,0,0,'[]'),(3545,'185.56.80.65','normal','',0,0,0,0,2,'{\"nf\":[1654908294,1654908298]}'),(3546,'192.151.144.60','normal','',0,0,0,1,0,'{\"login\":[1629962482]}'),(3547,'178.128.97.77','normal','',0,0,0,2,0,'{\"login\":[1629968179,1631509960]}'),(3548,'116.193.76.112','normal','',0,0,0,0,2,'{\"nf\":[1629972794,1629972799]}'),(3549,'52.11.71.117','normal','',0,0,0,0,0,'[]'),(3550,'77.163.238.41','normal','',0,0,0,4,0,'{\"login\":[1629974568,1630815411,1632619621,1633278601]}'),(3551,'165.0.125.39','normal','',0,0,0,0,0,'[]'),(3552,'84.255.199.31','normal','',0,0,0,18,0,'{\"login\":[1629984333,1630185841,1630251502,1630618069,1631273053,1631738647,1632050739,1632274220,1632363575,1633040831,1633271318,1633637227,1634328357,1634446727,1634452656,1637219233,1637295770,1637391542]}'),(3553,'142.54.188.74','normal','',0,0,0,2,0,'{\"login\":[1629989645,1630010230]}'),(3554,'35.84.2.183','normal','',0,0,0,0,0,'[]'),(3555,'102.39.37.210','normal','',0,0,0,0,0,'[]'),(3556,'212.192.246.83','normal','',0,0,0,0,4,'{\"nf\":[1630006435,1630006438,1630006440,1630006446]}'),(3557,'92.100.150.119','normal','',0,0,0,0,0,'[]'),(3558,'34.216.13.168','normal','',0,0,0,0,0,'[]'),(3559,'5.9.156.30','normal','',0,0,0,0,0,'[]'),(3560,'5.9.22.215','normal','',0,0,0,5,0,'{\"login\":[1630405549,1630429397,1630443179,1630446966,1631738541]}'),(3561,'13.56.6.42','normal','',0,0,0,0,0,'[]'),(3562,'161.97.149.11','normal','',0,0,0,0,0,'[]'),(3563,'136.243.74.161','normal','',0,0,0,0,2,'{\"nf\":[1630057159,1630057174]}'),(3564,'185.2.6.13','normal','',0,0,0,3,0,'{\"login\":[1630836249,1631310722,1662208662]}'),(3565,'135.125.188.136','normal','',0,0,0,1,0,'{\"login\":[1630404340]}'),(3566,'44.229.111.204','normal','',0,0,0,0,0,'[]'),(3567,'187.45.195.16','normal','',0,0,0,0,2,'{\"nf\":[1630071992,1630071994]}'),(3568,'172.104.44.45','normal','',0,0,0,2,0,'{\"login\":[1630077298,1630086605]}'),(3569,'44.196.60.196','normal','',0,0,0,0,0,'[]'),(3570,'5.255.253.66','normal','',0,0,0,0,0,'[]'),(3571,'5.255.231.69','normal','',0,0,0,0,0,'[]'),(3572,'5.255.231.177','normal','',0,0,0,0,0,'[]'),(3573,'110.249.201.32','normal','',0,0,0,0,0,'[]'),(3574,'111.225.148.242','normal','',0,0,0,0,1,'{\"nf\":[1630084033]}'),(3575,'193.202.110.21','normal','',0,0,0,0,2,'{\"nf\":[1630085007,1630085013]}'),(3576,'143.110.188.214','normal','',0,0,0,1,0,'{\"login\":[1630085202]}'),(3577,'51.38.252.237','normal','',0,0,0,2,0,'{\"login\":[1630089469,1630093965]}'),(3578,'88.86.104.10','normal','',0,0,0,2,0,'{\"login\":[1630091008,1630226871]}'),(3579,'182.16.179.69','normal','',0,0,0,0,0,'[]'),(3580,'54.202.254.47','normal','',0,0,0,0,0,'[]'),(3581,'118.195.187.202','normal','',0,0,0,1,0,'{\"login\":[1630441764]}'),(3582,'85.128.143.35','normal','',0,0,0,0,0,'[]'),(3583,'91.238.164.176','normal','',0,0,0,14,0,'{\"login\":[1630102530,1630374882,1631268778,1631300947,1633546361,1634282926,1634288106,1637439545,1637982469,1638250488,1638464583,1638536502,1638749507,1638879556]}'),(3584,'54.36.149.60','normal','',0,0,0,0,0,'[]'),(3585,'121.243.95.160','normal','',0,0,0,70,0,'{\"login\":[1630106877,1630191147,1630261607,1631637614,1632188595,1632287914,1633304457,1633940899,1634231879,1636018085,1637030781,1637112596,1637224285,1637420220,1638755007,1638862950,1639955497,1640615820,1641118324,1641457483,1641484255,1641774821,1641788143,1641901702,1642066428,1642244858,1643034881,1643091040,1643095905,1644163429,1644356479,1644453600,1645932964,1645995164,1646452629,1647321720,1648476049,1649475132,1650036369,1650463783,1650956604,1651546242,1651584331,1652032192,1652527960,1652543240,1652678877,1653316424,1653405388,1653457933,1653476510,1653479218,1653503895,1653623272,1654287973,1654978058,1655354411,1655671684,1655782402,1655893051,1657589884,1658328149,1658510858,1659416569,1660330717,1660754677,1661616487,1662267393,1662674941,1663135576]}'),(3586,'23.29.122.186','normal','',0,0,0,0,0,'[]'),(3587,'151.106.41.6','normal','',0,0,0,0,0,'[]'),(3588,'68.183.225.85','normal','',0,0,0,1,0,'{\"login\":[1630125838]}'),(3589,'185.122.201.129','normal','',0,0,0,69,0,'{\"login\":[1630129241,1630570877,1630806825,1630809934,1630942445,1631330318,1631654566,1631928535,1633764465,1634017906,1635612951,1635783442,1636015902,1638976192,1642391225,1642619483,1642906177,1643031757,1643042232,1643054224,1643309196,1643769605,1644221064,1644327270,1644628894,1644699297,1645234447,1645261810,1645333659,1645347369,1645737458,1646066320,1646236895,1646427675,1646570834,1646882419,1646993471,1647319446,1647686808,1647775350,1648450417,1648533809,1648635927,1649010204,1649234129,1649479350,1649696046,1649985652,1650976252,1651005919,1651385759,1651409664,1651683947,1651948524,1651954407,1651960299,1653453638,1653495333,1653790030,1653896606,1654105496,1654110010,1654248590,1654353400,1654599512,1654792032,1656917942,1657200819,1658668434]}'),(3590,'139.59.83.248','normal','',0,0,0,1,0,'{\"login\":[1632853408]}'),(3591,'52.77.145.61','normal','',0,0,0,0,0,'[]'),(3592,'161.97.136.86','normal','',0,0,0,1,0,'{\"login\":[1630134582]}'),(3593,'40.114.174.242','normal','',0,0,0,10,0,'{\"login\":[1630145878,1630163341,1630188845,1631245525,1631413043,1631508918,1632270940,1632297377,1632486099,1634419958]}'),(3594,'110.78.210.76','normal','',0,0,0,2,0,'{\"login\":[1631758066,1632001376]}'),(3595,'192.42.116.18','normal','',0,0,0,0,0,'[]'),(3596,'42.236.10.105','normal','',0,0,0,0,0,'[]'),(3597,'186.64.116.20','normal','',0,0,0,0,0,'[]'),(3598,'84.16.231.32','normal','',0,0,0,0,0,'[]'),(3599,'116.202.161.232','normal','',0,0,0,4,0,'{\"login\":[1630401867,1630802854,1630889925,1631731644]}'),(3600,'193.187.119.203','normal','',0,0,0,2,0,'{\"login\":[1633573272,1634923384]}'),(3601,'104.160.43.196','normal','',0,0,0,2,0,'{\"login\":[1632587604,1633523009]}'),(3602,'24.206.223.47','normal','',0,0,0,0,0,'[]'),(3603,'91.203.110.232','normal','',0,0,0,1,0,'{\"login\":[1632291214]}'),(3604,'3.125.29.159','normal','',0,0,0,0,0,'[]'),(3605,'159.89.51.228','normal','',0,0,0,1,0,'{\"login\":[1633536564]}'),(3606,'165.227.239.212','normal','',0,0,0,1,0,'{\"login\":[1630458833]}'),(3607,'103.109.30.30','normal','',0,0,0,4,0,'{\"login\":[1632186207,1640426900,1640580532,1650354494]}'),(3608,'13.81.40.12','normal','',0,0,0,1,0,'{\"login\":[1631691745]}'),(3609,'80.179.219.10','normal','',0,0,0,5,0,'{\"login\":[1630395004,1630431203,1630823677,1630899600,1632898428]}'),(3610,'85.128.142.43','normal','',0,0,0,0,0,'[]'),(3611,'91.206.200.68','normal','',0,0,0,0,0,'[]'),(3612,'35.176.208.39','normal','',0,0,0,0,0,'[]'),(3613,'125.212.192.57','normal','',0,0,0,0,0,'[]'),(3614,'35.177.169.9','normal','',0,0,0,0,0,'[]'),(3615,'164.68.109.30','normal','',0,0,0,0,0,'[]'),(3616,'185.217.198.159','normal','',0,0,0,0,2,'{\"nf\":[1636386566,1639666248]}'),(3617,'45.77.190.82','normal','',0,0,0,0,0,'[]'),(3618,'51.38.227.245','normal','',0,0,0,3,0,'{\"login\":[1630174408,1630236781,1630260161]}'),(3619,'145.239.142.148','normal','',0,0,0,0,0,'[]'),(3620,'188.34.182.183','normal','',0,0,0,2,0,'{\"login\":[1630448889,1632877882]}'),(3621,'138.197.157.15','normal','',0,0,0,1,0,'{\"login\":[1630175191]}'),(3622,'103.209.9.2','normal','',0,0,0,0,1,'{\"nf\":[1645914401]}'),(3623,'78.128.81.153','normal','',0,0,0,0,0,'[]'),(3624,'206.189.239.86','normal','',0,0,0,2,0,'{\"login\":[1632935522,1633530106]}'),(3625,'78.47.58.219','normal','',0,0,0,0,0,'[]'),(3626,'103.120.179.214','normal','',0,0,0,0,0,'[]'),(3627,'94.60.58.223','normal','',0,0,0,0,0,'[]'),(3628,'103.241.24.165','normal','',0,0,0,0,0,'[]'),(3629,'200.147.58.2','normal','',0,0,0,0,0,'[]'),(3630,'203.210.102.30','normal','',0,0,0,0,0,'[]'),(3631,'146.88.234.59','normal','',0,0,0,0,0,'[]'),(3632,'186.64.118.205','normal','',0,0,0,0,0,'[]'),(3633,'120.53.235.9','normal','',0,0,0,0,0,'[]'),(3634,'104.161.80.222','normal','',0,0,0,0,0,'[]'),(3635,'148.251.83.21','normal','',0,0,0,0,0,'[]'),(3636,'198.12.226.32','normal','',0,0,0,0,0,'[]'),(3637,'34.211.110.212','normal','',0,0,0,0,0,'[]'),(3638,'103.27.35.102','normal','',0,0,0,0,0,'[]'),(3639,'34.211.12.37','normal','',0,0,0,0,0,'[]'),(3640,'45.77.232.194','normal','',0,0,0,2,0,'{\"login\":[1630183621,1630382968]}'),(3641,'95.216.1.157','normal','',0,0,0,1,0,'{\"login\":[1630184349]}'),(3642,'5.199.143.202','normal','',0,0,0,0,0,'[]'),(3643,'34.214.12.112','normal','',0,0,0,2,0,'{\"login\":[1630455022,1630463849]}'),(3644,'31.31.198.237','normal','',0,0,0,1,0,'{\"login\":[1630204385]}'),(3645,'157.55.39.25','normal','',0,0,0,0,0,'[]'),(3646,'207.46.13.7','normal','',0,0,0,0,0,'[]'),(3647,'186.64.116.55','normal','',0,0,0,0,0,'[]'),(3648,'34.70.163.65','normal','',0,0,0,1,0,'{\"login\":[1630210871]}'),(3649,'23.88.38.131','normal','',0,0,0,2,0,'{\"login\":[1630213060,1630616778]}'),(3650,'116.118.48.211','normal','',0,0,0,2,0,'{\"login\":[1630214530,1630284612]}'),(3651,'213.6.28.89','normal','',0,0,0,0,0,'[]'),(3652,'151.106.32.149','normal','',0,0,0,8,0,'{\"login\":[1630221144,1631254346,1632043701,1632219353,1632226102,1632261400,1632294225,1632540824]}'),(3653,'51.79.24.250','normal','',0,0,0,0,0,'[]'),(3654,'18.140.162.253','normal','',0,0,0,0,0,'[]'),(3655,'54.36.148.248','normal','',0,0,0,0,0,'[]'),(3656,'85.31.101.215','normal','',0,0,0,10,0,'{\"login\":[1630231344,1631963168,1632631908,1633815706,1634371636,1634537314,1635488075,1635737568,1636207712,1637183757]}'),(3657,'186.64.114.35','normal','',0,0,0,1,0,'{\"login\":[1633987539]}'),(3658,'103.110.86.126','normal','',0,0,0,0,0,'[]'),(3659,'143.198.130.218','normal','',0,0,0,2,0,'{\"login\":[1630415085,1630419925]}'),(3660,'23.250.95.106','normal','',0,0,0,0,0,'[]'),(3661,'185.63.189.58','normal','',0,0,0,0,0,'[]'),(3662,'3.35.44.176','normal','',0,0,0,0,0,'[]'),(3663,'165.22.211.55','normal','',0,0,0,0,0,'[]'),(3664,'185.182.228.2','normal','',0,0,0,12,0,'{\"login\":[1630244081,1630280260,1630597783,1630791476,1630804488,1631706729,1632076033,1632103542,1632125259,1632974271,1633846411,1633901161]}'),(3665,'154.216.16.2','normal','',0,0,0,0,0,'[]'),(3666,'185.190.39.66','normal','',0,0,0,3,0,'{\"login\":[1632301120,1635844772,1640909014]}'),(3667,'206.189.139.182','normal','',0,0,0,37,0,'{\"login\":[1630250055,1630572867,1631234688,1631236864,1631633223,1633299888,1634374880,1634987288,1636791992,1637031752,1637665826,1637688618,1639276463,1639857426,1639943596,1640105274,1640267402,1640567369,1640628414,1640684650,1640801220,1641057297,1641091618,1641275245,1641459660,1641723889,1642039959,1642236523,1642242326,1642293115,1642656545,1643035918,1643056452,1643099845,1643482468,1643630436,1643683042]}'),(3668,'186.64.118.55','normal','',0,0,0,0,0,'[]'),(3669,'35.198.229.83','normal','',0,0,0,0,0,'[]'),(3670,'188.225.27.211','normal','',0,0,0,0,0,'[]'),(3671,'103.1.237.14','normal','',0,0,0,1,0,'{\"login\":[1631708083]}'),(3672,'203.151.4.151','normal','',0,0,0,0,0,'[]'),(3673,'91.206.200.5','normal','',0,0,0,0,0,'[]'),(3674,'185.2.6.12','normal','',0,0,0,2,0,'{\"login\":[1630434746,1630805215]}'),(3675,'13.126.231.64','normal','',0,0,0,0,0,'[]'),(3676,'95.179.160.38','normal','',0,0,0,0,0,'[]'),(3677,'131.72.236.123','normal','',0,0,0,0,0,'[]'),(3678,'186.64.118.225','normal','',0,0,0,0,0,'[]'),(3679,'45.147.76.14','normal','',0,0,0,0,0,'[]'),(3680,'178.128.94.123','normal','',0,0,0,0,0,'[]'),(3681,'39.105.118.26','normal','',0,0,0,0,6,'{\"nf\":[1630265110,1630265114,1634712514,1634712639,1634712643,1634712726]}'),(3682,'188.93.227.95','normal','',0,0,0,0,0,'[]'),(3683,'89.46.109.153','normal','',0,0,0,3,0,'{\"login\":[1631705395,1632283776,1635840755]}'),(3684,'134.122.21.117','normal','',0,0,0,0,0,'[]'),(3685,'185.247.225.49','normal','',0,0,0,0,0,'[]'),(3686,'62.210.82.116','normal','',0,0,0,0,0,'[]'),(3687,'105.186.239.52','normal','',0,0,0,0,1,'{\"nf\":[1630267529]}'),(3688,'216.137.176.55','normal','',0,0,0,0,0,'[]'),(3689,'176.9.208.67','normal','',0,0,0,1,0,'{\"login\":[1630390047]}'),(3690,'162.144.66.89','normal','',0,0,0,1,0,'{\"login\":[1634010968]}'),(3691,'5.188.62.214','normal','',0,0,0,37,3,'{\"login\":[1630269073,1630269077,1630271003,1630271004,1631107679,1631109648,1631109649,1631111657,1631111658,1631438817,1631438818,1631440791,1631440792,1646539972,1646539978,1646565029,1646565035,1646590209,1646590215,1646615463,1646615469,1646641038,1646641044,1646666379,1646666385,1646691785,1646691791,1646717106,1646717112,1646742519,1646742525,1646768094,1646768100,1646794020,1646794026,1646820029,1646820035],\"nf\":[1630620177,1631205436,1636764313]}'),(3692,'34.214.201.35','normal','',0,0,0,0,0,'[]'),(3693,'103.159.53.102','normal','',0,0,0,1,0,'{\"login\":[1650353494]}'),(3694,'54.189.108.47','normal','',0,0,0,0,0,'[]'),(3695,'144.91.74.140','normal','',0,0,0,0,0,'[]'),(3696,'45.124.84.40','normal','',0,0,0,2,0,'{\"login\":[1633541806,1638452245]}'),(3697,'35.213.170.208','normal','',0,0,0,1,0,'{\"login\":[1660739225]}'),(3698,'88.135.37.49','normal','',0,0,0,3,0,'{\"login\":[1631627610,1654518062,1660301239]}'),(3699,'206.189.133.154','normal','',0,0,0,0,0,'[]'),(3700,'149.28.227.88','normal','',0,0,0,0,0,'[]'),(3701,'209.205.221.250','normal','',0,0,0,0,0,'[]'),(3702,'221.121.143.143','normal','',0,0,0,3,0,'{\"login\":[1631617730,1631978423,1632007392]}'),(3703,'51.79.18.62','normal','',0,0,0,0,0,'[]'),(3704,'209.141.55.141','normal','',0,0,0,0,0,'[]'),(3705,'31.177.95.27','normal','',0,0,0,0,0,'[]'),(3706,'194.233.68.84','normal','',0,0,0,0,0,'[]'),(3707,'94.177.202.116','normal','',0,0,0,0,0,'[]'),(3708,'185.53.12.11','normal','',0,0,0,0,0,'[]'),(3709,'103.164.54.193','normal','',0,0,0,0,0,'[]'),(3710,'67.211.219.84','normal','',0,0,0,2,0,'{\"login\":[1632185581,1632931132]}'),(3711,'42.236.10.73','normal','',0,0,0,0,0,'[]'),(3712,'167.99.12.47','normal','',0,0,0,0,0,'[]'),(3713,'163.44.192.49','normal','',0,0,0,0,0,'[]'),(3714,'80.244.174.131','normal','',0,0,0,1,0,'{\"login\":[1630456473]}'),(3715,'131.153.101.6','normal','',0,0,0,1,0,'{\"login\":[1633528029]}'),(3716,'185.220.101.10','normal','',0,0,0,0,0,'[]'),(3717,'36.92.1.31','normal','',0,0,0,2,0,'{\"login\":[1631709286,1640802572]}'),(3718,'94.158.220.2','normal','',0,0,0,0,0,'[]'),(3719,'139.180.157.96','normal','',0,0,0,0,0,'[]'),(3720,'45.61.146.241','normal','',0,0,0,6,0,'{\"login\":[1632592807,1633990814,1634937893,1638426706,1661074517,1661170640]}'),(3721,'88.198.91.76','normal','',0,0,0,0,1,'{\"nf\":[1630305102]}'),(3722,'82.165.189.212','normal','',0,0,0,0,0,'[]'),(3723,'168.119.1.119','normal','',0,0,0,0,0,'[]'),(3724,'46.101.95.65','normal','',0,0,0,1,0,'{\"login\":[1631685957]}'),(3725,'54.254.37.163','normal','',0,0,0,1,0,'{\"login\":[1630312469]}'),(3726,'208.113.170.117','normal','',0,0,0,0,0,'[]'),(3727,'103.109.209.136','normal','',0,0,0,8,0,'{\"login\":[1632287744,1655285436,1655286334,1655296772,1655313815,1657459835,1657498446,1659400461]}'),(3728,'192.232.194.157','normal','',0,0,0,1,0,'{\"login\":[1630317008]}'),(3729,'51.75.14.82','normal','',0,0,0,1,0,'{\"login\":[1632480206]}'),(3730,'13.232.180.57','normal','',0,0,0,1,0,'{\"login\":[1630318519]}'),(3731,'72.167.41.152','normal','',0,0,0,2,0,'{\"login\":[1631954524,1632022339]}'),(3732,'108.171.246.242','normal','',0,0,0,0,0,'[]'),(3733,'194.87.190.39','normal','',0,0,0,2,0,'{\"login\":[1632477225,1638435833]}'),(3734,'3.86.47.139','normal','',0,0,0,0,0,'[]'),(3735,'161.35.60.239','normal','',0,0,0,1,0,'{\"login\":[1630451649]}'),(3736,'162.214.53.117','normal','',0,0,0,0,0,'[]'),(3737,'205.251.155.206','normal','',0,0,0,0,0,'[]'),(3738,'177.71.231.97','normal','',0,0,0,0,0,'[]'),(3739,'192.236.160.232','normal','',0,0,0,0,0,'[]'),(3740,'18.192.137.3','normal','',0,0,0,0,0,'[]'),(3741,'92.118.160.37','normal','',0,0,0,0,0,'[]'),(3742,'195.88.50.242','normal','',0,0,0,4,0,'{\"login\":[1630327336,1630579151,1630636896,1630913798]}'),(3743,'205.196.221.70','normal','',0,0,0,0,1,'{\"nf\":[1630332772]}'),(3744,'46.101.150.34','normal','',0,0,0,69,0,'{\"login\":[1630343367,1630580417,1630831210,1632375332,1633227054,1633867432,1634117473,1634417393,1634501794,1634534365,1634946671,1634949309,1635471485,1635503902,1635670302,1635720372,1635727293,1635911158,1636854546,1637822083,1639785787,1639941018,1640636663,1641011395,1641467674,1641713368,1642224539,1643519321,1644242886,1644283185,1645446735,1645946818,1646244142,1646318797,1646483015,1646622893,1646838878,1647136466,1647668365,1647836703,1647850143,1648677416,1649204061,1650131463,1652343340,1653321259,1653489349,1654069018,1654124057,1654625020,1654629898,1655156239,1655606640,1655609133,1655686878,1655812977,1656549126,1657983927,1658012867,1658696282,1659206770,1659379442,1659436259,1659790341,1659826579,1660428971,1661347189,1662136751,1662552199]}'),(3745,'68.183.132.133','normal','',0,0,0,0,1,'{\"nf\":[1630344387]}'),(3746,'185.49.20.76','normal','',0,0,0,21,0,'{\"login\":[1630344919,1631180968,1631916600,1632057311,1632234576,1632472559,1632560959,1632611932,1633328606,1634309745,1634877103,1634948073,1643469614,1643636172,1644141926,1644213091,1644295325,1644296945,1644840757,1645043471,1645446008]}'),(3747,'45.12.32.57','normal','',0,0,0,16,0,'{\"login\":[1630347999,1630685794,1630800608,1631652023,1632628134,1633643716,1633950278,1634050637,1635800426,1636791390,1637154768,1637680057,1637725171,1638535072,1638983461,1638990673]}'),(3748,'54.36.148.13','normal','',0,0,0,0,0,'[]'),(3749,'54.191.205.165','normal','',0,0,0,0,0,'[]'),(3750,'34.218.230.100','normal','',0,0,0,0,0,'[]'),(3751,'103.6.244.158','normal','',0,0,0,4,0,'{\"login\":[1630371703,1632548057,1632636787,1634409350]}'),(3752,'5.2.76.242','normal','',0,0,0,0,0,'[]'),(3753,'41.13.196.38','normal','',0,0,0,0,0,'[]'),(3754,'95.216.101.122','normal','',0,0,0,1,0,'{\"login\":[1630390512]}'),(3755,'54.176.67.166','normal','',0,0,0,0,1,'{\"nf\":[1630390784]}'),(3756,'162.243.228.106','normal','',0,0,0,0,3,'{\"nf\":[1630390837,1632724629,1635404439]}'),(3757,'51.81.81.10','normal','',0,0,0,3,0,'{\"login\":[1630391146,1630467308,1630469745]}'),(3758,'210.215.153.171','normal','',0,0,0,1,0,'{\"login\":[1630392789]}'),(3759,'192.99.124.120','normal','',0,0,0,2,0,'{\"login\":[1630393213,1630791629]}'),(3760,'185.51.202.228','normal','',0,0,0,2,0,'{\"login\":[1630396201,1630785150]}'),(3761,'104.243.44.14','normal','',0,0,0,3,0,'{\"login\":[1630397234,1630403926,1630416388]}'),(3762,'54.180.194.65','normal','',0,0,0,3,0,'{\"login\":[1630397668,1630401424,1630447869]}'),(3763,'78.157.60.70','normal','',0,0,0,1,0,'{\"login\":[1630398149]}'),(3764,'54.237.86.45','normal','',0,0,0,2,0,'{\"login\":[1630400152,1630453131]}'),(3765,'173.212.223.158','normal','',0,0,0,3,0,'{\"login\":[1630400637,1630408176,1630866293]}'),(3766,'85.208.252.174','normal','',0,0,0,2,0,'{\"login\":[1630403513,1630407321]}'),(3767,'54.254.87.17','normal','',0,0,0,1,0,'{\"login\":[1630404730]}'),(3768,'164.52.207.236','normal','',0,0,0,2,0,'{\"login\":[1630406407,1630410274]}'),(3769,'45.84.226.34','normal','',0,0,0,2,0,'{\"login\":[1630406903,1630418628]}'),(3770,'37.24.72.14','normal','',0,0,0,2,0,'{\"login\":[1630407717,1631976839]}'),(3771,'136.243.174.233','normal','',0,0,0,1,0,'{\"login\":[1630408560]}'),(3772,'185.71.216.45','normal','',0,0,0,2,0,'{\"login\":[1630409445,1630454040]}'),(3773,'87.106.204.238','normal','',0,0,0,3,0,'{\"login\":[1630411155,1630452152,1630468785]}'),(3774,'176.9.54.210','normal','',0,0,0,3,0,'{\"login\":[1630412429,1630421308,1630778546]}'),(3775,'185.31.175.243','normal','',0,0,0,0,0,'[]'),(3776,'88.99.53.105','normal','',0,0,0,3,0,'{\"login\":[1630413275,1630415909,1632290596]}'),(3777,'193.56.29.48','normal','',0,0,0,0,3,'{\"nf\":[1630415421,1632767729,1637413550]}'),(3778,'162.241.67.253','normal','',0,0,0,2,0,'{\"login\":[1630415476,1630430744]}'),(3779,'51.91.45.243','normal','',0,0,0,5,0,'{\"login\":[1630416781,1630450337,1630456986,1630465831,1630469312]}'),(3780,'54.196.5.168','normal','',0,0,0,4,0,'{\"login\":[1630417263,1630438977,1630458379,1630459398]}'),(3781,'96.30.119.104','normal','',0,0,0,1,0,'{\"login\":[1630417753]}'),(3782,'157.230.5.128','normal','',0,0,0,1,0,'{\"login\":[1630420781]}'),(3783,'142.11.204.54','normal','',0,0,0,4,0,'{\"login\":[1630422630,1630435254,1630438498,1631728583]}'),(3784,'82.202.165.119','normal','',0,0,0,0,0,'[]'),(3785,'193.150.13.127','normal','',0,0,0,1,0,'{\"login\":[1630423985]}'),(3786,'3.7.224.27','normal','',0,0,0,1,0,'{\"login\":[1630425287]}'),(3787,'104.248.238.250','normal','',0,0,0,0,1,'{\"nf\":[1630426136]}'),(3788,'129.205.150.91','normal','',0,0,0,0,0,'[]'),(3789,'66.228.47.158','normal','',0,0,0,0,3,'{\"nf\":[1630428658,1630428668,1633698053]}'),(3790,'159.65.191.209','normal','',0,0,0,2,0,'{\"login\":[1630429766,1630771989]}'),(3791,'103.241.5.126','normal','',0,0,0,1,0,'{\"login\":[1630431637]}'),(3792,'133.130.77.44','normal','',0,0,0,1,0,'{\"login\":[1630432102]}'),(3793,'104.131.13.166','normal','',0,0,0,3,0,'{\"login\":[1630433366,1630856898,1631972822]}'),(3794,'45.117.81.105','normal','',0,0,0,1,0,'{\"login\":[1630437150]}'),(3795,'159.65.219.238','normal','',0,0,0,2,0,'{\"login\":[1630439400,1631742267]}'),(3796,'123.31.43.156','normal','',0,0,0,2,0,'{\"login\":[1630439901,1630440398]}'),(3797,'34.217.206.75','normal','',0,0,0,0,0,'[]'),(3798,'34.81.43.4','normal','',0,0,0,1,0,'{\"login\":[1630446459]}'),(3799,'51.83.107.243','normal','',0,0,0,1,0,'{\"login\":[1630448405]}'),(3800,'18.188.217.194','normal','',0,0,0,1,0,'{\"login\":[1630449816]}'),(3801,'42.236.10.88','normal','',0,0,0,0,0,'[]'),(3802,'209.50.61.193','normal','',0,0,0,1,0,'{\"login\":[1630459915]}'),(3803,'144.86.173.137','normal','',0,0,0,0,0,'[]'),(3804,'68.183.198.47','normal','',0,0,0,1,0,'{\"login\":[1630462284]}'),(3805,'27.73.106.10','normal','',0,0,0,1,0,'{\"login\":[1630464329]}'),(3806,'77.68.119.124','normal','',0,0,0,4,0,'{\"login\":[1630466744,1632203488,1632265263,1632372410]}'),(3807,'52.13.79.235','normal','',0,0,0,1,0,'{\"login\":[1630470246]}'),(3808,'124.217.255.60','normal','',0,0,0,3,0,'{\"login\":[1630472682,1630847678,1631732426]}'),(3809,'35.197.58.149','normal','',0,0,0,0,6,'{\"nf\":[1630488184,1630488186,1630488187,1630488189,1630488191,1630488192]}'),(3810,'3.68.98.212','normal','',0,0,0,0,0,'[]'),(3811,'138.197.71.144','normal','',0,0,0,0,0,'[]'),(3812,'185.220.100.247','normal','',0,0,0,0,0,'[]'),(3813,'54.36.149.1','normal','',0,0,0,0,0,'[]'),(3814,'74.208.136.178','normal','',0,0,0,0,0,'[]'),(3815,'74.208.136.178','normal','',0,0,0,0,0,'[]'),(3816,'185.38.175.71','normal','',0,0,0,0,0,'[]'),(3817,'41.10.130.38','normal','',0,0,0,0,0,'[]'),(3818,'171.255.197.38','normal','',0,0,0,0,0,'[]'),(3819,'3.21.90.123','normal','',0,0,0,0,0,'[]'),(3820,'89.252.159.226','normal','',0,0,0,0,0,'[]'),(3821,'216.128.131.186','normal','',0,0,0,0,0,'[]'),(3822,'45.80.172.48','normal','',0,0,0,0,0,'[]'),(3823,'62.28.113.186','normal','',0,0,0,0,0,'[]'),(3824,'109.175.24.5','normal','',0,0,0,1,2,'{\"login\":[1631685481],\"nf\":[1637031091,1637031112]}'),(3825,'34.146.231.207','normal','',0,0,0,0,0,'[]'),(3826,'54.188.122.114','normal','',0,0,0,0,0,'[]'),(3827,'91.238.165.163','normal','',0,0,0,0,0,'[]'),(3828,'66.11.116.155','normal','',0,0,0,0,0,'[]'),(3829,'178.238.230.88','normal','',0,0,0,0,0,'[]'),(3830,'35.201.174.11','normal','',0,0,0,0,0,'[]'),(3831,'198.245.63.37','normal','',0,0,0,0,0,'[]'),(3832,'87.107.144.54','normal','',0,0,0,5,0,'{\"login\":[1631993930,1632193071,1633531127,1633572355,1633999945]}'),(3833,'31.220.55.93','normal','',0,0,0,0,0,'[]'),(3834,'128.199.245.109','normal','',0,0,0,2,0,'{\"login\":[1631973425,1640587316]}'),(3835,'69.163.225.125','normal','',0,0,0,0,0,'[]'),(3836,'37.131.203.187','normal','',0,0,0,0,0,'[]'),(3837,'185.3.235.206','normal','',0,0,0,3,0,'{\"login\":[1631992086,1632280232,1632294879]}'),(3838,'93.90.177.166','normal','',0,0,0,2,0,'{\"login\":[1634946746,1638411849]}'),(3839,'46.4.60.249','normal','',0,0,0,0,0,'[]'),(3840,'100.21.218.158','normal','',0,0,0,0,0,'[]'),(3841,'176.99.3.129','normal','',0,0,0,0,0,'[]'),(3842,'192.99.34.92','normal','',0,0,0,0,0,'[]'),(3843,'154.93.2.253','normal','',0,0,0,0,0,'[]'),(3844,'45.182.116.168','normal','',0,0,0,0,0,'[]'),(3845,'212.103.77.246','normal','',0,0,0,0,0,'[]'),(3846,'186.64.118.35','normal','',0,0,0,0,0,'[]'),(3847,'177.55.112.109','normal','',0,0,0,0,0,'[]'),(3848,'170.210.156.52','normal','',0,0,0,2,0,'{\"login\":[1631619142,1631712090]}'),(3849,'66.249.66.133','normal','',0,0,0,0,0,'[]'),(3850,'13.210.86.192','normal','',0,0,0,0,0,'[]'),(3851,'185.229.236.37','normal','',0,0,0,0,0,'[]'),(3852,'17.121.113.156','normal','',0,0,0,0,0,'[]'),(3853,'212.237.144.60','normal','',0,0,0,0,0,'[]'),(3854,'173.212.248.115','normal','',0,0,0,1,0,'{\"login\":[1635847143]}'),(3855,'111.231.206.201','normal','',0,0,0,1,0,'{\"login\":[1632014788]}'),(3856,'77.92.82.201','normal','',0,0,0,0,0,'[]'),(3857,'41.93.82.7','normal','',0,0,0,2,0,'{\"login\":[1631708705,1631984406]}'),(3858,'23.254.231.245','normal','',0,0,0,0,0,'[]'),(3859,'195.248.243.11','normal','',0,0,0,0,0,'[]'),(3860,'109.115.162.166','normal','',0,0,0,0,0,'[]'),(3861,'161.35.121.221','normal','',0,0,0,0,0,'[]'),(3862,'20.90.185.232','normal','',0,0,0,0,0,'[]'),(3863,'167.71.190.246','normal','',0,0,0,1,0,'{\"login\":[1631701070]}'),(3864,'62.171.140.209','normal','',0,0,0,0,0,'[]'),(3865,'174.142.53.54','normal','',0,0,0,0,0,'[]'),(3866,'159.89.32.217','normal','',0,0,0,0,0,'[]'),(3867,'101.99.3.20','normal','',0,0,0,0,0,'[]'),(3868,'51.15.160.148','normal','',0,0,0,5,0,'{\"login\":[1632000127,1636626046,1640669378,1662090426,1662243068]}'),(3869,'42.236.10.79','normal','',0,0,0,0,0,'[]'),(3870,'171.22.25.42','normal','',0,0,0,1,0,'{\"login\":[1633547727]}'),(3871,'209.97.162.248','normal','',0,0,0,50,0,'{\"login\":[1630569017,1631934128,1632335463,1640452435,1641185821,1641328532,1642387494,1643097552,1646891914,1650141446,1650658404,1651482700,1652314773,1652700476,1653028612,1653352583,1654374913,1654383924,1655220129,1655413730,1655712113,1655726284,1655739377,1655824190,1656735349,1656780007,1657044774,1657458156,1657575914,1657651460,1657687459,1657699439,1658005842,1658214168,1658299553,1658351538,1659092759,1659290860,1659761653,1660313316,1660319250,1660413439,1660765414,1660959877,1661199714,1661666110,1661669517,1661694791,1661746893,1662725359]}'),(3872,'103.51.103.73','normal','',0,0,0,0,0,'[]'),(3873,'67.220.185.18','normal','',0,0,0,1,0,'{\"login\":[1634926903]}'),(3874,'109.87.200.193','normal','',0,0,0,41,0,'{\"login\":[1630576624,1630582342,1631364113,1631647964,1631669933,1631747282,1631936005,1631972815,1632176726,1633613214,1633891041,1635377378,1635621439,1635745838,1635754139,1636779322,1636812854,1636845451,1636905310,1637093135,1637159551,1637333374,1637934774,1638385360,1638413598,1638698013,1638849075,1639283385,1639298842,1639323064,1639518126,1639534870,1639742743,1639897033,1639902722,1640109559,1640336801,1640373549,1640417141,1640428892,1640458038]}'),(3875,'62.210.114.27','normal','',0,0,0,0,0,'[]'),(3876,'34.70.129.108','normal','',0,0,0,0,1,'{\"nf\":[1630588478]}'),(3877,'198.58.122.91','normal','',0,0,0,0,1,'{\"nf\":[1630598981]}'),(3878,'51.195.176.80','normal','',0,0,0,36,0,'{\"login\":[1630603471,1630741691,1631666003,1631954069,1631968358,1632115103,1632133338,1632214501,1632233915,1632278336,1632371705,1632898492,1633315003,1633631141,1633647073,1633649781,1634397431,1634958653,1634988979,1648419551,1648678739,1649097527,1649549525,1651132201,1652420163,1652556169,1652806481,1653064393,1653370418,1653779841,1653909774,1655447774,1657331606,1657634257,1657654940,1657697845]}'),(3879,'45.120.69.121','normal','',0,0,0,94,0,'{\"login\":[1630606383,1630927549,1630935020,1630939137,1631302781,1632114199,1632160537,1632231280,1632513313,1634120643,1634299135,1634839011,1634971159,1635906831,1636871315,1636925714,1636927951,1637981384,1638125864,1638285998,1638318150,1638326997,1638433980,1638853341,1639282217,1639775756,1639939739,1640496548,1640879901,1641047148,1641321548,1642585488,1644292036,1646082311,1646234648,1646547951,1646632217,1646640822,1646816037,1647090424,1647397390,1647693060,1649212696,1650042431,1650313566,1650409145,1650560285,1650588697,1650686849,1651162681,1651174095,1651261277,1651277624,1651499912,1651745760,1651998322,1652449325,1652583787,1652799137,1652998406,1653331172,1653387444,1653603051,1653794677,1654084802,1654300222,1654931225,1655385428,1656047467,1656808444,1656826112,1656899479,1657089272,1657299022,1657328438,1657668224,1657759242,1658267137,1658298534,1658833612,1659359327,1660190891,1660238199,1660476889,1660718481,1661349058,1661365165,1661690708,1661991686,1662108233,1662296565,1662313588,1662940519,1663052655]}'),(3880,'204.85.191.9','normal','',0,0,0,0,0,'[]'),(3881,'18.237.23.37','normal','',0,0,0,0,0,'[]'),(3882,'18.237.14.120','normal','',0,0,0,0,0,'[]'),(3883,'54.244.156.252','normal','',0,0,0,0,0,'[]'),(3884,'54.149.82.117','normal','',0,0,0,0,0,'[]'),(3885,'124.217.245.102','normal','',0,0,0,1,0,'{\"login\":[1631703762]}'),(3886,'173.252.87.6','normal','',0,0,0,0,0,'[]'),(3887,'31.13.127.4','normal','',0,0,0,0,0,'[]'),(3888,'31.13.127.28','normal','',0,0,0,0,0,'[]'),(3889,'207.46.13.111','normal','',0,0,0,0,0,'[]'),(3890,'54.36.148.8','normal','',0,0,0,0,0,'[]'),(3891,'185.220.100.254','normal','',0,0,0,0,1,'{\"nf\":[1645820961]}'),(3892,'193.164.131.195','normal','',0,0,0,0,0,'[]'),(3893,'64.225.68.194','normal','',0,0,0,0,0,'[]'),(3894,'139.59.147.218','normal','',0,0,0,1,0,'{\"login\":[1634936702]}'),(3895,'186.64.118.115','normal','',0,0,0,1,0,'{\"login\":[1633532106]}'),(3896,'35.193.222.165','normal','',0,0,0,6,0,'{\"login\":[1638429975,1640408247,1642220113,1653988086,1654065728,1654526984]}'),(3897,'178.150.14.250','normal','',0,0,0,0,0,'[]'),(3898,'64.246.165.210','normal','',0,0,0,0,0,'[]'),(3899,'145.239.15.127','normal','',0,0,0,2,0,'{\"login\":[1631958408,1632585085]}'),(3900,'185.188.119.46','normal','',0,0,0,0,0,'[]'),(3901,'54.251.185.45','normal','',0,0,0,0,0,'[]'),(3902,'49.176.147.188','normal','',0,0,0,3,0,'{\"login\":[1632180717,1632589854,1633567013]}'),(3903,'112.74.180.16','normal','',0,0,0,1,0,'{\"login\":[1631717179]}'),(3904,'103.81.87.29','normal','',0,0,0,1,0,'{\"login\":[1632569817]}'),(3905,'80.253.246.70','normal','',0,0,0,0,0,'[]'),(3906,'162.214.114.242','normal','',0,0,0,2,0,'{\"login\":[1632298200,1640859588]}'),(3907,'193.122.97.68','normal','',0,0,0,0,0,'[]'),(3908,'97.79.236.50','normal','',0,0,0,0,0,'[]'),(3909,'34.131.177.130','normal','',0,0,0,0,0,'[]'),(3910,'143.110.157.74','normal','',0,0,0,0,0,'[]'),(3911,'177.53.140.105','normal','',0,0,0,0,0,'[]'),(3912,'196.203.219.49','normal','',0,0,0,4,0,'{\"login\":[1632183141,1633997980,1638434048,1650356397]}'),(3913,'23.29.80.56','normal','',0,0,0,2,0,'{\"login\":[1632596617,1636634250]}'),(3914,'167.99.157.88','normal','',0,0,0,0,0,'[]'),(3915,'27.124.127.178','normal','',0,0,0,1,0,'{\"login\":[1632566605]}'),(3916,'77.88.5.173','normal','',0,0,0,0,3,'{\"nf\":[1631734735,1631734747,1631734752]}'),(3917,'77.88.5.95','normal','',0,0,0,0,0,'[]'),(3918,'77.88.5.242','normal','',0,0,0,0,0,'[]'),(3919,'80.80.218.230','normal','',0,0,0,3,0,'{\"login\":[1631962301,1632002840,1634005431]}'),(3920,'180.163.220.67','normal','',0,0,0,0,0,'[]'),(3921,'51.91.123.235','normal','',0,0,0,4,0,'{\"login\":[1632923685,1633558597,1638426208,1640551973]}'),(3922,'80.246.1.193','normal','',0,0,0,7,0,'{\"login\":[1631612729,1632593308,1633996052,1640404668,1640528368,1640600044,1650365339]}'),(3923,'143.244.161.193','normal','',0,0,0,3,0,'{\"login\":[1630695535,1631697404,1631779365]}'),(3924,'185.33.54.18','normal','',0,0,0,0,0,'[]'),(3925,'144.91.105.135','normal','',0,0,0,3,0,'{\"login\":[1631622524,1631699989,1631956824]}'),(3926,'116.62.155.4','normal','',0,0,0,1,0,'{\"login\":[1640562303]}'),(3927,'194.36.45.73','normal','',0,0,0,1,0,'{\"login\":[1632009239]}'),(3928,'85.10.207.195','normal','',0,0,0,0,0,'[]'),(3929,'52.36.227.214','normal','',0,0,0,0,0,'[]'),(3930,'62.171.185.18','normal','',0,0,0,0,0,'[]'),(3931,'185.191.76.27','normal','',0,0,0,2,0,'{\"login\":[1633990393,1635837160]}'),(3932,'82.157.186.116','normal','',0,0,0,1,0,'{\"login\":[1630709050]}'),(3933,'103.57.223.203','normal','',0,0,0,0,0,'[]'),(3934,'104.154.111.139','normal','',0,0,0,2,0,'{\"login\":[1632293158,1642181897]}'),(3935,'171.244.34.183','normal','',0,0,0,0,0,'[]'),(3936,'67.222.152.235','normal','',0,0,0,0,0,'[]'),(3937,'47.243.43.152','normal','',0,0,0,0,0,'[]'),(3938,'128.199.248.200','normal','',0,0,0,0,0,'[]'),(3939,'130.185.73.182','normal','',0,0,0,1,0,'{\"login\":[1632178972]}'),(3940,'104.244.72.152','normal','',0,0,0,0,0,'[]'),(3941,'45.8.227.175','normal','',0,0,0,0,0,'[]'),(3942,'54.36.149.25','normal','',0,0,0,0,0,'[]'),(3943,'209.126.2.228','normal','',0,0,0,0,0,'[]'),(3944,'194.163.155.53','normal','',0,0,0,0,0,'[]'),(3945,'173.82.87.234','normal','',0,0,0,0,0,'[]'),(3946,'95.111.235.41','normal','',0,0,0,2,0,'{\"login\":[1632183763,1634010636]}'),(3947,'20.85.121.92','normal','',0,0,0,0,0,'[]'),(3948,'67.205.44.54','normal','',0,0,0,0,0,'[]'),(3949,'35.236.172.75','normal','',0,0,0,3,0,'{\"login\":[1631705929,1632922723,1638437013]}'),(3950,'207.244.233.113','normal','',0,0,0,46,0,'{\"login\":[1630736881,1630833594,1631727641,1631783111,1632622527,1632625321,1632690640,1633298205,1633617433,1633641781,1633807229,1633940044,1634324727,1634424943,1635414694,1637310847,1637644554,1638153249,1638424135,1638590850,1638704541,1638741380,1639523443,1640088182,1640361723,1640585004,1640674049,1640698260,1640698960,1640789195,1640837010,1640932454,1640980604,1641079434,1641228887,1641942115,1641987370,1641999862,1642247424,1642475443,1642477273,1642550472,1643517005,1643546502,1644299697,1644523135]}'),(3951,'23.111.149.130','normal','',0,0,0,0,0,'[]'),(3952,'141.94.21.233','normal','',0,0,0,3,0,'{\"login\":[1632285514,1632297293,1650292485]}'),(3953,'45.77.67.159','normal','',0,0,0,0,0,'[]'),(3954,'45.151.248.24','normal','',0,0,0,0,0,'[]'),(3955,'147.182.182.104','normal','',0,0,0,1,0,'{\"login\":[1638446328]}'),(3956,'13.36.110.241','normal','',0,0,0,1,0,'{\"login\":[1631615887]}'),(3957,'51.81.245.120','normal','',0,0,0,4,0,'{\"login\":[1632579894,1634013320,1640777030,1650289626]}'),(3958,'104.168.136.235','normal','',0,0,0,0,0,'[]'),(3959,'62.28.191.2','normal','',0,0,0,0,0,'[]'),(3960,'144.86.173.87','normal','',0,0,0,0,0,'[]'),(3961,'208.113.153.203','normal','',0,0,0,0,0,'[]'),(3962,'185.50.25.54','normal','',0,0,0,1,0,'{\"login\":[1638445133]}'),(3963,'54.36.148.221','normal','',0,0,0,0,0,'[]'),(3964,'185.27.135.114','normal','',0,0,0,4,0,'{\"login\":[1632004663,1632016662,1638896496,1639637609]}'),(3965,'35.197.142.18','normal','',0,0,0,3,0,'{\"login\":[1630746288,1630786506,1631407175]}'),(3966,'178.170.42.74','normal','',0,0,0,0,0,'[]'),(3967,'213.95.11.218','normal','',0,0,0,0,0,'[]'),(3968,'165.227.204.57','normal','',0,0,0,3,0,'{\"login\":[1632015686,1638444446,1638448356]}'),(3969,'210.211.116.118','normal','',0,0,0,5,0,'{\"login\":[1642435483,1642557600,1643060943,1643530216,1644264565]}'),(3970,'45.153.160.138','normal','',0,0,0,0,0,'[]'),(3971,'103.90.235.91','normal','',0,0,0,5,0,'{\"login\":[1632900686,1650130873,1650140954,1653817748,1661164948]}'),(3972,'67.23.248.170','normal','',0,0,0,0,0,'[]'),(3973,'75.119.222.199','normal','',0,0,0,0,0,'[]'),(3974,'213.136.72.195','normal','',0,0,0,0,0,'[]'),(3975,'197.248.5.23','normal','',0,0,0,1,0,'{\"login\":[1632907611]}'),(3976,'103.150.124.182','normal','',0,0,0,0,0,'[]'),(3977,'178.62.32.134','normal','',0,0,0,1,0,'{\"login\":[1638403818]}'),(3978,'89.184.66.143','normal','',0,0,0,0,0,'[]'),(3979,'178.18.248.180','normal','',0,0,0,2,0,'{\"login\":[1631622027,1633557781]}'),(3980,'167.86.124.222','normal','',0,0,0,0,0,'[]'),(3981,'3.106.8.12','normal','',0,0,0,1,0,'{\"login\":[1631993025]}'),(3982,'86.104.39.238','normal','',0,0,0,1,0,'{\"login\":[1632285989]}'),(3983,'212.224.76.233','normal','',0,0,0,3,0,'{\"login\":[1631709826,1632200269,1635852833]}'),(3984,'184.171.244.172','normal','',0,0,0,2,0,'{\"login\":[1632008303,1633526977]}'),(3985,'182.254.234.148','normal','',0,0,0,1,0,'{\"login\":[1642214333]}'),(3986,'34.146.226.113','normal','',0,0,0,2,0,'{\"login\":[1632200637,1634925781]}'),(3987,'105.209.174.130','normal','',0,0,0,0,0,'[]'),(3988,'139.59.10.130','normal','',0,0,0,3,0,'{\"login\":[1634176240,1635885196,1635889168]}'),(3989,'103.195.186.84','normal','',0,0,0,0,0,'[]'),(3990,'186.234.80.42','normal','',0,0,0,0,0,'[]'),(3991,'128.199.87.83','normal','',0,0,0,0,0,'[]'),(3992,'178.62.9.122','normal','',0,0,0,0,0,'[]'),(3993,'23.19.80.103','normal','',0,0,0,0,0,'[]'),(3994,'43.129.212.158','normal','',0,0,0,3,0,'{\"login\":[1640568437,1653813391,1662234052]}'),(3995,'179.127.30.77','normal','',0,0,0,0,0,'[]'),(3996,'88.198.61.231','normal','',0,0,0,0,0,'[]'),(3997,'131.72.221.190','normal','',0,0,0,1,0,'{\"login\":[1635855064]}'),(3998,'93.89.225.214','normal','',0,0,0,0,0,'[]'),(3999,'64.91.250.76','normal','',0,0,0,0,0,'[]'),(4000,'51.13.72.147','normal','',0,0,0,1,0,'{\"login\":[1632188045]}'),(4001,'192.163.251.40','normal','',0,0,0,4,0,'{\"login\":[1630790651,1630806047,1630811494,1630931285]}'),(4002,'52.25.82.68','normal','',0,0,0,0,0,'[]'),(4003,'69.164.207.134','normal','',0,0,0,6,0,'{\"login\":[1630792255,1631274159,1631395430,1631468514,1631911479,1632692353]}'),(4004,'54.39.49.215','normal','',0,0,0,0,0,'[]'),(4005,'34.70.44.233','normal','',0,0,0,2,0,'{\"login\":[1630798418,1630818851]}'),(4006,'103.82.21.18','normal','',0,0,0,0,0,'[]'),(4007,'185.104.249.174','normal','',0,0,0,11,0,'{\"login\":[1630807604,1632210929,1632278794,1632323272,1632341800,1632480966,1633822890,1633860484,1634439190,1634521008,1635700521]}'),(4008,'185.49.20.79','normal','',0,0,0,2,0,'{\"login\":[1630820115,1636763042]}'),(4009,'104.131.161.146','normal','',0,0,0,1,0,'{\"login\":[1630821199]}'),(4010,'34.134.170.241','normal','',0,0,0,3,0,'{\"login\":[1630823260,1631788959,1631932266]}'),(4011,'3.129.87.116','normal','',0,0,0,0,1,'{\"nf\":[1630823544]}'),(4012,'103.146.176.84','normal','',0,0,0,1,0,'{\"login\":[1630826168]}'),(4013,'197.95.179.167','normal','',0,0,0,0,0,'[]'),(4014,'54.36.148.164','normal','',0,0,0,0,0,'[]'),(4015,'54.36.148.82','normal','',0,0,0,0,0,'[]'),(4016,'149.56.132.20','normal','',0,0,0,1,0,'{\"login\":[1630838515]}'),(4017,'210.245.90.202','normal','',0,0,0,1,0,'{\"login\":[1630843038]}'),(4018,'54.36.148.243','normal','',0,0,0,0,0,'[]'),(4019,'210.5.50.145','normal','',0,0,0,2,0,'{\"login\":[1630849972,1630909068]}'),(4020,'42.112.31.173','normal','',0,0,0,1,0,'{\"login\":[1630852286]}'),(4021,'34.65.90.2','normal','',0,0,0,0,3,'{\"nf\":[1630854834,1630931975,1631034503]}'),(4022,'144.76.29.148','normal','',0,0,0,0,0,'[]'),(4023,'129.226.48.4','normal','',0,0,0,1,0,'{\"login\":[1630868706]}'),(4024,'217.66.226.211','normal','',0,0,0,3,0,'{\"login\":[1630871017,1631736975,1632275340]}'),(4025,'27.131.131.133','normal','',0,0,0,4,0,'{\"login\":[1630873453,1631280607,1631749393,1632277914]}'),(4026,'34.212.132.207','normal','',0,0,0,0,0,'[]'),(4027,'81.109.86.251','normal','',0,0,0,0,0,'[]'),(4028,'23.29.122.202','normal','',0,0,0,1,0,'{\"login\":[1630894668]}'),(4029,'207.46.13.44','normal','',0,0,0,0,0,'[]'),(4030,'34.134.49.192','normal','',0,0,0,5,0,'{\"login\":[1630913032,1631480087,1631482223,1631498715,1631749768]}'),(4031,'105.247.11.113','normal','',0,0,0,0,0,'[]'),(4032,'41.114.195.202','normal','',0,0,0,0,0,'[]'),(4033,'41.13.246.123','normal','',0,0,0,0,0,'[]'),(4034,'85.128.142.89','normal','',0,0,0,0,1,'{\"nf\":[1630937318]}'),(4035,'192.42.116.20','normal','',0,0,0,0,0,'[]'),(4036,'45.149.77.94','normal','',0,0,0,13,0,'{\"login\":[1630951577,1631764259,1632035980,1632516386,1632977442,1633569051,1633923044,1634009746,1634242360,1634369075,1634894889,1636278533,1636871989]}'),(4037,'157.230.50.75','normal','',0,0,0,0,1,'{\"nf\":[1630967902]}'),(4038,'3.69.20.26','normal','',0,0,0,0,0,'[]'),(4039,'165.22.182.73','normal','',0,0,0,0,4,'{\"nf\":[1630974592,1630974593,1630974594,1630974596]}'),(4040,'23.184.48.9','normal','',0,0,0,0,0,'[]'),(4041,'195.154.171.97','normal','',0,0,0,0,3,'{\"nf\":[1630994024,1631945400,1631963759]}'),(4042,'128.199.125.232','normal','',0,0,0,3,0,'{\"login\":[1635853154,1638415519,1640230818]}'),(4043,'54.36.148.23','normal','',0,0,0,0,0,'[]'),(4044,'158.255.80.210','normal','',0,0,0,2,0,'{\"login\":[1634925389,1638429453]}'),(4045,'163.172.239.36','normal','',0,0,0,0,2,'{\"nf\":[1631023001,1631023042]}'),(4046,'34.250.206.63','normal','',0,0,0,0,0,'[]'),(4047,'188.130.162.100','normal','',0,0,0,0,0,'[]'),(4048,'91.203.111.125','normal','',0,0,0,5,0,'{\"login\":[1631713153,1632196902,1632596057,1633997447,1638433368]}'),(4049,'107.180.88.164','normal','',0,0,0,1,0,'{\"login\":[1634008834]}'),(4050,'144.126.132.64','normal','',0,0,0,0,0,'[]'),(4051,'31.220.41.16','normal','',0,0,0,3,0,'{\"login\":[1631624497,1632184329,1634943731]}'),(4052,'185.121.81.206','normal','',0,0,0,6,0,'{\"login\":[1631686916,1632904783,1633552289,1634943773,1638431685,1638443264]}'),(4053,'164.90.137.96','normal','',0,0,0,0,0,'[]'),(4054,'185.88.178.36','normal','',0,0,0,0,0,'[]'),(4055,'89.163.154.91','normal','',0,0,0,0,0,'[]'),(4056,'34.222.23.172','normal','',0,0,0,0,0,'[]'),(4057,'69.160.160.53','normal','',0,0,0,0,1,'{\"nf\":[1631065691]}'),(4058,'103.146.177.226','normal','',0,0,0,0,0,'[]'),(4059,'42.236.10.78','normal','',0,0,0,0,0,'[]'),(4060,'128.199.123.63','normal','',0,0,0,2,0,'{\"login\":[1631625995,1633571383]}'),(4061,'27.72.56.186','normal','',0,0,0,0,0,'[]'),(4062,'194.233.69.232','normal','',0,0,0,0,0,'[]'),(4063,'81.92.207.75','blocked','You have been locked out due to too many invalid login attempts.',1631073348,1631073048,0,5,0,'{\"login\":[1631073045,1631073046,1631073047,1631073047,1631073048]}'),(4064,'134.209.146.214','normal','',0,0,0,1,0,'{\"login\":[1631698365]}'),(4065,'165.22.209.132','normal','',0,0,0,2,0,'{\"login\":[1634940938,1642217604]}'),(4066,'64.37.52.2','normal','',0,0,0,4,0,'{\"login\":[1631707569,1634929432,1638434608,1638448956]}'),(4067,'13.229.0.80','normal','',0,0,0,0,0,'[]'),(4068,'192.241.156.70','normal','',0,0,0,0,0,'[]'),(4069,'199.184.215.11','normal','',0,0,0,0,0,'[]'),(4070,'54.36.149.3','normal','',0,0,0,0,0,'[]'),(4071,'66.249.69.240','normal','',0,0,0,0,0,'[]'),(4072,'169.255.23.100','normal','',0,0,0,0,0,'[]'),(4073,'197.206.242.85','normal','',0,0,0,0,0,'[]'),(4074,'173.208.12.92','normal','',0,0,0,0,0,'[]'),(4075,'77.111.247.169','normal','',0,0,0,0,1,'{\"nf\":[1631165116]}'),(4076,'77.111.247.41','normal','',0,0,0,0,1,'{\"nf\":[1631165115]}'),(4077,'81.92.218.157','normal','',0,0,0,0,0,'[]'),(4078,'178.210.165.247','normal','',0,0,0,1,2,'{\"login\":[1632291683],\"nf\":[1644867600,1662530948]}'),(4079,'17.121.113.134','normal','',0,0,0,0,0,'[]'),(4080,'5.2.69.50','normal','',0,0,0,0,3,'{\"nf\":[1646192371,1646192372,1646192373]}'),(4081,'66.249.69.250','normal','',0,0,0,0,0,'[]'),(4082,'47.105.61.35','normal','',0,0,0,72,0,'{\"login\":[1631174984,1631185179,1631768930,1631977938,1632691482,1633917029,1634545152,1635708566,1637119655,1637708245,1637785064,1638414715,1639029352,1639237170,1639521672,1640293101,1640927263,1641301003,1641410627,1641798225,1641841816,1641871305,1641933108,1641937596,1642380082,1642986202,1644274902,1645845253,1646245559,1646455990,1646506103,1646509413,1646736079,1646829096,1646935130,1647121895,1647382764,1648078245,1648481402,1648623849,1649200167,1650136718,1650420501,1650521198,1651512641,1652074791,1652310880,1652363175,1652570588,1652894464,1652955398,1653059944,1653070619,1653437719,1653811134,1655230020,1655370007,1655794656,1655816679,1656739350,1657186553,1657835894,1657984811,1658600220,1658839491,1660082642,1660176719,1660245892,1660436237,1661200485,1661641998,1662178157]}'),(4083,'104.236.7.28','normal','',0,0,0,1,0,'{\"login\":[1632473129]}'),(4084,'95.111.226.172','normal','',0,0,0,4,0,'{\"login\":[1631183086,1632283745,1632308856,1632328644]}'),(4085,'185.46.123.42','normal','',0,0,0,0,0,'[]'),(4086,'169.0.142.95','normal','',0,0,0,0,0,'[]'),(4087,'131.72.236.108','normal','',0,0,0,0,0,'[]'),(4088,'143.198.177.106','normal','',0,0,0,1,0,'{\"login\":[1631710916]}'),(4089,'138.128.176.138','normal','',0,0,0,1,0,'{\"login\":[1631979252]}'),(4090,'35.236.35.211','normal','',0,0,0,0,0,'[]'),(4091,'51.79.19.15','normal','',0,0,0,0,0,'[]'),(4092,'194.163.159.35','normal','',0,0,0,4,0,'{\"login\":[1633994126,1634949372,1636624049,1636641957]}'),(4093,'151.106.35.146','normal','',0,0,0,0,0,'[]'),(4094,'34.67.1.154','normal','',0,0,0,1,0,'{\"login\":[1631994779]}'),(4095,'216.218.206.49','normal','',0,0,0,0,0,'[]'),(4096,'52.24.118.117','normal','',0,0,0,0,0,'[]'),(4097,'13.80.45.227','normal','',0,0,0,0,0,'[]'),(4098,'77.79.246.5','normal','',0,0,0,1,0,'{\"login\":[1631246543]}'),(4099,'54.36.148.48','normal','',0,0,0,0,0,'[]'),(4100,'88.99.22.125','normal','',0,0,0,1,0,'{\"login\":[1631273144]}'),(4101,'167.172.155.32','normal','',0,0,0,9,0,'{\"login\":[1631276806,1634037106,1634785698,1634786603,1635919768,1636226562,1642804106,1643742306,1644350533]}'),(4102,'178.128.58.8','normal','',0,0,0,1,0,'{\"login\":[1631284256]}'),(4103,'93.30.213.205','normal','',0,0,0,0,0,'[]'),(4104,'154.0.166.100','normal','',0,0,0,1,0,'{\"login\":[1631291870]}'),(4105,'95.216.42.246','normal','',0,0,0,0,0,'[]'),(4106,'13.74.248.236','normal','',0,0,0,2,0,'{\"login\":[1631702660,1632012000]}'),(4107,'91.206.200.13','normal','',0,0,0,0,0,'[]'),(4108,'204.48.23.72','normal','',0,0,0,1,0,'{\"login\":[1631303072]}'),(4109,'52.163.119.37','normal','',0,0,0,1,0,'{\"login\":[1634000880]}'),(4110,'54.184.62.207','normal','',0,0,0,0,0,'[]'),(4111,'212.64.41.177','normal','',0,0,0,1,0,'{\"login\":[1631306953]}'),(4112,'95.179.165.240','normal','',0,0,0,1,0,'{\"login\":[1632184970]}'),(4113,'43.129.191.223','normal','',0,0,0,0,0,'[]'),(4114,'178.62.33.222','normal','',0,0,0,4,0,'{\"login\":[1638427222,1642191813,1653816765,1654004390]}'),(4115,'34.123.51.28','normal','',0,0,0,0,0,'[]'),(4116,'44.195.73.16','normal','',0,0,0,0,0,'[]'),(4117,'107.189.5.68','normal','',0,0,0,0,0,'[]'),(4118,'93.157.120.114','normal','',0,0,0,0,0,'[]'),(4119,'13.75.40.166','normal','',0,0,0,0,0,'[]'),(4120,'34.134.100.50','normal','',0,0,0,4,0,'{\"login\":[1631332524,1631643142,1632649419,1636842297]}'),(4121,'23.254.225.195','normal','',0,0,0,0,0,'[]'),(4122,'34.122.4.91','normal','',0,0,0,1,0,'{\"login\":[1631334860]}'),(4123,'178.62.110.145','normal','',0,0,0,2,0,'{\"login\":[1631621548,1632191784]}'),(4124,'91.206.201.89','normal','',0,0,0,0,0,'[]'),(4125,'105.8.0.226','normal','',0,0,0,0,0,'[]'),(4126,'149.56.150.9','normal','',0,0,0,0,2,'{\"nf\":[1631346279,1631346288]}'),(4127,'51.91.218.48','normal','',0,0,0,0,0,'[]'),(4128,'35.200.90.127','normal','',0,0,0,1,0,'{\"login\":[1653993043]}'),(4129,'58.87.66.32','normal','',0,0,0,0,0,'[]'),(4130,'42.236.10.106','normal','',0,0,0,0,0,'[]'),(4131,'36.89.251.105','normal','',0,0,0,16,0,'{\"login\":[1637075539,1637761644,1638302529,1638623337,1640738784,1642727126,1643771844,1643779424,1643780892,1645639961,1652182197,1655298132,1656761253,1656787879,1657474769,1657509318]}'),(4132,'60.245.60.3','normal','',0,0,0,0,10,'{\"nf\":[1631362778,1631362780,1631362781,1631362783,1631362784,1631362786,1631362787,1631362789,1631362790,1631362792]}'),(4133,'114.119.149.2','normal','',0,0,0,0,0,'[]'),(4134,'88.99.242.20','normal','',0,0,0,8,0,'{\"login\":[1631368674,1641626937,1641635097,1641783529,1643159456,1657682301,1657773129,1657802201]}'),(4135,'165.227.9.103','normal','',0,0,0,3,0,'{\"login\":[1631623496,1632289028,1632290348]}'),(4136,'114.119.130.152','normal','',0,0,0,0,0,'[]'),(4137,'161.35.156.155','normal','',0,0,0,1,0,'{\"login\":[1631702157]}'),(4138,'114.119.138.117','normal','',0,0,0,0,0,'[]'),(4139,'91.206.200.75','normal','',0,0,0,0,0,'[]'),(4140,'52.42.235.126','normal','',0,0,0,0,0,'[]'),(4141,'34.213.161.12','normal','',0,0,0,0,0,'[]'),(4142,'35.85.144.206','normal','',0,0,0,0,0,'[]'),(4143,'66.249.66.155','normal','',0,0,0,0,0,'[]'),(4144,'39.103.73.227','normal','',0,0,0,1,0,'{\"login\":[1634921796]}'),(4145,'223.19.28.12','normal','',0,0,0,5,0,'{\"login\":[1631614524,1631624000,1631716039,1632170544,1632901984]}'),(4146,'109.234.161.69','normal','',0,0,0,0,0,'[]'),(4147,'156.232.3.219','normal','',0,0,0,0,0,'[]'),(4148,'176.57.209.92','normal','',0,0,0,0,0,'[]'),(4149,'200.147.58.4','normal','',0,0,0,1,0,'{\"login\":[1653985235]}'),(4150,'217.138.218.109','blocked','You have been locked out due to too many invalid login attempts.',1631419377,1631419077,0,5,0,'{\"login\":[1631419074,1631419075,1631419076,1631419076,1631419077]}'),(4151,'45.118.144.87','normal','',0,0,0,0,0,'[]'),(4152,'157.245.33.112','normal','',0,0,0,0,0,'[]'),(4153,'51.81.160.187','normal','',0,0,0,0,0,'[]'),(4154,'92.204.54.113','normal','',0,0,0,2,0,'{\"login\":[1631696299,1631998315]}'),(4155,'217.12.86.246','normal','',0,0,0,0,0,'[]'),(4156,'46.101.168.174','normal','',0,0,0,0,0,'[]'),(4157,'54.36.148.166','normal','',0,0,0,0,0,'[]'),(4158,'18.142.65.193','normal','',0,0,0,0,0,'[]'),(4159,'167.99.93.228','normal','',0,0,0,3,0,'{\"login\":[1632018567,1632173544,1634935299]}'),(4160,'156.67.220.104','normal','',0,0,0,0,0,'[]'),(4161,'91.134.24.12','normal','',0,0,0,0,0,'[]'),(4162,'18.236.221.209','normal','',0,0,0,0,0,'[]'),(4163,'52.240.159.47','normal','',0,0,0,0,0,'[]'),(4164,'52.12.5.225','normal','',0,0,0,0,0,'[]'),(4165,'34.219.33.59','normal','',0,0,0,0,0,'[]'),(4166,'54.185.178.82','normal','',0,0,0,0,0,'[]'),(4167,'114.119.130.14','normal','',0,0,0,0,0,'[]'),(4168,'192.34.62.84','normal','',0,0,0,3,0,'{\"login\":[1631487322,1633330080,1634036091]}'),(4169,'13.213.236.227','normal','',0,0,0,2,0,'{\"login\":[1631494563,1631795412]}'),(4170,'114.119.147.6','normal','',0,0,0,0,0,'[]'),(4171,'185.63.173.3','normal','',0,0,0,0,1,'{\"nf\":[1631515581]}'),(4172,'46.227.96.83','normal','',0,0,0,12,0,'{\"login\":[1631519794,1631701057,1632061378,1632182724,1632332078,1634538225,1634915090,1635807279,1636089746,1636920598,1637118134,1637298619]}'),(4173,'169.1.11.214','normal','',0,0,0,0,0,'[]'),(4174,'45.222.25.154','normal','',0,0,0,0,0,'[]'),(4175,'41.114.227.3','normal','',0,0,0,0,0,'[]'),(4176,'185.5.17.19','normal','',0,0,0,0,0,'[]'),(4177,'197.221.188.56','normal','',0,0,0,0,5,'{\"nf\":[1631539090,1631539091,1631539093,1631540770,1631540771]}'),(4178,'197.13.27.131','normal','',0,0,0,1,0,'{\"login\":[1631542572]}'),(4179,'91.204.46.184','normal','',0,0,0,1,0,'{\"login\":[1631547855]}'),(4180,'106.52.242.87','normal','',0,0,0,0,0,'[]'),(4181,'51.210.107.150','normal','',0,0,0,1,0,'{\"login\":[1631550205]}'),(4182,'114.119.137.190','normal','',0,0,0,0,0,'[]'),(4183,'91.121.101.9','normal','',0,0,0,2,0,'{\"login\":[1631552911,1631899850]}'),(4184,'199.249.230.158','normal','',0,0,0,0,0,'[]'),(4185,'54.202.224.43','normal','',0,0,0,0,0,'[]'),(4186,'35.85.63.247','normal','',0,0,0,0,0,'[]'),(4187,'52.33.181.235','normal','',0,0,0,0,0,'[]'),(4188,'185.31.175.240','normal','',0,0,0,0,0,'[]'),(4189,'114.119.128.62','normal','',0,0,0,0,0,'[]'),(4190,'180.163.220.4','normal','',0,0,0,0,1,'{\"nf\":[1631584963]}'),(4191,'144.76.120.197','normal','',0,0,0,0,0,'[]'),(4192,'172.241.140.210','normal','',0,0,0,0,1,'{\"nf\":[1631588528]}'),(4193,'36.99.136.137','normal','',0,0,0,0,0,'[]'),(4194,'114.119.137.54','normal','',0,0,0,0,0,'[]'),(4195,'114.119.140.113','normal','',0,0,0,0,0,'[]'),(4196,'165.90.207.122','normal','',0,0,0,0,4,'{\"nf\":[1631602332,1631602361,1631602371,1631602417]}'),(4197,'66.249.64.98','normal','',0,0,0,0,0,'[]'),(4198,'41.160.27.213','normal','',0,0,0,0,2,'{\"nf\":[1631606321,1631615339]}'),(4199,'35.178.200.243','normal','',0,0,0,1,0,'{\"login\":[1631614966]}'),(4200,'142.93.170.99','normal','',0,0,0,3,0,'{\"login\":[1631615451,1632924578,1662167126]}'),(4201,'186.234.80.95','normal','',0,0,0,1,0,'{\"login\":[1631619577]}'),(4202,'37.0.11.88','normal','',0,0,0,0,1,'{\"nf\":[1631620391]}'),(4203,'129.205.156.29','normal','',0,0,0,0,0,'[]'),(4204,'52.37.149.6','normal','',0,0,0,0,0,'[]'),(4205,'197.229.0.21','normal','',0,0,0,0,0,'[]'),(4206,'195.154.252.217','normal','',0,0,0,1,0,'{\"login\":[1631626560]}'),(4207,'52.76.84.216','normal','',0,0,0,2,0,'{\"login\":[1631631756,1631939115]}'),(4208,'104.156.224.7','normal','',0,0,0,3,0,'{\"login\":[1631636644,1631956439,1632245493]}'),(4209,'94.23.16.215','normal','',0,0,0,5,0,'{\"login\":[1631640516,1631701755,1631786209,1631995036,1633276239]}'),(4210,'117.53.45.246','normal','',0,0,0,2,0,'{\"login\":[1631642239,1632369530]}'),(4211,'41.147.0.55','normal','',0,0,0,0,0,'[]'),(4212,'120.24.39.201','normal','',0,0,0,1,0,'{\"login\":[1631643926]}'),(4213,'162.214.190.209','normal','',0,0,0,32,0,'{\"login\":[1631646923,1631658741,1631686882,1632038703,1632054007,1632244223,1632729781,1632736777,1633947685,1634855717,1637464363,1637973894,1638402598,1638448953,1638537220,1639144431,1642012913,1642111800,1642408766,1642680847,1643316919,1644087633,1644269441,1644627936,1644709243,1644722400,1644836445,1645095219,1645217781,1645746748,1645929092,1646031928]}'),(4214,'3.143.41.197','normal','',0,0,0,0,0,'[]'),(4215,'51.210.102.191','normal','',0,0,0,2,0,'{\"login\":[1631650183,1631693065]}'),(4216,'34.212.121.57','normal','',0,0,0,0,0,'[]'),(4217,'18.236.212.179','normal','',0,0,0,0,0,'[]'),(4218,'212.8.250.37','normal','',0,0,0,1,0,'{\"login\":[1631653787]}'),(4219,'39.100.228.235','normal','',0,0,0,0,0,'[]'),(4220,'113.161.196.20','normal','',0,0,0,1,0,'{\"login\":[1631656085]}'),(4221,'111.93.56.221','normal','',0,0,0,2,0,'{\"login\":[1632001954,1632180125]}'),(4222,'114.119.141.206','normal','',0,0,0,0,0,'[]'),(4223,'18.177.34.209','normal','',0,0,0,1,0,'{\"login\":[1631659382]}'),(4224,'34.86.35.20','normal','',0,0,0,0,0,'[]'),(4225,'181.174.125.214','normal','',0,0,0,59,0,'{\"login\":[1631662694,1632041487,1632672494,1634224165,1634351939,1636244618,1636805906,1637306071,1638157636,1638744071,1638761940,1639790057,1639972545,1640551791,1640803984,1641003448,1641227686,1641393809,1641746642,1642345590,1642428224,1643483039,1645104572,1645262888,1647474005,1647763137,1648129400,1649979016,1650690263,1650955010,1650969944,1651733252,1652053529,1652349311,1652952676,1653485554,1653496655,1653625905,1654238227,1654589369,1654867694,1654889467,1655206410,1657231002,1657686654,1658323133,1658944387,1659369840,1659384106,1660081631,1660305694,1660567587,1661676150,1661684550,1661735364,1662167180,1662739257,1662788470,1662809770]}'),(4226,'178.18.255.58','normal','',0,0,0,4,0,'{\"login\":[1631663970,1631900580,1631931027,1632203911]}'),(4227,'200.144.93.223','normal','',0,0,0,3,0,'{\"login\":[1631664722,1637168981,1637201743]}'),(4228,'114.119.150.226','normal','',0,0,0,0,0,'[]'),(4229,'194.163.152.242','normal','',0,0,0,40,0,'{\"login\":[1631668690,1632222414,1632265739,1632370975,1632654665,1632700184,1633240488,1634254763,1634355670,1635722446,1636677883,1636857537,1637001451,1637115744,1637851573,1638228318,1638518234,1638775590,1638999938,1639575944,1639938476,1640639899,1640752689,1641121208,1641269132,1641277698,1641424915,1642164157,1642542983,1642647253,1646106229,1646439115,1646467129,1646578946,1646699421,1646965231,1647204635,1647342427,1647342691,1652969160]}'),(4230,'143.198.139.164','normal','',0,0,0,4,0,'{\"login\":[1631669312,1631921970,1632358969,1632523701]}'),(4231,'85.208.22.223','normal','',0,0,0,11,0,'{\"login\":[1631671191,1631706074,1632168166,1632302303,1632670164,1633282597,1633862374,1634072892,1634266223,1634334432,1634400743]}'),(4232,'157.55.39.106','normal','',0,0,0,0,0,'[]'),(4233,'95.217.166.192','normal','',0,0,0,3,0,'{\"login\":[1631673233,1632542964,1634308739]}'),(4234,'84.215.80.42','normal','',0,0,0,5,0,'{\"login\":[1631673868,1632088132,1632120319,1632331091,1632526910]}'),(4235,'159.203.44.244','normal','',0,0,0,10,0,'{\"login\":[1631674519,1631785584,1631934748,1632089328,1632268593,1638258797,1638338042,1638601218,1638693690,1639175496]}'),(4236,'91.204.46.10','normal','',0,0,0,6,0,'{\"login\":[1631675898,1631731621,1632028126,1632064370,1632161828,1632555349]}'),(4237,'104.168.253.116','normal','',0,0,0,1,0,'{\"login\":[1631676532]}'),(4238,'5.183.209.217','normal','',0,0,0,0,0,'[]'),(4239,'35.205.11.89','normal','',0,0,0,4,0,'{\"login\":[1631683522,1632151124,1632230633,1632315188]}'),(4240,'185.182.57.49','normal','',0,0,0,1,0,'{\"login\":[1631684541]}'),(4241,'89.187.177.58','blocked','You have been locked out due to too many invalid login attempts.',1631686373,1631686073,0,5,0,'{\"login\":[1631686071,1631686072,1631686072,1631686073,1631686073]}'),(4242,'46.101.80.83','normal','',0,0,0,2,0,'{\"login\":[1631687828,1633996966]}'),(4243,'173.212.192.52','normal','',0,0,0,15,0,'{\"login\":[1631688146,1634330389,1634499090,1637032820,1637469491,1639011403,1639343104,1640568291,1640983927,1642363840,1643061553,1643093946,1643094920,1643105740,1643767249]}'),(4244,'104.37.86.32','normal','',0,0,0,3,0,'{\"login\":[1631689499,1631744574,1631802336]}'),(4245,'178.128.54.239','normal','',0,0,0,1,0,'{\"login\":[1631690248]}'),(4246,'34.221.196.250','normal','',0,0,0,1,0,'{\"login\":[1631690767]}'),(4247,'172.107.181.155','normal','',0,0,0,1,0,'{\"login\":[1631692283]}'),(4248,'176.96.243.100','normal','',0,0,0,5,0,'{\"login\":[1631693801,1653590736,1654498863,1654544252,1654558065]}'),(4249,'41.10.135.173','normal','',0,0,0,0,0,'[]'),(4250,'34.66.184.130','normal','',0,0,0,3,0,'{\"login\":[1631695860,1631717901,1631769737]}'),(4251,'199.249.230.117','normal','',0,0,0,0,0,'[]'),(4252,'52.87.138.147','normal','',0,0,0,1,0,'{\"login\":[1631698818]}'),(4253,'103.161.108.2','normal','',0,0,0,2,0,'{\"login\":[1631699494,1631923459]}'),(4254,'62.109.14.119','normal','',0,0,0,13,0,'{\"login\":[1631700289,1631989231,1632346761,1633280358,1633879844,1634384497,1634950521,1635736323,1636779843,1637019835,1637139404,1637305581,1637681872]}'),(4255,'41.193.201.117','normal','',0,0,0,0,0,'[]'),(4256,'18.159.48.29','normal','',0,0,0,1,0,'{\"login\":[1631703203]}'),(4257,'149.56.142.233','normal','',0,0,0,1,0,'{\"login\":[1631704005]}'),(4258,'23.94.105.10','normal','',0,0,0,2,0,'{\"login\":[1631705408,1632721235]}'),(4259,'102.39.199.118','normal','',0,0,0,0,0,'[]'),(4260,'194.233.70.173','normal','',0,0,0,3,0,'{\"login\":[1631707458,1631905256,1632243583]}'),(4261,'194.187.171.68','normal','',0,0,0,0,0,'[]'),(4262,'136.144.175.119','normal','',0,0,0,3,0,'{\"login\":[1631710193,1632068435,1632333528]}'),(4263,'188.166.188.62','normal','',0,0,0,1,0,'{\"login\":[1631711739]}'),(4264,'49.12.153.66','normal','',0,0,0,2,0,'{\"login\":[1631712519,1631721028]}'),(4265,'176.9.89.107','normal','',0,0,0,3,0,'{\"login\":[1631713409,1631714344,1631761165]}'),(4266,'216.19.195.34','normal','',0,0,0,0,0,'[]'),(4267,'216.19.195.51','normal','',0,0,0,0,0,'[]'),(4268,'216.19.195.64','normal','',0,0,0,0,0,'[]'),(4269,'31.31.202.110','normal','',0,0,0,1,0,'{\"login\":[1631714489]}'),(4270,'47.133.137.47','normal','',0,0,0,2,0,'{\"login\":[1631714902,1632023263]}'),(4271,'54.36.149.0','normal','',0,0,0,0,0,'[]'),(4272,'82.223.55.49','normal','',0,0,0,1,0,'{\"login\":[1631716656]}'),(4273,'173.212.212.254','normal','',0,0,0,8,0,'{\"login\":[1631717228,1631757314,1631977630,1631979611,1631985745,1631995652,1632012694,1632028292]}'),(4274,'101.32.62.175','normal','',0,0,0,1,0,'{\"login\":[1631717818]}'),(4275,'185.98.5.206','normal','',0,0,0,1,0,'{\"login\":[1631718195]}'),(4276,'128.199.212.130','normal','',0,0,0,3,0,'{\"login\":[1631719131,1631750958,1631752563]}'),(4277,'52.22.231.34','normal','',0,0,0,5,0,'{\"login\":[1631720067,1631741564,1631970179,1632000668,1632027585]}'),(4278,'34.116.245.127','normal','',0,0,0,2,0,'{\"login\":[1631720713,1631772565]}'),(4279,'103.39.134.190','normal','',0,0,0,110,0,'{\"login\":[1631721731,1631977280,1633806120,1633893023,1634292079,1634346584,1636335448,1636897559,1636999341,1637263253,1637264845,1637478242,1638811460,1638824142,1640038162,1640117927,1640123458,1640594795,1640757293,1641039886,1641200863,1641452415,1641509877,1641785166,1641995308,1642017864,1642063514,1642301214,1642495373,1642877556,1642903897,1643479218,1643533037,1643616852,1644256038,1644279867,1644842892,1645331021,1646248424,1646250567,1646514942,1646589222,1646957218,1647012153,1647021444,1647298662,1647791010,1648590264,1648679611,1648730735,1649015762,1649672175,1649749410,1649990843,1650180397,1650251444,1650435819,1650981110,1651005618,1651189963,1651345459,1651942426,1652272642,1652453458,1652702154,1652949979,1653030114,1653193052,1653266436,1653301264,1653592940,1654158250,1654367828,1654513652,1654800268,1654908000,1654947883,1654996007,1655021320,1655796510,1656214695,1656244841,1656773426,1656776060,1656806458,1657395569,1657536129,1657665211,1657678858,1657692223,1657730699,1657766541,1658172239,1658181635,1658230699,1658242774,1658487855,1658494684,1658712481,1659117403,1660381453,1660496586,1660767081,1660963558,1661224744,1661355643,1661699797,1661733324,1662024003,1662145887]}'),(4280,'188.166.209.237','normal','',0,0,0,1,0,'{\"login\":[1631723080]}'),(4281,'138.201.207.11','normal','',0,0,0,1,0,'{\"login\":[1631726788]}'),(4282,'95.111.255.207','normal','',0,0,0,5,0,'{\"login\":[1631727000,1631736264,1631763535,1632296001,1632880475]}'),(4283,'88.198.41.236','normal','',0,0,0,4,0,'{\"login\":[1631727776,1631767506,1631975547,1631999184]}'),(4284,'3.86.116.91','normal','',0,0,0,1,0,'{\"login\":[1631728390]}'),(4285,'66.249.65.1','normal','',0,0,0,0,0,'[]'),(4286,'66.249.65.29','normal','',0,0,0,0,0,'[]'),(4287,'108.170.55.202','normal','',0,0,0,1,0,'{\"login\":[1631729298]}'),(4288,'5.255.253.131','normal','',0,0,0,0,0,'[]'),(4289,'5.255.253.83','normal','',0,0,0,0,0,'[]'),(4290,'46.105.104.166','normal','',0,0,0,4,0,'{\"login\":[1631729352,1632121312,1632616644,1632732768]}'),(4291,'10.179.80.71','normal','',0,0,0,0,0,'[]'),(4292,'79.137.65.89','normal','',0,0,0,4,0,'{\"login\":[1631730117,1631965420,1632016539,1632119199]}'),(4293,'52.156.84.75','normal','',0,0,0,0,2,'{\"nf\":[1631733100,1631734183]}'),(4294,'103.152.118.225','normal','',0,0,0,11,0,'{\"login\":[1631733279,1632051535,1632137788,1632269065,1632321481,1632338613,1632894474,1633782776,1633799340,1634527942,1637282002]}'),(4295,'167.86.87.87','normal','',0,0,0,3,0,'{\"login\":[1631734022,1631739973,1631798747]}'),(4296,'66.249.65.3','normal','',0,0,0,0,0,'[]'),(4297,'14.36.66.221','normal','',0,0,0,28,0,'{\"login\":[1631734639,1631907651,1632329124,1632564460,1632705383,1633826203,1634002359,1634289092,1634415780,1635677220,1635780575,1635803281,1635922805,1638192032,1638338837,1638523112,1639581509,1640832899,1641111169,1641989168,1642178927,1642184611,1642239824,1642291505,1642306050,1642859127,1642972516,1643563824]}'),(4298,'138.68.136.223','normal','',0,0,0,1,0,'{\"login\":[1631743051]}'),(4299,'77.88.5.57','normal','',0,0,0,0,1,'{\"nf\":[1631734742]}'),(4300,'185.96.195.245','normal','',0,0,0,1,0,'{\"login\":[1631735973]}'),(4301,'18.236.108.22','normal','',0,0,0,0,0,'[]'),(4302,'54.214.128.128','normal','',0,0,0,0,0,'[]'),(4303,'34.211.116.131','normal','',0,0,0,0,0,'[]'),(4304,'62.210.232.225','normal','',0,0,0,4,0,'{\"login\":[1631738018,1632240631,1632336508,1633609598]}'),(4305,'114.119.138.35','normal','',0,0,0,0,0,'[]'),(4306,'111.90.135.130','normal','',0,0,0,2,0,'{\"login\":[1631740060,1632293340]}'),(4307,'103.237.145.122','normal','',0,0,0,21,0,'{\"login\":[1631740819,1631754914,1631963657,1631998493,1634022147,1634154477,1634745830,1636733850,1636735201,1637095156,1637619471,1637627368,1638501862,1638737086,1638937326,1640860869,1646356753,1646374232,1646697062,1646857825,1646886528]}'),(4308,'162.214.187.104','normal','',0,0,0,8,0,'{\"login\":[1631743155,1633653545,1633857467,1634376800,1634528850,1634530685,1635774164,1637194227]}'),(4309,'74.208.87.43','normal','',0,0,0,1,0,'{\"login\":[1631743940]}'),(4310,'3.6.75.25','normal','',0,0,0,2,0,'{\"login\":[1631745397,1631971511]}'),(4311,'195.201.7.148','normal','',0,0,0,12,0,'{\"login\":[1631745850,1632314651,1632572323,1632739576,1633904745,1633935033,1634544089,1634995239,1638386469,1638492764,1638988606,1639180551]}'),(4312,'178.62.100.74','normal','',0,0,0,10,0,'{\"login\":[1631746957,1631989266,1632006332,1635564612,1637777241,1637786619,1637878895,1638723507,1638908511,1638913777]}'),(4313,'138.68.248.47','normal','',0,0,0,38,0,'{\"login\":[1631748530,1632031298,1632629206,1632677641,1633602732,1633908454,1634340963,1634366567,1635716120,1636738843,1636932506,1637240052,1637300557,1637421464,1637812052,1638264504,1638880676,1638881780,1638978284,1639142984,1639712864,1639793279,1639847401,1640276137,1640432204,1640515512,1640690041,1641029956,1641295999,1641773454,1642362029,1642498879,1642600576,1643534737,1643668062,1644458805,1644796716,1645966907]}'),(4314,'51.15.160.22','normal','',0,0,0,8,0,'{\"login\":[1631749149,1632270465,1635379846,1635650329,1637080572,1637353146,1637362101,1638293347]}'),(4315,'5.148.183.37','normal','',0,0,0,4,0,'{\"login\":[1631751859,1632322094,1632531030,1632539814]}'),(4316,'208.113.186.18','normal','',0,0,0,9,0,'{\"login\":[1631752476,1632273292,1632632950,1632671301,1633302959,1636665015,1636984733,1637187790,1637261392]}'),(4317,'116.202.102.124','normal','',0,0,0,1,0,'{\"login\":[1631754101]}'),(4318,'46.229.212.252','normal','',0,0,0,8,0,'{\"login\":[1631754296,1631762257,1631778135,1633902959,1633918734,1634012958,1634042617,1634326879]}'),(4319,'92.119.58.19','normal','',0,0,0,1,0,'{\"login\":[1631755694]}'),(4320,'103.15.232.195','normal','',0,0,0,14,0,'{\"login\":[1631756120,1632145419,1632588336,1633632389,1633931616,1634128183,1634300509,1634304199,1634387711,1636704043,1636979081,1637037117,1637484113,1639278778]}'),(4321,'91.126.176.51','normal','',0,0,0,7,0,'{\"login\":[1631756499,1637529157,1646144936,1646194372,1646207733,1646672953,1648141737]}'),(4322,'194.61.0.8','normal','',0,0,0,4,0,'{\"login\":[1631756738,1631946560,1632465152,1632719320]}'),(4323,'162.240.5.3','normal','',0,0,0,5,0,'{\"login\":[1631757353,1632722106,1632957356,1632997384,1633044220]}'),(4324,'173.236.172.180','normal','',0,0,0,9,0,'{\"login\":[1631757989,1632198110,1632300911,1632610928,1636895845,1636896737,1637802416,1637990844,1638217514]}'),(4325,'3.109.178.96','normal','',0,0,0,1,0,'{\"login\":[1631758608]}'),(4326,'115.29.177.50','normal','',0,0,0,1,0,'{\"login\":[1631758764]}'),(4327,'223.25.100.138','normal','',0,0,0,1,0,'{\"login\":[1631761652]}'),(4328,'74.91.28.94','normal','',0,0,0,1,0,'{\"login\":[1631762758]}'),(4329,'5.144.133.85','normal','',0,0,0,1,0,'{\"login\":[1631766741]}'),(4330,'109.168.97.89','normal','',0,0,0,101,0,'{\"login\":[1631767499,1632212271,1632252368,1632695030,1634247860,1636679181,1636796457,1637154361,1637173821,1637175348,1637212154,1637335207,1637433518,1637645412,1637807942,1638443569,1638842528,1638868338,1639166861,1639262058,1640130430,1640714420,1640792016,1640981709,1641776397,1642038510,1642073717,1642667501,1643019310,1643745094,1644484467,1644515953,1644580830,1647007647,1647129110,1647323491,1647508339,1647667331,1647756186,1647783579,1648055633,1648455240,1648486160,1648560046,1648628127,1649093996,1649494878,1649527900,1650033559,1650437871,1650479189,1650875412,1650959022,1650967124,1651100169,1651249212,1651331214,1651709075,1651755217,1652056837,1652064356,1652309575,1652378597,1652547585,1652703839,1652742871,1652904846,1653336365,1654306751,1654407646,1654609832,1654794922,1654858080,1654876399,1655025768,1655026175,1655147582,1655215385,1655662469,1655682230,1655893764,1655899189,1656753206,1657120516,1657513756,1657605980,1657663168,1657700247,1658168844,1659137650,1659273464,1659739349,1660091937,1660442423,1660747126,1661113347,1661120779,1661297457,1662550915,1662969243,1663015982]}'),(4331,'103.41.204.82','normal','',0,0,0,2,0,'{\"login\":[1631771944,1632559639]}'),(4332,'207.46.13.118','normal','',0,0,0,0,0,'[]'),(4333,'182.176.122.104','normal','',0,0,0,7,0,'{\"login\":[1631773891,1632340773,1637835640,1639047567,1639393707,1639743291,1639843776]}'),(4334,'212.129.47.56','normal','',0,0,0,3,0,'{\"login\":[1631775692,1631913679,1632200067]}'),(4335,'51.195.253.82','normal','',0,0,0,1,0,'{\"login\":[1631776918]}'),(4336,'23.97.205.210','normal','',0,0,0,85,0,'{\"login\":[1631777533,1632470834,1633170731,1633293364,1634505093,1634515685,1634820012,1635652624,1637372752,1639327889,1639833597,1640073136,1640108040,1640470904,1640536506,1640549053,1640972898,1641086903,1641280154,1641416795,1641472076,1641919657,1641986030,1642159000,1642408610,1642578964,1642582900,1643761381,1644734234,1645729598,1645767006,1645928123,1646081361,1646230093,1646298585,1646302360,1646628633,1646746794,1647044045,1647091921,1647223605,1647650781,1647733677,1647859903,1648457018,1649532233,1649764404,1650167429,1650252399,1650476978,1650636579,1650643019,1650649358,1651179956,1651243930,1651294885,1651718549,1652505593,1652689661,1652968466,1653344092,1654318587,1654363698,1654376715,1654785125,1654875373,1654948281,1655067135,1655465535,1656022524,1656106392,1656824137,1657855411,1658031584,1658224833,1658515250,1658572818,1658597286,1660797520,1661703989,1662072863,1662182278,1662291097,1662421552,1662916204]}'),(4337,'35.84.29.138','normal','',0,0,0,0,3,'{\"nf\":[1631777552,1631777556,1631777564]}'),(4338,'41.114.177.30','normal','',0,0,0,0,0,'[]'),(4339,'194.147.142.160','normal','',0,0,0,0,1,'{\"nf\":[1631781268]}'),(4340,'173.212.248.58','normal','',0,0,0,8,0,'{\"login\":[1631782471,1631975995,1632206506,1632327445,1632492944,1633056843,1633533639,1633541616]}'),(4341,'198.12.208.176','normal','',0,0,0,0,1,'{\"nf\":[1631786722]}'),(4342,'213.190.6.142','normal','',0,0,0,0,3,'{\"nf\":[1631786752,1639350000,1647949770]}'),(4343,'35.204.67.55','normal','',0,0,0,1,0,'{\"login\":[1631786984]}'),(4344,'197.92.137.17','normal','',0,0,0,0,1,'{\"nf\":[1631787064]}'),(4345,'88.198.164.194','normal','',0,0,0,2,0,'{\"login\":[1631787639,1632231941]}'),(4346,'185.60.107.19','normal','',0,0,0,0,1,'{\"nf\":[1631787684]}'),(4347,'41.93.40.83','normal','',0,0,0,17,0,'{\"login\":[1631794096,1633543999,1635399253,1637176814,1637662091,1638419001,1638723926,1639490278,1640042191,1640537404,1640560921,1640796653,1641147566,1641900466,1641957517,1642230815,1642627076]}'),(4348,'66.249.64.103','normal','',0,0,0,0,0,'[]'),(4349,'91.203.146.126','normal','',0,0,0,0,0,'[]'),(4350,'66.249.66.66','normal','',0,0,0,0,0,'[]'),(4351,'207.46.13.8','normal','',0,0,0,0,0,'[]'),(4352,'62.94.216.60','normal','',0,0,0,0,1,'{\"nf\":[1631800324]}'),(4353,'114.119.137.195','normal','',0,0,0,0,0,'[]'),(4354,'114.119.144.15','normal','',0,0,0,0,0,'[]'),(4355,'185.220.102.4','normal','',0,0,0,0,0,'[]'),(4356,'34.215.177.168','normal','',0,0,0,0,0,'[]'),(4357,'54.201.159.149','normal','',0,0,0,0,0,'[]'),(4358,'54.190.25.214','normal','',0,0,0,0,0,'[]'),(4359,'35.166.214.228','normal','',0,0,0,0,0,'[]'),(4360,'148.72.232.65','normal','',0,0,0,0,1,'{\"nf\":[1631826995]}'),(4361,'138.201.60.47','normal','',0,0,0,0,0,'[]'),(4362,'103.6.196.145','normal','',0,0,0,0,1,'{\"nf\":[1631837097]}'),(4363,'138.197.170.223','normal','',0,0,0,1,0,'{\"login\":[1632576452]}'),(4364,'128.199.100.255','normal','',0,0,0,1,0,'{\"login\":[1631970162]}'),(4365,'91.148.168.2','normal','',0,0,0,0,0,'[]'),(4366,'34.86.137.190','normal','',0,0,0,0,0,'[]'),(4367,'80.172.227.64','normal','',0,0,0,0,0,'[]'),(4368,'185.224.91.139','normal','',0,0,0,0,1,'{\"nf\":[1631856824]}'),(4369,'138.197.6.50','normal','',0,0,0,0,0,'[]'),(4370,'101.33.117.206','normal','',0,0,0,1,0,'{\"login\":[1632270574]}'),(4371,'3.131.110.166','normal','',0,0,0,0,0,'[]'),(4372,'81.88.52.142','normal','',0,0,0,1,0,'{\"login\":[1632169971]}'),(4373,'176.9.200.42','normal','',0,0,0,0,0,'[]'),(4374,'102.65.161.47','normal','',0,0,0,0,0,'[]'),(4375,'211.149.174.241','normal','',0,0,0,3,0,'{\"login\":[1633988962,1634933693,1634948436]}'),(4376,'206.189.46.147','normal','',0,0,0,0,0,'[]'),(4377,'114.119.142.43','normal','',0,0,0,0,0,'[]'),(4378,'185.2.4.200','normal','',0,0,0,0,0,'[]'),(4379,'5.249.141.102','normal','',0,0,0,0,1,'{\"nf\":[1631869310]}'),(4380,'194.233.73.93','normal','',0,0,0,0,0,'[]'),(4381,'114.119.154.67','normal','',0,0,0,0,0,'[]'),(4382,'45.88.110.148','normal','',0,0,0,0,0,'[]'),(4383,'161.97.154.64','normal','',0,0,0,0,4,'{\"nf\":[1631873985,1631873987,1631891092,1631891092]}'),(4384,'106.52.174.30','normal','',0,0,0,0,0,'[]'),(4385,'5.189.170.104','normal','',0,0,0,0,0,'[]'),(4386,'114.119.159.6','normal','',0,0,0,0,0,'[]'),(4387,'188.165.236.99','normal','',0,0,0,0,0,'[]'),(4388,'178.128.12.238','normal','',0,0,0,0,1,'{\"nf\":[1631878685]}'),(4389,'51.141.125.53','normal','',0,0,0,0,0,'[]'),(4390,'162.55.236.152','normal','',0,0,0,0,0,'[]'),(4391,'139.59.42.198','normal','',0,0,0,0,1,'{\"nf\":[1631883493]}'),(4392,'146.88.26.147','normal','',0,0,0,0,0,'[]'),(4393,'170.249.210.234','normal','',0,0,0,0,4,'{\"nf\":[1631888969,1631888973,1641285816,1641285820]}'),(4394,'114.119.158.251','normal','',0,0,0,0,0,'[]'),(4395,'167.71.111.16','normal','',0,0,0,2,0,'{\"login\":[1650300116,1661082625]}'),(4396,'103.101.160.81','normal','',0,0,0,1,0,'{\"login\":[1632282853]}'),(4397,'91.206.200.215','normal','',0,0,0,0,0,'[]'),(4398,'85.30.129.173','normal','',0,0,0,0,0,'[]'),(4399,'114.119.140.52','normal','',0,0,0,0,0,'[]'),(4400,'165.227.90.171','normal','',0,0,0,3,0,'{\"login\":[1632188627,1632908965,1635844404]}'),(4401,'103.20.214.38','normal','',0,0,0,0,0,'[]'),(4402,'114.119.165.226','normal','',0,0,0,0,0,'[]'),(4403,'167.99.12.57','normal','',0,0,0,2,0,'{\"login\":[1632591363,1638417815]}'),(4404,'51.222.253.12','normal','',0,0,0,0,0,'[]'),(4405,'200.35.158.12','normal','',0,0,0,3,0,'{\"login\":[1631906105,1631951783,1632065579]}'),(4406,'164.68.103.174','normal','',0,0,0,0,0,'[]'),(4407,'34.135.194.245','normal','',0,0,0,1,0,'{\"login\":[1631906862]}'),(4408,'40.77.167.68','normal','',0,0,0,0,0,'[]'),(4409,'185.8.129.188','normal','',0,0,0,0,0,'[]'),(4410,'172.105.77.95','normal','',0,0,0,1,0,'{\"login\":[1631908443]}'),(4411,'178.159.98.117','normal','',0,0,0,0,0,'[]'),(4412,'54.245.0.154','normal','',0,0,0,0,0,'[]'),(4413,'95.217.195.206','normal','',0,0,0,39,0,'{\"login\":[1631912203,1632224287,1632301607,1632336993,1632347235,1632543952,1633612012,1633640453,1633652282,1635982577,1636858464,1637147907,1637149933,1637190121,1637694479,1637726974,1637728783,1638345238,1639018815,1639252847,1639700172,1639830007,1639891357,1639951586,1640417710,1640759136,1640909126,1641127039,1641179535,1641192199,1641396725,1641418136,1641746759,1641972696,1641985797,1642159744,1642162681,1642313174,1643104758]}'),(4414,'198.144.121.93','normal','',0,0,0,0,0,'[]'),(4415,'51.15.251.143','normal','',0,0,0,0,0,'[]'),(4416,'195.211.45.152','normal','',0,0,0,0,0,'[]'),(4417,'128.199.167.230','normal','',0,0,0,0,0,'[]'),(4418,'34.86.35.12','normal','',0,0,0,0,0,'[]'),(4419,'91.98.100.194','normal','',0,0,0,0,0,'[]'),(4420,'104.154.119.247','normal','',0,0,0,1,0,'{\"login\":[1631927913]}'),(4421,'76.72.175.123','blocked','You have been locked out due to too many invalid login attempts.',1631928311,1631928011,0,5,0,'{\"login\":[1631928010,1631928010,1631928010,1631928011,1631928011]}'),(4422,'208.113.197.84','normal','',0,0,0,4,0,'{\"login\":[1631930406,1632251056,1632607066,1632626332]}'),(4423,'114.119.135.139','normal','',0,0,0,0,0,'[]'),(4424,'213.61.215.54','normal','',0,0,0,0,0,'[]'),(4425,'104.37.86.22','normal','',0,0,0,1,0,'{\"login\":[1631937878]}'),(4426,'62.151.182.237','normal','',0,0,0,2,0,'{\"login\":[1631940391,1632021734]}'),(4427,'114.119.147.97','normal','',0,0,0,0,0,'[]'),(4428,'167.71.199.171','normal','',0,0,0,0,0,'[]'),(4429,'54.249.193.253','normal','',0,0,0,1,0,'{\"login\":[1631945013]}'),(4430,'135.181.233.242','normal','',0,0,0,3,0,'{\"login\":[1631945801,1632292630,1632634778]}'),(4431,'34.228.40.53','normal','',0,0,0,0,1,'{\"nf\":[1631956141]}'),(4432,'135.148.41.233','normal','',0,0,0,3,0,'{\"login\":[1631957218,1631988567,1632319617]}'),(4433,'104.207.146.195','normal','',0,0,0,4,0,'{\"login\":[1631958302,1631974183,1631974815,1631983611]}'),(4434,'119.18.48.111','normal','',0,0,0,3,0,'{\"login\":[1631958988,1631960240,1632007042]}'),(4435,'138.197.185.166','normal','',0,0,0,2,0,'{\"login\":[1631959534,1631994196]}'),(4436,'117.20.56.220','normal','',0,0,0,0,0,'[]'),(4437,'103.226.138.173','normal','',0,0,0,2,0,'{\"login\":[1631961590,1631997110]}'),(4438,'103.156.92.207','normal','',0,0,0,0,0,'[]'),(4439,'188.240.54.69','normal','',0,0,0,1,0,'{\"login\":[1631962253]}'),(4440,'174.138.57.168','normal','',0,0,0,2,0,'{\"login\":[1631962978,1632032442]}'),(4441,'108.175.5.114','normal','',0,0,0,4,0,'{\"login\":[1631964297,1632004171,1632004884,1632019773]}'),(4442,'185.104.30.253','normal','',0,0,0,3,0,'{\"login\":[1631965532,1631969512,1634035360]}'),(4443,'194.233.71.7','normal','',0,0,0,3,0,'{\"login\":[1631966169,1632003418,1632010565]}'),(4444,'167.86.118.78','normal','',0,0,0,3,0,'{\"login\":[1631966894,1631968219,1632021970]}'),(4445,'124.158.11.204','normal','',0,0,0,3,0,'{\"login\":[1631967010,1632197412,1634000425]}'),(4446,'66.249.64.125','normal','',0,0,0,0,0,'[]'),(4447,'66.249.64.96','normal','',0,0,0,0,0,'[]'),(4448,'31.44.185.100','normal','',0,0,0,0,1,'{\"nf\":[1631968165]}'),(4449,'52.59.136.189','normal','',0,0,0,2,0,'{\"login\":[1631968849,1631987146]}'),(4450,'18.209.247.25','normal','',0,0,0,2,0,'{\"login\":[1631970818,1632024205]}'),(4451,'143.198.188.143','normal','',0,0,0,0,0,'[]'),(4452,'200.80.43.57','normal','',0,0,0,1,0,'{\"login\":[1631973576]}'),(4453,'128.140.231.3','normal','',0,0,0,22,0,'{\"login\":[1631974729,1632143238,1632889033,1633096280,1642413990,1642896980,1643488709,1644202332,1646535776,1646631810,1646819674,1646954295,1646960757,1647011236,1647057095,1647126008,1647150197,1647674503,1647721741,1648241973,1650164756,1650361629]}'),(4454,'66.249.64.101','normal','',0,0,0,0,0,'[]'),(4455,'80.69.93.34','normal','',0,0,0,1,0,'{\"login\":[1631980252]}'),(4456,'207.148.100.74','normal','',0,0,0,0,2,'{\"nf\":[1631980809,1632371220]}'),(4457,'103.110.85.98','normal','',0,0,0,2,0,'{\"login\":[1631980998,1635538651]}'),(4458,'3.11.49.195','normal','',0,0,0,1,0,'{\"login\":[1631981148]}'),(4459,'95.111.246.124','normal','',0,0,0,1,0,'{\"login\":[1631981653]}'),(4460,'185.253.218.123','normal','',0,0,0,8,0,'{\"login\":[1631981783,1632377554,1632583167,1632738161,1633312074,1633651652,1634522764,1634532463]}'),(4461,'37.187.39.126','normal','',0,0,0,3,0,'{\"login\":[1631982335,1631992809,1632020430]}'),(4462,'122.165.241.102','normal','',0,0,0,3,0,'{\"login\":[1631983868,1633588109,1634260279]}'),(4463,'185.223.95.54','normal','',0,0,0,2,0,'{\"login\":[1631984379,1632025517]}'),(4464,'176.112.192.25','normal','',0,0,0,3,0,'{\"login\":[1631985068,1632012048,1632031079]}'),(4465,'138.197.134.228','normal','',0,0,0,1,0,'{\"login\":[1631987863]}'),(4466,'52.213.46.172','normal','',0,0,0,3,0,'{\"login\":[1631988557,1631990016,1632014111]}'),(4467,'39.103.194.111','normal','',0,0,0,1,0,'{\"login\":[1642215725]}'),(4468,'143.244.184.195','normal','',0,0,0,9,0,'{\"login\":[1631990549,1633617986,1639871485,1641422872,1642358209,1642636356,1644457764,1645100208,1646006313]}'),(4469,'105.209.237.41','normal','',0,0,0,0,0,'[]'),(4470,'137.184.41.68','normal','',0,0,0,3,0,'{\"login\":[1631991342,1632855646,1632882945]}'),(4471,'45.158.14.18','normal','',0,0,0,0,1,'{\"nf\":[1631994667]}'),(4472,'103.27.86.158','normal','',0,0,0,1,0,'{\"login\":[1631994912]}'),(4473,'167.172.133.111','normal','',0,0,0,2,0,'{\"login\":[1631995596,1635845584]}'),(4474,'138.68.64.196','normal','',0,0,0,6,0,'{\"login\":[1631996261,1632002744,1635881333,1638894412,1638926893,1640845666]}'),(4475,'34.215.66.127','normal','',0,0,0,0,0,'[]'),(4476,'197.94.29.76','normal','',0,0,0,0,0,'[]'),(4477,'3.108.135.47','normal','',0,0,0,0,1,'{\"nf\":[1632006623]}'),(4478,'85.214.63.209','normal','',0,0,0,2,0,'{\"login\":[1632007722,1632014824]}'),(4479,'114.119.148.106','normal','',0,0,0,0,0,'[]'),(4480,'172.105.252.199','normal','',0,0,0,1,0,'{\"login\":[1632008375]}'),(4481,'13.213.185.104','normal','',0,0,0,1,0,'{\"login\":[1632009138]}'),(4482,'203.136.22.252','normal','',0,0,0,1,0,'{\"login\":[1632012879]}'),(4483,'185.82.223.106','normal','',0,0,0,1,0,'{\"login\":[1632013421]}'),(4484,'37.0.11.84','normal','',0,0,0,0,1,'{\"nf\":[1632017337]}'),(4485,'138.68.69.48','normal','',0,0,0,34,0,'{\"login\":[1632017853,1632023037,1632047408,1632266689,1632325090,1632631018,1633582951,1633584301,1633954667,1634124886,1634294151,1634509308,1635645820,1636988364,1637189160,1637228492,1637386069,1638164984,1638167862,1638268744,1638428269,1639177665,1639503342,1639842330,1640137522,1641005427,1641043504,1641156748,1641732890,1641940829,1642140128,1642222949,1642521795,1642560760]}'),(4486,'39.105.217.9','normal','',0,0,0,0,1,'{\"nf\":[1632019426]}'),(4487,'165.227.225.205','normal','',0,0,0,1,0,'{\"login\":[1632019790]}'),(4488,'213.189.58.137','normal','',0,0,0,1,0,'{\"login\":[1632022386]}'),(4489,'103.74.121.169','normal','',0,0,0,2,0,'{\"login\":[1632023414,1632033246]}'),(4490,'74.208.131.59','normal','',0,0,0,1,0,'{\"login\":[1632026218]}'),(4491,'103.245.72.30','normal','',0,0,0,19,0,'{\"login\":[1632026890,1638912911,1638927707,1639641048,1642713117,1642808029,1642824134,1643138403,1643168198,1647283932,1647301668,1651361152,1652218671,1653569652,1654502050,1654569288,1655299771,1655307990,1656796536]}'),(4492,'104.244.77.235','normal','',0,0,0,0,0,'[]'),(4493,'139.162.55.149','normal','',0,0,0,4,0,'{\"login\":[1632029868,1632224910,1632702779,1643736955]}'),(4494,'31.193.130.152','normal','',0,0,0,0,1,'{\"nf\":[1632031520]}'),(4495,'157.245.90.50','normal','',0,0,0,0,0,'[]'),(4496,'109.234.161.74','normal','',0,0,0,0,0,'[]'),(4497,'122.128.111.29','normal','',0,0,0,2,0,'{\"login\":[1632032736,1634492335]}'),(4498,'83.139.0.20','normal','',0,0,0,2,0,'{\"login\":[1634015546,1634947712]}'),(4499,'40.77.167.79','normal','',0,0,0,0,0,'[]'),(4500,'153.126.191.75','normal','',0,0,0,1,0,'{\"login\":[1632035348]}'),(4501,'91.206.200.183','normal','',0,0,0,0,0,'[]'),(4502,'104.37.175.98','normal','',0,0,0,0,0,'[]'),(4503,'186.234.80.202','normal','',0,0,0,0,0,'[]'),(4504,'165.22.252.207','normal','',0,0,0,3,0,'{\"login\":[1635531430,1640403813,1640514682]}'),(4505,'177.18.137.87','normal','',0,0,0,0,0,'[]'),(4506,'54.179.5.58','normal','',0,0,0,1,0,'{\"login\":[1632049096]}'),(4507,'193.189.100.202','normal','',0,0,0,0,0,'[]'),(4508,'40.77.167.7','normal','',0,0,0,0,0,'[]'),(4509,'116.255.160.108','normal','',0,0,0,21,0,'{\"login\":[1632054825,1632080788,1633882719,1634897879,1635793917,1636971444,1637213648,1638410264,1638695848,1639036724,1639514628,1639795445,1640528598,1641040785,1641051757,1641703892,1641740698,1642029212,1642470871,1642849422,1643006017]}'),(4510,'142.93.110.39','normal','',0,0,0,8,0,'{\"login\":[1632058129,1633916177,1634296235,1634435236,1638360472,1639669334,1641959001,1641978029]}'),(4511,'114.119.139.112','normal','',0,0,0,0,0,'[]'),(4512,'95.217.144.72','normal','',0,0,0,20,0,'{\"login\":[1632060555,1632136367,1632215865,1632246119,1632362778,1632609982,1633322502,1634219680,1634323197,1634347298,1634822794,1634893857,1635554200,1635665924,1635693200,1636736186,1636833556,1637015785,1638230075,1638447867]}'),(4513,'161.97.146.123','normal','',0,0,0,6,0,'{\"login\":[1632066909,1632380576,1632624374,1633858433,1635626695,1636974872]}'),(4514,'114.119.137.167','normal','',0,0,0,0,0,'[]'),(4515,'3.36.116.85','normal','',0,0,0,0,0,'[]'),(4516,'114.119.135.34','normal','',0,0,0,0,0,'[]'),(4517,'143.198.162.183','normal','',0,0,0,28,0,'{\"login\":[1632096344,1632544937,1632701111,1633350410,1634326176,1634942416,1635648078,1636169465,1637160657,1637267719,1638416904,1638989641,1639271751,1639634595,1639673370,1639733717,1639870068,1639929398,1640506625,1641187229,1641874857,1641905398,1641997114,1642289897,1643098212,1643485872,1643573590,1644147001]}'),(4518,'208.115.109.10','normal','',0,0,0,0,0,'[]'),(4519,'42.83.147.35','normal','',0,0,0,0,0,'[]'),(4520,'150.95.112.79','normal','',0,0,0,2,0,'{\"login\":[1632198943,1632597681]}'),(4521,'207.46.13.69','normal','',0,0,0,0,0,'[]'),(4522,'192.158.238.246','normal','',0,0,0,0,0,'[]'),(4523,'114.119.137.143','normal','',0,0,0,0,0,'[]'),(4524,'102.182.113.166','normal','',0,0,0,0,0,'[]'),(4525,'41.79.95.157','normal','',0,0,0,0,0,'[]'),(4526,'34.87.160.246','normal','',0,0,0,5,0,'{\"login\":[1632124264,1632373136,1632595379,1632681118,1633779503]}'),(4527,'207.46.13.121','normal','',0,0,0,0,0,'[]'),(4528,'61.135.15.129','normal','',0,0,0,0,0,'[]'),(4529,'54.36.148.55','normal','',0,0,0,0,0,'[]'),(4530,'91.219.236.228','normal','',0,0,0,0,0,'[]'),(4531,'109.237.103.38','normal','',0,0,0,0,1,'{\"nf\":[1632140613]}'),(4532,'197.87.186.96','normal','',0,0,0,0,0,'[]'),(4533,'66.249.64.169','normal','',0,0,0,0,0,'[]'),(4534,'182.52.19.42','normal','',0,0,0,0,1,'{\"nf\":[1632142834]}'),(4535,'138.197.175.233','normal','',0,0,0,1,0,'{\"login\":[1632149283]}'),(4536,'192.232.200.217','normal','',0,0,0,0,0,'[]'),(4537,'157.245.92.65','normal','',0,0,0,5,0,'{\"login\":[1632159222,1632318302,1632344820,1632494351,1632713042]}'),(4538,'185.100.87.253','normal','',0,0,0,0,0,'[]'),(4539,'35.167.30.151','normal','',0,0,0,0,0,'[]'),(4540,'34.220.121.243','normal','',0,0,0,0,0,'[]'),(4541,'35.165.249.133','normal','',0,0,0,0,0,'[]'),(4542,'52.10.181.78','normal','',0,0,0,0,0,'[]'),(4543,'35.166.208.213','normal','',0,0,0,0,0,'[]'),(4544,'41.231.36.25','normal','',0,0,0,2,0,'{\"login\":[1632171728,1632569002]}'),(4545,'5.45.68.46','normal','',0,0,0,8,0,'{\"login\":[1632171963,1632272355,1633147497,1633558190,1633913615,1633995959,1634131558,1635671472]}'),(4546,'167.71.17.63','normal','',0,0,0,1,0,'{\"login\":[1632174096]}'),(4547,'5.255.253.147','normal','',0,0,0,0,0,'[]'),(4548,'190.120.229.139','blocked','You have been locked out due to too many invalid login attempts.',1632185135,1632184835,0,5,0,'{\"login\":[1632184829,1632184830,1632184830,1632184834,1632184835]}'),(4549,'5.45.207.88','normal','',0,0,0,0,0,'[]'),(4550,'161.97.112.157','normal','',0,0,0,3,0,'{\"login\":[1632186738,1632618674,1632703607]}'),(4551,'192.99.7.182','normal','',0,0,0,0,0,'[]'),(4552,'104.197.170.10','normal','',0,0,0,2,0,'{\"login\":[1632194316,1632295380]}'),(4553,'64.227.97.116','normal','',0,0,0,3,0,'{\"login\":[1632195286,1632468333,1633920441]}'),(4554,'114.119.129.191','normal','',0,0,0,0,0,'[]'),(4555,'167.86.110.215','normal','',0,0,0,4,0,'{\"login\":[1632199070,1632211389,1632532173,1632725540]}'),(4556,'8.141.58.239','normal','',0,0,0,1,0,'{\"login\":[1632202658]}'),(4557,'114.119.132.88','normal','',0,0,0,0,0,'[]'),(4558,'207.148.117.214','normal','',0,0,0,1,0,'{\"login\":[1632205641]}'),(4559,'185.50.25.56','normal','',0,0,0,1,0,'{\"login\":[1634931380]}'),(4560,'149.202.69.26','normal','',0,0,0,0,13,'{\"nf\":[1632206659,1639063797,1641810200,1642419533,1642419583,1642419650,1644917049,1644917053,1651413278,1651413335,1651413386,1651413409,1651413436]}'),(4561,'68.183.68.148','normal','',0,0,0,1,0,'{\"login\":[1632595161]}'),(4562,'138.197.121.19','normal','',0,0,0,0,0,'[]'),(4563,'114.7.206.227','normal','',0,0,0,2,0,'{\"login\":[1632896780,1632932837]}'),(4564,'52.68.75.76','normal','',0,0,0,0,1,'{\"nf\":[1632213559]}'),(4565,'51.195.235.195','normal','',0,0,0,0,0,'[]'),(4566,'178.128.20.252','normal','',0,0,0,2,0,'{\"login\":[1632218071,1633730569]}'),(4567,'45.129.18.183','normal','',0,0,0,0,0,'[]'),(4568,'195.201.42.236','normal','',0,0,0,27,0,'{\"login\":[1632221204,1632287104,1632313789,1632551200,1633174662,1633955550,1634016652,1634337069,1634937169,1635501827,1637105576,1639224830,1639263628,1639330243,1639336071,1639586884,1639747694,1639864432,1640367341,1640554518,1641082231,1641113306,1641809064,1642017153,1642054113,1642098721,1642374583]}'),(4569,'178.128.164.106','normal','',0,0,0,10,0,'{\"login\":[1635535295,1635569509,1635941265,1637054467,1638282704,1638920819,1638925141,1641492533,1641506297,1641637890]}'),(4570,'173.231.203.135','normal','',0,0,0,0,1,'{\"nf\":[1632226923]}'),(4571,'23.146.241.19','normal','',0,0,0,0,5,'{\"nf\":[1632229518,1634353869,1637121801,1639545427,1640007763]}'),(4572,'81.88.52.168','normal','',0,0,0,10,0,'{\"login\":[1632233259,1632549015,1632693202,1633999173,1636742269,1637065386,1639244372,1639451048,1639770494,1640090949]}'),(4573,'139.59.75.162','normal','',0,0,0,39,0,'{\"login\":[1632235231,1632536605,1634045893,1636921396,1637017861,1637715714,1639629431,1640203703,1640640545,1641237327,1641494810,1641721045,1642898132,1642905037,1643023442,1643098867,1644687646,1645250340,1645720441,1645953896,1646077572,1646100421,1646567425,1647333929,1647380691,1648102331,1648181903,1649099230,1649819720,1649982695,1650320464,1650340757,1650414032,1651582389,1651713093,1651993411,1652514036,1652911781,1652925137]}'),(4574,'198.46.82.32','normal','',0,0,0,0,1,'{\"nf\":[1632236453]}'),(4575,'88.99.22.106','normal','',0,0,0,0,14,'{\"nf\":[1632236563,1632236564,1632236564,1632236565,1632236565,1632236566,1632236567,1632236568,1632236568,1632236569,1632236569,1632236570,1632236571,1632236571]}'),(4576,'121.89.208.237','normal','',0,0,0,0,0,'[]'),(4577,'178.33.48.161','normal','',0,0,0,16,0,'{\"login\":[1632241193,1632267186,1632651187,1632687019,1634524414,1634873282,1634943668,1634958151,1634974168,1635484560,1635653690,1636856009,1637290192,1638108675,1638211610,1638408062]}'),(4578,'177.55.116.247','normal','',0,0,0,0,0,'[]'),(4579,'193.169.188.101','normal','',0,0,0,3,0,'{\"login\":[1632242375,1633895668,1639685646]}'),(4580,'155.133.132.65','normal','',0,0,0,0,0,'[]'),(4581,'223.25.103.70','normal','',0,0,0,2,0,'{\"login\":[1632247347,1633618539]}'),(4582,'39.106.105.38','normal','',0,0,0,0,0,'[]'),(4583,'18.237.222.51','normal','',0,0,0,0,0,'[]'),(4584,'5.255.253.189','normal','',0,0,0,0,0,'[]'),(4585,'87.250.224.38','normal','',0,0,0,0,1,'{\"nf\":[1632287158]}'),(4586,'95.108.213.50','normal','',0,0,0,0,0,'[]'),(4587,'34.132.215.118','normal','',0,0,0,2,0,'{\"login\":[1632258043,1634370289]}'),(4588,'212.192.246.95','normal','',0,0,0,0,0,'[]'),(4589,'167.99.13.90','normal','',0,0,0,1,0,'{\"login\":[1634934855]}'),(4590,'102.65.24.232','normal','',0,0,0,0,0,'[]'),(4591,'139.59.72.169','normal','',0,0,0,0,0,'[]'),(4592,'46.101.208.60','normal','',0,0,0,9,0,'{\"login\":[1632271888,1633047694,1633148427,1634992398,1637659477,1638517547,1640420540,1640449059,1641032647]}'),(4593,'146.148.61.110','normal','',0,0,0,1,0,'{\"login\":[1632272826]}'),(4594,'157.245.133.133','normal','',0,0,0,1,0,'{\"login\":[1632272847]}'),(4595,'49.232.69.163','normal','',0,0,0,0,0,'[]'),(4596,'143.198.69.89','normal','',0,0,0,1,0,'{\"login\":[1635846190]}'),(4597,'185.231.59.153','normal','',0,0,0,1,0,'{\"login\":[1632280302]}'),(4598,'45.153.160.2','normal','',0,0,0,0,0,'[]'),(4599,'192.99.6.226','normal','',0,0,0,0,0,'[]'),(4600,'128.199.242.105','normal','',0,0,0,12,0,'{\"login\":[1632293439,1634843416,1637074275,1637109366,1637987529,1638980401,1639345454,1640103889,1640809445,1641103533,1643050113,1643574749]}'),(4601,'34.86.35.5','normal','',0,0,0,0,0,'[]'),(4602,'142.93.4.255','normal','',0,0,0,1,0,'{\"login\":[1632298561]}'),(4603,'195.133.40.133','normal','',0,0,0,0,0,'[]'),(4604,'209.250.239.96','normal','',0,0,0,1,0,'{\"login\":[1632310926]}'),(4605,'34.129.4.97','normal','',0,0,0,0,0,'[]'),(4606,'186.234.80.234','normal','',0,0,0,0,0,'[]'),(4607,'41.13.254.127','normal','',0,0,0,0,0,'[]'),(4608,'116.203.52.127','normal','',0,0,0,2,0,'{\"login\":[1632316405,1633048683]}'),(4609,'65.21.60.244','normal','',0,0,0,2,0,'{\"login\":[1632324489,1632716335]}'),(4610,'52.23.37.1','normal','',0,0,0,0,0,'[]'),(4611,'66.249.64.127','normal','',0,0,0,0,0,'[]'),(4612,'172.105.149.55','normal','',0,0,0,1,0,'{\"login\":[1632340262]}'),(4613,'151.106.124.138','normal','',0,0,0,0,0,'[]'),(4614,'34.222.116.26','normal','',0,0,0,0,0,'[]'),(4615,'34.221.165.141','normal','',0,0,0,0,0,'[]'),(4616,'54.188.191.185','normal','',0,0,0,0,0,'[]'),(4617,'52.38.73.228','normal','',0,0,0,0,0,'[]'),(4618,'159.65.242.215','normal','',0,0,0,0,0,'[]'),(4619,'34.72.203.35','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1632358181,0,1632357881,0,20,'{\"nf\":[1632357857,1632357858,1632357859,1632357860,1632357862,1632357863,1632357864,1632357865,1632357867,1632357869,1632357870,1632357871,1632357872,1632357874,1632357875,1632357876,1632357877,1632357879,1632357880,1632357881]}'),(4620,'103.57.222.220','normal','',0,0,0,0,3,'{\"nf\":[1632363033,1632363036,1632384808]}'),(4621,'114.119.155.153','normal','',0,0,0,0,0,'[]'),(4622,'8.210.64.70','normal','',0,0,0,0,14,'{\"nf\":[1632365508,1632365509,1636906799,1636906799,1636906812,1638936236,1638936245,1639201625,1639201627,1639201636,1640032699,1644103852,1644103852,1645679391]}'),(4623,'101.99.69.110','normal','',0,0,0,0,1,'{\"nf\":[1632367088]}'),(4624,'128.65.195.247','normal','',0,0,0,0,1,'{\"nf\":[1632376300]}'),(4625,'209.127.17.234','normal','',0,0,0,0,0,'[]'),(4626,'17.121.112.56','normal','',0,0,0,0,0,'[]'),(4627,'107.189.3.176','normal','',0,0,0,0,1,'{\"nf\":[1632379125]}'),(4628,'197.242.145.194','normal','',0,0,0,0,3,'{\"nf\":[1632379127,1632379130,1632422252]}'),(4629,'42.83.147.36','normal','',0,0,0,0,0,'[]'),(4630,'104.161.66.10','normal','',0,0,0,0,1,'{\"nf\":[1632381910]}'),(4631,'197.234.132.1','normal','',0,0,0,0,7,'{\"nf\":[1632385031,1632385039,1632727466,1632727475,1638355293,1638355298,1639631857]}'),(4632,'185.32.188.146','normal','',0,0,0,0,2,'{\"nf\":[1632385554,1634453783]}'),(4633,'37.157.197.121','normal','',0,0,0,0,3,'{\"nf\":[1632387204,1632771987,1632771988]}'),(4634,'150.95.108.246','normal','',0,0,0,0,0,'[]'),(4635,'112.213.106.113','normal','',0,0,0,0,2,'{\"nf\":[1632394360,1632394363]}'),(4636,'81.19.211.8','normal','',0,0,0,0,1,'{\"nf\":[1632395340]}'),(4637,'162.214.67.4','normal','',0,0,0,0,1,'{\"nf\":[1632398526]}'),(4638,'85.128.143.64','normal','',0,0,0,0,1,'{\"nf\":[1632398705]}'),(4639,'77.244.243.17','normal','',0,0,0,0,1,'{\"nf\":[1632400812]}'),(4640,'64.246.165.160','normal','',0,0,0,0,0,'[]'),(4641,'78.110.50.106','normal','',0,0,0,0,2,'{\"nf\":[1632414640,1632414658]}'),(4642,'81.19.214.5','normal','',0,0,0,0,0,'[]'),(4643,'51.222.253.18','normal','',0,0,0,0,0,'[]'),(4644,'54.36.149.89','normal','',0,0,0,0,0,'[]'),(4645,'54.36.149.61','normal','',0,0,0,0,0,'[]'),(4646,'54.36.148.144','normal','',0,0,0,0,0,'[]'),(4647,'54.36.148.108','normal','',0,0,0,0,0,'[]'),(4648,'207.46.13.104','normal','',0,0,0,0,0,'[]'),(4649,'138.219.74.22','normal','',0,0,0,0,0,'[]'),(4650,'194.163.128.235','normal','',0,0,0,0,2,'{\"nf\":[1632425029,1632542041]}'),(4651,'185.81.157.200','normal','',0,0,0,0,2,'{\"nf\":[1632425743,1633155090]}'),(4652,'54.36.149.36','normal','',0,0,0,0,1,'{\"nf\":[1632426436]}'),(4653,'18.237.197.169','normal','',0,0,0,0,0,'[]'),(4654,'114.119.159.75','normal','',0,0,0,0,0,'[]'),(4655,'34.219.103.60','normal','',0,0,0,0,0,'[]'),(4656,'66.249.66.199','normal','',0,0,0,0,0,'[]'),(4657,'185.254.31.122','normal','',0,0,0,0,1,'{\"nf\":[1632453871]}'),(4658,'185.114.245.109','normal','',0,0,0,0,1,'{\"nf\":[1632458391]}'),(4659,'103.120.177.74','normal','',0,0,0,0,0,'[]'),(4660,'42.236.10.69','normal','',0,0,0,0,0,'[]'),(4661,'17.121.112.253','normal','',0,0,0,0,0,'[]'),(4662,'196.223.229.163','normal','',0,0,0,0,0,'[]'),(4663,'115.126.6.208','normal','',0,0,0,0,1,'{\"nf\":[1632481757]}'),(4664,'65.21.96.99','normal','',0,0,0,0,2,'{\"nf\":[1632481766,1633544356]}'),(4665,'34.92.58.160','normal','',0,0,0,24,0,'{\"login\":[1632482145,1633032020,1633633778,1634217430,1637202909,1638190086,1638239142,1638812510,1639253554,1639998021,1641099097,1641498763,1642000618,1642142278,1642497126,1642689385,1643494946,1643764900,1644300807,1644511480,1644653423,1644710249,1645227061,1645450397]}'),(4666,'66.249.66.26','normal','',0,0,0,0,0,'[]'),(4667,'66.249.66.197','normal','',0,0,0,0,0,'[]'),(4668,'66.249.66.24','normal','',0,0,0,0,0,'[]'),(4669,'66.249.66.194','normal','',0,0,0,0,0,'[]'),(4670,'47.112.139.27','normal','',0,0,0,0,0,'[]'),(4671,'94.142.244.16','normal','',0,0,0,0,0,'[]'),(4672,'81.169.144.135','normal','',0,0,0,0,5,'{\"nf\":[1632490191,1641081177,1642184219,1642632699,1643188567]}'),(4673,'216.245.215.122','normal','',0,0,0,3,0,'{\"login\":[1632595627,1634012317,1640428076]}'),(4674,'41.204.160.14','normal','',0,0,0,0,2,'{\"nf\":[1632496049,1648978173]}'),(4675,'212.112.135.158','normal','',0,0,0,2,0,'{\"login\":[1632496222,1636167137]}'),(4676,'31.186.175.106','normal','',0,0,0,0,0,'[]'),(4677,'62.151.182.132','normal','',0,0,0,0,1,'{\"nf\":[1632498976]}'),(4678,'41.114.153.10','normal','',0,0,0,0,0,'[]'),(4679,'114.119.138.188','normal','',0,0,0,0,0,'[]'),(4680,'185.49.20.77','normal','',0,0,0,16,0,'{\"login\":[1632501993,1633313562,1635862862,1642461872,1642520000,1642556261,1643037989,1643106711,1643628159,1644098659,1644329544,1644571617,1644654365,1645044656,1645085306,1662262803]}'),(4681,'51.178.146.199','normal','',0,0,0,6,23,'{\"nf\":[1632506704,1632542670,1632729202,1634532112,1635391441,1635515827,1635922008,1635922016,1637409009,1637409011,1637582200,1637787450,1637818336,1638284880,1638420859,1638420864,1638421805,1638730549,1638975369,1638975371,1639715209,1639744391,1639928529],\"login\":[1638930703,1652243211,1661772076,1661783608,1661796398,1661813075]}'),(4682,'186.202.161.46','normal','',0,0,0,0,1,'{\"nf\":[1632507776]}'),(4683,'114.119.143.1','normal','',0,0,0,0,0,'[]'),(4684,'54.190.180.194','normal','',0,0,0,0,0,'[]'),(4685,'34.221.193.144','normal','',0,0,0,0,0,'[]'),(4686,'34.220.97.119','normal','',0,0,0,0,0,'[]'),(4687,'18.237.150.89','normal','',0,0,0,0,0,'[]'),(4688,'66.249.66.5','normal','',0,0,0,0,0,'[]'),(4689,'13.66.158.22','normal','',0,0,0,0,0,'[]'),(4690,'37.143.10.83','normal','',0,0,0,0,5,'{\"nf\":[1632535432,1632826259,1641272478,1641281727,1641570202]}'),(4691,'47.93.188.130','normal','',0,0,0,0,3,'{\"nf\":[1632536180,1632536218,1632536232]}'),(4692,'136.144.190.69','normal','',0,0,0,5,0,'{\"login\":[1632538675,1632668340,1632673459,1634443180,1635633563]}'),(4693,'91.227.16.12','normal','',0,0,0,0,0,'[]'),(4694,'85.128.143.104','normal','',0,0,0,0,1,'{\"nf\":[1632551303]}'),(4695,'106.52.234.78','normal','',0,0,0,0,0,'[]'),(4696,'185.252.31.60','normal','',0,0,0,0,0,'[]'),(4697,'144.34.166.150','normal','',0,0,0,0,5,'{\"nf\":[1632555587,1632782457,1633908440,1633969918,1634122172]}'),(4698,'178.128.82.148','normal','',0,0,0,2,0,'{\"login\":[1633991247,1635843499]}'),(4699,'40.77.167.41','normal','',0,0,0,0,0,'[]'),(4700,'103.8.25.70','normal','',0,0,0,0,0,'[]'),(4701,'157.55.39.18','normal','',0,0,0,0,0,'[]'),(4702,'42.236.10.82','normal','',0,0,0,0,0,'[]'),(4703,'192.185.82.160','normal','',0,0,0,0,0,'[]'),(4704,'177.55.116.245','normal','',0,0,0,1,0,'{\"login\":[1632574808]}'),(4705,'185.100.87.202','normal','',0,0,0,0,0,'[]'),(4706,'190.45.171.165','normal','',0,0,0,2,0,'{\"login\":[1632579546,1633210857]}'),(4707,'157.90.177.226','normal','',0,0,0,0,14,'{\"nf\":[1632657384,1633778504,1636263942,1640832519,1642944163,1643984795,1645387466,1647842755,1649099080,1651543560,1654491733,1655540051,1657132010,1658910434]}'),(4708,'186.234.80.27','normal','',0,0,0,1,0,'{\"login\":[1632588808]}'),(4709,'151.106.27.34','normal','',0,0,0,0,6,'{\"nf\":[1632593278,1632593279,1632593280,1632593281,1632593282,1632593282]}'),(4710,'47.93.49.227','normal','',0,0,0,0,3,'{\"nf\":[1632594910,1634112572,1634112577]}'),(4711,'104.161.94.211','normal','',0,0,0,0,0,'[]'),(4712,'192.29.97.49','normal','',0,0,0,0,0,'[]'),(4713,'54.202.247.111','normal','',0,0,0,0,0,'[]'),(4714,'66.249.66.221','normal','',0,0,0,0,0,'[]'),(4715,'66.249.66.192','normal','',0,0,0,0,0,'[]'),(4716,'198.199.71.165','normal','',0,0,0,0,0,'[]'),(4717,'66.249.66.86','normal','',0,0,0,0,0,'[]'),(4718,'101.200.35.70','normal','',0,0,0,0,2,'{\"nf\":[1632615482,1632615484]}'),(4719,'207.244.227.1','normal','',0,0,0,0,0,'[]'),(4720,'114.119.135.223','normal','',0,0,0,0,0,'[]'),(4721,'139.59.107.176','normal','',0,0,0,1,0,'{\"login\":[1634051058]}'),(4722,'34.205.8.16','normal','',0,0,0,0,0,'[]'),(4723,'5.9.238.116','normal','',0,0,0,6,0,'{\"login\":[1632627227,1639668325,1648687526,1648732726,1649991584,1659808181]}'),(4724,'54.148.53.22','normal','',0,0,0,0,0,'[]'),(4725,'3.109.66.119','normal','',0,0,0,0,0,'[]'),(4726,'94.101.80.228','normal','',0,0,0,0,1,'{\"nf\":[1632632047]}'),(4727,'92.205.2.176','normal','',0,0,0,0,1,'{\"nf\":[1632632051]}'),(4728,'114.119.132.65','normal','',0,0,0,0,0,'[]'),(4729,'89.233.107.76','normal','',0,0,0,0,0,'[]'),(4730,'107.189.28.102','normal','',0,0,0,0,1,'{\"nf\":[1645820964]}'),(4731,'124.126.78.176','normal','',0,0,0,0,0,'[]'),(4732,'35.194.168.96','normal','',0,0,0,0,0,'[]'),(4733,'148.66.146.33','normal','',0,0,0,0,3,'{\"nf\":[1632636404,1633759452,1636882416]}'),(4734,'216.158.224.16','normal','',0,0,0,0,0,'[]'),(4735,'159.253.43.8','normal','',0,0,0,0,0,'[]'),(4736,'54.39.16.139','normal','',0,0,0,0,0,'[]'),(4737,'45.119.83.173','normal','',0,0,0,0,0,'[]'),(4738,'167.99.204.226','normal','',0,0,0,0,0,'[]'),(4739,'114.119.152.23','normal','',0,0,0,0,0,'[]'),(4740,'194.61.3.128','normal','',0,0,0,0,0,'[]'),(4741,'108.167.133.23','normal','',0,0,0,0,1,'{\"nf\":[1632653485]}'),(4742,'185.163.46.131','normal','',0,0,0,0,0,'[]'),(4743,'103.13.112.90','normal','',0,0,0,0,0,'[]'),(4744,'213.136.94.188','normal','',0,0,0,0,0,'[]'),(4745,'40.124.105.177','normal','',0,0,0,0,1,'{\"nf\":[1632678749]}'),(4746,'142.93.38.1','normal','',0,0,0,5,0,'{\"login\":[1634018415,1635439392,1635926796,1636722933,1637063099]}'),(4747,'45.140.164.3','normal','',0,0,0,0,0,'[]'),(4748,'34.219.124.151','normal','',0,0,0,0,0,'[]'),(4749,'77.68.123.81','normal','',0,0,0,0,0,'[]'),(4750,'178.63.192.154','normal','',0,0,0,0,0,'[]'),(4751,'209.222.96.146','normal','',0,0,0,0,0,'[]'),(4752,'185.31.175.247','normal','',0,0,0,0,0,'[]'),(4753,'50.87.188.202','normal','',0,0,0,0,0,'[]'),(4754,'198.204.245.85','normal','',0,0,0,0,0,'[]'),(4755,'83.150.213.37','normal','',0,0,0,1,0,'{\"login\":[1632718161]}'),(4756,'157.55.39.48','normal','',0,0,0,0,0,'[]'),(4757,'136.243.154.120','normal','',0,0,0,0,1,'{\"nf\":[1632723836]}'),(4758,'88.99.152.149','normal','',0,0,0,0,0,'[]'),(4759,'42.201.240.87','normal','',0,0,0,0,0,'[]'),(4760,'114.119.131.112','normal','',0,0,0,0,0,'[]'),(4761,'193.93.192.15','normal','',0,0,0,0,0,'[]'),(4762,'85.128.143.86','normal','',0,0,0,2,1,'{\"nf\":[1632731467],\"login\":[1661778937,1661795746]}'),(4763,'186.202.153.56','normal','',0,0,0,0,2,'{\"nf\":[1632733995,1633629317]}'),(4764,'138.199.58.66','normal','',0,0,0,0,0,'[]'),(4765,'185.220.101.2','normal','',0,0,0,0,0,'[]'),(4766,'51.38.127.41','normal','',0,0,0,0,0,'[]'),(4767,'176.9.240.82','normal','',0,0,0,0,0,'[]'),(4768,'199.188.201.202','normal','',0,0,0,0,1,'{\"nf\":[1632769673]}'),(4769,'54.245.12.86','normal','',0,0,0,0,0,'[]'),(4770,'162.33.177.14','normal','',0,0,0,0,0,'[]'),(4771,'202.39.38.247','normal','',0,0,0,0,1,'{\"nf\":[1632790622]}'),(4772,'37.57.218.243','normal','',0,0,0,0,0,'[]'),(4773,'112.213.89.73','normal','',0,0,0,0,1,'{\"nf\":[1632797672]}'),(4774,'81.71.3.114','normal','',0,0,0,0,0,'[]'),(4775,'54.36.148.236','normal','',0,0,0,0,0,'[]'),(4776,'114.119.151.175','normal','',0,0,0,0,0,'[]'),(4777,'178.128.234.242','normal','',0,0,0,0,3,'{\"nf\":[1632807044,1632807050,1632807060]}'),(4778,'23.88.96.29','normal','',0,0,0,0,0,'[]'),(4779,'34.96.130.31','normal','',0,0,0,0,0,'[]'),(4780,'207.46.13.87','normal','',0,0,0,0,0,'[]'),(4781,'105.226.30.19','normal','',0,0,0,0,0,'[]'),(4782,'66.249.66.209','normal','',0,0,0,0,0,'[]'),(4783,'79.137.34.146','normal','',0,0,0,0,1,'{\"nf\":[1632842714]}'),(4784,'110.249.201.8','normal','',0,0,0,0,0,'[]'),(4785,'103.253.25.169','normal','',0,0,0,0,0,'[]'),(4786,'95.179.129.165','normal','',0,0,0,0,0,'[]'),(4787,'52.12.164.140','normal','',0,0,0,0,0,'[]'),(4788,'5.255.231.250','normal','',0,0,0,0,0,'[]'),(4789,'148.72.77.39','normal','',0,0,0,0,0,'[]'),(4790,'157.55.39.164','normal','',0,0,0,0,0,'[]'),(4791,'45.79.30.86','normal','',0,0,0,0,0,'[]'),(4792,'207.46.13.89','normal','',0,0,0,0,0,'[]'),(4793,'157.90.130.198','normal','',0,0,0,1,0,'{\"login\":[1632864718]}'),(4794,'176.104.107.66','normal','',0,0,0,1,0,'{\"login\":[1632865459]}'),(4795,'105.250.56.34','normal','',0,0,0,0,0,'[]'),(4796,'42.83.147.34','normal','',0,0,0,0,0,'[]'),(4797,'35.209.225.159','normal','',0,0,0,1,0,'{\"login\":[1632870409]}'),(4798,'159.65.84.120','normal','',0,0,0,7,0,'{\"login\":[1632872260,1633236809,1633945870,1634293240,1634998012,1635759666,1635792248]}'),(4799,'103.24.190.139','normal','',0,0,0,0,0,'[]'),(4800,'202.175.114.26','normal','',0,0,0,0,0,'[]'),(4801,'85.128.143.103','normal','',0,0,0,1,2,'{\"nf\":[1632883838,1632883840],\"login\":[1633805144]}'),(4802,'178.210.82.222','normal','',0,0,0,0,0,'[]'),(4803,'52.186.35.192','normal','',0,0,0,7,0,'{\"login\":[1632887122,1632929970,1633577687,1633692698,1633912767,1634075032,1635490020]}'),(4804,'66.249.66.213','normal','',0,0,0,0,0,'[]'),(4805,'114.5.32.154','normal','',0,0,0,1,0,'{\"login\":[1632888195]}'),(4806,'54.201.53.38','normal','',0,0,0,0,0,'[]'),(4807,'107.189.2.222','normal','',0,0,0,0,1,'{\"nf\":[1632892929]}'),(4808,'185.82.126.222','normal','',0,0,0,0,1,'{\"nf\":[1632892933]}'),(4809,'91.219.236.197','normal','',0,0,0,0,0,'[]'),(4810,'104.149.150.10','normal','',0,0,0,0,1,'{\"nf\":[1632892938]}'),(4811,'161.97.136.234','normal','',0,0,0,0,0,'[]'),(4812,'59.110.154.90','normal','',0,0,0,0,1,'{\"nf\":[1632895149]}'),(4813,'110.52.217.58','normal','',0,0,0,0,0,'[]'),(4814,'42.236.10.93','normal','',0,0,0,0,0,'[]'),(4815,'193.169.240.87','normal','',0,0,0,0,2,'{\"nf\":[1632901320,1632901325]}'),(4816,'54.208.12.205','normal','',0,0,0,2,0,'{\"login\":[1632902345,1633217053]}'),(4817,'3.15.252.192','normal','',0,0,0,1,0,'{\"login\":[1632904430]}'),(4818,'42.194.147.66','normal','',0,0,0,0,0,'[]'),(4819,'65.0.151.87','normal','',0,0,0,2,0,'{\"login\":[1632909090,1633318001]}'),(4820,'50.62.176.219','normal','',0,0,0,0,2,'{\"nf\":[1632912437,1652250557]}'),(4821,'67.205.36.137','normal','',0,0,0,10,0,'{\"login\":[1632914619,1633091699,1634457749,1634939721,1635390662,1635784720,1636835001,1636890101,1636991415,1637076466]}'),(4822,'168.119.71.57','normal','',0,0,0,1,0,'{\"login\":[1632918964]}'),(4823,'66.249.66.223','normal','',0,0,0,0,0,'[]'),(4824,'77.240.13.186','normal','',0,0,0,59,0,'{\"login\":[1632921087,1634329058,1634413930,1634507426,1635744569,1636765777,1636843274,1636870337,1637186102,1637994046,1638244287,1638349302,1638830589,1639035654,1639169015,1639407352,1641098193,1641249507,1641818120,1641993671,1649808049,1649846376,1650055775,1650968341,1651028587,1651059820,1651172330,1651262994,1651433743,1651552705,1652000278,1652060452,1652366586,1652452768,1652519301,1652743580,1652757116,1653388799,1653887252,1654971760,1655014948,1655788720,1657050611,1657433390,1657830420,1658300014,1658528389,1659136372,1661350933,1661620298,1661655908,1661721186,1661780294,1662032751,1662189239,1662326802,1662417850,1662879194,1663071221]}'),(4825,'54.148.159.245','normal','',0,0,0,1,0,'{\"login\":[1632921603]}'),(4826,'107.189.13.172','normal','',0,0,0,0,0,'[]'),(4827,'209.126.80.250','normal','',0,0,0,4,0,'{\"login\":[1632925388,1633537321,1640582942,1650308638]}'),(4828,'185.88.177.231','normal','',0,0,0,2,0,'{\"login\":[1632926178,1632937161]}'),(4829,'148.72.207.163','normal','',0,0,0,53,0,'{\"login\":[1632926902,1633193097,1633320997,1633772439,1633794775,1636804289,1637787767,1637817947,1637942580,1638533647,1638605434,1638825213,1639048651,1640630955,1640691393,1640741707,1640762865,1641158169,1641376707,1641483446,1641851339,1641979810,1642513664,1642544736,1642957997,1644199298,1645833075,1646553027,1646556420,1648070249,1649233338,1649526256,1650296442,1650646491,1651547174,1652278701,1652338677,1652365904,1652398492,1654530985,1655042279,1656807784,1657052033,1657268865,1658296388,1658347319,1660179942,1660360857,1661077008,1661223945,1661627213,1662665285,1662679844]}'),(4830,'5.45.74.7','normal','',0,0,0,1,0,'{\"login\":[1632927542]}'),(4831,'223.17.207.201','normal','',0,0,0,2,0,'{\"login\":[1632928145,1633847965]}'),(4832,'148.251.123.155','normal','',0,0,0,2,0,'{\"login\":[1632928774,1634011999]}'),(4833,'194.233.75.244','normal','',0,0,0,1,0,'{\"login\":[1632929962]}'),(4834,'51.38.241.254','normal','',0,0,0,1,0,'{\"login\":[1632930520]}'),(4835,'185.183.84.182','normal','',0,0,0,0,0,'[]'),(4836,'199.16.130.59','normal','',0,0,0,1,0,'{\"login\":[1632933365]}'),(4837,'95.216.13.14','normal','',0,0,0,1,0,'{\"login\":[1632934442]}'),(4838,'162.241.85.207','normal','',0,0,0,0,1,'{\"nf\":[1633475990]}'),(4839,'31.31.198.206','normal','',0,0,0,0,0,'[]'),(4840,'82.165.85.148','normal','',0,0,0,0,1,'{\"nf\":[1635655337]}'),(4841,'114.119.131.234','normal','',0,0,0,0,0,'[]'),(4842,'82.223.55.111','normal','',0,0,0,23,0,'{\"login\":[1632953738,1633246011,1634325466,1634357603,1636120248,1636655368,1636668824,1636760981,1637151653,1637200160,1637403696,1637450453,1638132443,1638198016,1640023352,1640047573,1640284282,1640728905,1640733473,1641022355,1641109736,1641850153,1642032041]}'),(4843,'40.71.123.215','normal','You have been locked out due to too many invalid login attempts.',1632959629,1632959329,0,0,0,'{\"nf\":[],\"login\":[]}'),(4844,'91.227.122.196','normal','',0,0,0,3,0,'{\"login\":[1632967045,1633201992,1633220921]}'),(4845,'51.68.11.195','normal','',0,0,0,0,3,'{\"nf\":[1636149433,1636739432,1647383251]}'),(4846,'91.204.46.133','normal','',0,0,0,12,0,'{\"login\":[1632969601,1656757635,1656765937,1656835094,1657455498,1657479003,1657507625,1657660259,1657695700,1657782379,1657788711,1657799569]}'),(4847,'165.22.44.15','normal','',0,0,0,0,0,'[]'),(4848,'45.79.111.20','normal','',0,0,0,0,2,'{\"nf\":[1633567342,1633567365]}'),(4849,'164.68.110.108','normal','',0,0,0,1,0,'{\"login\":[1640866375]}'),(4850,'91.219.60.108','normal','',0,0,0,11,0,'{\"login\":[1632979289,1635839866,1642586343,1642594723,1642956012,1642992100,1643608938,1643625896,1644174173,1644516857,1645071124]}'),(4851,'83.212.150.41','normal','',0,0,0,4,0,'{\"login\":[1632980788,1633036146,1633153968,1633177123]}'),(4852,'162.214.151.12','normal','',0,0,0,3,0,'{\"login\":[1634941966,1638419256,1638422385]}'),(4853,'185.21.42.77','normal','',0,0,0,0,0,'[]'),(4854,'37.247.100.84','normal','',0,0,0,0,0,'[]'),(4855,'185.141.106.32','normal','',0,0,0,0,0,'[]'),(4856,'64.225.25.39','normal','',0,0,0,0,0,'[]'),(4857,'81.90.180.168','normal','',0,0,0,0,0,'[]'),(4858,'3.141.188.79','normal','',0,0,0,0,0,'[]'),(4859,'146.88.238.202','normal','',0,0,0,0,0,'[]'),(4860,'31.187.85.14','normal','',0,0,0,0,0,'[]'),(4861,'66.42.48.86','normal','',0,0,0,2,0,'{\"login\":[1632985252,1632988788]}'),(4862,'94.102.13.126','normal','',0,0,0,0,0,'[]'),(4863,'69.139.78.190','normal','',0,0,0,0,0,'[]'),(4864,'66.37.225.84','normal','',0,0,0,1,0,'{\"login\":[1634922065]}'),(4865,'173.212.213.8','normal','',0,0,0,0,0,'[]'),(4866,'95.111.198.221','normal','',0,0,0,0,0,'[]'),(4867,'88.99.61.210','normal','',0,0,0,0,0,'[]'),(4868,'217.9.143.94','normal','',0,0,0,59,0,'{\"login\":[1632990394,1633020338,1633738689,1633899280,1634424099,1634502536,1637286676,1637287170,1637646273,1639028309,1639033544,1639148840,1639171901,1639660886,1639810803,1640797566,1641488445,1641791270,1642001373,1642005097,1642145892,1642434583,1642507255,1643299154,1644438237,1645226011,1646438762,1646705242,1646967957,1647048357,1647142851,1647210908,1647393214,1647491882,1647731682,1647900744,1648141260,1648171597,1648195397,1648258811,1649207961,1649208721,1649518663,1649611955,1650399330,1650422270,1650975863,1650986031,1651326792,1651439167,1651715802,1651955377,1652033681,1652601331,1652810288,1652875684,1652937808,1652944015,1653018165]}'),(4869,'13.234.30.227','normal','',0,0,0,0,0,'[]'),(4870,'47.115.88.73','normal','',0,0,0,1,0,'{\"login\":[1633988025]}'),(4871,'35.198.207.132','normal','',0,0,0,1,0,'{\"login\":[1632991793]}'),(4872,'38.83.97.99','normal','',0,0,0,0,0,'[]'),(4873,'148.251.34.250','normal','',0,0,0,1,0,'{\"login\":[1632993358]}'),(4874,'144.202.124.107','normal','',0,0,0,0,0,'[]'),(4875,'103.90.235.154','normal','',0,0,0,0,0,'[]'),(4876,'161.97.82.55','normal','',0,0,0,11,0,'{\"login\":[1632994786,1633088209,1634525242,1637183392,1637410420,1637482044,1637885854,1639856733,1641736089,1647143905,1647197424]}'),(4877,'31.131.22.205','normal','',0,0,0,0,0,'[]'),(4878,'45.127.45.77','normal','',0,0,0,0,0,'[]'),(4879,'45.64.96.194','normal','',0,0,0,2,0,'{\"login\":[1633533187,1634015866]}'),(4880,'5.135.30.53','normal','',0,0,0,0,0,'[]'),(4881,'87.250.224.4','normal','',0,0,0,0,0,'[]'),(4882,'52.62.220.124','normal','',0,0,0,0,0,'[]'),(4883,'41.114.214.226','normal','',0,0,0,0,0,'[]'),(4884,'105.186.117.87','normal','',0,0,0,0,0,'[]'),(4885,'93.104.213.124','normal','',0,0,0,1,0,'{\"login\":[1635862550]}'),(4886,'81.19.211.39','normal','',0,0,0,0,0,'[]'),(4887,'207.210.202.47','normal','',0,0,0,0,0,'[]'),(4888,'95.142.161.63','normal','',0,0,0,0,0,'[]'),(4889,'207.46.13.91','normal','',0,0,0,0,0,'[]'),(4890,'174.139.196.10','normal','',0,0,0,0,0,'[]'),(4891,'190.2.18.70','normal','',0,0,0,0,0,'[]'),(4892,'72.13.62.25','normal','',0,0,0,0,0,'[]'),(4893,'178.18.251.137','normal','',0,0,0,0,0,'[]'),(4894,'108.167.132.58','normal','',0,0,0,0,1,'{\"nf\":[1644058725]}'),(4895,'18.142.87.135','normal','',0,0,0,1,0,'{\"login\":[1633009648]}'),(4896,'107.161.67.179','normal','',0,0,0,0,0,'[]'),(4897,'185.10.74.104','normal','',0,0,0,0,0,'[]'),(4898,'47.103.117.0','normal','',0,0,0,1,0,'{\"login\":[1634946549]}'),(4899,'52.59.211.184','normal','',0,0,0,2,0,'{\"login\":[1633011988,1633938349]}'),(4900,'68.66.204.124','normal','',0,0,0,1,0,'{\"login\":[1633012750]}'),(4901,'185.110.189.86','normal','',0,0,0,1,0,'{\"login\":[1633993158]}'),(4902,'94.177.40.243','normal','',0,0,0,1,0,'{\"login\":[1634007989]}'),(4903,'80.92.90.157','normal','',0,0,0,0,0,'[]'),(4904,'95.108.213.76','normal','',0,0,0,0,0,'[]'),(4905,'5.45.207.133','normal','',0,0,0,0,0,'[]'),(4906,'128.199.103.240','normal','',0,0,0,0,0,'[]'),(4907,'27.112.79.82','normal','',0,0,0,1,0,'{\"login\":[1634945548]}'),(4908,'84.112.89.42','normal','',0,0,0,9,0,'{\"login\":[1633021950,1633164801,1634971612,1637207287,1640468194,1641090678,1642250023,1642369094,1643021381]}'),(4909,'54.36.148.78','normal','',0,0,0,0,0,'[]'),(4910,'3.16.40.210','normal','',0,0,0,0,0,'[]'),(4911,'46.4.64.141','normal','',0,0,0,2,0,'{\"login\":[1633556202,1633844831]}'),(4912,'185.252.29.161','normal','',0,0,0,0,0,'[]'),(4913,'54.36.149.47','normal','',0,0,0,0,0,'[]'),(4914,'162.241.49.69','normal','',0,0,0,0,0,'[]'),(4915,'176.123.0.55','normal','',0,0,0,3,1,'{\"login\":[1633988468,1633995549,1634004390],\"nf\":[1660979369]}'),(4916,'103.145.50.86','normal','',0,0,0,0,0,'[]'),(4917,'93.113.110.240','normal','',0,0,0,2,0,'{\"login\":[1633991752,1640872353]}'),(4918,'94.130.49.74','normal','',0,0,0,0,0,'[]'),(4919,'103.160.144.32','normal','',0,0,0,0,0,'[]'),(4920,'64.225.43.102','normal','',0,0,0,3,0,'{\"login\":[1640233198,1640533308,1650307240]}'),(4921,'198.54.126.62','normal','',0,0,0,2,0,'{\"login\":[1635857930,1635864451]}'),(4922,'114.119.155.10','normal','',0,0,0,0,0,'[]'),(4923,'106.12.77.101','normal','',0,0,0,0,0,'[]'),(4924,'171.13.14.10','normal','',0,0,0,0,0,'[]'),(4925,'185.191.171.43','normal','',0,0,0,0,0,'[]'),(4926,'185.191.171.26','normal','',0,0,0,0,0,'[]'),(4927,'185.191.171.39','normal','',0,0,0,0,0,'[]'),(4928,'54.36.148.29','normal','',0,0,0,0,0,'[]'),(4929,'34.216.140.246','normal','',0,0,0,0,0,'[]'),(4930,'52.13.48.126','normal','',0,0,0,0,0,'[]'),(4931,'34.217.30.108','normal','',0,0,0,0,0,'[]'),(4932,'107.150.60.238','normal','',0,0,0,5,0,'{\"login\":[1633037407,1633059042,1633540607,1634300325,1634732550]}'),(4933,'198.204.245.86','normal','',0,0,0,2,0,'{\"login\":[1633037420,1633037552]}'),(4934,'208.113.160.8','normal','',0,0,0,40,0,'{\"login\":[1633037490,1633231055,1633649108,1633813317,1634049497,1634373181,1634391165,1634405255,1634436259,1634448714,1634979873,1635912273,1636022279,1636680612,1636927081,1648580581,1648699161,1649084919,1649571806,1651041217,1651699386,1652255790,1652368608,1652384534,1652634022,1652776513,1653222563,1653386291,1653583657,1653911664,1654520948,1654786742,1654852083,1654958341,1655591074,1655808865,1656061443,1656727381,1656828093,1656907380]}'),(4935,'62.141.36.142','normal','',0,0,0,1,0,'{\"login\":[1633039838]}'),(4936,'114.119.150.208','normal','',0,0,0,0,0,'[]'),(4937,'51.38.37.96','normal','',0,0,0,0,0,'[]'),(4938,'5.2.184.200','normal','',0,0,0,2,0,'{\"login\":[1633043117,1633074146]}'),(4939,'194.233.72.23','normal','',0,0,0,16,0,'{\"login\":[1633045310,1633859381,1634404376,1635417355,1637784149,1637844972,1638348489,1638376637,1638877349,1640286785,1640444313,1641111876,1641507491,1641776282,1641992328,1642383968]}'),(4940,'45.90.231.106','normal','',0,0,0,0,1,'{\"nf\":[1633045317]}'),(4941,'139.162.151.199','normal','',0,0,0,1,0,'{\"login\":[1633051977]}'),(4942,'185.61.152.68','normal','',0,0,0,0,1,'{\"nf\":[1633052115]}'),(4943,'78.46.98.66','normal','',0,0,0,4,0,'{\"login\":[1633052953,1633765634,1634218523,1635713131]}'),(4944,'212.86.108.48','normal','',0,0,0,2,0,'{\"login\":[1633054107,1633168580]}'),(4945,'172.82.129.242','normal','',0,0,0,6,0,'{\"login\":[1633055049,1633654187,1633885569,1634083525,1634392292,1634539074]}'),(4946,'95.111.246.221','normal','',0,0,0,0,0,'[]'),(4947,'198.204.230.86','normal','',0,0,0,2,0,'{\"login\":[1633057464,1633064136]}'),(4948,'103.152.248.149','normal','',0,0,0,1,0,'{\"login\":[1633550744]}'),(4949,'144.76.102.246','normal','',0,0,0,45,0,'{\"login\":[1633057911,1633078086,1633162761,1633163699,1633289775,1633549085,1633630567,1633803126,1633848296,1633849218,1633853539,1633911059,1634073968,1634950102,1635385564,1635447120,1635812763,1635879431,1635950336,1636793252,1636978370,1637014749,1637110188,1637121204,1637297405,1637663028,1637697363,1637779471,1637843361,1637882198,1637887859,1638189286,1638199205,1639241531,1639402347,1639502479,1639750402,1640371869,1640439427,1640819595,1641097281,1641155330,1641823166,1642152395,1642339697]}'),(4950,'180.211.99.217','normal','',0,0,0,6,0,'{\"login\":[1633058889,1633607773,1633621276,1633648428,1650345949,1653990419]}'),(4951,'85.214.103.22','normal','',0,0,0,2,0,'{\"login\":[1633059909,1633990623]}'),(4952,'34.85.230.96','normal','',0,0,0,0,0,'[]'),(4953,'23.111.171.170','normal','',0,0,0,1,0,'{\"login\":[1633060889]}'),(4954,'68.183.183.175','normal','',0,0,0,1,0,'{\"login\":[1633062018]}'),(4955,'92.53.96.174','normal','',0,0,0,0,0,'[]'),(4956,'52.42.7.30','normal','',0,0,0,0,1,'{\"nf\":[1634681262]}'),(4957,'47.57.146.242','normal','',0,0,0,1,0,'{\"login\":[1633064980]}'),(4958,'175.44.42.200','normal','',0,0,0,0,0,'[]'),(4959,'207.46.13.170','normal','',0,0,0,0,0,'[]'),(4960,'51.222.40.124','normal','',0,0,0,0,1,'{\"nf\":[1660979065]}'),(4961,'148.72.208.227','normal','',0,0,0,0,0,'[]'),(4962,'176.61.146.49','normal','',0,0,0,4,0,'{\"login\":[1633072275,1634414965,1636933174,1636988206]}'),(4963,'185.178.193.206','normal','',0,0,0,0,0,'[]'),(4964,'118.31.229.247','normal','',0,0,0,0,4,'{\"nf\":[1633073501,1633073504,1633454059,1633454064]}'),(4965,'34.200.242.112','normal','',0,0,0,1,0,'{\"login\":[1633075076]}'),(4966,'3.23.174.191','normal','',0,0,0,1,0,'{\"login\":[1633076178]}'),(4967,'193.151.131.43','normal','',0,0,0,1,0,'{\"login\":[1642198018]}'),(4968,'173.212.235.115','normal','',0,0,0,94,0,'{\"login\":[1633077153,1633628250,1633946799,1634008731,1634890728,1635424016,1636900749,1636960914,1637068759,1637266046,1637277758,1637316976,1637424334,1637818681,1637893043,1638147553,1638216596,1638436108,1638454655,1638467184,1638609738,1638867253,1638998906,1639245109,1639667297,1639670334,1639674394,1639794904,1639887825,1639924108,1640278653,1640297517,1640423918,1640512777,1640651551,1640692752,1640874560,1641071123,1641116898,1641130723,1641183728,1641462569,1641758527,1641853716,1642002134,1642305257,1642330738,1642558498,1642850646,1642872998,1643005006,1643095246,1643099189,1643299752,1643499528,1644222071,1644369562,1644501251,1644524033,1645061325,1645078127,1646052088,1646461533,1646517946,1646670357,1646827634,1646856616,1647009436,1647132253,1647298909,1647386942,1647457386,1647479526,1647813620,1647868206,1647947166,1648073645,1648404714,1648734247,1649831282,1650502394,1650615066,1650892568,1651016374,1651243035,1651712421,1651737835,1652253410,1652666709,1652830590,1653329231,1653353239,1653359200,1653449265]}'),(4969,'67.212.236.4','normal','',0,0,0,1,0,'{\"login\":[1633079310]}'),(4970,'5.196.197.68','normal','',0,0,0,0,0,'[]'),(4971,'197.94.95.240','normal','',0,0,0,0,0,'[]'),(4972,'31.134.121.40','normal','',0,0,0,3,0,'{\"login\":[1633080345,1633150170,1634047068]}'),(4973,'185.165.116.22','normal','',0,0,0,2,0,'{\"login\":[1640613389,1642275021]}'),(4974,'162.214.194.71','normal','',0,0,0,0,0,'[]'),(4975,'162.142.125.195','normal','',0,0,0,0,0,'[]'),(4976,'167.94.138.58','normal','',0,0,0,0,0,'[]'),(4977,'167.94.138.58','normal','',0,0,0,0,0,'[]'),(4978,'194.5.157.231','normal','',0,0,0,2,0,'{\"login\":[1633084970,1633291717]}'),(4979,'18.224.72.68','normal','',0,0,0,1,0,'{\"login\":[1633085978]}'),(4980,'103.170.132.10','normal','',0,0,0,2,0,'{\"login\":[1633087184,1633286245]}'),(4981,'66.249.66.211','normal','',0,0,0,0,0,'[]'),(4982,'18.236.255.80','normal','',0,0,0,0,0,'[]'),(4983,'18.166.177.160','normal','',0,0,0,1,0,'{\"login\":[1633090594]}'),(4984,'198.204.245.82','normal','',0,0,0,1,0,'{\"login\":[1633091278]}'),(4985,'70.39.150.82','normal','',0,0,0,0,0,'[]'),(4986,'174.142.90.14','normal','',0,0,0,5,0,'{\"login\":[1633092765,1633793118,1633873545,1633884528,1634230616]}'),(4987,'200.68.105.183','normal','',0,0,0,0,1,'{\"nf\":[1633093012]}'),(4988,'35.180.159.202','normal','',0,0,0,1,0,'{\"login\":[1633095202]}'),(4989,'35.225.63.186','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1633101890,0,1633101590,0,20,'{\"nf\":[1633101565,1633101566,1633101568,1633101569,1633101570,1633101571,1633101573,1633101574,1633101575,1633101576,1633101577,1633101578,1633101580,1633101582,1633101583,1633101584,1633101586,1633101587,1633101588,1633101590]}'),(4990,'167.99.118.196','normal','',0,0,0,0,2,'{\"nf\":[1633104464,1662477127]}'),(4991,'107.189.30.58','normal','',0,0,0,0,0,'[]'),(4992,'41.10.0.29','normal','',0,0,0,0,0,'[]'),(4993,'54.184.168.100','normal','',0,0,0,0,0,'[]'),(4994,'192.143.131.150','normal','',0,0,0,0,1,'{\"nf\":[1633120395]}'),(4995,'66.249.93.32','normal','',0,0,0,0,1,'{\"nf\":[1633120397]}'),(4996,'66.102.9.4','normal','',0,0,0,0,1,'{\"nf\":[1633120398]}'),(4997,'66.102.9.1','normal','',0,0,0,0,1,'{\"nf\":[1633120398]}'),(4998,'51.222.253.16','normal','',0,0,0,0,0,'[]'),(4999,'195.14.0.72','normal','',0,0,0,0,1,'{\"nf\":[1633127316]}'),(5000,'51.15.235.211','normal','',0,0,0,0,0,'[]'),(5001,'114.119.132.74','normal','',0,0,0,0,0,'[]'),(5002,'188.225.40.162','normal','',0,0,0,0,1,'{\"nf\":[1633131020]}'),(5003,'34.86.35.7','normal','',0,0,0,0,0,'[]'),(5004,'172.105.58.94','normal','',0,0,0,4,0,'{\"login\":[1633146499,1633264539,1633554872,1633924751]}'),(5005,'3.138.246.6','normal','',0,0,0,0,0,'[]'),(5006,'198.54.114.7','normal','',0,0,0,0,0,'[]'),(5007,'13.229.91.9','normal','',0,0,0,2,0,'{\"login\":[1633152129,1633244135]}'),(5008,'3.65.240.125','normal','',0,0,0,2,0,'{\"login\":[1633153051,1633766912]}'),(5009,'135.148.95.81','normal','',0,0,0,0,0,'[]'),(5010,'164.68.101.188','normal','',0,0,0,13,0,'{\"login\":[1633156093,1633643066,1634425918,1635617947,1638768858,1638994764,1639146619,1639530375,1640707004,1641221299,1642089367,1642328334,1642554929]}'),(5011,'185.253.218.120','normal','',0,0,0,1,0,'{\"login\":[1633157025]}'),(5012,'192.144.230.179','normal','',0,0,0,0,0,'[]'),(5013,'157.175.68.56','normal','',0,0,0,0,0,'[]'),(5014,'65.21.234.156','normal','',0,0,0,27,0,'{\"login\":[1633160863,1633212999,1633539543,1633551192,1634921533,1635493794,1635654754,1635659150,1635875681,1636735430,1636778803,1636822445,1637170527,1637732298,1639050831,1639230847,1639339591,1639499032,1639554109,1639610110,1639622292,1639627375,1639884326,1640451075,1640578485,1640831867,1640876699]}'),(5015,'149.28.106.13','normal','',0,0,0,1,0,'{\"login\":[1633161808]}'),(5016,'147.135.68.24','normal','',0,0,0,0,0,'[]'),(5017,'5.9.131.155','normal','',0,0,0,2,0,'{\"login\":[1633181611,1633343958]}'),(5018,'162.240.16.237','normal','',0,0,0,4,0,'{\"login\":[1633184267,1634853993,1634857377,1636722011]}'),(5019,'37.187.115.65','normal','',0,0,0,0,1,'{\"nf\":[1633188629]}'),(5020,'5.34.178.190','normal','',0,0,0,0,0,'[]'),(5021,'92.204.54.111','normal','',0,0,0,5,0,'{\"login\":[1633197018,1634011800,1634348040,1634536299,1634831478]}'),(5022,'178.128.215.197','normal','',0,0,0,36,0,'{\"login\":[1633199474,1633646408,1633791476,1633839805,1633864410,1635766879,1636762339,1636827073,1636868090,1636956337,1637789641,1637797267,1638242793,1638288396,1639184944,1639259927,1639401108,1639784190,1639895614,1640418837,1642101622,1642393060,1642516351,1642580735,1644195261,1646084201,1646423629,1646529649,1647015831,1647103978,1647464240,1647638262,1647931149,1649016335,1649021306,1650372770]}'),(5023,'54.226.215.76','normal','',0,0,0,0,0,'[]'),(5024,'54.245.8.152','normal','',0,0,0,0,0,'[]'),(5025,'34.220.108.5','normal','',0,0,0,0,0,'[]'),(5026,'52.37.152.77','normal','',0,0,0,0,0,'[]'),(5027,'54.191.37.204','normal','',0,0,0,0,0,'[]'),(5028,'114.119.130.240','normal','',0,0,0,0,0,'[]'),(5029,'51.104.242.232','normal','',0,0,0,0,1,'{\"nf\":[1633207078]}'),(5030,'103.89.88.64','normal','',0,0,0,0,0,'[]'),(5031,'185.253.97.251','normal','',0,0,0,0,0,'[]'),(5032,'204.12.206.43','normal','',0,0,0,8,0,'{\"login\":[1633236639,1633350194,1633396172,1633468103,1633511420,1633664628,1633666286,1633757368]}'),(5033,'121.43.170.78','normal','',0,0,0,32,0,'{\"login\":[1633238724,1633771030,1633883615,1634003369,1634401790,1634891680,1636712495,1637900722,1638134999,1638467834,1638588754,1639546651,1639732152,1639733195,1639783655,1640649593,1641061919,1641882220,1642077405,1643508851,1644243984,1645095948,1646462305,1647205530,1647397136,1647401509,1649607503,1649711151,1649848364,1649990096,1650354070,1650694207]}'),(5034,'107.150.60.236','normal','',0,0,0,4,0,'{\"login\":[1633247555,1633350249,1633350372,1633365290]}'),(5035,'67.227.188.157','normal','',0,0,0,1,0,'{\"login\":[1633247726]}'),(5036,'103.104.123.42','normal','',0,0,0,7,0,'{\"login\":[1633249524,1633296587,1633902059,1634121685,1635410353,1648128270,1649057932]}'),(5037,'167.86.94.107','normal','',0,0,0,0,0,'[]'),(5038,'162.240.10.70','normal','',0,0,0,7,0,'{\"login\":[1633251526,1633625276,1633865362,1633900244,1633992745,1635702689,1640018340]}'),(5039,'208.109.54.127','normal','',0,0,0,60,0,'{\"login\":[1633261710,1633951994,1638174583,1638501238,1638501921,1639053052,1640904925,1640970705,1641088782,1641992098,1642141558,1642439851,1642888960,1643093614,1643294883,1643472430,1643650931,1644782094,1645255545,1645334328,1646665760,1646945617,1647353230,1647642712,1648057902,1648083981,1648601925,1650181273,1650702221,1651982724,1652260581,1652827848,1652873789,1653030377,1654075302,1654082421,1654177520,1654988900,1655161079,1655799235,1655817150,1656572100,1656860099,1657078127,1657192968,1657426136,1657517131,1657769054,1658505109,1658838841,1660217869,1660350266,1661013819,1661617160,1662003656,1662164450,1662252666,1662283511,1662537072,1662744342]}'),(5040,'20.51.241.144','normal','',0,0,0,0,3,'{\"nf\":[1633264365,1633264376,1633264394]}'),(5041,'195.78.67.32','normal','',0,0,0,0,1,'{\"nf\":[1633271665]}'),(5042,'185.243.55.192','normal','',0,0,0,29,0,'{\"login\":[1633273974,1633736377,1636711716,1636961615,1637192859,1637318380,1637872099,1638427228,1638525195,1639260634,1639314545,1639540323,1639889237,1640153538,1640352995,1640505941,1640600150,1640982823,1641384041,1641411313,1641960258,1642036336,1642318747,1642321935,1642492691,1642643873,1642964804,1643305646,1643514649]}'),(5043,'147.182.242.109','normal','',0,0,0,0,0,'[]'),(5044,'161.35.91.184','normal','',0,0,0,0,0,'[]'),(5045,'45.153.160.130','normal','',0,0,0,0,0,'[]'),(5046,'114.119.153.215','normal','',0,0,0,0,0,'[]'),(5047,'114.119.129.92','normal','',0,0,0,0,0,'[]'),(5048,'80.10.30.167','normal','',0,0,0,1,0,'{\"login\":[1633288422]}'),(5049,'164.163.44.180','normal','',0,0,0,1,0,'{\"login\":[1633288432]}'),(5050,'119.160.58.154','normal','',0,0,0,1,0,'{\"login\":[1633288435]}'),(5051,'184.75.221.203','normal','',0,0,0,1,0,'{\"login\":[1633288437]}'),(5052,'165.16.74.166','normal','',0,0,0,1,0,'{\"login\":[1633288473]}'),(5053,'178.223.10.74','normal','',0,0,0,1,0,'{\"login\":[1633288498]}'),(5054,'157.34.220.105','normal','',0,0,0,1,0,'{\"login\":[1633288528]}'),(5055,'124.123.164.227','normal','',0,0,0,2,0,'{\"login\":[1633288542,1633289403]}'),(5056,'5.195.131.131','normal','',0,0,0,1,0,'{\"login\":[1633288574]}'),(5057,'82.207.239.11','normal','',0,0,0,1,0,'{\"login\":[1633288577]}'),(5058,'76.209.192.248','normal','',0,0,0,1,0,'{\"login\":[1633288579]}'),(5059,'212.230.157.193','normal','',0,0,0,1,0,'{\"login\":[1633288579]}'),(5060,'170.231.112.50','normal','',0,0,0,1,0,'{\"login\":[1633288588]}'),(5061,'45.162.12.167','normal','',0,0,0,1,0,'{\"login\":[1633288590]}'),(5062,'79.166.196.24','normal','',0,0,0,1,0,'{\"login\":[1633288593]}'),(5063,'177.83.41.100','normal','',0,0,0,1,0,'{\"login\":[1633288623]}'),(5064,'87.116.190.224','normal','',0,0,0,1,0,'{\"login\":[1633288634]}'),(5065,'185.18.61.80','normal','',0,0,0,1,0,'{\"login\":[1633288651]}'),(5066,'186.155.15.174','normal','',0,0,0,1,0,'{\"login\":[1633288658]}'),(5067,'41.116.46.61','normal','',0,0,0,1,0,'{\"login\":[1633288673]}'),(5068,'188.120.103.68','normal','',0,0,0,1,0,'{\"login\":[1633288683]}'),(5069,'103.251.50.132','normal','',0,0,0,1,0,'{\"login\":[1633288699]}'),(5070,'81.177.249.174','normal','',0,0,0,1,0,'{\"login\":[1633288701]}'),(5071,'179.197.227.122','normal','',0,0,0,1,0,'{\"login\":[1633288704]}'),(5072,'68.46.127.116','normal','',0,0,0,1,0,'{\"login\":[1633288714]}'),(5073,'190.167.14.59','normal','',0,0,0,1,0,'{\"login\":[1633288718]}'),(5074,'75.184.31.77','normal','',0,0,0,1,0,'{\"login\":[1633288731]}'),(5075,'177.129.230.223','normal','',0,0,0,1,0,'{\"login\":[1633288737]}'),(5076,'217.164.78.243','normal','',0,0,0,1,0,'{\"login\":[1633288761]}'),(5077,'39.46.25.149','normal','',0,0,0,1,0,'{\"login\":[1633288766]}'),(5078,'170.246.206.250','normal','',0,0,0,1,0,'{\"login\":[1633288772]}'),(5079,'186.192.96.139','normal','',0,0,0,1,0,'{\"login\":[1633288772]}'),(5080,'179.154.63.21','normal','',0,0,0,1,0,'{\"login\":[1633288781]}'),(5081,'86.97.165.125','normal','',0,0,0,1,0,'{\"login\":[1633288790]}'),(5082,'102.66.86.159','normal','',0,0,0,1,0,'{\"login\":[1633288791]}'),(5083,'45.251.231.119','normal','',0,0,0,1,0,'{\"login\":[1633288793]}'),(5084,'37.6.46.56','normal','',0,0,0,1,0,'{\"login\":[1633288807]}'),(5085,'177.130.239.243','normal','',0,0,0,1,0,'{\"login\":[1633288807]}'),(5086,'81.0.47.16','normal','',0,0,0,1,0,'{\"login\":[1633288819]}'),(5087,'205.164.159.158','normal','',0,0,0,1,0,'{\"login\":[1633288827]}'),(5088,'81.242.128.116','normal','',0,0,0,1,0,'{\"login\":[1633288829]}'),(5089,'109.49.51.179','normal','',0,0,0,1,0,'{\"login\":[1633288833]}'),(5090,'46.33.216.177','normal','',0,0,0,1,0,'{\"login\":[1633288834]}'),(5091,'188.47.123.188','normal','',0,0,0,1,0,'{\"login\":[1633288836]}'),(5092,'168.149.47.173','normal','',0,0,0,1,0,'{\"login\":[1633288837]}'),(5093,'185.26.174.19','normal','',0,0,0,1,0,'{\"login\":[1633288867]}'),(5094,'45.221.13.0','normal','',0,0,0,1,0,'{\"login\":[1633288874]}'),(5095,'103.154.65.229','normal','',0,0,0,1,0,'{\"login\":[1633288875]}'),(5096,'82.33.116.163','normal','',0,0,0,1,0,'{\"login\":[1633288881]}'),(5097,'87.102.45.114','normal','',0,0,0,1,0,'{\"login\":[1633288886]}'),(5098,'150.242.173.190','normal','',0,0,0,1,0,'{\"login\":[1633288898]}'),(5099,'41.231.242.82','normal','',0,0,0,1,0,'{\"login\":[1633288909]}'),(5100,'105.213.68.30','normal','',0,0,0,1,0,'{\"login\":[1633288915]}'),(5101,'178.149.219.122','normal','',0,0,0,1,0,'{\"login\":[1633288921]}'),(5102,'87.116.179.15','normal','',0,0,0,1,0,'{\"login\":[1633288926]}'),(5103,'200.126.81.168','normal','',0,0,0,1,0,'{\"login\":[1633288928]}'),(5104,'186.151.243.60','normal','',0,0,0,1,0,'{\"login\":[1633288947]}'),(5105,'201.40.203.26','normal','',0,0,0,1,0,'{\"login\":[1633288959]}'),(5106,'86.98.155.210','normal','',0,0,0,1,0,'{\"login\":[1633288959]}'),(5107,'124.83.41.165','normal','',0,0,0,1,0,'{\"login\":[1633288964]}'),(5108,'179.156.253.191','normal','',0,0,0,1,0,'{\"login\":[1633289003]}'),(5109,'213.218.204.46','normal','',0,0,0,1,0,'{\"login\":[1633288977]}'),(5110,'50.70.242.15','normal','',0,0,0,1,0,'{\"login\":[1633288994]}'),(5111,'186.188.208.169','normal','',0,0,0,1,0,'{\"login\":[1633289019]}'),(5112,'190.194.124.245','normal','',0,0,0,1,0,'{\"login\":[1633289022]}'),(5113,'180.194.45.71','normal','',0,0,0,2,0,'{\"login\":[1633289025,1633289043]}'),(5114,'46.36.189.149','normal','',0,0,0,1,0,'{\"login\":[1633289037]}'),(5115,'188.70.45.6','normal','',0,0,0,1,0,'{\"login\":[1633289038]}'),(5116,'77.125.128.92','normal','',0,0,0,1,0,'{\"login\":[1633289038]}'),(5117,'95.76.123.185','normal','',0,0,0,1,0,'{\"login\":[1633289051]}'),(5118,'132.255.243.234','normal','',0,0,0,1,0,'{\"login\":[1633289058]}'),(5119,'178.221.33.254','normal','',0,0,0,1,0,'{\"login\":[1633289058]}'),(5120,'118.101.105.3','normal','',0,0,0,1,0,'{\"login\":[1633289059]}'),(5121,'177.130.255.59','normal','',0,0,0,1,0,'{\"login\":[1633289061]}'),(5122,'45.249.48.136','normal','',0,0,0,1,0,'{\"login\":[1633289066]}'),(5123,'73.38.207.58','normal','',0,0,0,1,0,'{\"login\":[1633289070]}'),(5124,'109.175.101.24','normal','',0,0,0,1,0,'{\"login\":[1633289088]}'),(5125,'104.249.202.177','normal','',0,0,0,1,0,'{\"login\":[1633289089]}'),(5126,'170.0.175.108','normal','',0,0,0,1,0,'{\"login\":[1633289095]}'),(5127,'187.115.234.186','normal','',0,0,0,1,0,'{\"login\":[1633289095]}'),(5128,'186.120.54.139','normal','',0,0,0,1,0,'{\"login\":[1633289098]}'),(5129,'86.126.141.129','normal','',0,0,0,1,0,'{\"login\":[1633289102]}'),(5130,'182.52.160.55','normal','',0,0,0,1,0,'{\"login\":[1633289105]}'),(5131,'112.134.170.6','normal','',0,0,0,1,0,'{\"login\":[1633289107]}'),(5132,'157.49.67.118','normal','',0,0,0,1,0,'{\"login\":[1633289115]}'),(5133,'175.141.96.6','normal','',0,0,0,1,0,'{\"login\":[1633289117]}'),(5134,'77.49.235.246','normal','',0,0,0,1,0,'{\"login\":[1633289118]}'),(5135,'196.218.209.112','normal','',0,0,0,1,0,'{\"login\":[1633289140]}'),(5136,'37.15.132.42','normal','',0,0,0,1,0,'{\"login\":[1633289158]}'),(5137,'41.10.211.82','normal','',0,0,0,1,0,'{\"login\":[1633289167]}'),(5138,'106.212.245.38','normal','',0,0,0,1,0,'{\"login\":[1633289167]}'),(5139,'189.6.15.76','normal','',0,0,0,1,0,'{\"login\":[1633289177]}'),(5140,'49.144.38.164','normal','',0,0,0,1,0,'{\"login\":[1633289185]}'),(5141,'103.212.20.243','normal','',0,0,0,2,0,'{\"login\":[1633289187,1633295711]}'),(5142,'157.46.131.192','normal','',0,0,0,1,0,'{\"login\":[1633289188]}'),(5143,'186.109.255.187','normal','',0,0,0,1,0,'{\"login\":[1633289193]}'),(5144,'105.196.1.111','normal','',0,0,0,1,0,'{\"login\":[1633289196]}'),(5145,'197.56.93.12','normal','',0,0,0,0,0,'[]'),(5146,'46.201.227.33','normal','',0,0,0,1,0,'{\"login\":[1633289203]}'),(5147,'103.212.20.91','normal','',0,0,0,1,0,'{\"login\":[1633289214]}'),(5148,'187.109.130.87','normal','',0,0,0,1,0,'{\"login\":[1633289225]}'),(5149,'112.134.184.137','normal','',0,0,0,1,0,'{\"login\":[1633289228]}'),(5150,'197.56.51.69','normal','',0,0,0,1,0,'{\"login\":[1633289228]}'),(5151,'41.216.202.103','normal','',0,0,0,1,0,'{\"login\":[1633289232]}'),(5152,'83.110.219.134','normal','',0,0,0,1,0,'{\"login\":[1633289237]}'),(5153,'148.101.45.102','normal','',0,0,0,1,0,'{\"login\":[1633289242]}'),(5154,'107.171.225.230','normal','',0,0,0,1,0,'{\"login\":[1633289243]}'),(5155,'88.162.235.120','normal','',0,0,0,1,0,'{\"login\":[1633289248]}'),(5156,'201.29.175.115','normal','',0,0,0,1,0,'{\"login\":[1633289250]}'),(5157,'164.163.65.240','normal','',0,0,0,1,0,'{\"login\":[1633289251]}'),(5158,'181.162.55.196','normal','',0,0,0,1,0,'{\"login\":[1633289270]}'),(5159,'193.221.196.223','normal','',0,0,0,1,0,'{\"login\":[1633289278]}'),(5160,'105.185.158.151','normal','',0,0,0,1,0,'{\"login\":[1633289287]}'),(5161,'51.89.238.158','normal','',0,0,0,1,0,'{\"login\":[1633289301]}'),(5162,'86.127.162.56','normal','',0,0,0,1,0,'{\"login\":[1633289304]}'),(5163,'179.93.64.218','normal','',0,0,0,1,0,'{\"login\":[1633289316]}'),(5164,'77.69.175.182','normal','',0,0,0,1,0,'{\"login\":[1633289318]}'),(5165,'45.172.83.3','normal','',0,0,0,1,0,'{\"login\":[1633289326]}'),(5166,'2.50.31.67','normal','',0,0,0,1,0,'{\"login\":[1633289328]}'),(5167,'187.18.208.34','normal','',0,0,0,1,0,'{\"login\":[1633289336]}'),(5168,'197.47.200.197','normal','',0,0,0,1,0,'{\"login\":[1633289337]}'),(5169,'85.135.0.138','normal','',0,0,0,1,0,'{\"login\":[1633289340]}'),(5170,'123.201.176.109','normal','',0,0,0,1,0,'{\"login\":[1633289347]}'),(5171,'111.88.59.136','normal','',0,0,0,1,0,'{\"login\":[1633289353]}'),(5172,'102.118.211.102','normal','',0,0,0,1,0,'{\"login\":[1633289364]}'),(5173,'78.197.88.38','normal','',0,0,0,1,0,'{\"login\":[1633289363]}'),(5174,'186.71.109.27','normal','',0,0,0,1,0,'{\"login\":[1633289364]}'),(5175,'49.206.43.11','normal','',0,0,0,2,0,'{\"login\":[1633289365,1633289892]}'),(5176,'186.26.118.193','normal','',0,0,0,1,0,'{\"login\":[1633289370]}'),(5177,'177.37.169.240','normal','',0,0,0,1,0,'{\"login\":[1633289377]}'),(5178,'173.61.100.182','normal','',0,0,0,1,0,'{\"login\":[1633289395]}'),(5179,'73.200.238.32','normal','',0,0,0,1,0,'{\"login\":[1633289400]}'),(5180,'47.54.211.249','normal','',0,0,0,1,0,'{\"login\":[1633289399]}'),(5181,'193.96.224.70','normal','',0,0,0,1,0,'{\"login\":[1633289408]}'),(5182,'179.106.178.193','normal','',0,0,0,1,0,'{\"login\":[1633289417]}'),(5183,'151.40.64.2','normal','',0,0,0,1,0,'{\"login\":[1633289414]}'),(5184,'92.15.22.234','normal','',0,0,0,1,0,'{\"login\":[1633289426]}'),(5185,'82.222.239.47','normal','',0,0,0,1,0,'{\"login\":[1633289427]}'),(5186,'95.219.70.108','normal','',0,0,0,1,0,'{\"login\":[1633289428]}'),(5187,'45.234.195.124','normal','',0,0,0,1,0,'{\"login\":[1633289436]}'),(5188,'85.240.226.185','normal','',0,0,0,1,0,'{\"login\":[1633289445]}'),(5189,'190.106.221.97','normal','',0,0,0,1,0,'{\"login\":[1633289445]}'),(5190,'78.191.36.58','normal','',0,0,0,1,0,'{\"login\":[1633289455]}'),(5191,'197.2.127.33','normal','',0,0,0,1,0,'{\"login\":[1633289457]}'),(5192,'179.191.49.7','normal','',0,0,0,1,0,'{\"login\":[1633289467]}'),(5193,'177.37.164.36','normal','',0,0,0,1,0,'{\"login\":[1633289466]}'),(5194,'77.29.4.139','normal','',0,0,0,1,0,'{\"login\":[1633289469]}'),(5195,'188.27.146.92','normal','',0,0,0,1,0,'{\"login\":[1633289496]}'),(5196,'193.226.6.228','normal','',0,0,0,1,0,'{\"login\":[1633289513]}'),(5197,'68.149.145.149','normal','',0,0,0,1,0,'{\"login\":[1633289526]}'),(5198,'83.177.189.64','normal','',0,0,0,1,0,'{\"login\":[1633289535]}'),(5199,'119.160.168.38','normal','',0,0,0,1,0,'{\"login\":[1633289540]}'),(5200,'181.192.86.167','normal','',0,0,0,1,0,'{\"login\":[1633289541]}'),(5201,'69.70.76.86','normal','',0,0,0,1,0,'{\"login\":[1633289549]}'),(5202,'189.6.29.120','normal','',0,0,0,1,0,'{\"login\":[1633289550]}'),(5203,'188.99.109.249','normal','',0,0,0,1,0,'{\"login\":[1633289574]}'),(5204,'111.119.183.44','normal','',0,0,0,1,0,'{\"login\":[1633289614]}'),(5205,'84.115.224.67','normal','',0,0,0,1,0,'{\"login\":[1633289626]}'),(5206,'99.7.141.241','normal','',0,0,0,1,0,'{\"login\":[1633289637]}'),(5207,'95.104.64.172','normal','',0,0,0,1,0,'{\"login\":[1633289672]}'),(5208,'177.73.101.255','normal','',0,0,0,1,0,'{\"login\":[1633289683]}'),(5209,'86.94.192.23','normal','',0,0,0,1,0,'{\"login\":[1633289691]}'),(5210,'110.93.227.185','normal','',0,0,0,1,0,'{\"login\":[1633289693]}'),(5211,'187.250.150.48','normal','',0,0,0,1,0,'{\"login\":[1633289700]}'),(5212,'188.236.173.124','normal','',0,0,0,1,0,'{\"login\":[1633289712]}'),(5213,'189.54.221.70','normal','',0,0,0,1,0,'{\"login\":[1633289717]}'),(5214,'161.35.183.194','normal','',0,0,0,0,0,'[]'),(5215,'95.237.190.173','normal','',0,0,0,1,0,'{\"login\":[1633289720]}'),(5216,'98.228.91.156','normal','',0,0,0,1,0,'{\"login\":[1633289758]}'),(5217,'170.81.216.136','normal','',0,0,0,1,0,'{\"login\":[1633289778]}'),(5218,'92.97.37.116','normal','',0,0,0,1,0,'{\"login\":[1633289781]}'),(5219,'177.107.52.165','normal','',0,0,0,1,0,'{\"login\":[1633289784]}'),(5220,'82.46.38.151','normal','',0,0,0,1,0,'{\"login\":[1633289806]}'),(5221,'197.94.68.111','normal','',0,0,0,1,0,'{\"login\":[1633289829]}'),(5222,'187.233.190.28','normal','',0,0,0,1,0,'{\"login\":[1633289833]}'),(5223,'190.31.96.119','normal','',0,0,0,1,0,'{\"login\":[1633289834]}'),(5224,'77.77.217.138','normal','',0,0,0,1,0,'{\"login\":[1633289843]}'),(5225,'85.93.204.101','normal','',0,0,0,0,0,'[]'),(5226,'77.49.251.114','normal','',0,0,0,1,0,'{\"login\":[1633289896]}'),(5227,'191.91.107.72','normal','',0,0,0,1,0,'{\"login\":[1633289911]}'),(5228,'190.191.128.106','normal','',0,0,0,1,0,'{\"login\":[1633289911]}'),(5229,'179.177.121.101','normal','',0,0,0,1,0,'{\"login\":[1633289918]}'),(5230,'82.211.169.3','normal','',0,0,0,1,0,'{\"login\":[1633289919]}'),(5231,'103.163.44.152','normal','',0,0,0,1,0,'{\"login\":[1633289936]}'),(5232,'196.32.233.214','normal','',0,0,0,1,0,'{\"login\":[1633289985]}'),(5233,'71.75.49.141','normal','',0,0,0,1,0,'{\"login\":[1633289988]}'),(5234,'84.212.243.154','normal','',0,0,0,1,0,'{\"login\":[1633290005]}'),(5235,'39.46.241.106','normal','',0,0,0,1,0,'{\"login\":[1633290010]}'),(5236,'67.191.218.167','normal','',0,0,0,1,0,'{\"login\":[1633290013]}'),(5237,'160.0.198.20','normal','',0,0,0,1,0,'{\"login\":[1633290014]}'),(5238,'102.141.170.105','normal','',0,0,0,1,0,'{\"login\":[1633290017]}'),(5239,'186.206.167.207','normal','',0,0,0,0,0,'[]'),(5240,'89.8.66.34','normal','',0,0,0,1,0,'{\"login\":[1633290048]}'),(5241,'95.76.17.53','normal','',0,0,0,1,0,'{\"login\":[1633290052]}'),(5242,'41.210.146.179','normal','',0,0,0,1,0,'{\"login\":[1633290056]}'),(5243,'45.235.162.120','normal','',0,0,0,1,0,'{\"login\":[1633290061]}'),(5244,'84.232.137.45','normal','',0,0,0,1,0,'{\"login\":[1633290077]}'),(5245,'201.7.60.121','normal','',0,0,0,1,0,'{\"login\":[1633290089]}'),(5246,'45.250.250.41','normal','',0,0,0,1,0,'{\"login\":[1633290112]}'),(5247,'137.59.217.47','normal','',0,0,0,1,0,'{\"login\":[1633290147]}'),(5248,'186.223.172.205','normal','',0,0,0,1,0,'{\"login\":[1633290147]}'),(5249,'206.204.249.205','normal','',0,0,0,1,0,'{\"login\":[1633290165]}'),(5250,'179.60.134.253','normal','',0,0,0,1,0,'{\"login\":[1633290171]}'),(5251,'201.15.242.120','normal','',0,0,0,1,0,'{\"login\":[1633290185]}'),(5252,'195.155.168.52','normal','',0,0,0,0,0,'[]'),(5253,'124.123.106.120','normal','',0,0,0,0,0,'[]'),(5254,'187.109.107.81','normal','',0,0,0,0,0,'[]'),(5255,'37.111.232.110','normal','',0,0,0,0,0,'[]'),(5256,'95.93.73.224','normal','',0,0,0,0,0,'[]'),(5257,'179.49.72.114','normal','',0,0,0,0,0,'[]'),(5258,'168.195.1.55','normal','',0,0,0,1,0,'{\"login\":[1633290545]}'),(5259,'179.49.72.114','normal','',0,0,0,0,0,'[]'),(5260,'168.253.255.127','normal','',0,0,0,0,0,'[]'),(5261,'154.68.199.29','normal','',0,0,0,0,0,'[]'),(5262,'197.219.153.57','normal','',0,0,0,0,0,'[]'),(5263,'168.253.194.50','normal','',0,0,0,2,0,'{\"login\":[1633290547,1633292576]}'),(5264,'110.159.103.72','normal','',0,0,0,1,0,'{\"login\":[1633290556]}'),(5265,'46.214.152.1','normal','',0,0,0,1,0,'{\"login\":[1633290563]}'),(5266,'93.173.89.29','normal','',0,0,0,1,0,'{\"login\":[1633290582]}'),(5267,'91.164.205.1','normal','',0,0,0,1,0,'{\"login\":[1633290600]}'),(5268,'67.143.128.46','normal','',0,0,0,1,0,'{\"login\":[1633290602]}'),(5269,'213.163.104.65','normal','',0,0,0,1,0,'{\"login\":[1633290614]}'),(5270,'178.149.126.204','normal','',0,0,0,1,0,'{\"login\":[1633290620]}'),(5271,'46.131.23.237','normal','',0,0,0,1,0,'{\"login\":[1633290638]}'),(5272,'109.133.133.24','normal','',0,0,0,1,0,'{\"login\":[1633290642]}'),(5273,'86.29.76.167','normal','',0,0,0,1,0,'{\"login\":[1633290647]}'),(5274,'77.232.37.226','normal','',0,0,0,1,0,'{\"login\":[1633290665]}'),(5275,'68.84.179.188','normal','',0,0,0,1,0,'{\"login\":[1633290684]}'),(5276,'201.82.49.145','normal','',0,0,0,1,0,'{\"login\":[1633290693]}'),(5277,'49.49.234.84','normal','',0,0,0,1,0,'{\"login\":[1633290712]}'),(5278,'189.189.3.233','normal','',0,0,0,1,0,'{\"login\":[1633290712]}'),(5279,'202.94.164.16','normal','',0,0,0,1,0,'{\"login\":[1633290749]}'),(5280,'189.217.91.56','normal','',0,0,0,1,0,'{\"login\":[1633290792]}'),(5281,'79.114.174.179','normal','',0,0,0,1,0,'{\"login\":[1633290824]}'),(5282,'190.103.181.150','normal','',0,0,0,1,0,'{\"login\":[1633290836]}'),(5283,'177.79.104.105','normal','',0,0,0,1,0,'{\"login\":[1633290836]}'),(5284,'177.96.82.131','normal','',0,0,0,1,0,'{\"login\":[1633290840]}'),(5285,'58.69.116.244','normal','',0,0,0,1,0,'{\"login\":[1633290840]}'),(5286,'96.52.21.250','normal','',0,0,0,1,0,'{\"login\":[1633290842]}'),(5287,'86.123.29.228','normal','',0,0,0,1,0,'{\"login\":[1633290849]}'),(5288,'45.187.160.86','normal','',0,0,0,1,0,'{\"login\":[1633290871]}'),(5289,'45.185.192.122','normal','',0,0,0,1,0,'{\"login\":[1633290879]}'),(5290,'185.242.56.65','normal','',0,0,0,1,0,'{\"login\":[1633290881]}'),(5291,'179.218.5.142','normal','',0,0,0,1,0,'{\"login\":[1633290896]}'),(5292,'49.150.65.32','normal','',0,0,0,1,0,'{\"login\":[1633290907]}'),(5293,'187.19.246.132','normal','',0,0,0,1,0,'{\"login\":[1633290936]}'),(5294,'39.48.159.208','normal','',0,0,0,1,0,'{\"login\":[1633290943]}'),(5295,'177.207.153.205','normal','',0,0,0,1,0,'{\"login\":[1633290948]}'),(5296,'213.24.133.172','normal','',0,0,0,1,0,'{\"login\":[1633290960]}'),(5297,'93.56.114.198','normal','',0,0,0,1,0,'{\"login\":[1633290967]}'),(5298,'183.82.109.62','normal','',0,0,0,2,0,'{\"login\":[1633290968,1633294787]}'),(5299,'72.14.98.211','normal','',0,0,0,1,0,'{\"login\":[1633291024]}'),(5300,'178.212.92.228','normal','',0,0,0,1,0,'{\"login\":[1633291024]}'),(5301,'176.46.90.191','normal','',0,0,0,1,0,'{\"login\":[1633291032]}'),(5302,'177.55.145.225','normal','',0,0,0,1,0,'{\"login\":[1633291035]}'),(5303,'201.69.181.168','normal','',0,0,0,1,0,'{\"login\":[1633291039]}'),(5304,'197.185.117.200','normal','',0,0,0,1,0,'{\"login\":[1633291044]}'),(5305,'117.217.55.84','normal','',0,0,0,1,0,'{\"login\":[1633291045]}'),(5306,'212.0.149.81','normal','',0,0,0,1,0,'{\"login\":[1633291051]}'),(5307,'78.58.143.93','normal','',0,0,0,1,0,'{\"login\":[1633291052]}'),(5308,'46.152.139.141','normal','',0,0,0,1,0,'{\"login\":[1633291053]}'),(5309,'78.179.132.115','normal','',0,0,0,1,0,'{\"login\":[1633291093]}'),(5310,'190.204.218.28','normal','',0,0,0,1,0,'{\"login\":[1633291113]}'),(5311,'24.48.210.125','normal','',0,0,0,1,0,'{\"login\":[1633291113]}'),(5312,'185.200.249.193','normal','',0,0,0,1,0,'{\"login\":[1633291225]}'),(5313,'109.245.175.12','normal','',0,0,0,1,0,'{\"login\":[1633291230]}'),(5314,'89.180.36.180','normal','',0,0,0,1,0,'{\"login\":[1633291231]}'),(5315,'138.118.171.34','normal','',0,0,0,1,0,'{\"login\":[1633291243]}'),(5316,'186.194.81.71','normal','',0,0,0,1,0,'{\"login\":[1633291258]}'),(5317,'190.133.29.144','normal','',0,0,0,1,0,'{\"login\":[1633291267]}'),(5318,'188.236.66.105','normal','',0,0,0,1,0,'{\"login\":[1633291270]}'),(5319,'182.186.78.102','normal','',0,0,0,1,0,'{\"login\":[1633291280]}'),(5320,'45.247.77.13','normal','',0,0,0,1,0,'{\"login\":[1633291287]}'),(5321,'36.81.14.48','normal','',0,0,0,1,0,'{\"login\":[1633291289]}'),(5322,'73.199.122.163','normal','',0,0,0,1,0,'{\"login\":[1633291308]}'),(5323,'99.231.145.202','normal','',0,0,0,1,0,'{\"login\":[1633291344]}'),(5324,'39.50.121.215','normal','',0,0,0,1,0,'{\"login\":[1633291354]}'),(5325,'179.183.115.128','normal','',0,0,0,1,0,'{\"login\":[1633291378]}'),(5326,'109.93.113.135','normal','',0,0,0,1,0,'{\"login\":[1633291396]}'),(5327,'178.237.220.161','normal','',0,0,0,1,0,'{\"login\":[1633291397]}'),(5328,'201.150.27.184','normal','',0,0,0,1,0,'{\"login\":[1633291401]}'),(5329,'109.242.96.4','normal','',0,0,0,1,0,'{\"login\":[1633291440]}'),(5330,'130.105.243.50','normal','',0,0,0,1,0,'{\"login\":[1633291457]}'),(5331,'168.195.181.146','normal','',0,0,0,1,0,'{\"login\":[1633291483]}'),(5332,'136.158.30.111','normal','',0,0,0,1,0,'{\"login\":[1633291513]}'),(5333,'212.0.149.73','normal','',0,0,0,0,0,'[]'),(5334,'92.53.45.214','normal','',0,0,0,1,0,'{\"login\":[1633291530]}'),(5335,'54.188.217.35','normal','',0,0,0,0,0,'[]'),(5336,'41.83.4.205','normal','',0,0,0,1,0,'{\"login\":[1633291585]}'),(5337,'186.79.234.53','normal','',0,0,0,1,0,'{\"login\":[1633291585]}'),(5338,'178.148.250.39','normal','',0,0,0,1,0,'{\"login\":[1633291585]}'),(5339,'82.76.50.152','normal','',0,0,0,1,0,'{\"login\":[1633291587]}'),(5340,'186.212.39.245','normal','',0,0,0,1,0,'{\"login\":[1633291618]}'),(5341,'210.7.29.152','normal','',0,0,0,1,0,'{\"login\":[1633291628]}'),(5342,'157.41.91.201','normal','',0,0,0,1,0,'{\"login\":[1633291631]}'),(5343,'83.37.231.4','normal','',0,0,0,1,0,'{\"login\":[1633291634]}'),(5344,'177.203.181.194','normal','',0,0,0,1,0,'{\"login\":[1633291668]}'),(5345,'2.49.134.150','normal','',0,0,0,1,0,'{\"login\":[1633291680]}'),(5346,'177.228.97.218','normal','',0,0,0,1,0,'{\"login\":[1633291712]}'),(5347,'210.213.198.34','normal','',0,0,0,1,0,'{\"login\":[1633291721]}'),(5348,'174.250.210.73','normal','',0,0,0,1,0,'{\"login\":[1633291721]}'),(5349,'177.23.126.64','normal','',0,0,0,1,0,'{\"login\":[1633291723]}'),(5350,'109.128.89.161','normal','',0,0,0,1,0,'{\"login\":[1633291725]}'),(5351,'47.247.219.160','normal','',0,0,0,1,0,'{\"login\":[1633291733]}'),(5352,'94.210.153.134','normal','',0,0,0,1,0,'{\"login\":[1633291765]}'),(5353,'195.136.138.115','normal','',0,0,0,1,0,'{\"login\":[1633291769]}'),(5354,'82.164.58.72','normal','',0,0,0,1,0,'{\"login\":[1633291809]}'),(5355,'187.138.152.171','normal','',0,0,0,1,0,'{\"login\":[1633291813]}'),(5356,'98.22.222.180','normal','',0,0,0,1,0,'{\"login\":[1633291818]}'),(5357,'109.93.203.86','normal','',0,0,0,1,0,'{\"login\":[1633291820]}'),(5358,'116.90.113.170','normal','',0,0,0,1,0,'{\"login\":[1633291833]}'),(5359,'78.101.226.138','normal','',0,0,0,1,0,'{\"login\":[1633291838]}'),(5360,'190.113.110.74','normal','',0,0,0,1,0,'{\"login\":[1633291851]}'),(5361,'73.136.110.50','normal','',0,0,0,1,0,'{\"login\":[1633291861]}'),(5362,'94.214.183.116','normal','',0,0,0,1,0,'{\"login\":[1633291894]}'),(5363,'183.83.210.87','normal','',0,0,0,1,0,'{\"login\":[1633291917]}'),(5364,'41.235.199.124','normal','',0,0,0,1,0,'{\"login\":[1633291921]}'),(5365,'49.36.186.132','normal','',0,0,0,1,0,'{\"login\":[1633291934]}'),(5366,'156.204.124.173','normal','',0,0,0,1,0,'{\"login\":[1633291943]}'),(5367,'54.244.144.7','normal','',0,0,0,0,0,'[]'),(5368,'85.109.60.146','normal','',0,0,0,1,0,'{\"login\":[1633292005]}'),(5369,'45.187.92.2','normal','',0,0,0,1,0,'{\"login\":[1633292013]}'),(5370,'79.177.44.161','normal','',0,0,0,1,0,'{\"login\":[1633292017]}'),(5371,'201.71.203.13','normal','',0,0,0,1,0,'{\"login\":[1633292028]}'),(5372,'34.219.145.77','normal','',0,0,0,0,0,'[]'),(5373,'141.226.182.86','normal','',0,0,0,1,0,'{\"login\":[1633292070]}'),(5374,'213.225.35.15','normal','',0,0,0,1,0,'{\"login\":[1633292078]}'),(5375,'201.148.115.25','normal','',0,0,0,1,0,'{\"login\":[1633292091]}'),(5376,'86.18.12.44','normal','',0,0,0,1,0,'{\"login\":[1633292106]}'),(5377,'181.230.79.223','normal','',0,0,0,1,0,'{\"login\":[1633292116]}'),(5378,'191.19.178.8','normal','',0,0,0,1,0,'{\"login\":[1633292118]}'),(5379,'27.57.101.251','normal','',0,0,0,1,0,'{\"login\":[1633292144]}'),(5380,'182.18.213.55','normal','',0,0,0,1,0,'{\"login\":[1633292159]}'),(5381,'178.80.167.77','normal','',0,0,0,1,0,'{\"login\":[1633292169]}'),(5382,'178.223.127.15','normal','',0,0,0,1,0,'{\"login\":[1633292179]}'),(5383,'82.132.237.26','normal','',0,0,0,1,0,'{\"login\":[1633292187]}'),(5384,'103.157.123.208','normal','',0,0,0,1,0,'{\"login\":[1633292188]}'),(5385,'173.238.144.57','normal','',0,0,0,1,0,'{\"login\":[1633292212]}'),(5386,'79.180.188.40','normal','',0,0,0,1,0,'{\"login\":[1633292263]}'),(5387,'172.58.45.243','normal','',0,0,0,1,0,'{\"login\":[1633292269]}'),(5388,'138.186.166.105','normal','',0,0,0,1,0,'{\"login\":[1633292281]}'),(5389,'95.85.135.212','normal','',0,0,0,1,0,'{\"login\":[1633292283]}'),(5390,'15.206.235.52','normal','',0,0,0,0,0,'[]'),(5391,'188.28.104.243','normal','',0,0,0,1,0,'{\"login\":[1633292335]}'),(5392,'90.216.57.204','normal','',0,0,0,1,0,'{\"login\":[1633292359]}'),(5393,'223.24.154.29','normal','',0,0,0,1,0,'{\"login\":[1633292367]}'),(5394,'46.2.132.247','normal','',0,0,0,1,0,'{\"login\":[1633292406]}'),(5395,'104.244.230.178','normal','',0,0,0,1,0,'{\"login\":[1633292410]}'),(5396,'37.122.175.235','normal','',0,0,0,1,0,'{\"login\":[1633292449]}'),(5397,'81.9.194.126','normal','',0,0,0,1,0,'{\"login\":[1633292488]}'),(5398,'178.138.195.85','normal','',0,0,0,1,0,'{\"login\":[1633292494]}'),(5399,'45.11.202.28','normal','',0,0,0,1,0,'{\"login\":[1633292519]}'),(5400,'31.206.9.99','normal','',0,0,0,1,0,'{\"login\":[1633292525]}'),(5401,'79.103.81.246','normal','',0,0,0,1,0,'{\"login\":[1633292534]}'),(5402,'41.190.151.34','normal','',0,0,0,1,0,'{\"login\":[1633292541]}'),(5403,'93.39.140.148','normal','',0,0,0,1,0,'{\"login\":[1633292546]}'),(5404,'156.209.100.100','normal','',0,0,0,1,0,'{\"login\":[1633292584]}'),(5405,'92.53.30.37','normal','',0,0,0,1,0,'{\"login\":[1633292620]}'),(5406,'143.137.94.243','normal','',0,0,0,1,0,'{\"login\":[1633292643]}'),(5407,'49.37.37.252','normal','',0,0,0,1,0,'{\"login\":[1633292713]}'),(5408,'203.115.99.186','normal','',0,0,0,1,0,'{\"login\":[1633292724]}'),(5409,'77.77.223.10','normal','',0,0,0,1,0,'{\"login\":[1633292755]}'),(5410,'191.44.11.245','normal','',0,0,0,1,0,'{\"login\":[1633292766]}'),(5411,'180.92.136.67','normal','',0,0,0,1,0,'{\"login\":[1633292776]}'),(5412,'42.201.203.179','normal','',0,0,0,1,0,'{\"login\":[1633292798]}'),(5413,'46.153.123.173','normal','',0,0,0,1,0,'{\"login\":[1633292832]}'),(5414,'168.227.16.1','normal','',0,0,0,1,0,'{\"login\":[1633292833]}'),(5415,'187.3.217.62','normal','',0,0,0,1,0,'{\"login\":[1633292857]}'),(5416,'109.116.206.189','normal','',0,0,0,1,0,'{\"login\":[1633292868]}'),(5417,'92.85.24.216','normal','',0,0,0,1,0,'{\"login\":[1633292889]}'),(5418,'177.85.118.28','normal','',0,0,0,1,0,'{\"login\":[1633292894]}'),(5419,'202.8.114.53','normal','',0,0,0,1,0,'{\"login\":[1633292919]}'),(5420,'189.203.231.56','normal','',0,0,0,1,0,'{\"login\":[1633292992]}'),(5421,'197.254.108.54','normal','',0,0,0,1,0,'{\"login\":[1633292996]}'),(5422,'39.59.119.96','normal','',0,0,0,1,0,'{\"login\":[1633293021]}'),(5423,'102.39.208.33','normal','',0,0,0,1,0,'{\"login\":[1633293027]}'),(5424,'142.114.134.213','normal','',0,0,0,1,0,'{\"login\":[1633293041]}'),(5425,'31.223.155.44','normal','',0,0,0,1,0,'{\"login\":[1633293058]}'),(5426,'102.45.6.8','normal','',0,0,0,1,0,'{\"login\":[1633293069]}'),(5427,'196.50.5.129','normal','',0,0,0,1,0,'{\"login\":[1633293073]}'),(5428,'79.157.81.245','normal','',0,0,0,1,0,'{\"login\":[1633293073]}'),(5429,'178.149.14.77','normal','',0,0,0,1,0,'{\"login\":[1633293087]}'),(5430,'103.163.248.224','normal','',0,0,0,1,0,'{\"login\":[1633293095]}'),(5431,'189.4.82.72','normal','',0,0,0,1,0,'{\"login\":[1633293101]}'),(5432,'41.162.123.66','normal','',0,0,0,1,0,'{\"login\":[1633293106]}'),(5433,'178.79.46.44','normal','',0,0,0,1,0,'{\"login\":[1633293131]}'),(5434,'49.149.137.237','normal','',0,0,0,1,0,'{\"login\":[1633293151]}'),(5435,'167.249.110.61','normal','',0,0,0,1,0,'{\"login\":[1633293158]}'),(5436,'197.47.42.21','normal','',0,0,0,1,0,'{\"login\":[1633293164]}'),(5437,'39.33.243.15','normal','',0,0,0,1,0,'{\"login\":[1633293168]}'),(5438,'81.213.245.114','normal','',0,0,0,1,0,'{\"login\":[1633293180]}'),(5439,'147.12.207.39','normal','',0,0,0,1,0,'{\"login\":[1633293194]}'),(5440,'189.60.215.254','normal','',0,0,0,1,0,'{\"login\":[1633293242]}'),(5441,'160.176.198.145','normal','',0,0,0,1,0,'{\"login\":[1633293275]}'),(5442,'45.239.149.164','normal','',0,0,0,1,0,'{\"login\":[1633293282]}'),(5443,'91.73.29.223','normal','',0,0,0,1,0,'{\"login\":[1633293284]}'),(5444,'115.186.141.24','normal','',0,0,0,1,0,'{\"login\":[1633293299]}'),(5445,'190.108.110.244','normal','',0,0,0,1,0,'{\"login\":[1633293324]}'),(5446,'207.204.105.123','normal','',0,0,0,1,0,'{\"login\":[1633293322]}'),(5447,'192.144.66.49','normal','',0,0,0,1,0,'{\"login\":[1633293327]}'),(5448,'189.170.91.141','normal','',0,0,0,1,0,'{\"login\":[1633293333]}'),(5449,'201.19.24.12','normal','',0,0,0,1,0,'{\"login\":[1633293348]}'),(5450,'41.111.9.172','normal','',0,0,0,1,0,'{\"login\":[1633293363]}'),(5451,'185.171.60.123','normal','',0,0,0,1,0,'{\"login\":[1633293371]}'),(5452,'46.40.29.163','normal','',0,0,0,1,0,'{\"login\":[1633293439]}'),(5453,'217.131.85.194','normal','',0,0,0,1,0,'{\"login\":[1633293447]}'),(5454,'170.247.186.61','normal','',0,0,0,1,0,'{\"login\":[1633293464]}'),(5455,'82.155.233.44','normal','',0,0,0,1,0,'{\"login\":[1633293469]}'),(5456,'186.208.229.32','normal','',0,0,0,1,0,'{\"login\":[1633293468]}'),(5457,'192.140.68.254','normal','',0,0,0,1,0,'{\"login\":[1633293473]}'),(5458,'91.228.17.10','normal','',0,0,0,1,0,'{\"login\":[1633293492]}'),(5459,'213.4.33.27','normal','',0,0,0,1,0,'{\"login\":[1633293502]}'),(5460,'88.226.109.76','normal','',0,0,0,1,0,'{\"login\":[1633293524]}'),(5461,'105.231.60.143','normal','',0,0,0,1,0,'{\"login\":[1633293576]}'),(5462,'102.158.119.213','normal','',0,0,0,1,0,'{\"login\":[1633293581]}'),(5463,'186.216.254.237','normal','',0,0,0,1,0,'{\"login\":[1633293598]}'),(5464,'102.221.220.3','normal','',0,0,0,1,0,'{\"login\":[1633293616]}'),(5465,'189.85.105.8','normal','',0,0,0,1,0,'{\"login\":[1633293614]}'),(5466,'43.241.61.248','normal','',0,0,0,1,0,'{\"login\":[1633293634]}'),(5467,'188.252.197.122','normal','',0,0,0,1,0,'{\"login\":[1633293651]}'),(5468,'188.2.108.135','normal','',0,0,0,1,0,'{\"login\":[1633293658]}'),(5469,'89.64.68.166','normal','',0,0,0,1,0,'{\"login\":[1633293669]}'),(5470,'82.102.214.29','normal','',0,0,0,1,0,'{\"login\":[1633293673]}'),(5471,'67.48.138.243','normal','',0,0,0,1,0,'{\"login\":[1633293686]}'),(5472,'41.60.78.165','normal','',0,0,0,1,0,'{\"login\":[1633293695]}'),(5473,'141.138.58.24','normal','',0,0,0,1,0,'{\"login\":[1633293720]}'),(5474,'39.50.58.195','normal','',0,0,0,1,0,'{\"login\":[1633293733]}'),(5475,'185.229.191.10','normal','',0,0,0,0,0,'[]'),(5476,'103.147.230.38','normal','',0,0,0,1,0,'{\"login\":[1633293752]}'),(5477,'197.185.110.159','normal','',0,0,0,1,0,'{\"login\":[1633293767]}'),(5478,'177.23.154.34','normal','',0,0,0,1,0,'{\"login\":[1633293768]}'),(5479,'177.73.206.152','normal','',0,0,0,1,0,'{\"login\":[1633293770]}'),(5480,'104.187.186.43','normal','',0,0,0,1,0,'{\"login\":[1633293778]}'),(5481,'71.194.187.97','normal','',0,0,0,1,0,'{\"login\":[1633293784]}'),(5482,'154.179.63.124','normal','',0,0,0,1,0,'{\"login\":[1633293786]}'),(5483,'138.255.0.160','normal','',0,0,0,1,0,'{\"login\":[1633293802]}'),(5484,'89.46.108.86','normal','',0,0,0,0,0,'[]'),(5485,'180.190.85.233','normal','',0,0,0,1,0,'{\"login\":[1633293824]}'),(5486,'64.110.255.113','normal','',0,0,0,1,0,'{\"login\":[1633293825]}'),(5487,'46.70.152.135','normal','',0,0,0,1,0,'{\"login\":[1633293836]}'),(5488,'195.14.193.252','normal','',0,0,0,1,0,'{\"login\":[1633293841]}'),(5489,'91.140.83.198','normal','',0,0,0,1,0,'{\"login\":[1633293872]}'),(5490,'177.4.108.92','normal','',0,0,0,1,0,'{\"login\":[1633293875]}'),(5491,'79.101.180.210','normal','',0,0,0,1,0,'{\"login\":[1633293875]}'),(5492,'51.211.53.162','normal','',0,0,0,1,0,'{\"login\":[1633293895]}'),(5493,'190.113.44.252','normal','',0,0,0,1,0,'{\"login\":[1633293910]}'),(5494,'110.54.183.63','normal','',0,0,0,1,0,'{\"login\":[1633293940]}'),(5495,'181.111.72.13','normal','',0,0,0,1,0,'{\"login\":[1633293968]}'),(5496,'88.236.168.83','normal','',0,0,0,1,0,'{\"login\":[1633293982]}'),(5497,'36.255.40.115','normal','',0,0,0,1,0,'{\"login\":[1633293983]}'),(5498,'46.19.230.190','normal','',0,0,0,1,0,'{\"login\":[1633293989]}'),(5499,'78.109.70.55','normal','',0,0,0,1,0,'{\"login\":[1633293993]}'),(5500,'77.79.50.18','normal','',0,0,0,2,0,'{\"login\":[1633293994,1633715990]}'),(5501,'189.105.118.247','normal','',0,0,0,1,0,'{\"login\":[1633293997]}'),(5502,'37.232.17.190','normal','',0,0,0,1,0,'{\"login\":[1633294004]}'),(5503,'177.7.61.130','normal','',0,0,0,1,0,'{\"login\":[1633294043]}'),(5504,'189.4.76.104','normal','',0,0,0,1,0,'{\"login\":[1633294065]}'),(5505,'94.53.212.101','normal','',0,0,0,1,0,'{\"login\":[1633294080]}'),(5506,'102.156.224.217','normal','',0,0,0,1,0,'{\"login\":[1633294128]}'),(5507,'36.255.87.109','normal','',0,0,0,1,0,'{\"login\":[1633294142]}'),(5508,'177.200.71.242','normal','',0,0,0,1,0,'{\"login\":[1633294144]}'),(5509,'187.107.8.4','normal','',0,0,0,1,0,'{\"login\":[1633294167]}'),(5510,'91.142.83.71','normal','',0,0,0,1,0,'{\"login\":[1633294169]}'),(5511,'185.23.49.131','normal','',0,0,0,1,0,'{\"login\":[1633294189]}'),(5512,'109.175.99.249','normal','',0,0,0,1,0,'{\"login\":[1633294205]}'),(5513,'78.160.110.225','normal','',0,0,0,1,0,'{\"login\":[1633294234]}'),(5514,'85.243.63.15','normal','',0,0,0,1,0,'{\"login\":[1633294244]}'),(5515,'131.100.165.94','normal','',0,0,0,1,0,'{\"login\":[1633294263]}'),(5516,'179.221.223.63','normal','',0,0,0,1,0,'{\"login\":[1633294269]}'),(5517,'94.192.185.56','normal','',0,0,0,1,0,'{\"login\":[1633294279]}'),(5518,'41.40.59.11','normal','',0,0,0,1,0,'{\"login\":[1633294283]}'),(5519,'88.248.92.154','normal','',0,0,0,1,0,'{\"login\":[1633294285]}'),(5520,'149.90.224.4','normal','',0,0,0,1,0,'{\"login\":[1633294342]}'),(5521,'82.112.167.20','normal','',0,0,0,1,0,'{\"login\":[1633294357]}'),(5522,'190.115.136.222','normal','',0,0,0,1,0,'{\"login\":[1633294376]}'),(5523,'168.232.11.202','normal','',0,0,0,1,0,'{\"login\":[1633294400]}'),(5524,'202.188.49.145','normal','',0,0,0,1,0,'{\"login\":[1633294405]}'),(5525,'89.39.71.162','normal','',0,0,0,1,0,'{\"login\":[1633294432]}'),(5526,'177.21.79.26','normal','',0,0,0,1,0,'{\"login\":[1633294434]}'),(5527,'112.202.89.113','normal','',0,0,0,1,0,'{\"login\":[1633294460]}'),(5528,'160.179.168.32','normal','',0,0,0,1,0,'{\"login\":[1633294470]}'),(5529,'196.221.111.254','normal','',0,0,0,1,0,'{\"login\":[1633294496]}'),(5530,'49.37.149.119','normal','',0,0,0,1,0,'{\"login\":[1633294512]}'),(5531,'45.251.33.179','normal','',0,0,0,1,0,'{\"login\":[1633294520]}'),(5532,'85.132.7.194','normal','',0,0,0,1,0,'{\"login\":[1633294523]}'),(5533,'82.73.250.204','normal','',0,0,0,1,0,'{\"login\":[1633294541]}'),(5534,'73.77.112.130','normal','',0,0,0,1,0,'{\"login\":[1633294542]}'),(5535,'195.29.105.212','normal','',0,0,0,1,0,'{\"login\":[1633294573]}'),(5536,'186.119.250.233','normal','',0,0,0,1,0,'{\"login\":[1633294577]}'),(5537,'67.247.15.152','normal','',0,0,0,1,0,'{\"login\":[1633294590]}'),(5538,'154.160.27.130','normal','',0,0,0,1,0,'{\"login\":[1633294620]}'),(5539,'45.232.229.28','normal','',0,0,0,1,0,'{\"login\":[1633294644]}'),(5540,'81.184.74.23','normal','',0,0,0,1,0,'{\"login\":[1633294649]}'),(5541,'201.203.117.99','normal','',0,0,0,1,0,'{\"login\":[1633294661]}'),(5542,'94.197.203.4','normal','',0,0,0,1,0,'{\"login\":[1633294692]}'),(5543,'190.205.190.14','normal','',0,0,0,1,0,'{\"login\":[1633294701]}'),(5544,'89.172.230.85','normal','',0,0,0,1,0,'{\"login\":[1633294745]}'),(5545,'179.127.132.83','normal','',0,0,0,1,0,'{\"login\":[1633294754]}'),(5546,'173.238.2.213','normal','',0,0,0,1,0,'{\"login\":[1633294789]}'),(5547,'178.209.14.113','normal','',0,0,0,1,0,'{\"login\":[1633294855]}'),(5548,'45.231.169.155','normal','',0,0,0,1,0,'{\"login\":[1633294857]}'),(5549,'188.30.72.152','normal','',0,0,0,1,0,'{\"login\":[1633294876]}'),(5550,'95.16.227.75','normal','',0,0,0,1,0,'{\"login\":[1633294880]}'),(5551,'187.59.148.88','normal','',0,0,0,1,0,'{\"login\":[1633294893]}'),(5552,'177.53.225.36','normal','',0,0,0,1,0,'{\"login\":[1633294902]}'),(5553,'89.123.236.128','normal','',0,0,0,1,0,'{\"login\":[1633294937]}'),(5554,'217.118.93.131','normal','',0,0,0,1,0,'{\"login\":[1633294943]}'),(5555,'83.54.46.221','normal','',0,0,0,1,0,'{\"login\":[1633294965]}'),(5556,'5.17.81.212','normal','',0,0,0,1,0,'{\"login\":[1633294972]}'),(5557,'119.82.95.15','normal','',0,0,0,1,0,'{\"login\":[1633294995]}'),(5558,'95.94.152.34','normal','',0,0,0,1,0,'{\"login\":[1633295015]}'),(5559,'102.65.13.208','normal','',0,0,0,0,0,'[]'),(5560,'212.0.149.88','normal','',0,0,0,1,0,'{\"login\":[1633295109]}'),(5561,'178.222.172.6','normal','',0,0,0,1,0,'{\"login\":[1633295119]}'),(5562,'5.29.12.27','normal','',0,0,0,1,0,'{\"login\":[1633295135]}'),(5563,'185.189.91.22','normal','',0,0,0,1,0,'{\"login\":[1633295140]}'),(5564,'46.102.191.18','normal','',0,0,0,1,0,'{\"login\":[1633295161]}'),(5565,'95.238.148.82','normal','',0,0,0,1,0,'{\"login\":[1633295173]}'),(5566,'191.250.113.197','normal','',0,0,0,1,0,'{\"login\":[1633295194]}'),(5567,'96.244.74.170','normal','',0,0,0,0,0,'[]'),(5568,'190.60.237.10','normal','',0,0,0,1,0,'{\"login\":[1633295204]}'),(5569,'181.58.38.121','normal','',0,0,0,1,0,'{\"login\":[1633295227]}'),(5570,'175.139.31.10','normal','',0,0,0,1,0,'{\"login\":[1633295246]}'),(5571,'175.176.87.49','normal','',0,0,0,1,0,'{\"login\":[1633295248]}'),(5572,'138.128.241.145','normal','',0,0,0,1,0,'{\"login\":[1633295248]}'),(5573,'177.179.15.52','normal','',0,0,0,1,0,'{\"login\":[1633295259]}'),(5574,'189.203.158.39','normal','',0,0,0,1,0,'{\"login\":[1633295262]}'),(5575,'81.190.45.108','normal','',0,0,0,1,0,'{\"login\":[1633295271]}'),(5576,'93.140.177.244','normal','',0,0,0,1,0,'{\"login\":[1633295274]}'),(5577,'103.82.41.15','normal','',0,0,0,1,0,'{\"login\":[1633295321]}'),(5578,'162.199.122.183','normal','',0,0,0,1,0,'{\"login\":[1633295330]}'),(5579,'82.28.170.164','normal','',0,0,0,1,0,'{\"login\":[1633295346]}'),(5580,'220.158.161.76','normal','',0,0,0,1,0,'{\"login\":[1633295359]}'),(5581,'37.211.146.191','normal','',0,0,0,1,0,'{\"login\":[1633295363]}'),(5582,'159.146.10.90','normal','',0,0,0,1,0,'{\"login\":[1633295402]}'),(5583,'177.192.16.212','normal','',0,0,0,1,0,'{\"login\":[1633295405]}'),(5584,'165.90.97.135','normal','',0,0,0,1,0,'{\"login\":[1633295408]}'),(5585,'179.176.174.51','normal','',0,0,0,1,0,'{\"login\":[1633295412]}'),(5586,'93.105.177.238','normal','',0,0,0,1,0,'{\"login\":[1633295426]}'),(5587,'168.227.12.100','normal','',0,0,0,1,0,'{\"login\":[1633295435]}'),(5588,'95.168.118.20','normal','',0,0,0,1,0,'{\"login\":[1633295439]}'),(5589,'197.229.0.114','normal','',0,0,0,1,0,'{\"login\":[1633295443]}'),(5590,'119.160.58.122','normal','',0,0,0,1,0,'{\"login\":[1633295466]}'),(5591,'191.54.129.143','normal','',0,0,0,1,0,'{\"login\":[1633295468]}'),(5592,'168.0.102.237','normal','',0,0,0,1,0,'{\"login\":[1633295471]}'),(5593,'217.61.224.178','normal','',0,0,0,1,0,'{\"login\":[1633295470]}'),(5594,'202.47.33.197','normal','',0,0,0,1,0,'{\"login\":[1633295484]}'),(5595,'183.83.214.82','normal','',0,0,0,1,0,'{\"login\":[1633295494]}'),(5596,'177.56.43.184','normal','',0,0,0,1,0,'{\"login\":[1633295503]}'),(5597,'36.78.80.117','normal','',0,0,0,1,0,'{\"login\":[1633295537]}'),(5598,'179.235.94.32','normal','',0,0,0,1,0,'{\"login\":[1633295542]}'),(5599,'102.219.171.160','normal','',0,0,0,1,0,'{\"login\":[1633295549]}'),(5600,'177.36.178.97','normal','',0,0,0,1,0,'{\"login\":[1633295580]}'),(5601,'185.152.196.68','normal','',0,0,0,1,0,'{\"login\":[1633295585]}'),(5602,'200.222.33.171','normal','',0,0,0,1,0,'{\"login\":[1633295599]}'),(5603,'201.14.135.120','normal','',0,0,0,1,0,'{\"login\":[1633295615]}'),(5604,'177.220.175.48','normal','',0,0,0,1,0,'{\"login\":[1633295622]}'),(5605,'187.59.211.122','normal','',0,0,0,0,0,'[]'),(5606,'160.119.47.116','normal','',0,0,0,1,0,'{\"login\":[1633295641]}'),(5607,'94.66.56.213','normal','',0,0,0,1,0,'{\"login\":[1633295655]}'),(5608,'181.135.49.138','normal','',0,0,0,1,0,'{\"login\":[1633295664]}'),(5609,'168.205.127.247','normal','',0,0,0,1,0,'{\"login\":[1633295671]}'),(5610,'216.10.220.50','normal','',0,0,0,1,0,'{\"login\":[1633295686]}'),(5611,'105.104.126.249','normal','',0,0,0,1,0,'{\"login\":[1633295692]}'),(5612,'154.127.194.218','normal','',0,0,0,1,0,'{\"login\":[1633295693]}'),(5613,'87.202.10.128','normal','',0,0,0,1,0,'{\"login\":[1633295725]}'),(5614,'87.125.213.37','normal','',0,0,0,1,0,'{\"login\":[1633295737]}'),(5615,'5.192.138.141','normal','',0,0,0,1,0,'{\"login\":[1633295740]}'),(5616,'45.226.241.42','normal','',0,0,0,1,0,'{\"login\":[1633295766]}'),(5617,'63.143.93.148','normal','',0,0,0,1,0,'{\"login\":[1633295781]}'),(5618,'177.37.201.113','normal','',0,0,0,1,0,'{\"login\":[1633295830]}'),(5619,'170.84.31.214','normal','',0,0,0,1,0,'{\"login\":[1633295834]}'),(5620,'108.208.149.137','normal','',0,0,0,1,0,'{\"login\":[1633295912]}'),(5621,'41.218.71.149','normal','',0,0,0,1,0,'{\"login\":[1633295934]}'),(5622,'24.41.236.42','normal','',0,0,0,1,0,'{\"login\":[1633295943]}'),(5623,'190.38.235.91','normal','',0,0,0,1,0,'{\"login\":[1633295944]}'),(5624,'173.77.163.130','normal','',0,0,0,1,0,'{\"login\":[1633295985]}'),(5625,'77.46.138.89','normal','',0,0,0,1,0,'{\"login\":[1633295995]}'),(5626,'46.135.18.127','normal','',0,0,0,1,0,'{\"login\":[1633295999]}'),(5627,'41.233.92.103','normal','',0,0,0,1,0,'{\"login\":[1633296033]}'),(5628,'191.189.0.118','normal','',0,0,0,1,0,'{\"login\":[1633296035]}'),(5629,'88.252.205.202','normal','',0,0,0,1,0,'{\"login\":[1633296034]}'),(5630,'5.44.200.91','normal','',0,0,0,1,0,'{\"login\":[1633296070]}'),(5631,'156.222.116.128','normal','',0,0,0,1,0,'{\"login\":[1633296088]}'),(5632,'116.90.118.18','normal','',0,0,0,1,0,'{\"login\":[1633296106]}'),(5633,'170.84.157.144','normal','',0,0,0,1,0,'{\"login\":[1633296110]}'),(5634,'187.137.153.50','normal','',0,0,0,1,0,'{\"login\":[1633296113]}'),(5635,'141.136.223.154','normal','',0,0,0,1,0,'{\"login\":[1633296114]}'),(5636,'186.223.175.65','normal','',0,0,0,1,0,'{\"login\":[1633296116]}'),(5637,'121.122.63.59','normal','',0,0,0,1,0,'{\"login\":[1633296132]}'),(5638,'193.198.27.60','normal','',0,0,0,1,0,'{\"login\":[1633296143]}'),(5639,'207.244.64.33','normal','',0,0,0,1,0,'{\"login\":[1633296164]}'),(5640,'73.239.98.204','normal','',0,0,0,1,0,'{\"login\":[1633296188]}'),(5641,'85.150.150.62','normal','',0,0,0,1,0,'{\"login\":[1633296214]}'),(5642,'157.41.83.115','normal','',0,0,0,1,0,'{\"login\":[1633296223]}'),(5643,'136.37.119.77','normal','',0,0,0,1,0,'{\"login\":[1633296230]}'),(5644,'207.213.184.2','normal','',0,0,0,1,0,'{\"login\":[1633296299]}'),(5645,'190.87.162.218','normal','',0,0,0,1,0,'{\"login\":[1633296302]}'),(5646,'79.240.118.186','normal','',0,0,0,1,0,'{\"login\":[1633296314]}'),(5647,'24.133.80.58','normal','',0,0,0,1,0,'{\"login\":[1633296345]}'),(5648,'82.137.32.193','normal','',0,0,0,1,0,'{\"login\":[1633296349]}'),(5649,'136.158.11.79','normal','',0,0,0,1,0,'{\"login\":[1633296379]}'),(5650,'102.222.141.128','normal','',0,0,0,0,0,'[]'),(5651,'125.166.0.3','normal','',0,0,0,1,0,'{\"login\":[1633296400]}'),(5652,'14.142.99.46','normal','',0,0,0,1,0,'{\"login\":[1633296441]}'),(5653,'123.253.94.248','normal','',0,0,0,1,0,'{\"login\":[1633296447]}'),(5654,'148.255.112.181','normal','',0,0,0,1,0,'{\"login\":[1633296478]}'),(5655,'191.55.143.46','normal','',0,0,0,1,0,'{\"login\":[1633296622]}'),(5656,'114.119.128.55','normal','',0,0,0,0,0,'[]'),(5657,'102.22.232.132','normal','',0,0,0,1,0,'{\"login\":[1633297723]}'),(5658,'122.162.163.234','normal','',0,0,0,1,0,'{\"login\":[1633298716]}'),(5659,'59.88.219.80','normal','',0,0,0,1,0,'{\"login\":[1633299087]}'),(5660,'185.38.111.16','normal','',0,0,0,1,0,'{\"login\":[1633300374]}'),(5661,'213.166.132.167','normal','',0,0,0,1,0,'{\"login\":[1633301417]}'),(5662,'45.79.38.68','normal','',0,0,0,0,0,'[]'),(5663,'51.222.253.4','normal','',0,0,0,0,0,'[]'),(5664,'82.156.109.203','normal','',0,0,0,33,0,'{\"login\":[1633306049,1635345832,1636815805,1637291878,1637376437,1637816368,1637849373,1637991927,1639252139,1639258507,1641359434,1641936099,1644295855,1644477198,1646049203,1646452277,1646453745,1646719804,1646984650,1647568675,1647677581,1648079388,1648104605,1648198800,1649025025,1652008099,1652035446,1652512736,1652890303,1653754055,1654321208,1655035529,1656734690]}'),(5665,'114.119.139.185','normal','',0,0,0,0,0,'[]'),(5666,'194.36.147.222','normal','',0,0,0,2,0,'{\"login\":[1633307560,1634118492]}'),(5667,'5.44.106.30','normal','',0,0,0,2,0,'{\"login\":[1633310663,1634345754]}'),(5668,'119.93.198.250','normal','',0,0,0,1,0,'{\"login\":[1633310745]}'),(5669,'179.113.246.20','normal','',0,0,0,1,0,'{\"login\":[1633313771]}'),(5670,'109.106.254.58','normal','',0,0,0,0,1,'{\"nf\":[1633314094]}'),(5671,'175.176.87.3','normal','',0,0,0,1,0,'{\"login\":[1633315984]}'),(5672,'199.168.103.250','normal','',0,0,0,5,0,'{\"login\":[1633316461,1633421750,1633454159,1633526447,1633540785]}'),(5673,'69.30.223.91','normal','',0,0,0,2,0,'{\"login\":[1633316473,1633350203]}'),(5674,'114.119.153.53','normal','',0,0,0,0,0,'[]'),(5675,'94.232.44.105','blocked','You have been locked out due to too many invalid login attempts.',1641120582,1641120282,0,5,0,'{\"nf\":[],\"login\":[1641120273,1641120274,1641120276,1641120279,1641120282]}'),(5676,'102.115.186.34','normal','',0,0,0,1,0,'{\"login\":[1633321764]}'),(5677,'162.241.61.85','normal','',0,0,0,0,1,'{\"nf\":[1633323511]}'),(5678,'54.37.131.60','normal','',0,0,0,4,0,'{\"login\":[1633324114,1633894772,1633910190,1633925612]}'),(5679,'5.189.189.196','normal','',0,0,0,3,0,'{\"login\":[1633325616,1633336246,1634079318]}'),(5680,'114.119.144.127','normal','',0,0,0,0,0,'[]'),(5681,'54.253.45.149','normal','',0,0,0,1,0,'{\"login\":[1633331688]}'),(5682,'75.119.200.105','normal','',0,0,0,0,4,'{\"nf\":[1633705879,1633705880,1634374273,1634374275]}'),(5683,'75.119.200.105','normal','',0,0,0,0,0,'[]'),(5684,'188.252.167.250','normal','',0,0,0,1,0,'{\"login\":[1633339192]}'),(5685,'54.189.209.87','normal','',0,0,0,1,0,'{\"login\":[1633342272]}'),(5686,'41.216.202.80','normal','',0,0,0,1,0,'{\"login\":[1633342368]}'),(5687,'114.119.144.143','normal','',0,0,0,0,0,'[]'),(5688,'5.101.156.232','normal','',0,0,0,8,1,'{\"nf\":[1633346601],\"login\":[1659352325,1659377250,1659414208,1661762538,1661763308,1661778093,1661813785,1661838621]}'),(5689,'20.106.159.40','normal','',0,0,0,0,1,'{\"nf\":[1633347879]}'),(5690,'77.254.187.68','normal','',0,0,0,1,0,'{\"login\":[1633348762]}'),(5691,'198.38.82.252','normal','',0,0,0,0,0,'[]'),(5692,'77.137.179.177','normal','',0,0,0,1,0,'{\"login\":[1633349578]}'),(5693,'42.236.10.125','normal','',0,0,0,0,0,'[]'),(5694,'27.115.124.109','normal','',0,0,0,0,0,'[]'),(5695,'86.32.63.192','normal','',0,0,0,1,0,'{\"login\":[1633350720]}'),(5696,'82.165.86.11','normal','',0,0,0,0,1,'{\"nf\":[1633352944]}'),(5697,'185.31.175.213','normal','',0,0,0,0,0,'[]'),(5698,'35.215.44.187','normal','',0,0,0,0,1,'{\"nf\":[1633372439]}'),(5699,'44.234.110.88','normal','',0,0,0,0,1,'{\"nf\":[1633372574]}'),(5700,'107.150.60.237','normal','',0,0,0,10,0,'{\"login\":[1633379291,1633379486,1633379871,1633437390,1633467817,1633511411,1633828358,1633861432,1633904478,1634694356]}'),(5701,'54.189.131.174','normal','',0,0,0,0,0,'[]'),(5702,'164.90.135.78','normal','',0,0,0,0,0,'[]'),(5703,'144.76.91.79','normal','',0,0,0,0,0,'[]'),(5704,'138.197.32.80','normal','',0,0,0,0,2,'{\"nf\":[1633416504,1633416506]}'),(5705,'212.193.30.154','normal','',0,0,0,0,1,'{\"nf\":[1633431558]}'),(5706,'107.150.48.235','normal','',0,0,0,21,0,'{\"login\":[1633437421,1633437678,1634538625,1644072900,1644102767,1644122949,1644126945,1644209832,1644214615,1644225588,1644263963,1644264343,1644291202,1644305934,1644337903,1644350060,1644916237,1644919914,1644949187,1644995116,1645092182]}'),(5707,'54.36.148.163','normal','',0,0,0,0,0,'[]'),(5708,'40.87.23.140','normal','',0,0,0,0,4,'{\"nf\":[1633441815,1633441827,1634275284,1634275286]}'),(5709,'74.208.57.119','normal','',0,0,0,0,0,'[]'),(5710,'144.34.180.109','normal','',0,0,0,0,1,'{\"nf\":[1633446662]}'),(5711,'203.175.72.1','normal','',0,0,0,1,0,'{\"login\":[1633451934]}'),(5712,'102.165.77.158','normal','',0,0,0,0,0,'[]'),(5713,'54.186.5.115','normal','',0,0,0,0,0,'[]'),(5714,'34.212.33.94','normal','',0,0,0,0,0,'[]'),(5715,'54.148.69.39','normal','',0,0,0,0,0,'[]'),(5716,'54.188.13.11','normal','',0,0,0,0,0,'[]'),(5717,'54.244.108.188','normal','',0,0,0,0,0,'[]'),(5718,'157.55.39.50','normal','',0,0,0,0,0,'[]'),(5719,'45.172.83.18','normal','',0,0,0,1,0,'{\"login\":[1633473814]}'),(5720,'54.188.39.36','normal','',0,0,0,0,0,'[]'),(5721,'5.9.141.8','normal','',0,0,0,0,0,'[]'),(5722,'134.209.83.144','normal','',0,0,0,0,5,'{\"nf\":[1633490723,1634210713,1635559939,1635589094,1636957047]}'),(5723,'114.119.142.72','normal','',0,0,0,0,0,'[]'),(5724,'69.30.225.179','normal','',0,0,0,8,0,'{\"login\":[1633497492,1633514039,1633514156,1633525327,1633591426,1634406343,1634426448,1634439033]}'),(5725,'159.65.24.22','normal','',0,0,0,0,0,'[]'),(5726,'105.186.92.88','normal','',0,0,0,0,0,'[]'),(5727,'51.222.253.10','normal','',0,0,0,0,1,'{\"nf\":[1656865232]}'),(5728,'173.208.152.235','normal','',0,0,0,5,0,'{\"login\":[1633513451,1633513935,1633541125,1633911779,1634918247]}'),(5729,'148.72.193.133','normal','',0,0,0,0,0,'[]'),(5730,'194.233.79.157','normal','',0,0,0,0,0,'[]'),(5731,'82.117.194.229','normal','',0,0,0,0,1,'{\"nf\":[1633515241]}'),(5732,'165.22.107.211','normal','',0,0,0,2,0,'{\"login\":[1633538098,1634932468]}'),(5733,'196.28.247.94','normal','',0,0,0,0,0,'[]'),(5734,'109.69.67.17','normal','',0,0,0,0,0,'[]'),(5735,'186.64.114.20','normal','',0,0,0,0,0,'[]'),(5736,'143.198.145.39','normal','',0,0,0,0,0,'[]'),(5737,'144.202.103.47','normal','',0,0,0,0,0,'[]'),(5738,'93.104.209.143','normal','',0,0,0,1,0,'{\"login\":[1633525978]}'),(5739,'209.87.149.159','normal','',0,0,0,2,0,'{\"login\":[1633529036,1634941292]}'),(5740,'186.64.118.185','normal','',0,0,0,1,0,'{\"login\":[1633534134]}'),(5741,'40.77.167.51','normal','',0,0,0,0,0,'[]'),(5742,'177.52.160.63','normal','',0,0,0,2,0,'{\"login\":[1633538824,1633996517]}'),(5743,'204.12.206.46','normal','',0,0,0,9,0,'{\"login\":[1633541197,1633568429,1633568431,1633604266,1633609222,1633618527,1633843074,1633844835,1633883452]}'),(5744,'107.150.48.236','normal','',0,0,0,5,0,'{\"login\":[1633553716,1633568579,1633568581,1644558661,1644584700]}'),(5745,'50.116.34.211','normal','',0,0,0,0,1,'{\"nf\":[1633542100]}'),(5746,'207.148.86.30','normal','',0,0,0,2,0,'{\"login\":[1633542505,1633543240]}'),(5747,'165.227.76.254','normal','',0,0,0,1,0,'{\"login\":[1633544684]}'),(5748,'143.110.218.233','normal','',0,0,0,1,0,'{\"login\":[1633546891]}'),(5749,'185.134.22.81','normal','',0,0,0,0,0,'[]'),(5750,'47.241.26.170','normal','',0,0,0,2,0,'{\"login\":[1633549987,1650342341]}'),(5751,'34.211.56.185','normal','',0,0,0,0,0,'[]'),(5752,'54.186.134.31','normal','',0,0,0,0,0,'[]'),(5753,'34.220.55.205','normal','',0,0,0,0,0,'[]'),(5754,'54.201.254.220','normal','',0,0,0,0,0,'[]'),(5755,'54.244.66.189','normal','',0,0,0,0,0,'[]'),(5756,'74.119.238.38','normal','',0,0,0,0,1,'{\"nf\":[1633554110]}'),(5757,'45.79.151.52','normal','',0,0,0,1,0,'{\"login\":[1633554613]}'),(5758,'65.108.56.2','normal','',0,0,0,0,0,'[]'),(5759,'201.148.104.130','normal','',0,0,0,1,0,'{\"login\":[1633556992]}'),(5760,'45.141.87.42','normal','',0,0,0,0,0,'[]'),(5761,'143.110.231.72','normal','',0,0,0,0,0,'[]'),(5762,'161.35.91.198','normal','',0,0,0,0,0,'[]'),(5763,'104.248.146.18','normal','',0,0,0,1,0,'{\"login\":[1633563520]}'),(5764,'89.207.146.189','normal','',0,0,0,13,0,'{\"login\":[1633564577,1634931775,1635422680,1635734939,1636906987,1637874231,1638441431,1638462645,1638809344,1638846930,1639150334,1639319406,1639904861]}'),(5765,'94.153.161.234','normal','',0,0,0,12,0,'{\"login\":[1633567619,1633721577,1634220888,1634876138,1636882135,1637459069,1637950821,1640376912,1640511415,1640875629,1641025319,1641178816]}'),(5766,'103.124.92.108','normal','',0,0,0,1,0,'{\"login\":[1633567871]}'),(5767,'81.69.236.136','normal','',0,0,0,2,0,'{\"login\":[1633569619,1634002401]}'),(5768,'18.198.165.122','normal','',0,0,0,1,0,'{\"login\":[1633570568]}'),(5769,'46.63.80.162','normal','',0,0,0,53,0,'{\"login\":[1633572097,1634954576,1634963301,1637378724,1637651518,1637795596,1639158977,1639598823,1639879317,1640610291,1640913353,1641342680,1641366402,1641697321,1641717894,1642048433,1642226102,1642287482,1642519079,1642658211,1643009062,1643567837,1644269987,1644288182,1645733494,1645976778,1646071016,1646812413,1647080246,1647099496,1647444765,1647708928,1647851744,1647959350,1648405978,1650537613,1650716001,1650884608,1651010739,1651013151,1658815429,1659003197,1659328778,1661186722,1661630516,1661660802,1661673839,1661688999,1661714216,1662711817,1662732892,1662910196,1662965062]}'),(5770,'199.168.103.253','normal','',0,0,0,4,0,'{\"login\":[1633572817,1633610175,1633813708,1633820835]}'),(5771,'95.217.104.120','normal','',0,0,0,0,0,'[]'),(5772,'93.191.156.7','normal','',0,0,0,0,0,'[]'),(5773,'104.131.60.249','normal','',0,0,0,0,0,'[]'),(5774,'168.119.3.196','normal','',0,0,0,3,0,'{\"login\":[1633581631,1633836978,1634090191]}'),(5775,'18.139.207.24','normal','',0,0,0,0,0,'[]'),(5776,'192.185.4.69','normal','',0,0,0,0,0,'[]'),(5777,'169.1.247.6','normal','',0,0,0,0,0,'[]'),(5778,'162.241.225.222','normal','',0,0,0,0,5,'{\"nf\":[1633583707,1635828202,1636466835,1636781787,1641673200]}'),(5779,'114.119.144.116','normal','',0,0,0,0,0,'[]'),(5780,'17.121.112.48','normal','',0,0,0,0,0,'[]'),(5781,'18.197.206.79','normal','',0,0,0,1,0,'{\"login\":[1633593210]}'),(5782,'51.222.253.15','normal','',0,0,0,0,0,'[]'),(5783,'54.36.148.250','normal','',0,0,0,0,0,'[]'),(5784,'5.45.75.92','normal','',0,0,0,0,0,'[]'),(5785,'41.71.71.174','normal','',0,0,0,0,0,'[]'),(5786,'94.130.154.117','normal','',0,0,0,0,1,'{\"nf\":[1633597855]}'),(5787,'47.99.177.217','normal','',0,0,0,2,0,'{\"login\":[1633598282,1634367871]}'),(5788,'85.158.183.61','normal','',0,0,0,0,1,'{\"nf\":[1633598912]}'),(5789,'198.54.120.73','normal','',0,0,0,0,1,'{\"nf\":[1633599033]}'),(5790,'51.222.253.1','normal','',0,0,0,0,0,'[]'),(5791,'51.222.253.8','normal','',0,0,0,0,1,'{\"nf\":[1660121156]}'),(5792,'95.211.162.176','normal','',0,0,0,0,0,'[]'),(5793,'23.91.100.242','normal','',0,0,0,0,0,'[]'),(5794,'212.192.241.35','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1633847774,0,1633847474,0,21,'{\"nf\":[1633602613,1633847387,1633847391,1633847395,1633847401,1633847418,1633847422,1633847426,1633847429,1633847432,1633847437,1633847441,1633847445,1633847449,1633847451,1633847454,1633847458,1633847461,1633847465,1633847469,1633847474]}'),(5795,'149.129.129.61','normal','',0,0,0,0,0,'[]'),(5796,'3.85.17.122','normal','',0,0,0,0,0,'[]'),(5797,'103.63.215.26','normal','',0,0,0,0,0,'[]'),(5798,'128.199.108.205','normal','',0,0,0,49,0,'{\"login\":[1636712097,1637522167,1637758075,1638408582,1638495513,1638933779,1639659125,1642770441,1649772022,1650206718,1650229996,1651415069,1652173065,1652179731,1652214315,1652222590,1652233988,1652817583,1652830052,1652845302,1653546869,1653565674,1653586121,1653596043,1653616316,1654524265,1655140583,1655282777,1655297961,1656752114,1656786518,1656789490,1656797878,1656812382,1656812737,1656817919,1657431081,1657445649,1657453708,1657486590,1657520704,1657658443,1657793712,1657871468,1661803165,1661828384,1661830880,1661840891,1661843497]}'),(5799,'67.205.133.39','normal','',0,0,0,0,1,'{\"nf\":[1633604921]}'),(5800,'51.222.253.17','normal','',0,0,0,0,0,'[]'),(5801,'54.36.148.112','normal','',0,0,0,0,0,'[]'),(5802,'114.119.132.23','normal','',0,0,0,0,0,'[]'),(5803,'185.82.126.13','normal','',0,0,0,0,0,'[]'),(5804,'157.90.127.39','normal','',0,0,0,0,0,'[]'),(5805,'39.105.87.72','normal','',0,0,0,0,2,'{\"nf\":[1633610458,1633610465]}'),(5806,'131.72.236.148','normal','',0,0,0,1,0,'{\"login\":[1635855639]}'),(5807,'91.206.200.174','normal','',0,0,0,0,1,'{\"nf\":[1633613261]}'),(5808,'39.106.55.148','normal','',0,0,0,28,0,'{\"login\":[1634924249,1636908536,1637716745,1637819465,1638981432,1638986550,1639158272,1639657647,1639711798,1639827863,1640292464,1641355321,1641878405,1643046009,1643296726,1643621360,1643673801,1644216083,1644251717,1644552323,1644555949,1645076718,1645256595,1646070084,1647583828,1647703934,1647771265,1647864852]}'),(5809,'199.116.78.158','normal','',0,0,0,3,0,'{\"login\":[1633616248,1633956428,1637482717]}'),(5810,'128.199.219.252','normal','',0,0,0,0,0,'[]'),(5811,'87.230.21.145','normal','',0,0,0,0,12,'{\"nf\":[1633618601,1633618602,1633618603,1633618604,1633618605,1633618605,1633618606,1633618608,1633618609,1633618609,1633618609,1633618610]}'),(5812,'35.182.54.218','normal','',0,0,0,2,0,'{\"login\":[1633619682,1633620205]}'),(5813,'69.30.225.181','normal','',0,0,0,6,0,'{\"login\":[1633620728,1633631499,1633664508,1633782662,1633783920,1634707303]}'),(5814,'54.36.148.183','normal','',0,0,0,0,0,'[]'),(5815,'143.110.187.110','normal','',0,0,0,2,0,'{\"login\":[1633624720,1634317110]}'),(5816,'64.225.29.51','normal','',0,0,0,4,0,'{\"login\":[1633626577,1633810911,1634954100,1635664845]}'),(5817,'209.126.24.5','normal','',0,0,0,0,6,'{\"nf\":[1633626731,1635362568,1635380133,1636113598,1637030037,1637030041]}'),(5818,'78.28.227.71','normal','',0,0,0,0,7,'{\"nf\":[1633632444,1636955783,1637633929,1638725053,1639174638,1639861871,1639861873]}'),(5819,'142.54.177.2','normal','',0,0,0,4,0,'{\"login\":[1633633436,1633641055,1633642271,1633650275]}'),(5820,'3.249.7.127','normal','',0,0,0,3,0,'{\"login\":[1633634916,1633697303,1633934212]}'),(5821,'197.94.215.244','normal','',0,0,0,0,0,'[]'),(5822,'88.99.137.102','normal','',0,0,0,0,4,'{\"nf\":[1633635930,1633674564,1633674568,1633685160]}'),(5823,'208.109.8.184','normal','',0,0,0,5,0,'{\"login\":[1633636036,1634236825,1634277368,1634331044,1635354542]}'),(5824,'54.187.123.120','normal','',0,0,0,0,0,'[]'),(5825,'54.200.199.140','normal','',0,0,0,0,0,'[]'),(5826,'185.73.67.33','normal','',0,0,0,1,0,'{\"login\":[1633639370]}'),(5827,'199.168.103.254','normal','',0,0,0,0,0,'[]'),(5828,'173.208.152.236','normal','',0,0,0,7,0,'{\"login\":[1633782506,1633798360,1633798360,1633813611,1633813675,1633828221,1633828335]}'),(5829,'198.98.48.203','normal','',0,0,0,0,0,'[]'),(5830,'103.233.2.147','normal','',0,0,0,3,0,'{\"login\":[1635859609,1640860627,1640869937]}'),(5831,'161.97.72.177','normal','',0,0,0,3,0,'{\"login\":[1633645744,1633856385,1634349502]}'),(5832,'111.231.82.232','normal','',0,0,0,4,0,'{\"login\":[1634016186,1638452884,1640260522,1650343269]}'),(5833,'186.64.114.125','normal','',0,0,0,0,0,'[]'),(5834,'5.253.62.82','normal','',0,0,0,3,0,'{\"login\":[1633647739,1635453447,1637445184]}'),(5835,'89.161.250.173','normal','',0,0,0,0,1,'{\"nf\":[1633654003]}'),(5836,'208.111.0.58','normal','',0,0,0,2,0,'{\"login\":[1634940909,1635863844]}'),(5837,'107.150.60.235','normal','',0,0,0,2,0,'{\"login\":[1633659445,1633697248]}'),(5838,'114.119.153.118','normal','',0,0,0,0,0,'[]'),(5839,'114.119.147.181','normal','',0,0,0,0,0,'[]'),(5840,'114.119.151.83','normal','',0,0,0,0,0,'[]'),(5841,'114.119.139.202','normal','',0,0,0,0,0,'[]'),(5842,'107.150.48.238','normal','',0,0,0,16,0,'{\"login\":[1633666049,1633682404,1633753371,1634739856,1634785484,1634797582,1643928104,1643943013,1643995531,1644028500,1644446914,1644455611,1644470354,1644473681,1644482862,1644503592]}'),(5843,'154.0.170.171','normal','',0,0,0,1,0,'{\"login\":[1650128785]}'),(5844,'3.109.170.172','normal','',0,0,0,1,0,'{\"login\":[1633985280]}'),(5845,'167.99.181.1','normal','',0,0,0,0,6,'{\"nf\":[1633676047,1633676051,1633899572,1633956936,1662587267,1662600550]}'),(5846,'186.64.116.165','normal','',0,0,0,0,0,'[]'),(5847,'51.222.253.13','normal','',0,0,0,0,0,'[]'),(5848,'85.209.148.209','normal','',0,0,0,1,0,'{\"login\":[1634936974]}'),(5849,'182.93.78.13','normal','',0,0,0,0,0,'[]'),(5850,'45.162.168.221','normal','',0,0,0,2,0,'{\"login\":[1634939201,1638421211]}'),(5851,'185.70.11.21','normal','',0,0,0,0,0,'[]'),(5852,'156.38.216.210','normal','',0,0,0,26,0,'{\"login\":[1633701588,1635567711,1636707729,1637195562,1637431187,1637683736,1637925693,1638494866,1638742722,1638874061,1639020953,1639037786,1639865134,1640438096,1641222801,1641832137,1641915115,1641922840,1642010785,1642146610,1642550913,1644437220,1644631766,1644721381,1644825944,1645352207]}'),(5853,'151.106.116.212','normal','',0,0,0,0,1,'{\"nf\":[1633704691]}'),(5854,'187.45.193.218','normal','',0,0,0,0,2,'{\"nf\":[1633705295,1635969344]}'),(5855,'162.241.252.197','normal','',0,0,0,0,0,'[]'),(5856,'194.5.175.215','normal','',0,0,0,1,0,'{\"login\":[1633989487]}'),(5857,'177.153.50.141','normal','',0,0,0,1,0,'{\"login\":[1634009961]}'),(5858,'188.40.224.240','normal','',0,0,0,0,0,'[]'),(5859,'213.190.6.120','normal','',0,0,0,0,1,'{\"nf\":[1633716387]}'),(5860,'104.131.108.143','normal','',0,0,0,5,0,'{\"login\":[1634014235,1634928174,1640794022,1642195470,1642213510]}'),(5861,'50.62.208.55','normal','',0,0,0,0,1,'{\"nf\":[1633719292]}'),(5862,'40.77.167.10','normal','',0,0,0,0,0,'[]'),(5863,'34.221.143.163','normal','',0,0,0,0,0,'[]'),(5864,'70.36.5.102','normal','',0,0,0,19,0,'{\"login\":[1633732950,1633898409,1637432798,1637641867,1637812848,1637855727,1637890544,1637945984,1639049743,1639564043,1639737931,1639779957,1639795981,1639882900,1640365646,1641199408,1641395270,1641931616,1642292316]}'),(5865,'3.141.170.151','normal','',0,0,0,0,0,'[]'),(5866,'188.166.1.143','normal','',0,0,0,58,0,'{\"login\":[1633740837,1634385379,1634865736,1634997478,1635337491,1635873945,1636812260,1636922871,1637698394,1638160166,1638219423,1638320549,1638445704,1638789284,1638837063,1639010354,1639156119,1639170458,1639505934,1639990142,1640289323,1640344565,1640410168,1640647000,1640727090,1640840057,1640930364,1640992638,1641375299,1641499615,1641693965,1641968077,1642249154,1642322735,1642624545,1643562678,1644156272,1644176176,1644177185,1644575280,1644594757,1644680226,1644794618,1646083252,1646446624,1646931300,1647317421,1647439315,1647480639,1647915372,1648074790,1648148144,1649211892,1649500271,1649689722,1650025179,1650406560,1650410870]}'),(5867,'220.181.51.92','normal','',0,0,0,0,0,'[]'),(5868,'161.69.99.11','normal','',0,0,0,0,0,'[]'),(5869,'107.189.28.241','normal','',0,0,0,0,0,'[]'),(5870,'42.236.10.107','normal','',0,0,0,0,0,'[]'),(5871,'185.130.104.185','normal','',0,0,0,0,0,'[]'),(5872,'40.77.167.42','normal','',0,0,0,0,0,'[]'),(5873,'209.127.17.242','normal','',0,0,0,0,0,'[]'),(5874,'81.17.18.62','normal','',0,0,0,0,0,'[]'),(5875,'51.75.202.101','normal','',0,0,0,1,0,'{\"login\":[1633768256]}'),(5876,'62.233.120.26','normal','',0,0,0,0,0,'[]'),(5877,'74.208.56.70','normal','',0,0,0,0,1,'{\"nf\":[1633777668]}'),(5878,'95.217.92.171','normal','',0,0,0,4,0,'{\"login\":[1633777923,1633876554,1634440216,1634495487]}'),(5879,'50.62.149.155','normal','',0,0,0,0,0,'[]'),(5880,'148.72.232.100','normal','',0,0,0,0,0,'[]'),(5881,'149.129.167.106','normal','',0,0,0,0,0,'[]'),(5882,'143.198.52.40','normal','',0,0,0,0,0,'[]'),(5883,'213.52.117.179','blocked','You have been locked out due to too many invalid login attempts.',1633795072,1633794772,0,5,0,'{\"login\":[1633794770,1633794770,1633794771,1633794772,1633794772]}'),(5884,'186.139.219.45','normal','',0,0,0,1,0,'{\"login\":[1633795772]}'),(5885,'197.87.63.45','normal','',0,0,0,0,0,'[]'),(5886,'212.129.245.105','normal','',0,0,0,1,0,'{\"login\":[1634930281]}'),(5887,'54.38.192.203','normal','',0,0,0,3,0,'{\"login\":[1633804186,1633833285,1634024467]}'),(5888,'198.71.231.29','normal','',0,0,0,0,0,'[]'),(5889,'143.198.176.251','normal','',0,0,0,8,0,'{\"login\":[1636717251,1636719387,1637066306,1637072008,1637530351,1637535073,1644437949,1646695400]}'),(5890,'120.53.117.219','normal','',0,0,0,2,0,'{\"login\":[1634938296,1636632196]}'),(5891,'52.10.68.24','normal','',0,0,0,0,0,'[]'),(5892,'162.240.2.110','normal','',0,0,0,0,0,'[]'),(5893,'200.147.58.5','normal','',0,0,0,0,0,'[]'),(5894,'31.177.95.104','normal','',0,0,0,0,0,'[]'),(5895,'134.209.67.220','normal','',0,0,0,1,0,'{\"login\":[1633817051]}'),(5896,'195.28.11.250','normal','',0,0,0,1,0,'{\"login\":[1634940542]}'),(5897,'200.74.245.170','normal','',0,0,0,2,0,'{\"login\":[1633998949,1634001484]}'),(5898,'89.238.223.38','normal','',0,0,0,7,0,'{\"login\":[1633820672,1635044304,1635587396,1636748768,1637157489,1637196931,1637653362]}'),(5899,'92.205.2.123','normal','',0,0,0,0,0,'[]'),(5900,'206.189.196.234','normal','',0,0,0,0,0,'[]'),(5901,'81.88.52.165','normal','',0,0,0,0,0,'[]'),(5902,'148.66.147.28','normal','',0,0,0,0,0,'[]'),(5903,'177.55.112.31','normal','',0,0,0,0,0,'[]'),(5904,'182.50.135.64','normal','',0,0,0,0,0,'[]'),(5905,'114.119.148.174','normal','',0,0,0,0,0,'[]'),(5906,'50.87.144.189','normal','',0,0,0,0,0,'[]'),(5907,'17.121.115.18','normal','',0,0,0,0,0,'[]'),(5908,'134.119.45.54','normal','',0,0,0,0,2,'{\"nf\":[1633837610,1636160219]}'),(5909,'207.46.13.16','normal','',0,0,0,0,0,'[]'),(5910,'114.119.137.3','normal','',0,0,0,0,0,'[]'),(5911,'199.168.103.251','normal','',0,0,0,3,0,'{\"login\":[1633844144,1633864504,1633904240]}'),(5912,'186.64.118.30','normal','',0,0,0,1,0,'{\"login\":[1633846925]}'),(5913,'142.54.177.6','normal','',0,0,0,9,0,'{\"login\":[1633850805,1633851247,1633851271,1633857002,1633861638,1633870280,1633885452,1633890555,1633903510]}'),(5914,'173.208.152.234','normal','',0,0,0,2,0,'{\"login\":[1633862223,1634398264]}'),(5915,'184.168.97.184','normal','',0,0,0,0,0,'[]'),(5916,'143.198.66.153','normal','',0,0,0,0,0,'[]'),(5917,'185.238.75.78','normal','',0,0,0,9,0,'{\"login\":[1633854510,1633952851,1634399265,1635637916,1638142712,1638331702,1638525898,1639279920,1639926754]}'),(5918,'124.121.3.113','normal','',0,0,0,0,0,'[]'),(5919,'34.69.109.132','normal','',0,0,0,56,0,'{\"login\":[1633878909,1633994907,1637366249,1637701403,1638238287,1639148091,1639325493,1639877175,1641353970,1641774935,1641924111,1641976472,1642029920,1643092644,1643475823,1644300250,1644445391,1644459859,1644666828,1645205553,1645447458,1646649856,1646650272,1647853371,1648052209,1648595099,1649544644,1650397095,1651943613,1652092999,1652996890,1653069073,1654544292,1654713685,1655822311,1656814475,1657256865,1657324041,1657419886,1658060452,1658216588,1658516316,1658818005,1659139574,1659770413,1660339786,1660592840,1660700696,1660790063,1661438731,1661622014,1662086085,1662094087,1662357892,1662785784,1663131509]}'),(5920,'85.215.226.193','normal','',0,0,0,0,1,'{\"nf\":[1633881997]}'),(5921,'193.169.145.202','normal','',0,0,0,0,0,'[]'),(5922,'107.150.48.234','normal','',0,0,0,14,0,'{\"login\":[1633884253,1633894265,1634163321,1634176567,1634180155,1644621878,1644652847,1644686321,1644705459,1644715537,1644735072,1644736829,1644888071,1644893525]}'),(5923,'213.180.203.179','normal','',0,0,0,0,0,'[]'),(5924,'23.108.53.140','normal','',0,0,0,0,0,'[]'),(5925,'69.30.225.182','normal','',0,0,0,2,0,'{\"login\":[1633898069,1634314820]}'),(5926,'41.147.0.78','normal','',0,0,0,0,0,'[]'),(5927,'23.129.64.176','normal','',0,0,0,0,0,'[]'),(5928,'204.12.206.42','normal','',0,0,0,1,0,'{\"login\":[1633912459]}'),(5929,'173.252.87.117','normal','',0,0,0,0,0,'[]'),(5930,'173.252.87.23','normal','',0,0,0,0,0,'[]'),(5931,'114.119.136.247','normal','',0,0,0,0,0,'[]'),(5932,'50.16.64.243','normal','',0,0,0,1,0,'{\"login\":[1633930776]}'),(5933,'81.88.52.106','normal','',0,0,0,80,0,'{\"login\":[1633936699,1634027578,1634048378,1634884016,1635721350,1635989132,1636844886,1636968107,1637824740,1638463936,1638471102,1638507225,1639179111,1640026030,1640700358,1640998524,1641156041,1641170737,1641263057,1641341332,1641344095,1641391619,1641729956,1641743740,1641754162,1641767501,1641782185,1642227675,1642404195,1642405839,1642476353,1642516804,1643089443,1643102481,1644169168,1644476154,1644741095,1644823952,1646002584,1646292527,1646295554,1646426582,1646432421,1646626417,1646667293,1646855686,1647014418,1647238169,1647454636,1647739737,1647741786,1648219494,1649970948,1650648793,1651199393,1651590149,1651974716,1652896528,1653244268,1653620585,1654086405,1654159942,1654420616,1654766574,1655400102,1656560576,1657619267,1658304198,1658525056,1658643166,1659843053,1660958657,1661198974,1661233920,1661645050,1662278169,1662408741,1662416929,1662791131,1663012731]}'),(5934,'188.166.218.146','normal','',0,0,0,0,8,'{\"nf\":[1633945496,1633945499,1633945506,1635266800,1635599341,1636197658,1638126858,1639227594]}'),(5935,'17.121.112.249','normal','',0,0,0,0,0,'[]'),(5936,'149.56.160.164','normal','',0,0,0,0,2,'{\"nf\":[1633948126,1633948143]}'),(5937,'54.39.243.186','normal','',0,0,0,0,0,'[]'),(5938,'103.142.254.130','normal','',0,0,0,16,0,'{\"login\":[1633949423,1636862313,1639726423,1640353656,1640820609,1640841078,1640989476,1641352608,1641755669,1641805846,1642558955,1643309794,1643313941,1644134810,1644395051,1644589279]}'),(5939,'213.190.6.178','normal','',0,0,0,0,1,'{\"nf\":[1633956756]}'),(5940,'77.77.212.90','normal','',0,0,0,22,0,'{\"login\":[1633958234,1634360625,1635632496,1637090637,1637171777,1637829883,1638233794,1638283937,1639160393,1639174059,1639235359,1639257082,1639567689,1639683616,1639825711,1639921634,1639967303,1640159631,1640300681,1640497877,1641367830,1641373809]}'),(5941,'162.214.80.24','normal','',0,0,0,0,1,'{\"nf\":[1634331825]}'),(5942,'159.89.164.6','normal','',0,0,0,0,1,'{\"nf\":[1633964625]}'),(5943,'148.72.232.140','normal','',0,0,0,0,2,'{\"nf\":[1633972537,1633972540]}'),(5944,'103.104.73.82','normal','',0,0,0,1,0,'{\"login\":[1634933741]}'),(5945,'34.219.9.67','normal','',0,0,0,0,0,'[]'),(5946,'35.85.145.227','normal','',0,0,0,0,0,'[]'),(5947,'54.202.155.192','normal','',0,0,0,0,0,'[]'),(5948,'113.190.234.44','normal','',0,0,0,1,0,'{\"login\":[1633986639]}'),(5949,'143.198.40.252','normal','',0,0,0,2,0,'{\"login\":[1633992199,1634016747]}'),(5950,'114.119.146.20','normal','',0,0,0,0,0,'[]'),(5951,'167.71.193.214','normal','',0,0,0,2,0,'{\"login\":[1633994613,1642228451]}'),(5952,'82.165.87.104','normal','',0,0,0,0,2,'{\"nf\":[1633998327,1634520205]}'),(5953,'146.88.26.150','normal','',0,0,0,2,0,'{\"login\":[1633998469,1634002897]}'),(5954,'89.109.14.213','normal','',0,0,0,4,0,'{\"login\":[1634000228,1634305317,1634930186,1634990660]}'),(5955,'85.25.12.13','normal','',0,0,0,0,0,'[]'),(5956,'114.119.129.163','normal','',0,0,0,0,0,'[]'),(5957,'121.5.219.20','normal','',0,0,0,0,0,'[]'),(5958,'89.42.210.188','normal','',0,0,0,3,0,'{\"login\":[1634005979,1634008402,1654004955]}'),(5959,'78.46.63.108','normal','',0,0,0,0,0,'[]'),(5960,'144.76.6.230','normal','',0,0,0,0,0,'[]'),(5961,'69.160.160.52','normal','',0,0,0,0,1,'{\"nf\":[1634008212]}'),(5962,'5.134.127.244','normal','',0,0,0,0,2,'{\"nf\":[1634010110,1641643617]}'),(5963,'195.248.71.34','normal','',0,0,0,33,0,'{\"login\":[1634012710,1634041150,1635436189,1635551377,1636702057,1636709882,1636719926,1636723615,1637082271,1637104841,1637107178,1637517581,1637630605,1637634098,1637768197,1637784115,1639630804,1640812061,1640834480,1641604443,1641640753,1642750431,1643735543,1644323578,1644406629,1644434870,1644474685,1644505718,1644532904,1645651815,1647290992,1647391049,1648130169]}'),(5964,'112.213.103.201','normal','',0,0,0,1,0,'{\"login\":[1634014557]}'),(5965,'114.119.145.36','normal','',0,0,0,0,0,'[]'),(5966,'203.156.124.243','normal','',0,0,0,2,0,'{\"login\":[1634016544,1638940055]}'),(5967,'143.198.150.47','normal','',0,0,0,2,0,'{\"login\":[1634020272,1634047192]}'),(5968,'185.100.87.129','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1652291766,0,1652291466,0,20,'{\"nf\":[1652291437,1652291438,1652291440,1652291442,1652291443,1652291445,1652291446,1652291447,1652291449,1652291450,1652291452,1652291453,1652291455,1652291457,1652291458,1652291459,1652291461,1652291462,1652291464,1652291466]}'),(5969,'185.244.173.138','normal','',0,0,0,0,2,'{\"nf\":[1634024700,1638255092]}'),(5970,'159.89.41.39','normal','',0,0,0,8,0,'{\"login\":[1634025723,1634616403,1636731684,1637044937,1637123107,1637538882,1637781800,1637794208]}'),(5971,'161.35.15.239','normal','',0,0,0,24,0,'{\"login\":[1634026536,1634320064,1634348781,1634418351,1636132892,1636758399,1637072137,1637243043,1637381153,1638702366,1638831664,1640170332,1641206807,1641302253,1641311663,1641395996,1641513866,1641731363,1641846580,1642021423,1642081795,1642309218,1642331551,1642352753]}'),(5972,'46.101.9.157','normal','',0,0,0,3,0,'{\"login\":[1634027646,1634045181,1637870041]}'),(5973,'180.163.220.100','normal','',0,0,0,0,0,'[]'),(5974,'62.171.153.66','normal','',0,0,0,4,0,'{\"login\":[1634031511,1634060983,1634140816,1635540581]}'),(5975,'46.101.145.107','normal','',0,0,0,1,0,'{\"login\":[1634033358]}'),(5976,'52.40.115.128','normal','',0,0,0,0,0,'[]'),(5977,'45.119.86.112','normal','',0,0,0,6,0,'{\"login\":[1634039231,1635432004,1635547385,1637073188,1637509980,1639946667]}'),(5978,'103.147.251.2','normal','',0,0,0,1,0,'{\"login\":[1634043211]}'),(5979,'54.179.28.141','normal','',0,0,0,1,0,'{\"login\":[1634049316]}'),(5980,'112.213.103.164','normal','',0,0,0,3,0,'{\"login\":[1634055089,1634590174,1638894042]}'),(5981,'197.94.220.48','normal','',0,0,0,0,0,'[]'),(5982,'54.186.19.157','normal','',0,0,0,0,0,'[]'),(5983,'84.17.42.12','normal','',0,0,0,0,0,'[]'),(5984,'138.201.8.202','normal','',0,0,0,0,1,'{\"nf\":[1634077951]}'),(5985,'68.65.120.177','normal','',0,0,0,0,1,'{\"nf\":[1634080180]}'),(5986,'104.248.250.19','normal','',0,0,0,2,0,'{\"login\":[1634082468,1635642503]}'),(5987,'122.10.115.63','normal','',0,0,0,0,6,'{\"nf\":[1634086087,1634389009,1637678728,1637678732,1637821396,1638511320]}'),(5988,'178.170.47.29','normal','',0,0,0,2,0,'{\"login\":[1634086822,1634504133]}'),(5989,'213.136.75.74','normal','',0,0,0,0,0,'[]'),(5990,'192.99.212.71','normal','',0,0,0,0,0,'[]'),(5991,'40.77.167.50','normal','',0,0,0,0,0,'[]'),(5992,'10.52.117.163','normal','',0,0,0,0,6,'{\"nf\":[1634103588,1635230219,1636084773,1636330585,1636612225,1638151278]}'),(5993,'136.144.128.230','normal','',0,0,0,2,0,'{\"login\":[1634113346,1634917767]}'),(5994,'41.114.204.28','normal','',0,0,0,0,1,'{\"nf\":[1634114086]}'),(5995,'188.241.148.67','normal','',0,0,0,2,0,'{\"login\":[1634114376,1634517415]}'),(5996,'94.130.134.74','normal','',0,0,0,1,0,'{\"login\":[1634115375]}'),(5997,'54.36.148.86','normal','',0,0,0,0,0,'[]'),(5998,'102.65.161.114','normal','',0,0,0,0,1,'{\"nf\":[1634121351]}'),(5999,'5.189.179.11','normal','',0,0,0,1,0,'{\"login\":[1634122718]}'),(6000,'41.114.158.146','normal','',0,0,0,0,1,'{\"nf\":[1634126387]}'),(6001,'192.232.192.69','normal','',0,0,0,0,1,'{\"nf\":[1634132616]}'),(6002,'114.119.129.107','normal','',0,0,0,0,0,'[]'),(6003,'64.246.187.42','normal','',0,0,0,0,0,'[]'),(6004,'185.201.11.151','normal','',0,0,0,0,5,'{\"nf\":[1634138414,1637727241,1637753429,1637753430,1642257995]}'),(6005,'185.201.11.169','normal','',0,0,0,0,1,'{\"nf\":[1634138417]}'),(6006,'41.114.146.62','normal','',0,0,0,0,2,'{\"nf\":[1634143390,1634143484]}'),(6007,'157.245.204.101','normal','',0,0,0,1,0,'{\"login\":[1634143540]}'),(6008,'114.119.142.126','normal','',0,0,0,0,0,'[]'),(6009,'69.197.131.13','normal','',0,0,0,4,0,'{\"login\":[1634144276,1634162587,1634175967,1634834196]}'),(6010,'103.219.248.60','normal','',0,0,0,1,0,'{\"login\":[1634150358]}'),(6011,'13.71.7.99','normal','',0,0,0,1,0,'{\"login\":[1634151752]}'),(6012,'185.201.11.197','normal','',0,0,0,0,1,'{\"nf\":[1634152600]}'),(6013,'67.205.61.124','normal','',0,0,0,2,0,'{\"login\":[1634155728,1636194669]}'),(6014,'54.244.201.57','normal','',0,0,0,0,0,'[]'),(6015,'54.202.52.126','normal','',0,0,0,0,0,'[]'),(6016,'54.213.224.84','normal','',0,0,0,0,0,'[]'),(6017,'185.31.175.228','normal','',0,0,0,0,0,'[]'),(6018,'185.220.101.8','normal','',0,0,0,0,0,'[]'),(6019,'52.14.90.247','normal','',0,0,0,1,0,'{\"login\":[1634172997]}'),(6020,'103.167.85.69','normal','',0,0,0,0,5,'{\"nf\":[1634173948,1634173953,1634173959,1634173969,1634173974]}'),(6021,'51.222.253.3','normal','',0,0,0,0,0,'[]'),(6022,'173.208.152.237','normal','',0,0,0,2,0,'{\"login\":[1634178724,1634186214]}'),(6023,'167.71.104.1','normal','',0,0,0,1,0,'{\"login\":[1634179823]}'),(6024,'2.57.88.101','normal','',0,0,0,0,1,'{\"nf\":[1634184172]}'),(6025,'103.221.222.216','normal','',0,0,0,1,0,'{\"login\":[1634187699]}'),(6026,'23.19.75.76','normal','',0,0,0,0,0,'[]'),(6027,'54.36.148.224','normal','',0,0,0,0,0,'[]'),(6028,'51.222.253.9','normal','',0,0,0,0,0,'[]'),(6029,'41.114.148.65','normal','',0,0,0,0,1,'{\"nf\":[1634196656]}'),(6030,'102.65.137.131','normal','',0,0,0,0,2,'{\"nf\":[1634197019,1634197128]}'),(6031,'157.7.189.106','normal','',0,0,0,0,1,'{\"nf\":[1634197253]}'),(6032,'120.24.92.233','normal','',0,0,0,0,2,'{\"nf\":[1634198231,1634198239]}'),(6033,'81.88.49.21','normal','',0,0,0,0,1,'{\"nf\":[1634200512]}'),(6034,'173.236.247.197','normal','',0,0,0,0,2,'{\"nf\":[1634202680,1636822755]}'),(6035,'20.203.202.253','normal','',0,0,0,0,1,'{\"nf\":[1634203543]}'),(6036,'160.153.153.147','normal','',0,0,0,0,2,'{\"nf\":[1634205832,1649613574]}'),(6037,'31.24.128.55','normal','',0,0,0,0,0,'[]'),(6038,'80.88.88.246','normal','',0,0,0,0,5,'{\"nf\":[1634208868,1634208875,1634208959,1634209001,1634209034]}'),(6039,'115.126.6.186','normal','',0,0,0,0,2,'{\"nf\":[1634210680,1634623730]}'),(6040,'173.237.190.121','normal','',0,0,0,0,1,'{\"nf\":[1634211298]}'),(6041,'198.12.253.113','normal','',0,0,0,0,0,'[]'),(6042,'35.157.17.17','normal','',0,0,0,2,0,'{\"login\":[1634216332,1634333773]}'),(6043,'197.87.63.75','normal','',0,0,0,0,1,'{\"nf\":[1634216516]}'),(6044,'54.236.56.98','normal','',0,0,0,0,0,'[]'),(6045,'103.155.92.78','normal','',0,0,0,0,0,'[]'),(6046,'114.119.135.186','normal','',0,0,0,0,0,'[]'),(6047,'198.54.125.157','normal','',0,0,0,0,0,'[]'),(6048,'185.86.210.191','normal','',0,0,0,0,0,'[]'),(6049,'31.177.95.252','normal','',0,0,0,2,0,'{\"login\":[1635854660,1640799590]}'),(6050,'176.122.25.12','normal','',0,0,0,0,0,'[]'),(6051,'145.239.30.120','normal','',0,0,0,69,0,'{\"login\":[1634238141,1637312583,1637810454,1638524499,1638832743,1639051941,1639942309,1640048924,1640516193,1642100162,1642235703,1642262118,1642360004,1642598962,1643491542,1644422012,1644701278,1644724431,1644771835,1644807363,1644819736,1645070430,1645758918,1645772326,1645807939,1645957450,1646285906,1646509066,1646540195,1646544562,1646572535,1646852931,1646976807,1647117772,1647118808,1647151233,1647226343,1648295759,1648503247,1648540912,1648723508,1649845051,1650264654,1650405676,1652076865,1652546138,1652652732,1653371716,1653502560,1653596422,1654325713,1654704258,1654793265,1655464210,1656564389,1656916173,1657543272,1658394658,1658582125,1658613064,1658717638,1659336831,1660230160,1660973321,1661413765,1662307528,1662880639,1662959214,1663119310]}'),(6052,'41.114.234.3','normal','',0,0,0,0,1,'{\"nf\":[1634241552]}'),(6053,'54.36.149.8','normal','',0,0,0,0,0,'[]'),(6054,'54.36.149.71','normal','',0,0,0,0,0,'[]'),(6055,'54.201.59.30','normal','',0,0,0,0,0,'[]'),(6056,'157.90.80.180','normal','',0,0,0,25,0,'{\"login\":[1634253746,1635497557,1635728467,1636907808,1637078538,1637152014,1637390172,1637967367,1638237297,1638363170,1638500530,1638512687,1639041021,1639982632,1640186024,1640366210,1640456693,1640814517,1641042594,1641175897,1641261824,1641307339,1641532125,1641739160,1641760109]}'),(6057,'45.129.18.49','normal','',0,0,0,0,0,'[]'),(6058,'34.96.130.21','normal','',0,0,0,0,0,'[]'),(6059,'74.208.34.142','normal','',0,0,0,24,0,'{\"login\":[1634269747,1636811664,1637126014,1637957058,1638209646,1638267821,1638399350,1638499829,1638506551,1639161822,1640368498,1640847272,1641212698,1641366467,1641436174,1641506694,1641819370,1641887037,1642094405,1642147328,1642374799,1642900437,1642909573,1642979305]}'),(6060,'69.30.231.155','normal','',0,0,0,5,0,'{\"login\":[1634270394,1634285519,1634359201,1634390766,1634774851]}'),(6061,'159.89.201.91','normal','',0,0,0,8,0,'{\"login\":[1634274818,1637690744,1637707275,1640588595,1641018367,1641420166,1641895556,1644280417]}'),(6062,'69.30.217.107','normal','',0,0,0,1,0,'{\"login\":[1634276911]}'),(6063,'198.98.51.222','normal','',0,0,0,0,0,'[]'),(6064,'34.71.155.124','normal','',0,0,0,6,0,'{\"login\":[1634280091,1639672356,1641414748,1641427039,1642522693,1642545613]}'),(6065,'185.220.103.4','normal','',0,0,0,0,0,'[]'),(6066,'102.65.250.119','normal','',0,0,0,0,3,'{\"nf\":[1634289367,1634289393,1634289398]}'),(6067,'42.200.231.92','normal','',0,0,0,0,0,'[]'),(6068,'143.198.177.16','normal','',0,0,0,2,0,'{\"login\":[1634290022,1634339004]}'),(6069,'69.30.217.108','normal','',0,0,0,1,0,'{\"login\":[1634291916]}'),(6070,'162.241.7.143','normal','',0,0,0,1,0,'{\"login\":[1642208218]}'),(6071,'159.89.94.185','normal','',0,0,0,0,6,'{\"nf\":[1634292827,1634292908,1634293149,1634293228,1635180700,1635180732]}'),(6072,'185.159.154.200','normal','',0,0,0,0,0,'[]'),(6073,'193.37.214.29','normal','',0,0,0,3,0,'{\"login\":[1634298191,1634363814,1634402251]}'),(6074,'54.36.148.76','normal','',0,0,0,0,0,'[]'),(6075,'138.197.211.148','normal','',0,0,0,1,0,'{\"login\":[1634301691]}'),(6076,'157.245.244.53','normal','',0,0,0,1,0,'{\"login\":[1634302970]}'),(6077,'114.119.148.242','normal','',0,0,0,0,0,'[]'),(6078,'34.86.35.6','normal','',0,0,0,0,0,'[]'),(6079,'51.158.102.9','normal','',0,0,0,0,0,'[]'),(6080,'173.208.152.238','normal','',0,0,0,2,0,'{\"login\":[1634305910,1634337130]}'),(6081,'122.128.106.186','normal','',0,0,0,6,0,'{\"login\":[1634306600,1635415965,1636938702,1637422955,1638253818,1638305442]}'),(6082,'185.26.144.37','normal','',0,0,0,0,8,'{\"nf\":[1634307617,1634724607,1635178071,1636190208,1637566634,1637715494,1637715495,1638340052]}'),(6083,'186.64.117.75','normal','',0,0,0,0,0,'[]'),(6084,'34.72.140.173','normal','',0,0,0,6,0,'{\"login\":[1634310835,1635694139,1640425024,1640426679,1641038060,1642245702]}'),(6085,'34.67.177.189','normal','',0,0,0,3,0,'{\"login\":[1634312617,1634327556,1634338330]}'),(6086,'161.35.19.188','normal','',0,0,0,0,0,'[]'),(6087,'161.167.229.18','normal','',0,0,0,0,0,'[]'),(6088,'110.170.163.67','normal','',0,0,0,0,0,'[]'),(6089,'34.75.253.0','normal','',0,0,0,0,0,'[]'),(6090,'186.64.116.85','normal','',0,0,0,0,0,'[]'),(6091,'69.197.185.43','normal','',0,0,0,3,0,'{\"login\":[1634324511,1634332048,1634381631]}'),(6092,'186.64.114.65','normal','',0,0,0,0,0,'[]'),(6093,'35.238.30.103','normal','',0,0,0,6,0,'{\"login\":[1634329730,1636699077,1636856898,1639242220,1641132195,1641190066]}'),(6094,'35.162.191.142','normal','',0,0,0,0,0,'[]'),(6095,'34.218.77.91','normal','',0,0,0,0,0,'[]'),(6096,'54.191.75.21','normal','',0,0,0,0,0,'[]'),(6097,'35.166.218.224','normal','',0,0,0,0,0,'[]'),(6098,'35.86.154.158','normal','',0,0,0,0,0,'[]'),(6099,'188.214.128.164','normal','',0,0,0,0,1,'{\"nf\":[1634332575]}'),(6100,'164.68.99.94','normal','',0,0,0,14,0,'{\"login\":[1634333141,1635658061,1635712141,1638326204,1638328587,1639152524,1639309666,1640736217,1641148963,1641809193,1642365450,1643292383,1643478085,1644231710]}'),(6101,'3.225.23.16','normal','',0,0,0,2,0,'{\"login\":[1634340309,1634453625]}'),(6102,'192.187.127.19','normal','',0,0,0,2,0,'{\"login\":[1634346538,1634849508]}'),(6103,'185.27.135.166','normal','',0,0,0,0,0,'[]'),(6104,'66.249.66.84','normal','',0,0,0,0,0,'[]'),(6105,'35.198.137.137','normal','',0,0,0,0,0,'[]'),(6106,'75.119.200.14','normal','',0,0,0,0,1,'{\"nf\":[1634359020]}'),(6107,'91.134.248.249','normal','',0,0,0,7,9,'{\"nf\":[1634360907,1635595098,1637288917,1639026018,1641999335,1643294248,1646311826,1646392295,1646392297],\"login\":[1638915813,1650483479,1650522643,1651077202,1651144461,1651301795,1655299052]}'),(6108,'65.108.8.92','normal','',0,0,0,0,0,'[]'),(6109,'51.75.15.189','normal','',0,0,0,64,0,'{\"login\":[1634362648,1637799065,1639294047,1639500744,1639722792,1639834318,1639898456,1640549889,1640634745,1640643768,1640722564,1640813499,1641128513,1641201585,1642200982,1643092321,1643094593,1643123504,1644530336,1645351525,1646551332,1646596640,1646648047,1646657192,1647029829,1647706922,1647716820,1647880522,1648619723,1648733740,1649520906,1649661972,1649833882,1650666813,1651033531,1651729874,1652638947,1653393848,1653777070,1654208959,1654224538,1654250309,1654385738,1654525842,1655051470,1655695544,1656056574,1656248481,1656830954,1657119713,1658083626,1659809397,1660141132,1660144323,1660622337,1660729457,1661404492,1661655579,1661775907,1662365899,1662394994,1662423408,1662559959,1663017061]}'),(6110,'45.77.106.132','normal','',0,0,0,0,0,'[]'),(6111,'157.55.39.157','normal','',0,0,0,0,0,'[]'),(6112,'40.77.167.105','normal','',0,0,0,0,0,'[]'),(6113,'139.59.65.8','normal','',0,0,0,0,0,'[]'),(6114,'40.117.96.146','normal','',0,0,0,0,2,'{\"nf\":[1634367661,1634367676]}'),(6115,'114.119.135.57','normal','',0,0,0,0,0,'[]'),(6116,'20.50.50.121','normal','',0,0,0,0,0,'[]'),(6117,'69.197.131.14','normal','',0,0,0,1,0,'{\"login\":[1634376616]}'),(6118,'186.64.114.175','normal','',0,0,0,0,0,'[]'),(6119,'186.64.116.15','normal','',0,0,0,0,0,'[]'),(6120,'137.184.27.240','normal','',0,0,0,0,0,'[]'),(6121,'119.240.154.39','normal','',0,0,0,0,0,'[]'),(6122,'64.225.28.91','normal','',0,0,0,0,0,'[]'),(6123,'185.31.175.226','normal','',0,0,0,0,0,'[]'),(6124,'139.162.4.197','normal','',0,0,0,0,0,'[]'),(6125,'141.136.39.221','normal','',0,0,0,0,1,'{\"nf\":[1634403333]}'),(6126,'89.163.252.12','normal','',0,0,0,0,0,'[]'),(6127,'87.250.224.148','normal','',0,0,0,0,0,'[]'),(6128,'162.243.4.167','normal','',0,0,0,0,0,'[]'),(6129,'198.12.76.219','blocked','You have been locked out due to too many invalid login attempts.',1634413273,1634412973,0,5,0,'{\"login\":[1634412970,1634412970,1634412971,1634412972,1634412973]}'),(6130,'35.86.169.211','normal','',0,0,0,0,0,'[]'),(6131,'34.219.184.187','normal','',0,0,0,0,0,'[]'),(6132,'186.234.80.131','normal','',0,0,0,0,0,'[]'),(6133,'45.127.45.8','normal','',0,0,0,0,0,'[]'),(6134,'87.106.193.85','normal','',0,0,0,0,0,'[]'),(6135,'186.64.116.195','normal','',0,0,0,0,0,'[]'),(6136,'17.121.113.30','normal','',0,0,0,0,0,'[]'),(6137,'13.86.115.144','normal','',0,0,0,0,1,'{\"nf\":[1634427529]}'),(6138,'43.132.210.140','normal','',0,0,0,0,0,'[]'),(6139,'186.64.114.100','normal','',0,0,0,0,0,'[]'),(6140,'118.27.30.151','normal','',0,0,0,72,0,'{\"login\":[1634431089,1634926715,1636893190,1637813833,1638223451,1638352443,1639774179,1639828574,1640408988,1640432846,1640674703,1641074808,1641305944,1641463296,1641508290,1641512260,1641777872,1641939102,1642121276,1642517261,1643565542,1644124213,1644245081,1645233388,1645241909,1646029032,1646511624,1646612599,1646829528,1647052713,1647135413,1647376292,1647417980,1648226439,1649501883,1649658348,1650842931,1651501758,1651518828,1651578519,1651749789,1651979715,1652940664,1653477412,1654129932,1654142861,1654293127,1654341749,1654348157,1654389453,1655462228,1655577355,1655650985,1656790537,1657111892,1657300964,1657642485,1657834975,1658159926,1658329280,1658953298,1659380115,1659734666,1660732536,1660746496,1661351879,1661619973,1662112227,1662190642,1662262699,1662355155,1663042160]}'),(6141,'114.119.145.52','normal','',0,0,0,0,0,'[]'),(6142,'69.30.231.156','normal','',0,0,0,6,0,'{\"login\":[1634447412,1634470216,1634472699,1634489784,1634495516,1634953439]}'),(6143,'178.254.0.77','normal','',0,0,0,1,0,'{\"login\":[1634449694]}'),(6144,'192.187.127.20','normal','',0,0,0,4,0,'{\"login\":[1634453802,1634459825,1634479262,1634935948]}'),(6145,'111.231.4.211','normal','',0,0,0,13,0,'{\"login\":[1634456741,1636833016,1637711107,1637850540,1638607585,1639476557,1640338737,1640559089,1640566448,1640969612,1641116192,1641433370,1642056256]}'),(6146,'121.5.147.119','normal','',0,0,0,0,0,'[]'),(6147,'195.114.1.194','normal','',0,0,0,0,2,'{\"nf\":[1634469108,1637751223]}'),(6148,'160.119.234.194','normal','',0,0,0,0,1,'{\"nf\":[1634472856]}'),(6149,'54.36.148.100','normal','',0,0,0,0,0,'[]'),(6150,'91.134.248.235','normal','',0,0,0,3,25,'{\"nf\":[1634480311,1634823312,1634824509,1634862744,1635180704,1635284175,1636042005,1636535895,1636595608,1636727030,1637803475,1639470585,1639470588,1639915676,1640024069,1640024072,1640024090,1640024196,1640024230,1640024256,1640024261,1640024366,1640024383,1640024406,1643433802],\"login\":[1637462729,1641406600,1642615312]}'),(6151,'84.17.59.85','normal','',0,0,0,0,0,'[]'),(6152,'162.241.85.189','normal','',0,0,0,0,0,'[]'),(6153,'31.31.196.192','normal','',0,0,0,0,1,'{\"nf\":[1634484862]}'),(6154,'156.155.57.232','normal','',0,0,0,0,0,'[]'),(6155,'79.143.181.62','normal','',0,0,0,5,0,'{\"login\":[1634491362,1636818615,1637137915,1637449780,1637479129]}'),(6156,'54.245.52.10','normal','',0,0,0,0,0,'[]'),(6157,'129.126.255.171','normal','',0,0,0,0,1,'{\"nf\":[1634507091]}'),(6158,'72.167.53.106','normal','',0,0,0,5,0,'{\"login\":[1634508366,1635699328,1636696624,1638257420,1638310957]}'),(6159,'37.25.36.32','normal','',0,0,0,0,0,'[]'),(6160,'42.236.10.121','normal','',0,0,0,0,0,'[]'),(6161,'178.18.254.62','normal','',0,0,0,0,1,'{\"nf\":[1634518525]}'),(6162,'51.222.253.19','normal','',0,0,0,0,0,'[]'),(6163,'46.101.208.179','normal','',0,0,0,3,0,'{\"login\":[1634519219,1641243387,1641358047]}'),(6164,'185.220.101.60','normal','',0,0,0,0,0,'[]'),(6165,'185.73.67.35','normal','',0,0,0,2,0,'{\"login\":[1634521880,1634531587]}'),(6166,'69.197.185.45','normal','',0,0,0,3,0,'{\"login\":[1634526390,1634528868,1634535125]}'),(6167,'40.77.167.47','normal','',0,0,0,0,0,'[]'),(6168,'185.220.101.52','normal','',0,0,0,0,0,'[]'),(6169,'102.182.190.220','normal','',0,0,0,0,0,'[]'),(6170,'188.93.102.206','normal','',0,0,0,0,4,'{\"nf\":[1634540849,1634540862,1634540911,1634540932]}'),(6171,'69.30.225.180','normal','',0,0,0,0,0,'[]'),(6172,'192.187.127.22','normal','',0,0,0,1,0,'{\"login\":[1634546077]}'),(6173,'39.107.251.198','normal','',0,0,0,0,6,'{\"nf\":[1634546902,1639144457,1639144463,1640001710,1640005725,1640005726]}'),(6174,'198.12.76.222','blocked','You have been locked out due to too many invalid login attempts.',1634560023,1634559723,0,5,0,'{\"login\":[1634559720,1634559720,1634559721,1634559722,1634559723]}'),(6175,'5.135.154.75','normal','',0,0,0,0,1,'{\"nf\":[1634561781]}'),(6176,'51.68.11.223','normal','',0,0,0,0,2,'{\"nf\":[1634562448,1634761637]}'),(6177,'162.241.218.49','normal','',0,0,0,0,1,'{\"nf\":[1634572954]}'),(6178,'54.36.149.103','normal','',0,0,0,0,0,'[]'),(6179,'123.145.37.157','normal','',0,0,0,0,0,'[]'),(6180,'185.182.59.46','normal','',0,0,0,0,2,'{\"nf\":[1634577558,1634643532]}'),(6181,'45.129.18.79','normal','',0,0,0,0,0,'[]'),(6182,'54.186.97.77','normal','',0,0,0,0,0,'[]'),(6183,'184.171.251.98','normal','',0,0,0,8,0,'{\"login\":[1634593628,1634738390,1634743011,1634773393,1634778665,1634780429,1635418400,1635570360]}'),(6184,'34.96.130.14','normal','',0,0,0,0,0,'[]'),(6185,'185.23.116.212','normal','',0,0,0,3,0,'{\"login\":[1634600732,1634776013,1635534040]}'),(6186,'89.184.75.180','normal','',0,0,0,1,0,'{\"login\":[1634604338]}'),(6187,'198.71.236.19','normal','',0,0,0,0,0,'[]'),(6188,'114.119.129.33','normal','',0,0,0,0,0,'[]'),(6189,'92.222.10.29','normal','',0,0,0,1,0,'{\"login\":[1634609779]}'),(6190,'149.28.207.59','normal','',0,0,0,0,0,'[]'),(6191,'34.77.162.19','normal','',0,0,0,0,0,'[]'),(6192,'129.205.150.111','normal','',0,0,0,0,0,'[]'),(6193,'194.187.171.132','normal','',0,0,0,0,0,'[]'),(6194,'102.182.190.218','normal','',0,0,0,0,0,'[]'),(6195,'107.180.113.107','normal','',0,0,0,0,1,'{\"nf\":[1634635407]}'),(6196,'162.247.73.192','normal','',0,0,0,0,0,'[]'),(6197,'121.5.103.58','normal','',0,0,0,0,1,'{\"nf\":[1634650390]}'),(6198,'37.48.74.28','normal','',0,0,0,0,0,'[]'),(6199,'198.38.82.238','normal','',0,0,0,0,1,'{\"nf\":[1634653098]}'),(6200,'185.104.29.46','normal','',0,0,0,0,1,'{\"nf\":[1634655176]}'),(6201,'206.81.14.118','normal','',0,0,0,0,2,'{\"nf\":[1634655312,1634655321]}'),(6202,'102.39.194.65','normal','',0,0,0,0,0,'[]'),(6203,'75.119.200.128','normal','',0,0,0,0,2,'{\"nf\":[1634663921,1635855403]}'),(6204,'82.165.84.7','normal','',0,0,0,0,1,'{\"nf\":[1634664664]}'),(6205,'35.86.148.153','normal','',0,0,0,0,0,'[]'),(6206,'197.92.142.160','normal','',0,0,0,0,0,'[]'),(6207,'54.36.148.232','normal','',0,0,0,0,0,'[]'),(6208,'69.197.131.11','normal','',0,0,0,1,0,'{\"login\":[1634673813]}'),(6209,'52.33.142.230','normal','',0,0,0,0,0,'[]'),(6210,'34.220.123.226','normal','',0,0,0,0,0,'[]'),(6211,'54.189.200.152','normal','',0,0,0,0,0,'[]'),(6212,'114.119.137.141','normal','',0,0,0,0,0,'[]'),(6213,'45.129.136.242','normal','',0,0,0,0,4,'{\"nf\":[1634681669,1639602174,1639602175,1643943786]}'),(6214,'54.36.148.172','normal','',0,0,0,0,0,'[]'),(6215,'114.119.150.67','normal','',0,0,0,0,0,'[]'),(6216,'162.241.225.75','normal','',0,0,0,0,2,'{\"nf\":[1634690709,1651176816]}'),(6217,'54.36.148.6','normal','',0,0,0,0,0,'[]'),(6218,'192.99.5.228','normal','',0,0,0,0,0,'[]'),(6219,'69.30.231.158','normal','',0,0,0,2,0,'{\"login\":[1634712272,1634897950]}'),(6220,'40.77.167.44','normal','',0,0,0,0,0,'[]'),(6221,'51.68.11.203','normal','',0,0,0,0,14,'{\"nf\":[1634712462,1635622377,1636024145,1636351834,1636866423,1637229316,1637311145,1638409401,1638515994,1638962329,1639049476,1639205484,1639716883,1640050123]}'),(6222,'198.12.209.53','normal','',0,0,0,0,4,'{\"nf\":[1634713205,1635395425,1635423115,1635596274]}'),(6223,'17.121.115.49','normal','',0,0,0,0,0,'[]'),(6224,'185.217.198.183','normal','',0,0,0,0,2,'{\"nf\":[1634722065,1639375380]}'),(6225,'141.94.87.67','normal','',0,0,0,25,12,'{\"nf\":[1637075208,1637839557,1638034780,1644012298,1644662294,1645557897,1645909214,1662562550,1662597600,1662623311,1662623314,1662658520],\"login\":[1646204374,1646387899,1648671717,1649033771,1649035728,1649762945,1650205398,1650244621,1651421104,1652182598,1652198050,1653499277,1654253742,1654377911,1655324335,1655334863,1656754642,1656765807,1657821187,1657874828,1659332791,1659357989,1659362315,1659369066,1661764351]}'),(6226,'41.71.36.144','normal','',0,0,0,0,0,'[]'),(6227,'108.62.69.107','normal','',0,0,0,0,0,'[]'),(6228,'5.255.253.151','normal','',0,0,0,0,0,'[]'),(6229,'95.108.213.58','normal','',0,0,0,0,0,'[]'),(6230,'47.102.108.111','normal','',0,0,0,2,0,'{\"login\":[1634736552,1634768225]}'),(6231,'94.246.96.33','normal','',0,0,0,0,1,'{\"nf\":[1634736680]}'),(6232,'109.95.157.165','normal','',0,0,0,0,1,'{\"nf\":[1634736696]}'),(6233,'194.36.109.205','normal','',0,0,0,2,0,'{\"login\":[1634737168,1634777824]}'),(6234,'173.236.242.161','normal','',0,0,0,2,0,'{\"login\":[1634737762,1634772537]}'),(6235,'51.222.42.168','normal','',0,0,0,0,3,'{\"nf\":[1634738742,1634848444,1635392040]}'),(6236,'40.80.209.104','normal','',0,0,0,3,0,'{\"login\":[1634740275,1634774283,1634787657]}'),(6237,'191.101.40.106','normal','',0,0,0,4,0,'{\"login\":[1634742260,1634765582,1634769097,1635568910]}'),(6238,'3.137.137.75','normal','',0,0,0,2,0,'{\"login\":[1634743658,1634767406]}'),(6239,'3.109.25.153','normal','',0,0,0,2,0,'{\"login\":[1634744327,1634760370]}'),(6240,'193.31.116.208','normal','',0,0,0,1,0,'{\"login\":[1634747248]}'),(6241,'67.205.60.189','normal','',0,0,0,1,0,'{\"login\":[1634747794]}'),(6242,'3.142.231.137','normal','',0,0,0,1,0,'{\"login\":[1634748436]}'),(6243,'178.128.82.159','normal','',0,0,0,3,0,'{\"login\":[1634749047,1634749748,1634763752]}'),(6244,'159.89.204.193','normal','',0,0,0,6,0,'{\"login\":[1634750425,1634782060,1636714249,1636735891,1637521026,1652171602]}'),(6245,'178.63.87.185','normal','',0,0,0,1,0,'{\"login\":[1634751224]}'),(6246,'185.103.16.166','normal','',0,0,0,0,5,'{\"nf\":[1634752008,1636102593,1637174504,1641949161,1641949165]}'),(6247,'64.227.188.228','normal','',0,0,0,1,0,'{\"login\":[1634752661]}'),(6248,'18.220.88.180','normal','',0,0,0,1,0,'{\"login\":[1634753535]}'),(6249,'159.65.30.12','normal','',0,0,0,1,0,'{\"login\":[1634754320]}'),(6250,'138.128.188.58','normal','',0,0,0,2,0,'{\"login\":[1636643927,1640513557]}'),(6251,'54.36.174.113','normal','',0,0,0,0,0,'[]'),(6252,'49.12.96.166','normal','',0,0,0,1,0,'{\"login\":[1634756989]}'),(6253,'105.184.214.204','normal','',0,0,0,0,0,'[]'),(6254,'37.9.169.5','normal','',0,0,0,0,2,'{\"nf\":[1634759525,1634870968]}'),(6255,'137.220.38.27','normal','',0,0,0,1,0,'{\"login\":[1634759534]}'),(6256,'34.217.38.119','normal','',0,0,0,0,1,'{\"nf\":[1634761579]}'),(6257,'52.34.31.159','normal','',0,0,0,0,0,'[]'),(6258,'103.171.85.87','normal','',0,0,0,7,0,'{\"login\":[1634762186,1635542639,1636241898,1636261890,1636736643,1637890539,1638269854]}'),(6259,'208.97.177.167','normal','',0,0,0,0,1,'{\"nf\":[1634762193]}'),(6260,'45.127.45.33','normal','',0,0,0,0,0,'[]'),(6261,'185.80.50.170','normal','',0,0,0,1,0,'{\"login\":[1634762989]}'),(6262,'5.101.157.216','normal','',0,0,0,3,0,'{\"login\":[1635846556,1662967347,1662967347]}'),(6263,'69.197.185.46','normal','',0,0,0,1,0,'{\"login\":[1634764523]}'),(6264,'114.119.155.126','normal','',0,0,0,0,0,'[]'),(6265,'186.64.117.235','normal','',0,0,0,0,0,'[]'),(6266,'47.106.158.90','normal','',0,0,0,0,5,'{\"nf\":[1634767674,1634816013,1635510015,1640017057,1641276226]}'),(6267,'213.238.178.239','normal','',0,0,0,0,10,'{\"nf\":[1634768502,1634768502,1634768504,1639696387,1639696389,1639696393,1641002193,1641255309,1641421677,1641622177]}'),(6268,'31.177.95.36','normal','',0,0,0,0,0,'[]'),(6269,'169.197.143.109','normal','',0,0,0,0,0,'[]'),(6270,'54.185.57.247','normal','',0,0,0,0,1,'{\"nf\":[1634772932]}'),(6271,'178.20.55.16','normal','',0,0,0,0,0,'[]'),(6272,'213.136.81.185','normal','',0,0,0,0,0,'[]'),(6273,'93.190.49.93','normal','',0,0,0,1,0,'{\"login\":[1634776934]}'),(6274,'186.64.119.225','normal','',0,0,0,0,0,'[]'),(6275,'66.249.66.29','normal','',0,0,0,0,0,'[]'),(6276,'163.172.20.135','normal','',0,0,0,2,0,'{\"login\":[1634779528,1634789467]}'),(6277,'165.227.88.172','normal','',0,0,0,1,0,'{\"login\":[1634782936]}'),(6278,'69.168.53.3','normal','',0,0,0,1,0,'{\"login\":[1634783919]}'),(6279,'185.220.101.38','normal','',0,0,0,0,0,'[]'),(6280,'42.236.10.109','normal','',0,0,0,0,0,'[]'),(6281,'198.12.220.167','normal','',0,0,0,0,1,'{\"nf\":[1634786784]}'),(6282,'158.247.224.63','normal','',0,0,0,1,0,'{\"login\":[1634790412]}'),(6283,'20.58.57.139','normal','',0,0,0,0,1,'{\"nf\":[1634791782]}'),(6284,'77.88.5.62','normal','',0,0,0,0,0,'[]'),(6285,'37.59.74.182','normal','',0,0,0,0,1,'{\"nf\":[1634803952]}'),(6286,'187.85.65.176','normal','',0,0,0,0,2,'{\"nf\":[1634806093,1634999795]}'),(6287,'54.36.148.99','normal','',0,0,0,0,0,'[]'),(6288,'31.22.4.102','normal','',0,0,0,0,1,'{\"nf\":[1634811397]}'),(6289,'3.108.30.210','normal','',0,0,0,0,0,'[]'),(6290,'51.222.253.5','normal','',0,0,0,0,0,'[]'),(6291,'103.72.147.93','normal','',0,0,0,1,0,'{\"login\":[1638431034]}'),(6292,'186.234.80.134','normal','',0,0,0,0,0,'[]'),(6293,'186.234.80.165','normal','',0,0,0,0,0,'[]'),(6294,'69.197.131.12','normal','',0,0,0,1,0,'{\"login\":[1634817806]}'),(6295,'138.128.179.162','normal','',0,0,0,0,5,'{\"nf\":[1634818679,1634818690,1635419537,1635419540,1637009725]}'),(6296,'35.175.221.160','normal','',0,0,0,2,0,'{\"login\":[1634819114,1636681857]}'),(6297,'64.225.14.58','normal','',0,0,0,0,1,'{\"nf\":[1634820355]}'),(6298,'51.77.223.41','normal','',0,0,0,46,0,'{\"login\":[1634821865,1634904240,1635607341,1635695049,1636756599,1636865496,1636873758,1637985422,1638478481,1638492279,1638691532,1638864019,1639181278,1639396147,1640448379,1640464795,1640793875,1640839046,1640845205,1640917631,1640937723,1641085967,1641260596,1641438294,1641815706,1641939324,1642122739,1642238158,1642329939,1642890102,1643294253,1644299143,1644527634,1644714285,1645237637,1645245107,1645441685,1645745420,1646041622,1646288839,1646580737,1646859422,1646884343,1646968866,1647173100,1647647749]}'),(6299,'165.90.204.108','normal','',0,0,0,0,0,'[]'),(6300,'69.30.217.106','normal','',0,0,0,1,0,'{\"login\":[1634822571]}'),(6301,'91.203.73.180','normal','',0,0,0,0,2,'{\"nf\":[1634826512,1634989286]}'),(6302,'173.82.43.82','normal','',0,0,0,2,0,'{\"login\":[1634826571,1634955519]}'),(6303,'66.11.120.48','normal','',0,0,0,62,0,'{\"login\":[1634827522,1634830469,1635787955,1636830681,1637657704,1638350186,1639022009,1639228581,1639522558,1639808710,1639815728,1640146132,1640652856,1640825718,1640833938,1640844168,1640961902,1641317256,1641473562,1641752679,1641937820,1642105974,1642261281,1642541674,1643050421,1643106061,1644249540,1644282624,1644454621,1644661972,1645342532,1645840550,1646048243,1647192872,1647305114,1647475098,1647498378,1647695158,1648728611,1649026111,1649535994,1650003011,1650040098,1650055318,1650123634,1650179083,1650347992,1650528517,1650682837,1650715423,1651300041,1651435549,1652514692,1652559753,1652807440,1653240380,1653328572,1653462261,1654210667,1654536930,1655383562,1655696218]}'),(6304,'45.120.136.106','normal','',0,0,0,1,0,'{\"login\":[1634829517]}'),(6305,'50.116.94.56','normal','',0,0,0,0,1,'{\"nf\":[1636262379]}'),(6306,'86.58.206.76','normal','',0,0,0,2,0,'{\"login\":[1634834172,1636163977]}'),(6307,'207.148.73.111','normal','',0,0,0,1,0,'{\"login\":[1634835057]}'),(6308,'149.202.23.213','normal','',0,0,0,4,0,'{\"login\":[1634841294,1634908985,1634916735,1635557577]}'),(6309,'114.119.143.5','normal','',0,0,0,0,0,'[]'),(6310,'185.2.4.68','normal','',0,0,0,6,0,'{\"login\":[1634845403,1634964565,1635421361,1636643882,1636910041,1637041861]}'),(6311,'34.81.160.114','normal','',0,0,0,1,0,'{\"login\":[1634847296]}'),(6312,'34.219.30.110','normal','',0,0,0,0,0,'[]'),(6313,'3.120.196.170','normal','',0,0,0,3,0,'{\"login\":[1634850793,1635641313,1635921297]}'),(6314,'37.26.189.220','normal','',0,0,0,1,0,'{\"login\":[1634852341]}'),(6315,'136.144.210.23','normal','',0,0,0,4,0,'{\"login\":[1634856546,1636156597,1637156262,1637320716]}'),(6316,'213.190.6.4','normal','',0,0,0,0,2,'{\"nf\":[1643724206,1646350344]}'),(6317,'5.134.4.120','normal','',0,0,0,0,2,'{\"nf\":[1634859316,1634859319]}'),(6318,'69.163.225.121','normal','',0,0,0,13,2,'{\"nf\":[1634860535,1635166154],\"login\":[1654785934,1654860083,1654966677,1655794175,1657460227,1657532628,1657621271,1659611657,1660090891,1660405176,1660463298,1661630423,1662242672]}'),(6319,'103.121.89.72','normal','',0,0,0,24,0,'{\"login\":[1634860931,1634986257,1635347527,1635473372,1635959895,1636895065,1636967485,1637262832,1638272741,1639167579,1639334897,1639973865,1640019375,1641017373,1641031741,1641073887,1641490847,1641918384,1642111071,1642426403,1643762553,1644151108,1644515070,1644811522]}'),(6320,'114.119.140.4','normal','',0,0,0,0,0,'[]'),(6321,'51.210.47.27','normal','',0,0,0,1,0,'{\"login\":[1634864945]}'),(6322,'81.177.6.121','normal','',0,0,0,0,1,'{\"nf\":[1634866007]}'),(6323,'134.209.231.225','normal','',0,0,0,43,0,'{\"login\":[1634866510,1637099306,1639344275,1640507992,1640933504,1641115470,1641453853,1642277529,1643051056,1643099518,1645084589,1645926206,1646516826,1646644447,1648278936,1649694478,1649832579,1650292535,1651058818,1652081955,1652554739,1652681373,1652756406,1653318438,1653325935,1654291188,1654504336,1654617725,1654620901,1654990830,1655034302,1657110352,1657640300,1657718187,1658053403,1658174793,1658206820,1658310104,1658327017,1659723175,1659814016,1661191310,1661321352]}'),(6324,'54.37.155.61','normal','',0,0,0,2,0,'{\"login\":[1634867304,1635372876]}'),(6325,'163.178.170.141','normal','',0,0,0,21,0,'{\"login\":[1634869010,1634944932,1634955974,1635521162,1636662625,1637225770,1637340434,1637720558,1638514073,1638822014,1639664131,1639867948,1639963366,1640463440,1640575704,1640593907,1640701757,1640888154,1640911243,1641150373,1641533349]}'),(6326,'5.9.55.176','normal','',0,0,0,28,0,'{\"login\":[1634870683,1635703894,1636825892,1637207640,1637467072,1639767354,1639944891,1640374110,1640792947,1640985030,1641369256,1641378194,1641379581,1641388397,1641990508,1642019991,1642070058,1642105246,1642145171,1642268701,1642380295,1642387705,1643526834,1644161457,1644227977,1644254429,1644545852,1645719096]}'),(6327,'185.43.205.202','normal','',0,0,0,2,0,'{\"login\":[1634872473,1636666294]}'),(6328,'209.182.237.68','normal','',0,0,0,3,0,'{\"login\":[1634875130,1635407257,1635430322]}'),(6329,'64.90.48.101','normal','',0,0,0,0,1,'{\"nf\":[1634876551]}'),(6330,'107.150.57.38','normal','',0,0,0,3,0,'{\"login\":[1634878418,1643804972,1643805091]}'),(6331,'51.83.15.73','normal','',0,0,0,1,0,'{\"login\":[1634881066]}'),(6332,'192.236.179.137','normal','',0,0,0,0,0,'[]'),(6333,'62.171.154.152','normal','',0,0,0,1,0,'{\"login\":[1634883088]}'),(6334,'139.99.22.221','normal','',0,0,0,0,7,'{\"nf\":[1634884516,1635216234,1635265980,1637831687,1639479365,1642226987,1642678697]}'),(6335,'47.103.12.183','normal','',0,0,0,0,0,'[]'),(6336,'167.88.124.85','normal','',0,0,0,0,0,'[]'),(6337,'51.222.253.11','normal','',0,0,0,0,0,'[]'),(6338,'40.77.167.104','normal','',0,0,0,0,0,'[]'),(6339,'103.238.224.98','normal','',0,0,0,0,1,'{\"nf\":[1635660971]}'),(6340,'2.57.122.148','normal','',0,0,0,0,1,'{\"nf\":[1634898258]}'),(6341,'34.254.172.253','normal','',0,0,0,1,0,'{\"login\":[1634898925]}'),(6342,'103.171.85.139','normal','',0,0,0,1,0,'{\"login\":[1634902159]}'),(6343,'195.211.45.155','normal','',0,0,0,3,0,'{\"login\":[1636628107,1640246413,1662229243]}'),(6344,'182.92.115.176','normal','',0,0,0,0,0,'[]'),(6345,'173.236.152.139','normal','',0,0,0,13,0,'{\"login\":[1634907568,1634940227,1635438360,1635909057,1636883471,1637063722,1637218092,1637269353,1637445992,1637456649,1637727882,1637842545,1638204713]}'),(6346,'213.136.86.246','normal','',0,0,0,0,1,'{\"nf\":[1634910949]}'),(6347,'91.185.199.254','normal','',0,0,0,0,2,'{\"nf\":[1634911097,1642251456]}'),(6348,'67.227.155.85','normal','',0,0,0,15,0,'{\"login\":[1634911279,1635777086,1636997177,1637320240,1638459395,1639250022,1639265915,1639709651,1639738990,1640055714,1640304481,1640505259,1640580343,1641072965,1641355377]}'),(6349,'47.100.32.225','normal','',0,0,0,1,0,'{\"login\":[1634913411]}'),(6350,'108.177.213.109','normal','',0,0,0,0,0,'[]'),(6351,'162.249.171.221','normal','',0,0,0,0,0,'[]'),(6352,'102.39.58.185','normal','',0,0,0,0,0,'[]'),(6353,'52.166.3.59','normal','',0,0,0,59,0,'{\"login\":[1634916197,1636817992,1637351138,1637975104,1638202048,1638215575,1638727937,1639162534,1639184205,1639262507,1639976452,1640379721,1640548138,1640830833,1641010394,1641335702,1641943850,1643308015,1643527402,1643661182,1643763720,1644565189,1644619338,1645076013,1645251371,1646086094,1646296335,1646832897,1646955268,1647311408,1647512777,1647789349,1647878042,1648087431,1648128189,1649065398,1649849688,1650122631,1650668501,1651549009,1652915953,1653413105,1654265519,1654433800,1654862098,1655151432,1655248349,1656066278,1657039441,1657569261,1657631238,1657709133,1658179068,1658565598,1659261859,1660233500,1660278200,1660968487,1661352826]}'),(6354,'135.181.76.20','normal','',0,0,0,0,1,'{\"nf\":[1634916300]}'),(6355,'212.102.57.22','normal','',0,0,0,0,0,'[]'),(6356,'155.133.138.67','normal','',0,0,0,7,0,'{\"login\":[1634919624,1648542640,1648667284,1650171527,1650352015,1653499928,1653501250]}'),(6357,'75.119.200.118','normal','',0,0,0,0,2,'{\"nf\":[1634921735,1636027334]}'),(6358,'18.132.135.232','normal','',0,0,0,1,0,'{\"login\":[1634923210]}'),(6359,'172.104.63.247','normal','',0,0,0,2,0,'{\"login\":[1634924271,1635655836]}'),(6360,'51.83.135.25','normal','',0,0,0,3,0,'{\"login\":[1634926163,1634951973,1635457059]}'),(6361,'167.114.144.40','normal','',0,0,0,5,0,'{\"login\":[1634927865,1634993300,1635403941,1636900027,1638347670]}'),(6362,'42.200.110.24','normal','',0,0,0,1,0,'{\"login\":[1634928302]}'),(6363,'193.182.16.164','normal','',0,0,0,2,0,'{\"login\":[1634928506,1635907928]}'),(6364,'219.77.111.223','normal','',0,0,0,1,0,'{\"login\":[1634928664]}'),(6365,'50.62.177.38','normal','',0,0,0,0,1,'{\"nf\":[1634932207]}'),(6366,'39.101.178.18','normal','',0,0,0,2,0,'{\"login\":[1634933336,1635639151]}'),(6367,'23.225.177.43','normal','',0,0,0,1,0,'{\"login\":[1634934018]}'),(6368,'34.214.184.17','normal','',0,0,0,0,0,'[]'),(6369,'42.236.10.117','normal','',0,0,0,0,0,'[]'),(6370,'138.197.12.140','normal','',0,0,0,28,0,'{\"login\":[1634936218,1636903735,1636933802,1637328284,1637434292,1637827495,1638383128,1638411370,1639290445,1639730584,1640407259,1640738043,1640755447,1641289756,1641310189,1641400331,1641520255,1641695653,1641757035,1642540804,1642922218,1643091359,1643537764,1643545341,1644396179,1644713273,1645057724,1645064047]}'),(6371,'114.119.142.236','normal','',0,0,0,0,0,'[]'),(6372,'207.46.13.81','normal','',0,0,0,0,0,'[]'),(6373,'159.65.157.154','normal','',0,0,0,2,0,'{\"login\":[1634939834,1650300448]}'),(6374,'141.95.1.178','normal','',0,0,0,1,0,'{\"login\":[1634949107]}'),(6375,'152.228.140.7','normal','',0,0,0,21,0,'{\"login\":[1634951531,1636834448,1637186460,1637666722,1638200140,1638336469,1638520322,1638839245,1638996830,1639274091,1640462094,1640493883,1641294741,1642069330,1642612849,1643103460,1643504806,1643577638,1644249002,1644604897,1644649626]}'),(6376,'173.249.36.84','normal','',0,0,0,13,0,'{\"login\":[1634953284,1635420049,1637363176,1637705285,1638187567,1638324596,1639316995,1640358796,1641092565,1641783681,1642285881,1642534076,1646847843]}'),(6377,'52.183.137.156','normal','',0,0,0,22,0,'{\"login\":[1634959912,1635491950,1635789362,1636934442,1637933635,1639840879,1639849535,1639880040,1639999371,1640553606,1640561238,1640764741,1640852507,1640894440,1642175640,1642416905,1642422509,1643048229,1644212114,1644237840,1644358651,1644512375]}'),(6378,'8.210.31.92','normal','',0,0,0,0,6,'{\"nf\":[1634962098,1635988593,1635988596,1636466806,1636605874,1636605880]}'),(6379,'34.96.130.22','normal','',0,0,0,0,0,'[]'),(6380,'66.249.66.3','normal','',0,0,0,0,0,'[]'),(6381,'67.205.10.101','normal','',0,0,0,2,0,'{\"login\":[1634965004,1636887302]}'),(6382,'187.49.234.46','normal','',0,0,0,1,0,'{\"login\":[1634967163]}'),(6383,'208.113.186.1','normal','',0,0,0,1,0,'{\"login\":[1634967607]}'),(6384,'204.12.198.246','normal','',0,0,0,2,0,'{\"login\":[1634967716,1634980316]}'),(6385,'87.76.28.184','normal','',0,0,0,0,1,'{\"nf\":[1634969719]}'),(6386,'115.79.192.144','normal','',0,0,0,2,0,'{\"login\":[1634970273,1637339225]}'),(6387,'171.244.34.38','normal','',0,0,0,0,4,'{\"nf\":[1634971836,1634971842,1635947232,1635947250]}'),(6388,'144.208.67.190','normal','',0,0,0,0,2,'{\"nf\":[1634974684,1634981929]}'),(6389,'116.203.244.229','normal','',0,0,0,1,0,'{\"login\":[1634974990]}'),(6390,'142.93.79.34','normal','',0,0,0,4,0,'{\"login\":[1634975493,1635697160,1637106370,1637210201]}'),(6391,'157.245.150.104','normal','',0,0,0,6,0,'{\"login\":[1634978434,1635462253,1637420864,1637864438,1638298393,1639748241]}'),(6392,'178.124.206.168','normal','',0,0,0,2,0,'{\"login\":[1634980822,1635044943]}'),(6393,'202.61.246.82','normal','',0,0,0,1,0,'{\"login\":[1634984806]}'),(6394,'50.87.249.216','normal','',0,0,0,0,0,'[]'),(6395,'35.72.10.102','normal','',0,0,0,1,0,'{\"login\":[1634987874]}'),(6396,'173.212.212.180','normal','',0,0,0,58,0,'{\"login\":[1634991118,1636875419,1637948358,1638489481,1639182009,1639398614,1639775228,1639780483,1640574773,1640620972,1640675367,1640711692,1640746310,1641009401,1641360876,1642058417,1642062051,1642252627,1642310788,1642423766,1643493242,1643563253,1644210160,1645105302,1646065379,1646072886,1646507199,1646803497,1647327627,1647623439,1647794250,1647942218,1648735823,1650408822,1650485653,1651088354,1652749974,1653041342,1653050594,1653322609,1654057283,1655026984,1655040970,1655776473,1656803797,1657691425,1657769897,1658273382,1659119276,1659786810,1659990944,1660627826,1660728245,1660940732,1661646747,1661675509,1662413265,1662706949]}'),(6397,'89.38.209.176','normal','',0,0,0,8,0,'{\"login\":[1634993803,1635558726,1635795320,1636720995,1637054556,1637127625,1637314370,1638490874]}'),(6398,'139.162.10.185','normal','',0,0,0,0,1,'{\"nf\":[1634995664]}'),(6399,'149.210.195.162','normal','',0,0,0,0,4,'{\"nf\":[1634999440,1635834334,1635989147,1636568345]}'),(6400,'107.150.57.35','normal','',0,0,0,48,0,'{\"login\":[1635005710,1644614749,1644626235,1644631365,1644633345,1644641325,1644645309,1644649130,1644687534,1644698560,1644740421,1644742270,1644744237,1644748312,1644809586,1644810185,1644811760,1644816956,1644820269,1644820672,1644824681,1644832461,1644853733,1644919152,1644922078,1644924016,1644925218,1644944507,1644977391,1644989179,1644996509,1645001023,1645004816,1645005234,1645006972,1645007721,1645008448,1645024696,1645027921,1645034063,1645034279,1645064836,1645068700,1645074743,1645087763,1645089857,1645093359,1645363582]}'),(6401,'105.233.119.1','normal','',0,0,0,0,0,'[]'),(6402,'104.244.77.95','normal','',0,0,0,0,0,'[]'),(6403,'17.121.113.138','normal','',0,0,0,0,0,'[]'),(6404,'207.148.112.69','normal','',0,0,0,1,0,'{\"login\":[1635045859]}'),(6405,'174.138.33.114','normal','',0,0,0,0,0,'[]'),(6406,'175.208.204.100','normal','',0,0,0,1,0,'{\"login\":[1640588528]}'),(6407,'162.214.4.49','normal','',0,0,0,0,0,'[]'),(6408,'213.249.69.147','normal','',0,0,0,0,0,'[]'),(6409,'162.244.65.171','normal','',0,0,0,0,0,'[]'),(6410,'186.234.80.212','normal','',0,0,0,0,0,'[]'),(6411,'69.16.231.164','normal','',0,0,0,0,0,'[]'),(6412,'5.189.155.204','normal','',0,0,0,0,0,'[]'),(6413,'128.199.125.243','normal','',0,0,0,1,0,'{\"login\":[1636642637]}'),(6414,'89.44.9.177','normal','',0,0,0,0,0,'[]'),(6415,'45.32.66.199','normal','',0,0,0,0,0,'[]'),(6416,'89.248.100.87','normal','',0,0,0,0,0,'[]'),(6417,'152.136.15.140','normal','',0,0,0,1,0,'{\"login\":[1636631179]}'),(6418,'3.238.27.159','normal','',0,0,0,0,1,'{\"nf\":[1635055774]}'),(6419,'51.38.179.57','normal','',0,0,0,0,0,'[]'),(6420,'51.222.253.2','normal','',0,0,0,0,1,'{\"nf\":[1657904157]}'),(6421,'5.189.128.189','normal','',0,0,0,1,0,'{\"login\":[1654011674]}'),(6422,'46.226.148.217','normal','',0,0,0,0,0,'[]'),(6423,'192.99.9.146','normal','',0,0,0,0,0,'[]'),(6424,'45.77.247.143','normal','',0,0,0,0,0,'[]'),(6425,'103.70.29.133','normal','',0,0,0,0,0,'[]'),(6426,'198.54.114.54','normal','',0,0,0,0,0,'[]'),(6427,'198.54.114.10','normal','',0,0,0,0,0,'[]'),(6428,'168.232.85.2','normal','',0,0,0,0,0,'[]'),(6429,'45.33.2.83','normal','',0,0,0,2,0,'{\"login\":[1650133152,1650298367]}'),(6430,'161.97.135.69','normal','',0,0,0,1,0,'{\"login\":[1635854122]}'),(6431,'185.150.191.223','normal','',0,0,0,0,0,'[]'),(6432,'95.216.118.221','normal','',0,0,0,0,0,'[]'),(6433,'138.219.231.69','normal','',0,0,0,0,0,'[]'),(6434,'47.117.83.25','normal','',0,0,0,0,0,'[]'),(6435,'203.143.85.76','normal','',0,0,0,0,0,'[]'),(6436,'162.55.90.52','normal','',0,0,0,0,0,'[]'),(6437,'207.148.28.207','normal','',0,0,0,0,0,'[]'),(6438,'146.88.237.47','normal','',0,0,0,0,0,'[]'),(6439,'135.148.77.80','normal','',0,0,0,0,0,'[]'),(6440,'103.81.152.86','normal','',0,0,0,0,0,'[]'),(6441,'136.144.179.207','normal','',0,0,0,0,0,'[]'),(6442,'173.212.240.46','normal','',0,0,0,0,0,'[]'),(6443,'44.198.29.247','normal','',0,0,0,0,0,'[]'),(6444,'151.106.55.242','normal','',0,0,0,2,0,'{\"login\":[1640560563,1640772162]}'),(6445,'178.77.102.197','normal','',0,0,0,0,0,'[]'),(6446,'139.129.230.201','normal','',0,0,0,0,0,'[]'),(6447,'157.55.39.176','normal','',0,0,0,0,0,'[]'),(6448,'157.55.39.145','normal','',0,0,0,0,0,'[]'),(6449,'91.204.46.187','normal','',0,0,0,5,0,'{\"login\":[1659362483,1659398270,1659415066,1660296210,1660313108]}'),(6450,'91.210.189.242','normal','',0,0,0,0,0,'[]'),(6451,'188.165.208.189','normal','',0,0,0,0,0,'[]'),(6452,'51.254.46.180','normal','',0,0,0,0,0,'[]'),(6453,'31.7.64.73','normal','',0,0,0,0,0,'[]'),(6454,'67.227.167.13','normal','',0,0,0,0,0,'[]'),(6455,'35.206.196.117','blocked','You have been locked out due to too many invalid login attempts.',1635078002,1635077702,0,5,0,'{\"login\":[1635077695,1635077696,1635077699,1635077701,1635077702]}'),(6456,'114.119.151.72','normal','',0,0,0,0,0,'[]'),(6457,'103.159.50.183','normal','',0,0,0,1,0,'{\"login\":[1642210144]}'),(6458,'91.238.161.173','normal','',0,0,0,0,0,'[]'),(6459,'173.208.144.234','normal','',0,0,0,0,0,'[]'),(6460,'107.189.162.58','normal','',0,0,0,0,0,'[]'),(6461,'23.229.113.98','normal','',0,0,0,0,0,'[]'),(6462,'162.240.13.151','normal','',0,0,0,0,0,'[]'),(6463,'186.33.211.76','normal','',0,0,0,1,0,'{\"login\":[1640548298]}'),(6464,'79.143.178.39','normal','',0,0,0,1,0,'{\"login\":[1635866407]}'),(6465,'13.36.108.209','normal','',0,0,0,0,0,'[]'),(6466,'107.152.38.125','normal','',0,0,0,0,0,'[]'),(6467,'185.252.28.151','normal','',0,0,0,0,0,'[]'),(6468,'194.233.75.156','normal','',0,0,0,1,0,'{\"login\":[1638447664]}'),(6469,'192.99.148.133','normal','',0,0,0,0,0,'[]'),(6470,'91.250.102.54','normal','',0,0,0,0,0,'[]'),(6471,'185.2.168.57','normal','',0,0,0,1,0,'{\"login\":[1638435234]}'),(6472,'185.87.187.187','normal','',0,0,0,0,0,'[]'),(6473,'201.220.156.254','normal','',0,0,0,15,0,'{\"login\":[1640016603,1651475978,1652172129,1652178943,1652179242,1655277248,1655280895,1656753354,1656766845,1656794766,1656812238,1656824925,1656826844,1657439762,1657502054]}'),(6474,'46.4.143.122','normal','',0,0,0,0,0,'[]'),(6475,'209.182.193.77','normal','',0,0,0,0,0,'[]'),(6476,'185.112.150.138','normal','',0,0,0,0,0,'[]'),(6477,'164.68.96.144','normal','',0,0,0,0,0,'[]'),(6478,'37.228.136.162','normal','',0,0,0,0,0,'[]'),(6479,'94.130.230.117','normal','',0,0,0,0,0,'[]'),(6480,'62.109.11.92','normal','',0,0,0,0,0,'[]'),(6481,'109.228.51.160','normal','',0,0,0,0,0,'[]'),(6482,'105.224.225.87','normal','',0,0,0,0,0,'[]'),(6483,'172.93.108.34','normal','',0,0,0,0,0,'[]'),(6484,'176.53.65.237','normal','',0,0,0,2,0,'{\"login\":[1640610898,1640861786]}'),(6485,'62.182.156.181','normal','',0,0,0,0,6,'{\"nf\":[1635093541,1635132364,1635294784,1635385039,1635481599,1635621073]}'),(6486,'46.101.7.66','normal','',0,0,0,0,0,'[]'),(6487,'51.91.31.211','normal','',0,0,0,0,0,'[]'),(6488,'54.80.56.240','normal','',0,0,0,0,0,'[]'),(6489,'194.36.191.196','normal','',0,0,0,3,0,'{\"login\":[1638453519,1650309630,1654532109]}'),(6490,'109.120.162.207','normal','',0,0,0,0,0,'[]'),(6491,'138.128.176.10','normal','',0,0,0,0,0,'[]'),(6492,'139.59.41.98','normal','',0,0,0,2,0,'{\"login\":[1635409985,1635906731]}'),(6493,'157.55.39.5','normal','',0,0,0,0,0,'[]'),(6494,'118.31.34.172','normal','',0,0,0,0,0,'[]'),(6495,'136.243.32.13','normal','',0,0,0,0,0,'[]'),(6496,'54.201.8.205','normal','',0,0,0,0,0,'[]'),(6497,'67.227.32.55','normal','',0,0,0,0,0,'[]'),(6498,'5.45.207.137','normal','',0,0,0,0,0,'[]'),(6499,'192.185.82.99','normal','',0,0,0,0,0,'[]'),(6500,'42.236.10.104','normal','',0,0,0,0,0,'[]'),(6501,'3.141.104.161','normal','',0,0,0,0,1,'{\"nf\":[1635124847]}'),(6502,'178.171.38.187','normal','',0,0,0,0,0,'[]'),(6503,'185.220.101.14','normal','',0,0,0,0,0,'[]'),(6504,'34.121.63.118','normal','',0,0,0,0,1,'{\"nf\":[1635139360]}'),(6505,'83.215.234.219','normal','',0,0,0,0,0,'[]'),(6506,'114.119.144.132','normal','',0,0,0,0,0,'[]'),(6507,'91.134.248.245','normal','',0,0,0,6,6,'{\"nf\":[1635169442,1635169442,1635685593,1636528673,1638113567,1638699971],\"login\":[1650177624,1650196340,1650205018,1650248690,1650253670,1657794459]}'),(6508,'88.99.65.95','normal','',0,0,0,0,1,'{\"nf\":[1635170281]}'),(6509,'92.205.1.157','normal','',0,0,0,0,1,'{\"nf\":[1635178031]}'),(6510,'46.182.4.119','normal','',0,0,0,0,1,'{\"nf\":[1635181889]}'),(6511,'69.163.152.127','normal','',0,0,0,0,4,'{\"nf\":[1635191373,1635499556,1635916276,1635955189]}'),(6512,'54.186.242.133','normal','',0,0,0,0,0,'[]'),(6513,'197.229.3.18','normal','',0,0,0,0,0,'[]'),(6514,'114.119.155.13','normal','',0,0,0,0,0,'[]'),(6515,'5.9.140.242','normal','',0,0,0,0,0,'[]'),(6516,'54.36.148.84','normal','',0,0,0,0,0,'[]'),(6517,'165.154.24.140','normal','',0,0,0,0,2,'{\"nf\":[1635230055,1635965104]}'),(6518,'164.151.5.12','normal','',0,0,0,0,1,'{\"nf\":[1635233704]}'),(6519,'157.245.98.6','normal','',0,0,0,0,0,'[]'),(6520,'148.66.145.139','normal','',0,0,0,0,1,'{\"nf\":[1635244306]}'),(6521,'103.247.9.74','normal','',0,0,0,0,1,'{\"nf\":[1635244697]}'),(6522,'67.205.12.215','normal','',0,0,0,0,1,'{\"nf\":[1635245618]}'),(6523,'5.255.253.112','normal','',0,0,0,0,0,'[]'),(6524,'162.0.209.167','normal','',0,0,0,0,0,'[]'),(6525,'176.126.253.190','normal','',0,0,0,0,1,'{\"nf\":[1648183651]}'),(6526,'102.134.123.215','normal','',0,0,0,0,0,'[]'),(6527,'23.88.103.215','normal','',0,0,0,0,0,'[]'),(6528,'69.163.216.107','normal','',0,0,0,0,1,'{\"nf\":[1635609963]}'),(6529,'185.133.238.187','normal','',0,0,0,0,4,'{\"nf\":[1635263779,1635263791,1635263800,1635263817]}'),(6530,'178.254.50.20','normal','',0,0,0,2,0,'{\"login\":[1635865455,1650166989]}'),(6531,'103.109.106.4','normal','',0,0,0,0,2,'{\"nf\":[1635264926,1635264928]}'),(6532,'184.174.74.252','normal','',0,0,0,0,0,'[]'),(6533,'52.77.123.77','normal','',0,0,0,0,8,'{\"nf\":[1635269258,1635412540,1635496829,1636564260,1636949821,1636949824,1637785250,1637785251]}'),(6534,'41.216.204.37','normal','',0,0,0,0,0,'[]'),(6535,'54.162.102.36','normal','',0,0,0,0,4,'{\"nf\":[1635803919,1636424477,1637034319,1637626022]}'),(6536,'185.22.108.230','normal','',0,0,0,0,0,'[]'),(6537,'178.128.14.157','normal','',0,0,0,2,0,'{\"login\":[1638425105,1642218415]}'),(6538,'72.29.73.179','normal','',0,0,0,0,0,'[]'),(6539,'194.147.120.200','normal','',0,0,0,0,0,'[]'),(6540,'162.214.146.225','normal','',0,0,0,0,0,'[]'),(6541,'37.59.40.76','normal','',0,0,0,0,0,'[]'),(6542,'31.177.95.75','normal','',0,0,0,1,0,'{\"login\":[1640873928]}'),(6543,'198.23.59.119','normal','',0,0,0,0,0,'[]'),(6544,'116.203.217.96','normal','',0,0,0,0,0,'[]'),(6545,'52.196.12.209','normal','',0,0,0,0,0,'[]'),(6546,'114.115.206.116','normal','',0,0,0,0,0,'[]'),(6547,'47.103.7.201','normal','',0,0,0,1,0,'{\"login\":[1635856601]}'),(6548,'75.119.132.112','normal','',0,0,0,0,0,'[]'),(6549,'103.248.60.50','normal','',0,0,0,0,0,'[]'),(6550,'18.237.166.237','normal','',0,0,0,0,0,'[]'),(6551,'194.233.65.175','normal','',0,0,0,0,0,'[]'),(6552,'213.142.156.252','normal','',0,0,0,0,0,'[]'),(6553,'95.85.9.90','normal','',0,0,0,0,0,'[]'),(6554,'81.21.199.142','normal','',0,0,0,0,0,'[]'),(6555,'143.110.220.55','normal','',0,0,0,1,0,'{\"login\":[1638443793]}'),(6556,'31.220.49.95','normal','',0,0,0,0,0,'[]'),(6557,'50.87.222.94','normal','',0,0,0,0,2,'{\"nf\":[1635282040,1635282215]}'),(6558,'85.214.235.161','normal','',0,0,0,0,0,'[]'),(6559,'103.148.157.206','normal','',0,0,0,0,0,'[]'),(6560,'194.163.170.84','normal','',0,0,0,0,0,'[]'),(6561,'13.235.77.77','normal','',0,0,0,0,0,'[]'),(6562,'146.120.224.32','normal','',0,0,0,0,0,'[]'),(6563,'212.83.158.217','normal','',0,0,0,0,0,'[]'),(6564,'103.57.223.190','normal','',0,0,0,2,0,'{\"login\":[1639962353,1640769990]}'),(6565,'149.28.100.119','normal','',0,0,0,0,0,'[]'),(6566,'88.99.102.209','normal','',0,0,0,0,0,'[]'),(6567,'54.36.148.213','normal','',0,0,0,0,0,'[]'),(6568,'77.68.86.240','normal','',0,0,0,0,0,'[]'),(6569,'18.193.250.59','normal','',0,0,0,0,0,'[]'),(6570,'99.192.161.87','normal','',0,0,0,1,0,'{\"login\":[1650172391]}'),(6571,'209.59.156.151','normal','',0,0,0,1,0,'{\"login\":[1635849075]}'),(6572,'157.90.32.132','normal','',0,0,0,0,0,'[]'),(6573,'72.9.150.231','normal','',0,0,0,0,0,'[]'),(6574,'185.67.1.42','normal','',0,0,0,0,0,'[]'),(6575,'148.72.215.196','normal','',0,0,0,0,0,'[]'),(6576,'95.111.197.151','normal','',0,0,0,0,0,'[]'),(6577,'87.118.72.15','normal','',0,0,0,0,0,'[]'),(6578,'47.103.152.128','normal','',0,0,0,0,0,'[]'),(6579,'114.119.133.152','normal','',0,0,0,0,0,'[]'),(6580,'65.108.27.185','normal','',0,0,0,0,0,'[]'),(6581,'149.28.144.215','normal','',0,0,0,2,0,'{\"login\":[1637887640,1637971451]}'),(6582,'5.101.157.93','normal','',0,0,0,0,1,'{\"nf\":[1635297265]}'),(6583,'207.244.250.20','normal','',0,0,0,0,0,'[]'),(6584,'65.21.60.202','normal','',0,0,0,0,0,'[]'),(6585,'144.91.89.44','normal','',0,0,0,0,0,'[]'),(6586,'67.43.3.223','normal','',0,0,0,0,0,'[]'),(6587,'162.240.0.135','normal','',0,0,0,0,1,'{\"nf\":[1635303661]}'),(6588,'124.206.180.139','normal','',0,0,0,0,0,'[]'),(6589,'35.234.26.121','normal','',0,0,0,0,0,'[]'),(6590,'103.145.50.229','normal','',0,0,0,0,0,'[]'),(6591,'109.234.161.67','normal','',0,0,0,1,0,'{\"login\":[1650123792]}'),(6592,'34.217.130.205','normal','',0,0,0,0,0,'[]'),(6593,'103.50.76.37','normal','',0,0,0,1,0,'{\"login\":[1635851297]}'),(6594,'185.88.177.220','normal','',0,0,0,1,0,'{\"login\":[1635838361]}'),(6595,'157.55.39.51','normal','',0,0,0,0,0,'[]'),(6596,'162.214.185.239','normal','',0,0,0,0,0,'[]'),(6597,'177.55.124.21','normal','',0,0,0,2,0,'{\"login\":[1638440090,1640603548]}'),(6598,'35.219.62.239','normal','',0,0,0,4,0,'{\"login\":[1635842584,1642211921,1650167977,1654516756]}'),(6599,'144.91.73.215','normal','',0,0,0,0,0,'[]'),(6600,'81.68.144.158','normal','',0,0,0,1,0,'{\"login\":[1640581232]}'),(6601,'213.59.123.122','normal','',0,0,0,0,0,'[]'),(6602,'81.169.195.91','normal','',0,0,0,0,0,'[]'),(6603,'3.213.1.201','normal','',0,0,0,0,0,'[]'),(6604,'103.93.16.153','normal','',0,0,0,0,0,'[]'),(6605,'209.97.164.106','normal','',0,0,0,0,0,'[]'),(6606,'41.193.5.218','normal','',0,0,0,0,0,'[]'),(6607,'67.225.176.210','normal','',0,0,0,0,0,'[]'),(6608,'3.108.132.163','normal','',0,0,0,0,0,'[]'),(6609,'67.225.222.30','normal','',0,0,0,0,0,'[]'),(6610,'216.158.230.167','normal','',0,0,0,0,0,'[]'),(6611,'162.55.246.245','normal','',0,0,0,0,0,'[]'),(6612,'161.97.90.217','normal','',0,0,0,2,0,'{\"login\":[1635522104,1635839264]}'),(6613,'185.167.100.143','normal','',0,0,0,0,0,'[]'),(6614,'70.38.123.175','normal','',0,0,0,0,0,'[]'),(6615,'5.187.51.245','normal','',0,0,0,1,0,'{\"login\":[1635866729]}'),(6616,'37.120.249.92','normal','',0,0,0,0,0,'[]'),(6617,'52.50.113.176','normal','',0,0,0,0,0,'[]'),(6618,'167.172.141.87','normal','',0,0,0,0,0,'[]'),(6619,'34.245.178.150','normal','',0,0,0,0,0,'[]'),(6620,'42.200.108.105','normal','',0,0,0,0,0,'[]'),(6621,'27.254.85.204','normal','',0,0,0,0,5,'{\"nf\":[1635338997,1635339000,1636738253,1636738256,1636738270]}'),(6622,'135.148.168.98','normal','',0,0,0,1,0,'{\"login\":[1635339653]}'),(6623,'188.166.228.231','normal','',0,0,0,1,0,'{\"login\":[1635344303]}'),(6624,'41.147.1.121','normal','',0,0,0,0,0,'[]'),(6625,'51.222.253.7','normal','',0,0,0,0,0,'[]'),(6626,'54.36.148.134','normal','',0,0,0,0,0,'[]'),(6627,'54.36.149.57','normal','',0,0,0,0,0,'[]'),(6628,'54.36.148.45','normal','',0,0,0,0,0,'[]'),(6629,'165.0.124.243','normal','',0,0,0,0,0,'[]'),(6630,'15.165.96.33','normal','',0,0,0,1,0,'{\"login\":[1635359488]}'),(6631,'159.65.146.8','normal','',0,0,0,36,0,'{\"login\":[1635362276,1637804338,1638241801,1638483273,1638834903,1640347139,1641200138,1641719425,1642326733,1643058056,1646550488,1646642629,1648067999,1650862374,1651483599,1652127434,1652546861,1652759971,1653301921,1653417575,1654196006,1654208103,1654245130,1654379107,1654382112,1654523387,1654795336,1654871785,1655819487,1656254540,1656943373,1657059955,1657147673,1657461263,1658092338,1659753504]}'),(6632,'114.119.130.217','normal','',0,0,0,0,0,'[]'),(6633,'193.32.127.155','normal','',0,0,0,0,0,'[]'),(6634,'46.246.69.8','normal','',0,0,0,0,0,'[]'),(6635,'157.245.36.174','normal','',0,0,0,0,5,'{\"nf\":[1635375550,1635375554,1635375555,1635375556,1642136796]}'),(6636,'162.214.203.69','normal','',0,0,0,0,1,'{\"nf\":[1635379692]}'),(6637,'50.87.144.132','normal','',0,0,0,0,0,'[]'),(6638,'45.124.84.47','normal','',0,0,0,3,0,'{\"login\":[1635383208,1635729759,1635810044]}'),(6639,'194.104.136.109','normal','',0,0,0,0,0,'[]'),(6640,'202.191.124.50','normal','',0,0,0,0,0,'[]'),(6641,'40.77.167.54','normal','',0,0,0,0,0,'[]'),(6642,'167.86.84.227','normal','',0,0,0,4,0,'{\"login\":[1635393703,1637475891,1637968576,1638995793]}'),(6643,'54.170.164.77','normal','',0,0,0,0,2,'{\"nf\":[1635395227,1636211305]}'),(6644,'95.111.231.122','normal','',0,0,0,0,1,'{\"nf\":[1635396024]}'),(6645,'83.110.73.22','normal','',0,0,0,0,0,'[]'),(6646,'41.147.0.227','normal','',0,0,0,0,0,'[]'),(6647,'139.99.134.129','normal','',0,0,0,0,0,'[]'),(6648,'94.231.103.66','normal','',0,0,0,0,0,'[]'),(6649,'200.98.203.196','normal','',0,0,0,0,3,'{\"nf\":[1635403735,1636717699,1637770772]}'),(6650,'185.106.130.251','normal','',0,0,0,0,0,'[]'),(6651,'208.113.170.109','normal','',0,0,0,0,1,'{\"nf\":[1635406087]}'),(6652,'162.214.224.138','normal','',0,0,0,0,0,'[]'),(6653,'162.214.65.75','normal','',0,0,0,0,0,'[]'),(6654,'34.254.176.104','normal','',0,0,0,0,0,'[]'),(6655,'67.205.11.6','normal','',0,0,0,7,0,'{\"login\":[1635409316,1636676635,1636720237,1637145716,1637290636,1638146366,1638156641]}'),(6656,'34.125.125.216','normal','',0,0,0,0,0,'[]'),(6657,'167.172.153.166','normal','',0,0,0,69,0,'{\"login\":[1635412572,1635695973,1637210592,1637300948,1637307802,1637448419,1638188403,1638221481,1638316552,1638344436,1638364700,1638627086,1639004097,1639821420,1639845225,1639947688,1641180248,1641193627,1641465483,1641722526,1641748266,1641852528,1641949648,1642186023,1643010078,1643122474,1643311571,1643498933,1644429178,1644706249,1646584313,1648100073,1648289025,1649215925,1649972412,1650289272,1650414357,1650962254,1652102814,1652353324,1652963626,1653244913,1654134163,1654601615,1654628572,1654982481,1656935996,1657127552,1657152449,1657175976,1657696244,1657768217,1658520643,1658756113,1658807934,1659386812,1659408921,1659573894,1659730049,1660103581,1660213848,1660366794,1660796658,1661084301,1661246946,1661370229,1662171288,1662324117,1662545962]}'),(6658,'103.114.144.212','normal','',0,0,0,16,0,'{\"login\":[1635413634,1636821822,1636850812,1637778603,1637966281,1638321363,1638760552,1639994024,1640294357,1640411942,1640565517,1641019358,1641453134,1641740575,1641771848,1641864448]}'),(6659,'35.201.240.201','normal','',0,0,0,1,0,'{\"login\":[1635414113]}'),(6660,'135.181.105.40','normal','',0,0,0,0,0,'[]'),(6661,'144.217.170.24','normal','',0,0,0,0,0,'[]'),(6662,'49.232.156.81','normal','',0,0,0,0,0,'[]'),(6663,'51.68.11.191','normal','',0,0,0,1,3,'{\"nf\":[1635416823,1636170289,1636170293],\"login\":[1642269499]}'),(6664,'23.108.52.3','normal','',0,0,0,0,0,'[]'),(6665,'157.55.39.154','normal','',0,0,0,0,0,'[]'),(6666,'207.154.254.58','normal','',0,0,0,2,0,'{\"login\":[1635418589,1636878115]}'),(6667,'95.128.42.70','normal','',0,0,0,0,0,'[]'),(6668,'58.61.245.119','normal','',0,0,0,0,0,'[]'),(6669,'5.135.142.216','normal','',0,0,0,1,0,'{\"login\":[1635861905]}'),(6670,'135.181.243.134','normal','',0,0,0,1,0,'{\"login\":[1635422757]}'),(6671,'5.61.27.215','normal','',0,0,0,0,3,'{\"nf\":[1635426331,1636030592,1636030593]}'),(6672,'161.97.125.101','normal','',0,0,0,1,0,'{\"login\":[1635427330]}'),(6673,'95.217.132.237','normal','',0,0,0,1,0,'{\"login\":[1635428689]}'),(6674,'3.250.151.198','normal','',0,0,0,0,0,'[]'),(6675,'47.242.238.58','normal','',0,0,0,0,0,'[]'),(6676,'178.73.217.204','normal','',0,0,0,4,0,'{\"login\":[1635434462,1637359794,1637873125,1638261056]}'),(6677,'167.71.184.82','normal','',0,0,0,0,2,'{\"nf\":[1635437922,1645377172]}'),(6678,'114.119.137.123','normal','',0,0,0,0,0,'[]'),(6679,'206.189.150.96','normal','',0,0,0,6,0,'{\"login\":[1635442566,1636197670,1637049202,1637855890,1638726896,1638904142]}'),(6680,'199.241.139.243','normal','',0,0,0,1,0,'{\"login\":[1635442703]}'),(6681,'52.184.199.128','normal','',0,0,0,0,1,'{\"nf\":[1635446134]}'),(6682,'46.249.199.180','normal','',0,0,0,0,0,'[]'),(6683,'94.130.112.184','normal','',0,0,0,0,0,'[]'),(6684,'160.153.244.122','normal','',0,0,0,1,0,'{\"login\":[1635861556]}'),(6685,'114.119.134.192','normal','',0,0,0,0,0,'[]'),(6686,'185.10.74.60','normal','',0,0,0,0,0,'[]'),(6687,'46.101.251.125','normal','',0,0,0,0,0,'[]'),(6688,'3.87.207.8','normal','',0,0,0,0,2,'{\"nf\":[1635451727,1635452310]}'),(6689,'120.77.34.35','normal','',0,0,0,0,0,'[]'),(6690,'34.218.239.103','normal','',0,0,0,0,0,'[]'),(6691,'148.72.212.66','normal','',0,0,0,0,0,'[]'),(6692,'18.237.23.17','normal','',0,0,0,0,0,'[]'),(6693,'83.170.107.1','normal','',0,0,0,0,0,'[]'),(6694,'5.189.138.128','normal','',0,0,0,1,0,'{\"login\":[1638450281]}'),(6695,'43.252.215.161','normal','',0,0,0,1,0,'{\"login\":[1635849413]}'),(6696,'45.79.35.152','normal','',0,0,0,0,0,'[]'),(6697,'197.5.152.234','normal','',0,0,0,1,0,'{\"login\":[1640582167]}'),(6698,'198.46.141.138','normal','',0,0,0,0,0,'[]'),(6699,'116.202.240.195','normal','',0,0,0,0,0,'[]'),(6700,'157.90.181.209','normal','',0,0,0,0,0,'[]'),(6701,'52.188.165.124','normal','',0,0,0,0,0,'[]'),(6702,'35.154.125.180','normal','',0,0,0,1,0,'{\"login\":[1635463977]}'),(6703,'167.114.65.194','normal','',0,0,0,0,0,'[]'),(6704,'194.58.119.107','normal','',0,0,0,0,0,'[]'),(6705,'104.156.59.38','normal','',0,0,0,0,0,'[]'),(6706,'173.236.145.137','normal','',0,0,0,6,0,'{\"login\":[1635465740,1637034829,1637045628,1638425165,1638488091,1638503242]}'),(6707,'66.29.129.231','normal','',0,0,0,0,0,'[]'),(6708,'74.208.31.181','normal','',0,0,0,1,0,'{\"login\":[1636627082]}'),(6709,'159.223.91.63','normal','',0,0,0,1,0,'{\"login\":[1638450923]}'),(6710,'103.92.235.60','normal','',0,0,0,3,0,'{\"login\":[1638432870,1640554487,1640602539]}'),(6711,'101.32.26.66','normal','',0,0,0,4,0,'{\"login\":[1635843816,1640521175,1653805059,1653806594]}'),(6712,'162.214.208.84','normal','',0,0,0,2,0,'{\"login\":[1640801823,1642186584]}'),(6713,'135.181.111.177','normal','',0,0,0,0,0,'[]'),(6714,'54.36.148.125','normal','',0,0,0,0,0,'[]'),(6715,'162.144.75.93','normal','',0,0,0,0,0,'[]'),(6716,'178.77.96.179','normal','',0,0,0,0,0,'[]'),(6717,'177.92.104.37','normal','',0,0,0,1,0,'{\"login\":[1638421793]}'),(6718,'107.173.165.214','normal','',0,0,0,3,0,'{\"login\":[1635864820,1640791083,1642279643]}'),(6719,'35.184.60.0','normal','',0,0,0,1,0,'{\"login\":[1635475218]}'),(6720,'51.91.229.252','normal','',0,0,0,1,0,'{\"login\":[1642220993]}'),(6721,'185.165.118.46','normal','',0,0,0,2,0,'{\"login\":[1635859966,1638417183]}'),(6722,'63.250.47.195','normal','',0,0,0,0,0,'[]'),(6723,'188.40.137.158','normal','',0,0,0,0,0,'[]'),(6724,'146.0.40.11','normal','',0,0,0,1,0,'{\"login\":[1635478850]}'),(6725,'167.71.207.186','normal','',0,0,0,2,0,'{\"login\":[1635482264,1635556995]}'),(6726,'185.182.56.116','normal','',0,0,0,0,0,'[]'),(6727,'103.74.118.242','normal','',0,0,0,2,0,'{\"login\":[1640599018,1662253367]}'),(6728,'35.240.212.147','normal','',0,0,0,0,0,'[]'),(6729,'198.12.76.217','blocked','You have been locked out due to too many invalid login attempts.',1635485759,1635485459,0,5,0,'{\"login\":[1635485456,1635485457,1635485458,1635485458,1635485459]}'),(6730,'108.62.9.202','normal','',0,0,0,0,0,'[]'),(6731,'162.214.122.50','normal','',0,0,0,0,0,'[]'),(6732,'103.221.232.169','normal','',0,0,0,0,0,'[]'),(6733,'141.98.9.3','normal','',0,0,0,0,0,'[]'),(6734,'167.86.103.174','normal','',0,0,0,0,0,'[]'),(6735,'138.128.167.226','normal','',0,0,0,0,0,'[]'),(6736,'13.233.86.38','normal','',0,0,0,0,0,'[]'),(6737,'78.46.83.197','normal','',0,0,0,0,0,'[]'),(6738,'162.0.234.126','normal','',0,0,0,0,0,'[]'),(6739,'74.214.24.238','normal','',0,0,0,6,0,'{\"login\":[1635499755,1636691611,1637140251,1637193216,1637484850,1637670333]}'),(6740,'198.54.128.133','blocked','You have been locked out due to too many invalid login attempts.',1635501929,1635501629,0,5,0,'{\"login\":[1635501625,1635501626,1635501627,1635501628,1635501629]}'),(6741,'94.231.103.184','normal','',0,0,0,0,0,'[]'),(6742,'101.100.216.25','normal','',0,0,0,0,1,'{\"nf\":[1635507718]}'),(6743,'107.164.172.250','normal','',0,0,0,0,1,'{\"nf\":[1635508020]}'),(6744,'3.11.214.55','normal','',0,0,0,1,0,'{\"login\":[1635508166]}'),(6745,'173.254.30.81','normal','',0,0,0,0,0,'[]'),(6746,'51.68.11.231','normal','',0,0,0,11,4,'{\"nf\":[1635510688,1642157669,1642157672,1643111682],\"login\":[1652442593,1652674881,1652678121,1652740045,1652820803,1652821260,1652839292,1652954712,1653270359,1663038772,1663038773]}'),(6747,'103.142.26.247','normal','',0,0,0,13,0,'{\"login\":[1635510734,1635887390,1637167448,1637195917,1637285361,1637344655,1638786515,1638840343,1639154683,1639734765,1639863033,1639868650,1640149076]}'),(6748,'123.21.23.149','normal','',0,0,0,1,0,'{\"login\":[1635513656]}'),(6749,'185.207.228.138','normal','',0,0,0,0,1,'{\"nf\":[1635514354]}'),(6750,'87.250.224.67','normal','',0,0,0,0,0,'[]'),(6751,'173.213.84.171','normal','',0,0,0,0,0,'[]'),(6752,'185.223.234.104','normal','',0,0,0,0,0,'[]'),(6753,'51.222.253.6','normal','',0,0,0,0,0,'[]'),(6754,'103.93.16.69','normal','',0,0,0,0,0,'[]'),(6755,'185.25.20.72','normal','',0,0,0,1,0,'{\"login\":[1635522480]}'),(6756,'173.212.246.160','normal','',0,0,0,8,0,'{\"login\":[1635523772,1635743011,1636101198,1636700333,1636827648,1636929211,1638371113,1638477802]}'),(6757,'114.119.137.200','normal','',0,0,0,0,0,'[]'),(6758,'37.9.175.131','normal','',0,0,0,0,7,'{\"nf\":[1635527949,1639109513,1639569592,1640003953,1640072493,1641320246,1641339049]}'),(6759,'94.23.12.94','normal','',0,0,0,0,2,'{\"nf\":[1635528378,1636532358]}'),(6760,'3.220.213.113','normal','',0,0,0,1,0,'{\"login\":[1635530840]}'),(6761,'164.132.44.97','normal','',0,0,0,0,6,'{\"nf\":[1635533142,1642578480,1645182232,1645182247,1647929031,1662046863]}'),(6762,'128.199.198.227','normal','',0,0,0,0,14,'{\"nf\":[1635533565,1635533566,1635533567,1635533569,1635533571,1635533579,1635533587,1635533588,1635533590,1635533591,1635533592,1635533593,1635533594,1635533595]}'),(6763,'165.22.63.225','normal','',0,0,0,2,0,'{\"login\":[1635534699,1635563894]}'),(6764,'103.147.92.64','normal','',0,0,0,4,0,'{\"login\":[1635536664,1635572425,1635573863,1637129542]}'),(6765,'72.251.224.242','normal','',0,0,0,3,0,'{\"login\":[1635537380,1638276198,1638312558]}'),(6766,'115.159.148.91','normal','',0,0,0,1,0,'{\"login\":[1640530848]}'),(6767,'34.221.60.232','normal','',0,0,0,0,0,'[]'),(6768,'62.171.130.70','normal','',0,0,0,4,0,'{\"login\":[1635539323,1640557665,1640692526,1647366703]}'),(6769,'118.110.159.114','normal','',0,0,0,0,0,'[]'),(6770,'91.98.100.106','normal','',0,0,0,2,0,'{\"login\":[1635541366,1637064244]}'),(6771,'20.58.112.177','normal','',0,0,0,1,0,'{\"login\":[1635836551]}'),(6772,'51.68.206.107','normal','',0,0,0,1,0,'{\"login\":[1635543302]}'),(6773,'51.89.45.60','normal','',0,0,0,1,0,'{\"login\":[1635543901]}'),(6774,'35.189.23.248','normal','',0,0,0,1,0,'{\"login\":[1635544608]}'),(6775,'184.72.17.164','normal','',0,0,0,0,0,'[]'),(6776,'46.221.48.166','normal','',0,0,0,1,0,'{\"login\":[1635546032]}'),(6777,'144.172.69.107','normal','',0,0,0,0,0,'[]'),(6778,'164.160.129.210','normal','',0,0,0,1,0,'{\"login\":[1635548721]}'),(6779,'150.95.110.75','normal','',0,0,0,2,0,'{\"login\":[1635549391,1637114472]}'),(6780,'185.160.67.42','normal','',0,0,0,1,0,'{\"login\":[1635842900]}'),(6781,'80.70.176.50','normal','',0,0,0,2,0,'{\"login\":[1635550758,1635552826]}'),(6782,'3.91.83.0','normal','',0,0,0,2,0,'{\"login\":[1635552152,1635571061]}'),(6783,'34.96.130.10','normal','',0,0,0,0,0,'[]'),(6784,'64.20.39.18','normal','',0,0,0,12,0,'{\"login\":[1635554234,1635573179,1635910625,1636183328,1636200595,1636716386,1636717870,1637514724,1637516555,1637549391,1637639873,1637926748]}'),(6785,'50.28.41.149','normal','',0,0,0,0,0,'[]'),(6786,'143.244.138.119','normal','',0,0,0,2,0,'{\"login\":[1635555479,1636266919]}'),(6787,'213.184.28.17','normal','',0,0,0,0,1,'{\"nf\":[1635556992]}'),(6788,'167.99.223.148','normal','',0,0,0,0,0,'[]'),(6789,'207.180.242.75','normal','',0,0,0,1,0,'{\"login\":[1635558393]}'),(6790,'52.144.45.86','normal','',0,0,0,4,0,'{\"login\":[1635560450,1635568187,1636701512,1637121763]}'),(6791,'139.59.157.199','normal','',0,0,0,1,0,'{\"login\":[1635561034]}'),(6792,'89.233.105.76','normal','',0,0,0,0,0,'[]'),(6793,'180.163.220.45','normal','',0,0,0,0,0,'[]'),(6794,'54.208.2.188','normal','',0,0,0,3,0,'{\"login\":[1635562500,1635566784,1637544050]}'),(6795,'185.212.130.10','normal','',0,0,0,2,0,'{\"login\":[1635563229,1635565351]}'),(6796,'211.37.147.188','normal','',0,0,0,1,0,'{\"login\":[1654517195]}'),(6797,'207.246.69.32','normal','',0,0,0,0,0,'[]'),(6798,'103.31.233.242','normal','',0,0,0,10,0,'{\"login\":[1635566037,1636707243,1637552079,1637749692,1637752843,1637756215,1637911392,1638279418,1641789318,1642778388]}'),(6799,'116.202.216.178','normal','',0,0,0,0,0,'[]'),(6800,'5.9.106.44','normal','',0,0,0,0,1,'{\"nf\":[1635568861]}'),(6801,'167.172.183.245','normal','',0,0,0,2,0,'{\"login\":[1635571644,1635950202]}'),(6802,'103.152.255.31','normal','',0,0,0,0,0,'[]'),(6803,'193.36.118.228','blocked','You have been locked out due to too many invalid login attempts.',1635576232,1635575932,0,5,1,'{\"nf\":[1635575925],\"login\":[1635575928,1635575928,1635575929,1635575931,1635575932]}'),(6804,'190.107.179.233','normal','',0,0,0,0,0,'[]'),(6805,'185.188.44.69','normal','',0,0,0,2,0,'{\"login\":[1635850357,1635858600]}'),(6806,'143.244.187.246','normal','',0,0,0,1,0,'{\"login\":[1636636284]}'),(6807,'62.171.136.77','normal','',0,0,0,0,0,'[]'),(6808,'143.198.55.102','normal','',0,0,0,0,0,'[]'),(6809,'147.182.251.218','normal','',0,0,0,0,0,'[]'),(6810,'67.227.39.38','normal','',0,0,0,0,0,'[]'),(6811,'161.35.3.64','normal','',0,0,0,0,0,'[]'),(6812,'45.117.80.96','normal','',0,0,0,0,0,'[]'),(6813,'114.119.135.204','normal','',0,0,0,0,0,'[]'),(6814,'109.234.161.233','normal','',0,0,0,0,0,'[]'),(6815,'167.71.21.233','normal','',0,0,0,0,0,'[]'),(6816,'88.99.148.13','normal','',0,0,0,0,0,'[]'),(6817,'144.126.134.44','normal','',0,0,0,2,0,'{\"login\":[1635840196,1640257892]}'),(6818,'190.107.177.248','normal','',0,0,0,0,0,'[]'),(6819,'66.249.66.7','normal','',0,0,0,0,0,'[]'),(6820,'167.99.122.219','normal','',0,0,0,0,0,'[]'),(6821,'34.210.108.114','normal','',0,0,0,0,0,'[]'),(6822,'88.99.26.223','normal','',0,0,0,0,0,'[]'),(6823,'5.255.231.207','normal','',0,0,0,0,0,'[]'),(6824,'185.255.88.102','normal','',0,0,0,0,0,'[]'),(6825,'103.147.10.162','normal','',0,0,0,2,0,'{\"login\":[1638416457,1640418122]}'),(6826,'131.72.236.168','normal','',0,0,0,0,0,'[]'),(6827,'185.67.100.197','normal','',0,0,0,1,0,'{\"login\":[1642184507]}'),(6828,'198.98.61.102','normal','',0,0,0,0,0,'[]'),(6829,'195.34.83.112','normal','',0,0,0,3,0,'{\"login\":[1638446945,1640402782,1640593590]}'),(6830,'1.15.144.23','normal','',0,0,0,2,0,'{\"login\":[1635635775,1637114119]}'),(6831,'46.4.106.119','normal','',0,0,0,0,0,'[]'),(6832,'41.130.142.204','normal','',0,0,0,0,0,'[]'),(6833,'200.91.60.16','normal','',0,0,0,0,0,'[]'),(6834,'179.108.8.175','normal','',0,0,0,0,0,'[]'),(6835,'62.171.185.46','normal','',0,0,0,0,0,'[]'),(6836,'199.79.63.24','normal','',0,0,0,0,0,'[]'),(6837,'69.63.64.21','normal','',0,0,0,0,7,'{\"nf\":[1635639626,1635639634,1637167404,1637252273,1637252279,1638204316,1638204324]}'),(6838,'13.231.137.94','normal','',0,0,0,0,0,'[]'),(6839,'91.212.213.42','normal','',0,0,0,0,2,'{\"nf\":[1636097553,1648536062]}'),(6840,'103.139.1.239','normal','',0,0,0,0,0,'[]'),(6841,'45.129.18.184','normal','',0,0,0,0,0,'[]'),(6842,'155.138.243.84','normal','',0,0,0,0,1,'{\"nf\":[1635654179]}'),(6843,'91.212.213.93','normal','',0,0,0,0,1,'{\"nf\":[1639639401]}'),(6844,'116.202.175.87','normal','',0,0,0,0,0,'[]'),(6845,'104.37.84.5','normal','',0,0,0,25,0,'{\"login\":[1635656977,1635814035,1636754913,1636966798,1637417122,1637676297,1638275146,1638461998,1641194346,1641407933,1641461117,1641714877,1641765906,1641909161,1642122005,1642150948,1642494474,1642500670,1642524469,1643088808,1643515234,1644284841,1645072529,1645094507,1645253448]}'),(6846,'43.129.29.166','normal','',0,0,0,0,0,'[]'),(6847,'134.209.194.63','normal','',0,0,0,1,0,'{\"login\":[1653814064]}'),(6848,'78.31.254.220','normal','',0,0,0,0,0,'[]'),(6849,'3.104.162.153','normal','',0,0,0,1,0,'{\"login\":[1635845307]}'),(6850,'107.172.87.24','normal','',0,0,0,0,0,'[]'),(6851,'192.163.204.229','normal','',0,0,0,2,0,'{\"login\":[1636645212,1640237516]}'),(6852,'34.136.225.81','normal','',0,0,0,1,0,'{\"login\":[1635673433]}'),(6853,'95.175.110.163','normal','',0,0,0,0,0,'[]'),(6854,'95.216.22.210','normal','',0,0,0,0,0,'[]'),(6855,'202.88.241.22','normal','',0,0,0,0,0,'[]'),(6856,'66.84.29.22','normal','',0,0,0,0,0,'[]'),(6857,'198.54.128.139','blocked','You have been locked out due to too many invalid login attempts.',1635676022,1635675722,0,5,0,'{\"login\":[1635675718,1635675719,1635675720,1635675720,1635675722]}'),(6858,'88.150.159.29','normal','',0,0,0,51,0,'{\"login\":[1635679227,1638194646,1638229184,1638521713,1638532928,1639259216,1639268232,1639620310,1639722278,1641153911,1641181639,1641271585,1641297251,1641370681,1641390163,1641454576,1642161945,1642367484,1642372970,1642376408,1642393275,1642430956,1642498001,1643039025,1644138899,1644326700,1644505116,1644517771,1644634650,1644675449,1645846204,1645903530,1645937802,1646590975,1648095530,1648589464,1648662227,1649028317,1649957014,1650377880,1650383651,1650398787,1651415277,1651430110,1652091197,1652168899,1652455491,1652576437,1652731510,1652834262,1652953348]}'),(6859,'185.233.55.173','normal','',0,0,0,0,1,'{\"nf\":[1635680271]}'),(6860,'148.72.255.123','normal','',0,0,0,0,5,'{\"nf\":[1636522666,1636733240,1637125575,1637305842,1637305846]}'),(6861,'35.184.168.150','normal','',0,0,0,1,0,'{\"login\":[1638438834]}'),(6862,'75.119.145.180','normal','',0,0,0,0,0,'[]'),(6863,'42.200.111.155','normal','',0,0,0,0,0,'[]'),(6864,'158.46.163.87','normal','',0,0,0,0,0,'[]'),(6865,'5.182.209.135','normal','',0,0,0,0,0,'[]'),(6866,'168.235.89.125','normal','',0,0,0,0,0,'[]'),(6867,'138.197.102.157','normal','',0,0,0,0,0,'[]'),(6868,'196.41.204.4','normal','',0,0,0,0,0,'[]'),(6869,'130.185.74.247','normal','',0,0,0,0,3,'{\"nf\":[1635702053,1635702054,1635702059]}'),(6870,'67.227.39.164','normal','',0,0,0,0,0,'[]'),(6871,'114.119.128.19','normal','',0,0,0,0,0,'[]'),(6872,'54.149.101.196','normal','',0,0,0,0,0,'[]'),(6873,'52.40.111.152','normal','',0,0,0,0,0,'[]'),(6874,'34.208.151.37','normal','',0,0,0,0,0,'[]'),(6875,'129.151.66.167','normal','',0,0,0,0,4,'{\"nf\":[1635712982,1635712991,1635712997,1635713008]}'),(6876,'78.47.234.127','normal','',0,0,0,11,0,'{\"login\":[1635719311,1636722482,1636795785,1637085848,1637197282,1637230620,1637254786,1637976135,1638476452,1638753620,1638820943]}'),(6877,'114.119.147.209','normal','',0,0,0,0,0,'[]'),(6878,'138.197.183.99','normal','',0,0,0,3,0,'{\"login\":[1635724885,1636916731,1637214732]}'),(6879,'159.242.234.130','normal','',0,0,0,0,0,'[]'),(6880,'41.13.246.145','normal','',0,0,0,0,0,'[]'),(6881,'121.5.109.55','normal','',0,0,0,0,0,'[]'),(6882,'66.249.66.85','normal','',0,0,0,0,0,'[]'),(6883,'35.241.123.16','normal','',0,0,0,19,0,'{\"login\":[1635748514,1637126805,1637302112,1637794658,1638334870,1639498170,1639725899,1640269876,1640427239,1640491843,1640730732,1644182205,1644840668,1645776416,1646531401,1646593135,1647017227,1647209118,1647585735]}'),(6884,'20.52.8.88','normal','',0,0,0,0,0,'[]'),(6885,'167.94.138.43','normal','',0,0,0,0,0,'[]'),(6886,'162.142.125.59','normal','',0,0,0,0,0,'[]'),(6887,'180.163.220.3','normal','',0,0,0,0,0,'[]'),(6888,'197.87.135.178','normal','',0,0,0,0,0,'[]'),(6889,'144.76.199.105','normal','',0,0,0,7,0,'{\"login\":[1635758384,1635786540,1636745320,1636902149,1636974087,1637442307,1637729701]}'),(6890,'18.224.45.2','normal','',0,0,0,2,0,'{\"login\":[1635765407,1635790932]}'),(6891,'192.185.81.229','normal','',0,0,0,0,0,'[]'),(6892,'192.99.18.122','normal','',0,0,0,0,0,'[]'),(6893,'51.15.22.13','normal','',0,0,0,0,2,'{\"nf\":[1635778170,1655668176]}'),(6894,'207.46.13.103','normal','',0,0,0,0,0,'[]'),(6895,'149.56.147.198','normal','',0,0,0,0,0,'[]'),(6896,'54.186.120.49','normal','',0,0,0,0,0,'[]'),(6897,'46.101.100.156','normal','',0,0,0,1,0,'{\"login\":[1636622032]}'),(6898,'31.177.95.76','normal','',0,0,0,0,0,'[]'),(6899,'165.0.8.238','normal','',0,0,0,0,0,'[]'),(6900,'37.49.230.71','normal','',0,0,0,0,1,'{\"nf\":[1650874900]}'),(6901,'114.119.136.196','normal','',0,0,0,0,0,'[]'),(6902,'173.237.185.76','normal','',0,0,0,0,0,'[]'),(6903,'162.241.218.127','normal','',0,0,0,0,1,'{\"nf\":[1635803572]}'),(6904,'194.58.107.156','normal','',0,0,0,0,0,'[]'),(6905,'207.46.13.45','normal','',0,0,0,0,0,'[]'),(6906,'207.154.236.141','normal','',0,0,0,0,0,'[]'),(6907,'103.253.107.183','normal','',0,0,0,0,0,'[]'),(6908,'117.102.209.241','normal','',0,0,0,0,0,'[]'),(6909,'50.28.14.77','normal','',0,0,0,0,0,'[]'),(6910,'162.243.8.129','normal','',0,0,0,0,0,'[]'),(6911,'194.163.165.27','normal','',0,0,0,1,0,'{\"login\":[1638449606]}'),(6912,'159.65.91.194','normal','',0,0,0,1,0,'{\"login\":[1642277553]}'),(6913,'109.237.218.155','normal','',0,0,0,0,0,'[]'),(6914,'102.132.214.34','normal','',0,0,0,0,0,'[]'),(6915,'3.108.196.200','normal','',0,0,0,0,0,'[]'),(6916,'101.133.153.105','normal','',0,0,0,2,0,'{\"login\":[1635848404,1635855985]}'),(6917,'78.47.244.45','normal','',0,0,0,0,0,'[]'),(6918,'64.246.165.200','normal','',0,0,0,0,0,'[]'),(6919,'157.90.170.236','normal','',0,0,0,1,0,'{\"login\":[1635836225]}'),(6920,'23.19.80.238','normal','',0,0,0,0,0,'[]'),(6921,'65.21.206.46','normal','',0,0,0,0,1,'{\"nf\":[1635837839]}'),(6922,'209.126.10.71','normal','',0,0,0,1,0,'{\"login\":[1635838946]}'),(6923,'5.61.253.69','normal','',0,0,0,0,1,'{\"nf\":[1635841462]}'),(6924,'1.55.205.101','normal','',0,0,0,0,0,'[]'),(6925,'156.67.222.222','normal','',0,0,0,0,1,'{\"nf\":[1635845963]}'),(6926,'208.113.219.145','normal','',0,0,0,0,2,'{\"nf\":[1635849976,1635953717]}'),(6927,'94.23.118.14','normal','',0,0,0,1,0,'{\"login\":[1635850017]}'),(6928,'103.121.91.114','normal','',0,0,0,0,1,'{\"nf\":[1635850165]}'),(6929,'119.59.97.237','normal','',0,0,0,0,1,'{\"nf\":[1635850171]}'),(6930,'67.205.12.193','normal','',0,0,0,0,1,'{\"nf\":[1635850388]}'),(6931,'95.111.250.205','normal','',0,0,0,3,0,'{\"login\":[1635850975,1648094394,1648113935]}'),(6932,'197.215.166.13','normal','',0,0,0,0,0,'[]'),(6933,'155.93.253.149','normal','',0,0,0,0,0,'[]'),(6934,'47.243.99.249','normal','',0,0,0,0,2,'{\"nf\":[1635856604,1635856607]}'),(6935,'18.220.65.201','normal','',0,0,0,0,1,'{\"nf\":[1635867343]}'),(6936,'185.129.61.2','normal','',0,0,0,0,0,'[]'),(6937,'34.77.162.24','normal','',0,0,0,0,0,'[]'),(6938,'173.236.152.13','normal','',0,0,0,0,2,'{\"nf\":[1635873237,1636208691]}'),(6939,'114.119.147.150','normal','',0,0,0,0,0,'[]'),(6940,'34.132.199.111','normal','',0,0,0,2,0,'{\"login\":[1635882475,1635984201]}'),(6941,'185.2.5.25','normal','',0,0,0,67,0,'{\"login\":[1635884225,1636923607,1637022804,1637028819,1637056531,1637170117,1637203321,1637222368,1637649754,1637685834,1637986528,1638461342,1638876249,1639038864,1639176219,1639296445,1639710720,1640570138,1641075730,1641748141,1641902921,1642099440,1642241491,1642345361,1642612035,1643044750,1643492110,1643539491,1644194255,1644242334,1644298048,1644393915,1644641177,1644704257,1644790444,1645213690,1645350834,1645775051,1646042558,1646268166,1646450019,1646615752,1646630413,1646869831,1646987300,1647669364,1648396170,1649592484,1650026665,1650170615,1650345347,1651389412,1652275896,1652403213,1652611019,1652814950,1652837987,1653252050,1654412948,1654441804,1654706047,1655060593,1655807948,1657338590,1657599332,1659216134,1659411006]}'),(6942,'54.202.65.252','normal','',0,0,0,0,0,'[]'),(6943,'82.223.197.114','normal','',0,0,0,1,0,'{\"login\":[1635890002]}'),(6944,'62.149.145.157','normal','',0,0,0,0,0,'[]'),(6945,'46.101.248.120','normal','',0,0,0,1,0,'{\"login\":[1635892598]}'),(6946,'13.211.62.224','normal','',0,0,0,4,0,'{\"login\":[1635895937,1635899399,1637053455,1637061976]}'),(6947,'157.55.39.177','normal','',0,0,0,0,0,'[]'),(6948,'195.154.61.140','normal','',0,0,0,0,1,'{\"nf\":[1642648425]}'),(6949,'54.189.170.176','normal','',0,0,0,0,0,'[]'),(6950,'66.249.66.15','normal','',0,0,0,0,0,'[]'),(6951,'151.106.117.25','normal','',0,0,0,0,2,'{\"nf\":[1635910106,1635949548]}'),(6952,'159.65.141.188','normal','',0,0,0,0,0,'[]'),(6953,'137.184.22.76','normal','',0,0,0,0,0,'[]'),(6954,'13.236.51.55','normal','',0,0,0,0,0,'[]'),(6955,'69.163.224.119','normal','',0,0,0,8,0,'{\"login\":[1635915691,1636658990,1636931129,1636935161,1636970755,1637730583,1637825591,1637996997]}'),(6956,'52.198.94.89','normal','',0,0,0,0,0,'[]'),(6957,'162.241.217.171','normal','',0,0,0,0,3,'{\"nf\":[1635919863,1638921009,1645238413]}'),(6958,'141.136.33.49','normal','',0,0,0,0,1,'{\"nf\":[1635921533]}'),(6959,'206.166.236.111','normal','',0,0,0,0,0,'[]'),(6960,'118.99.9.16','normal','',0,0,0,0,1,'{\"nf\":[1635922932]}'),(6961,'143.110.148.147','normal','',0,0,0,0,0,'[]'),(6962,'139.59.36.139','normal','',0,0,0,0,0,'[]'),(6963,'200.58.109.114','normal','',0,0,0,1,0,'{\"login\":[1638409868]}'),(6964,'41.13.243.90','normal','',0,0,0,0,1,'{\"nf\":[1635931747]}'),(6965,'178.18.245.82','normal','',0,0,0,0,0,'[]'),(6966,'45.63.95.184','normal','',0,0,0,0,8,'{\"nf\":[1635942098,1637256282,1637256290,1637256292,1637960033,1637960041,1638191150,1638191151]}'),(6967,'114.119.130.248','normal','',0,0,0,0,0,'[]'),(6968,'102.182.206.7','normal','',0,0,0,0,1,'{\"nf\":[1635948703]}'),(6969,'116.93.97.114','normal','',0,0,0,0,0,'[]'),(6970,'139.59.115.136','normal','',0,0,0,2,0,'{\"login\":[1635963277,1637467995]}'),(6971,'69.163.152.105','normal','',0,0,0,0,1,'{\"nf\":[1635963333]}'),(6972,'62.178.170.93','normal','',0,0,0,26,0,'{\"login\":[1635966232,1637428487,1637722402,1638322981,1639511996,1639981414,1640162727,1640457373,1640635384,1640991665,1641208282,1642107425,1642654091,1643312756,1643492684,1644137881,1645064776,1647470749,1647773314,1647879286,1647892420,1649653852,1649763863,1650057154,1651387595,1652857405]}'),(6973,'164.90.131.1','normal','',0,0,0,0,2,'{\"nf\":[1635972092,1637918539]}'),(6974,'176.31.0.242','normal','',0,0,0,7,0,'{\"login\":[1635980963,1636661401,1637086990,1637274159,1637283230,1637417973,1639008258]}'),(6975,'89.248.168.5','normal','',0,0,0,0,0,'[]'),(6976,'157.55.39.103','normal','',0,0,0,0,0,'[]'),(6977,'206.189.159.191','normal','',0,0,0,1,0,'{\"login\":[1635990950]}'),(6978,'81.7.10.109','normal','',0,0,0,0,0,'[]'),(6979,'157.55.39.169','normal','',0,0,0,0,0,'[]'),(6980,'116.202.131.241','normal','',0,0,0,0,2,'{\"nf\":[1636001249,1636550571]}'),(6981,'17.121.114.35','normal','',0,0,0,0,0,'[]'),(6982,'54.165.216.223','normal','',0,0,0,0,1,'{\"nf\":[1636017136]}'),(6983,'109.237.134.10','normal','',0,0,0,0,0,'[]'),(6984,'114.119.149.66','normal','',0,0,0,0,0,'[]'),(6985,'157.55.39.120','normal','',0,0,0,0,0,'[]'),(6986,'194.163.179.183','normal','',0,0,0,0,0,'[]'),(6987,'159.65.7.254','normal','',0,0,0,1,0,'{\"login\":[1636624967]}'),(6988,'159.65.43.233','normal','',0,0,0,0,0,'[]'),(6989,'185.221.182.91','normal','',0,0,0,0,0,'[]'),(6990,'185.104.44.60','normal','',0,0,0,0,0,'[]'),(6991,'102.182.75.244','normal','',0,0,0,0,0,'[]'),(6992,'41.177.118.166','normal','',0,0,0,0,0,'[]'),(6993,'94.231.107.234','normal','',0,0,0,0,0,'[]'),(6994,'47.251.10.238','normal','',0,0,0,0,8,'{\"nf\":[1636030674,1636030679,1636201790,1636201794,1637645617,1637645626,1638238816,1639636623]}'),(6995,'217.79.245.247','normal','',0,0,0,0,0,'[]'),(6996,'188.165.192.229','normal','',0,0,0,0,1,'{\"nf\":[1636031417]}'),(6997,'135.181.193.196','normal','',0,0,0,0,0,'[]'),(6998,'216.250.254.221','normal','',0,0,0,0,0,'[]'),(6999,'46.17.175.145','normal','',0,0,0,0,1,'{\"nf\":[1636033678]}'),(7000,'103.143.80.44','normal','',0,0,0,0,0,'[]'),(7001,'169.1.249.155','normal','',0,0,0,0,0,'[]'),(7002,'104.161.94.175','normal','',0,0,0,0,0,'[]'),(7003,'197.94.216.154','normal','',0,0,0,0,0,'[]'),(7004,'192.166.47.148','normal','',0,0,0,0,1,'{\"nf\":[1636039065]}'),(7005,'192.185.4.96','normal','',0,0,0,0,1,'{\"nf\":[1636039792]}'),(7006,'54.36.148.178','normal','',0,0,0,0,0,'[]'),(7007,'54.36.149.79','normal','',0,0,0,0,0,'[]'),(7008,'212.150.22.55','normal','',0,0,0,0,1,'{\"nf\":[1636040559]}'),(7009,'23.226.70.18','normal','',0,0,0,0,0,'[]'),(7010,'149.210.150.218','normal','',0,0,0,9,0,'{\"login\":[1636046663,1648662694,1648700946,1648738938,1649523666,1649530071,1649538689,1649555557,1650266555]}'),(7011,'111.225.149.43','normal','',0,0,0,0,0,'[]'),(7012,'45.64.97.19','normal','',0,0,0,0,0,'[]'),(7013,'142.93.212.172','normal','',0,0,0,0,0,'[]'),(7014,'185.214.134.131','normal','',0,0,0,1,0,'{\"login\":[1638454213]}'),(7015,'40.77.167.103','normal','',0,0,0,0,0,'[]'),(7016,'103.8.25.22','normal','',0,0,0,0,0,'[]'),(7017,'42.200.169.14','normal','',0,0,0,14,0,'{\"login\":[1640614057,1652195734,1652248024,1653555842,1653581301,1654601174,1654638337,1655311467,1655314327,1656752925,1656768247,1656773528,1656807542,1656808759]}'),(7018,'185.50.25.47','normal','',0,0,0,1,0,'{\"login\":[1636623019]}'),(7019,'35.181.57.138','normal','',0,0,0,0,1,'{\"nf\":[1636063552]}'),(7020,'138.124.186.94','normal','',0,0,0,1,0,'{\"login\":[1636065648]}'),(7021,'65.21.96.39','normal','',0,0,0,6,0,'{\"login\":[1636236796,1636256927,1636705101,1637493174,1637506244,1637612960]}'),(7022,'207.46.13.180','normal','',0,0,0,0,0,'[]'),(7023,'192.99.76.109','normal','',0,0,0,1,0,'{\"login\":[1640695673]}'),(7024,'51.222.253.20','normal','',0,0,0,0,0,'[]'),(7025,'34.96.130.12','normal','',0,0,0,0,0,'[]'),(7026,'5.45.207.111','normal','',0,0,0,0,0,'[]'),(7027,'43.254.17.20','normal','',0,0,0,0,1,'{\"nf\":[1636092089]}'),(7028,'114.119.149.78','normal','',0,0,0,0,0,'[]'),(7029,'103.152.164.77','normal','',0,0,0,0,1,'{\"nf\":[1636094226]}'),(7030,'198.71.228.71','normal','',0,0,0,0,1,'{\"nf\":[1636097193]}'),(7031,'107.189.14.27','normal','',0,0,0,0,0,'[]'),(7032,'47.243.174.162','normal','',0,0,0,0,2,'{\"nf\":[1636098594,1641600136]}'),(7033,'147.182.248.182','normal','',0,0,0,0,0,'[]'),(7034,'54.36.174.141','normal','',0,0,0,1,0,'{\"login\":[1636100913]}'),(7035,'188.166.221.10','normal','',0,0,0,0,0,'[]'),(7036,'103.1.239.8','normal','',0,0,0,0,1,'{\"nf\":[1636105051]}'),(7037,'185.34.216.164','normal','',0,0,0,0,1,'{\"nf\":[1636107824]}'),(7038,'114.119.139.148','normal','',0,0,0,0,0,'[]'),(7039,'50.62.176.63','normal','',0,0,0,0,1,'{\"nf\":[1636108688]}'),(7040,'95.217.53.140','normal','',0,0,0,0,2,'{\"nf\":[1636108737,1636108738]}'),(7041,'172.107.204.98','normal','',0,0,0,0,0,'[]'),(7042,'66.147.224.2','normal','',0,0,0,0,2,'{\"nf\":[1636111955,1636111958]}'),(7043,'17.121.115.124','normal','',0,0,0,0,0,'[]'),(7044,'213.128.77.82','normal','',0,0,0,0,6,'{\"nf\":[1636115180,1636115198,1636115208,1636115224,1636115246,1636115840]}'),(7045,'54.36.148.165','normal','',0,0,0,0,0,'[]'),(7046,'178.165.70.181','normal','',0,0,0,0,0,'[]'),(7047,'209.145.53.94','normal','',0,0,0,0,0,'[]'),(7048,'186.234.80.175','normal','',0,0,0,0,0,'[]'),(7049,'45.32.20.16','normal','',0,0,0,0,0,'[]'),(7050,'75.119.138.244','normal','',0,0,0,1,0,'{\"login\":[1640787473]}'),(7051,'64.4.160.22','normal','',0,0,0,0,0,'[]'),(7052,'68.65.123.34','normal','',0,0,0,0,0,'[]'),(7053,'35.163.37.132','normal','',0,0,0,0,0,'[]'),(7054,'35.86.108.104','normal','',0,0,0,0,0,'[]'),(7055,'164.68.105.226','normal','',0,0,0,0,0,'[]'),(7056,'89.46.105.227','normal','',0,0,0,0,1,'{\"nf\":[1636149417]}'),(7057,'199.188.204.110','normal','',0,0,0,0,1,'{\"nf\":[1636149443]}'),(7058,'41.114.157.112','normal','',0,0,0,0,0,'[]'),(7059,'178.128.208.170','normal','',0,0,0,1,0,'{\"login\":[1642185473]}'),(7060,'45.127.44.35','normal','',0,0,0,0,0,'[]'),(7061,'108.163.150.166','normal','',0,0,0,0,0,'[]'),(7062,'52.209.116.37','normal','',0,0,0,2,0,'{\"login\":[1636153930,1636159050]}'),(7063,'137.184.22.7','normal','',0,0,0,3,0,'{\"login\":[1640223006,1640261875,1640768030]}'),(7064,'27.115.124.45','normal','',0,0,0,0,0,'[]'),(7065,'81.70.151.13','normal','',0,0,0,1,0,'{\"login\":[1640652573]}'),(7066,'132.148.104.143','normal','',0,0,0,0,1,'{\"nf\":[1636158574]}'),(7067,'89.31.140.123','normal','',0,0,0,0,1,'{\"nf\":[1636160556]}'),(7068,'185.26.156.131','normal','',0,0,0,1,0,'{\"login\":[1636163853]}'),(7069,'184.72.185.46','normal','',0,0,0,2,0,'{\"login\":[1636166940,1636969419]}'),(7070,'42.236.10.120','normal','',0,0,0,0,0,'[]'),(7071,'148.72.214.245','normal','',0,0,0,56,0,'{\"login\":[1636169342,1636869682,1637311316,1640122064,1640561838,1642149510,1642680009,1644610750,1644817789,1645343913,1645912013,1645942399,1646103328,1646104292,1646504664,1646800355,1646805664,1647229993,1647237265,1647382503,1647423327,1647759187,1647904371,1648255432,1648539740,1648612691,1649546808,1650299654,1650308562,1651338293,1651384554,1651395881,1651717166,1652790252,1653762382,1654275758,1654801913,1654849106,1654879846,1654891838,1654926119,1656740700,1657294284,1657329074,1659208740,1659818517,1660000603,1660212544,1660460888,1660618250,1661150771,1661196638,1661257893,1661400200,1662753964,1663150831]}'),(7072,'94.152.11.79','normal','',0,0,0,0,1,'{\"nf\":[1636174007]}'),(7073,'94.152.11.79','normal','',0,0,0,0,1,'{\"nf\":[1636174008]}'),(7074,'114.119.144.163','normal','',0,0,0,0,0,'[]'),(7075,'178.128.117.204','normal','',0,0,0,0,0,'[]'),(7076,'157.55.39.53','normal','',0,0,0,0,0,'[]'),(7077,'128.199.230.82','normal','',0,0,0,2,0,'{\"login\":[1636177821,1636221910]}'),(7078,'2.57.122.107','normal','',0,0,0,0,0,'[]'),(7079,'185.164.73.234','normal','',0,0,0,0,1,'{\"nf\":[1636184959]}'),(7080,'196.206.231.215','normal','',0,0,0,0,0,'[]'),(7081,'114.119.140.185','normal','',0,0,0,0,0,'[]'),(7082,'139.59.59.65','normal','',0,0,0,2,0,'{\"login\":[1636188988,1636208487]}'),(7083,'35.241.177.128','normal','',0,0,0,4,0,'{\"login\":[1636191495,1637239647,1638523806,1641810819]}'),(7084,'46.101.90.54','normal','',0,0,0,2,0,'{\"login\":[1636191615,1636231845]}'),(7085,'185.182.56.159','normal','',0,0,0,0,2,'{\"nf\":[1636193627,1636914841]}'),(7086,'104.238.205.4','normal','',0,0,0,0,3,'{\"nf\":[1636196348,1636333984,1641515666]}'),(7087,'160.16.104.196','normal','',0,0,0,1,0,'{\"login\":[1636198936]}'),(7088,'91.239.207.32','normal','',0,0,0,0,2,'{\"nf\":[1636203115,1636991053]}'),(7089,'173.249.60.129','normal','',0,0,0,1,0,'{\"login\":[1636204467]}'),(7090,'104.236.254.8','normal','',0,0,0,0,0,'[]'),(7091,'62.171.144.155','normal','',0,0,0,0,0,'[]'),(7092,'121.1.139.68','normal','',0,0,0,7,0,'{\"login\":[1636212780,1637484265,1637779491,1640838289,1642710374,1642815963,1643210014]}'),(7093,'102.39.157.209','normal','',0,0,0,0,0,'[]'),(7094,'18.237.38.221','normal','',0,0,0,0,0,'[]'),(7095,'62.182.159.89','normal','',0,0,0,5,15,'{\"login\":[1636236816,1636330889,1636374598,1636407628,1636410670],\"nf\":[1636521365,1636521666,1636696515,1636991013,1637271758,1637286617,1637356424,1637404465,1637460816,1637720985,1637882124,1637961223,1637997130,1638059886,1638592223]}'),(7096,'195.130.35.140','normal','',0,0,0,0,1,'{\"nf\":[1636241478]}'),(7097,'8.36.41.22','normal','',0,0,0,0,3,'{\"nf\":[1636244067,1636907149,1637223033]}'),(7098,'143.198.174.112','normal','',0,0,0,2,0,'{\"login\":[1636246871,1637492295]}'),(7099,'192.241.192.22','normal','',0,0,0,1,0,'{\"login\":[1636251987]}'),(7100,'114.119.131.181','normal','',0,0,0,0,0,'[]'),(7101,'93.188.166.20','normal','',0,0,0,0,1,'{\"nf\":[1636261397]}'),(7102,'218.227.50.83','normal','',0,0,0,0,0,'[]'),(7103,'107.172.219.253','normal','',0,0,0,37,0,'{\"login\":[1636264536,1637177821,1637338764,1637905204,1638785139,1638869420,1639225578,1639551095,1639693934,1640447708,1640497215,1641077574,1641963493,1641995537,1642109618,1642878695,1643555265,1644247894,1644821788,1645736128,1645917665,1646091806,1646466782,1646937978,1647130159,1647380435,1647680652,1647840138,1647894781,1649098652,1650546102,1650883300,1651079064,1652566247,1652882447,1653319115,1653329877]}'),(7104,'34.147.103.188','normal','',0,0,0,0,0,'[]'),(7105,'122.170.98.32','normal','',0,0,0,10,0,'{\"login\":[1636270766,1636860096,1636906183,1636935874,1638807199,1640288080,1640293732,1641242176,1641535787,1642034183]}'),(7106,'13.69.158.97','normal','',0,0,0,1,0,'{\"login\":[1636271688]}'),(7107,'93.177.103.170','normal','',0,0,0,1,0,'{\"login\":[1640011423]}'),(7108,'54.36.148.113','normal','',0,0,0,0,0,'[]'),(7109,'110.249.202.107','normal','',0,0,0,0,0,'[]'),(7110,'192.185.81.100','normal','',0,0,0,0,1,'{\"nf\":[1636279371]}'),(7111,'5.255.91.5','normal','',0,0,0,0,2,'{\"nf\":[1636279632,1637842475]}'),(7112,'170.83.176.234','normal','',0,0,0,0,0,'[]'),(7113,'50.62.176.79','normal','',0,0,0,0,2,'{\"nf\":[1636286218,1642431200]}'),(7114,'78.46.60.149','normal','',0,0,0,0,0,'[]'),(7115,'103.139.75.14','normal','',0,0,0,0,2,'{\"nf\":[1636289130,1637240430]}'),(7116,'31.177.95.192','normal','',0,0,0,0,0,'[]'),(7117,'157.55.39.148','normal','',0,0,0,0,0,'[]'),(7118,'102.182.118.85','normal','',0,0,0,0,2,'{\"nf\":[1636299414,1636299414]}'),(7119,'105.186.82.65','normal','',0,0,0,0,0,'[]'),(7120,'138.186.142.205','normal','',0,0,0,0,0,'[]'),(7121,'34.217.28.242','normal','',0,0,0,0,0,'[]'),(7122,'51.75.161.78','normal','',0,0,0,0,0,'[]'),(7123,'208.97.177.191','normal','',0,0,0,0,1,'{\"nf\":[1636326315]}'),(7124,'185.104.29.8','normal','',0,0,0,0,1,'{\"nf\":[1636329466]}'),(7125,'151.106.97.226','normal','',0,0,0,0,1,'{\"nf\":[1636334308]}'),(7126,'151.106.97.222','normal','',0,0,0,0,1,'{\"nf\":[1636334311]}'),(7127,'114.119.132.45','normal','',0,0,0,0,0,'[]'),(7128,'209.126.25.248','normal','',0,0,0,0,3,'{\"nf\":[1636342451,1637198807,1637198810]}'),(7129,'67.205.14.147','normal','',0,0,0,0,1,'{\"nf\":[1636347742]}'),(7130,'217.138.217.55','normal','',0,0,0,0,0,'[]'),(7131,'105.0.2.145','normal','',0,0,0,0,0,'[]'),(7132,'185.206.224.203','normal','',0,0,0,0,0,'[]'),(7133,'173.236.250.190','normal','',0,0,0,0,0,'[]'),(7134,'107.6.89.183','normal','',0,0,0,0,1,'{\"nf\":[1636401196]}'),(7135,'54.212.0.14','normal','',0,0,0,0,0,'[]'),(7136,'35.165.54.234','normal','',0,0,0,0,0,'[]'),(7137,'34.213.175.206','normal','',0,0,0,0,0,'[]'),(7138,'114.119.144.178','normal','',0,0,0,0,0,'[]'),(7139,'40.68.44.208','normal','',0,0,0,0,1,'{\"nf\":[1636418094]}'),(7140,'84.17.42.38','normal','',0,0,0,0,0,'[]'),(7141,'193.169.253.168','normal','',0,0,0,0,0,'[]'),(7142,'146.70.31.121','normal','',0,0,0,0,0,'[]'),(7143,'5.2.188.23','normal','',0,0,0,0,0,'[]'),(7144,'34.86.35.15','normal','',0,0,0,0,0,'[]'),(7145,'156.155.113.239','normal','',0,0,0,0,0,'[]'),(7146,'197.185.111.73','normal','',0,0,0,0,0,'[]'),(7147,'68.235.48.21','normal','',0,0,0,0,1,'{\"nf\":[1636446916]}'),(7148,'139.59.240.161','normal','',0,0,0,0,1,'{\"nf\":[1636447995]}'),(7149,'58.61.244.58','normal','',0,0,0,0,0,'[]'),(7150,'43.240.113.91','normal','',0,0,0,2,0,'{\"login\":[1659365253,1659409010]}'),(7151,'54.36.148.194','normal','',0,0,0,0,0,'[]'),(7152,'183.253.80.117','normal','',0,0,0,0,0,'[]'),(7153,'144.202.65.165','normal','',0,0,0,0,1,'{\"nf\":[1636471834]}'),(7154,'212.192.246.199','normal','',0,0,0,0,0,'[]'),(7155,'83.216.185.69','normal','',0,0,0,0,1,'{\"nf\":[1636472107]}'),(7156,'40.77.167.73','normal','',0,0,0,0,0,'[]'),(7157,'27.254.82.137','normal','',0,0,0,0,1,'{\"nf\":[1636485045]}'),(7158,'109.239.58.107','normal','',0,0,0,0,3,'{\"nf\":[1636486908,1636486910,1636486911]}'),(7159,'40.77.167.98','normal','',0,0,0,0,0,'[]'),(7160,'54.188.236.229','normal','',0,0,0,0,0,'[]'),(7161,'52.37.21.140','normal','',0,0,0,0,0,'[]'),(7162,'54.191.149.76','normal','',0,0,0,0,0,'[]'),(7163,'75.119.144.140','normal','',0,0,0,0,0,'[]'),(7164,'52.66.223.190','normal','',0,0,0,0,0,'[]'),(7165,'52.27.163.96','normal','',0,0,0,0,0,'[]'),(7166,'62.129.213.243','normal','',0,0,0,0,2,'{\"nf\":[1636493756,1636845248]}'),(7167,'45.129.18.128','normal','',0,0,0,0,0,'[]'),(7168,'114.119.150.252','normal','',0,0,0,0,0,'[]'),(7169,'45.13.254.173','normal','',0,0,0,0,2,'{\"nf\":[1636499808,1642085473]}'),(7170,'185.182.59.30','normal','',0,0,0,0,0,'[]'),(7171,'103.221.220.99','normal','',0,0,0,0,7,'{\"nf\":[1636504281,1637321316,1637864069,1638257345,1642164682,1642164685,1642215648]}'),(7172,'175.44.42.215','normal','',0,0,0,0,0,'[]'),(7173,'34.96.130.23','normal','',0,0,0,0,0,'[]'),(7174,'34.96.130.4','normal','',0,0,0,0,0,'[]'),(7175,'3.109.141.149','normal','',0,0,0,0,1,'{\"nf\":[1636511408]}'),(7176,'34.221.167.165','normal','',0,0,0,0,0,'[]'),(7177,'185.206.224.202','normal','',0,0,0,0,0,'[]'),(7178,'5.182.209.130','normal','',0,0,0,0,1,'{\"nf\":[1636520643]}'),(7179,'36.37.124.100','normal','',0,0,0,0,0,'[]'),(7180,'185.104.44.79','normal','',0,0,0,0,4,'{\"nf\":[1636527064,1636527065,1636527072,1636527079]}'),(7181,'89.163.145.134','normal','',0,0,0,0,0,'[]'),(7182,'62.171.142.107','normal','',0,0,0,0,4,'{\"nf\":[1636528873,1636738490,1636738493,1636738495]}'),(7183,'62.102.148.69','normal','',0,0,0,0,0,'[]'),(7184,'41.13.228.106','normal','',0,0,0,0,0,'[]'),(7185,'42.193.45.103','normal','',0,0,0,0,0,'[]'),(7186,'82.165.86.52','normal','',0,0,0,0,1,'{\"nf\":[1636555276]}'),(7187,'23.108.52.8','normal','',0,0,0,0,0,'[]'),(7188,'54.161.134.5','normal','',0,0,0,0,0,'[]'),(7189,'52.37.167.180','normal','',0,0,0,0,0,'[]'),(7190,'54.36.148.247','normal','',0,0,0,0,0,'[]'),(7191,'94.46.15.22','normal','',0,0,0,0,2,'{\"nf\":[1636593478,1636593505]}'),(7192,'45.164.92.140','normal','',0,0,0,0,1,'{\"nf\":[1636598366]}'),(7193,'114.119.130.116','normal','',0,0,0,0,0,'[]'),(7194,'34.125.96.109','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1637028789,0,1637028489,0,21,'{\"nf\":[1636605828,1637028456,1637028458,1637028459,1637028461,1637028463,1637028464,1637028466,1637028467,1637028469,1637028472,1637028473,1637028475,1637028476,1637028478,1637028481,1637028482,1637028485,1637028487,1637028488,1637028489]}'),(7195,'3.20.205.153','normal','',0,0,0,0,0,'[]'),(7196,'42.236.10.89','normal','',0,0,0,0,0,'[]'),(7197,'54.36.148.117','normal','',0,0,0,0,0,'[]'),(7198,'54.183.197.218','normal','',0,0,0,1,0,'{\"login\":[1636637425]}'),(7199,'114.77.47.119','normal','',0,0,0,1,0,'{\"login\":[1636639204]}'),(7200,'82.165.23.160','normal','',0,0,0,1,0,'{\"login\":[1636641047]}'),(7201,'193.189.100.203','normal','',0,0,0,0,0,'[]'),(7202,'212.53.140.30','normal','',0,0,0,1,0,'{\"login\":[1636642379]}'),(7203,'20.92.105.197','normal','',0,0,0,0,0,'[]'),(7204,'109.74.197.34','normal','',0,0,0,1,0,'{\"login\":[1636644580]}'),(7205,'45.33.53.206','normal','',0,0,0,1,0,'{\"login\":[1636645287]}'),(7206,'208.109.22.157','normal','',0,0,0,0,1,'{\"nf\":[1636646801]}'),(7207,'104.236.126.239','normal','',0,0,0,23,0,'{\"login\":[1636646840,1637401963,1637423635,1638140071,1639600884,1639607033,1639772071,1640274264,1640510736,1640525901,1640828762,1641238535,1642460983,1643002037,1643101159,1643658917,1643669207,1644624117,1645278595,1646003528,1646574256,1646864110,1647405709]}'),(7208,'45.77.240.19','normal','',0,0,0,0,3,'{\"nf\":[1636647932,1636647937,1636800911]}'),(7209,'157.245.250.226','normal','',0,0,0,32,0,'{\"login\":[1636648118,1637221249,1639585237,1640712610,1641866491,1641879602,1642023552,1642289092,1642486542,1643502501,1644426109,1644685721,1644828042,1648169895,1648282275,1648285641,1649648485,1650038237,1650524849,1650698779,1650946702,1651680687,1652040734,1652390469,1652561215,1652617527,1652753560,1652923708,1653036483,1655395355,1655675623,1655678924]}'),(7210,'54.37.121.239','normal','',0,0,0,5,13,'{\"nf\":[1636649849,1637310800,1637366224,1637557532,1637557535,1637917950,1637917952,1638802128,1638970456,1639898487,1644629292,1644851027,1644851030],\"login\":[1656748777,1657483549,1657505669,1657505868,1657857530]}'),(7211,'189.126.106.250','normal','',0,0,0,1,0,'{\"login\":[1636650462]}'),(7212,'133.18.32.22','normal','',0,0,0,1,0,'{\"login\":[1636651604]}'),(7213,'54.38.181.202','normal','',0,0,0,14,0,'{\"login\":[1636656650,1637091547,1637141763,1637228951,1637342248,1637658604,1638527294,1639023067,1639238650,1639249315,1639505069,1639550209,1640347783,1640442921]}'),(7214,'54.36.148.251','normal','',0,0,0,0,0,'[]'),(7215,'34.221.148.222','normal','',0,0,0,0,0,'[]'),(7216,'54.36.148.56','normal','',0,0,0,0,0,'[]'),(7217,'34.220.211.175','normal','',0,0,0,0,0,'[]'),(7218,'34.208.222.196','normal','',0,0,0,0,0,'[]'),(7219,'54.36.148.220','normal','',0,0,0,0,0,'[]'),(7220,'35.166.75.30','normal','',0,0,0,0,0,'[]'),(7221,'125.192.207.152','normal','',0,0,0,0,0,'[]'),(7222,'5.45.207.91','normal','',0,0,0,0,0,'[]'),(7223,'94.23.83.103','normal','',0,0,0,2,0,'{\"login\":[1636667529,1638818813]}'),(7224,'143.110.252.166','normal','',0,0,0,0,0,'[]'),(7225,'114.119.134.207','normal','',0,0,0,0,0,'[]'),(7226,'13.52.107.99','normal','',0,0,0,1,0,'{\"login\":[1636674009]}'),(7227,'198.252.110.1','normal','',0,0,0,9,0,'{\"login\":[1636675337,1637246884,1637418802,1638186698,1639333735,1639831433,1640084029,1640437430,1640535552]}'),(7228,'67.205.155.142','normal','',0,0,0,0,0,'[]'),(7229,'199.192.30.216','normal','',0,0,0,1,0,'{\"login\":[1642187143]}'),(7230,'95.111.197.125','normal','',0,0,0,5,0,'{\"login\":[1636684347,1636772907,1637009002,1637269791,1637466397]}'),(7231,'34.77.178.214','normal','',0,0,0,10,0,'{\"login\":[1636685658,1636838519,1637174969,1638234730,1638318947,1638487401,1639043193,1639267072,1639741132,1640016751]}'),(7232,'34.96.130.17','normal','',0,0,0,0,0,'[]'),(7233,'172.86.180.170','normal','',0,0,0,0,0,'[]'),(7234,'139.180.213.32','normal','',0,0,0,1,0,'{\"login\":[1636690460]}'),(7235,'81.88.52.186','normal','',0,0,0,0,0,'[]'),(7236,'94.231.107.9','normal','',0,0,0,0,0,'[]'),(7237,'13.233.11.9','normal','',0,0,0,0,0,'[]'),(7238,'186.234.80.119','normal','',0,0,0,0,0,'[]'),(7239,'45.77.6.131','normal','',0,0,0,0,0,'[]'),(7240,'67.21.32.149','blocked','You have been locked out due to too many invalid login attempts.',1636694406,1636694106,0,5,0,'{\"login\":[1636694103,1636694104,1636694105,1636694105,1636694106]}'),(7241,'178.136.243.144','normal','',0,0,0,0,0,'[]'),(7242,'35.192.82.202','normal','',0,0,0,5,0,'{\"login\":[1636697794,1636705223,1637329678,1637356378,1640444995]}'),(7243,'190.92.152.62','normal','',0,0,0,1,0,'{\"login\":[1640796162]}'),(7244,'41.13.204.43','normal','',0,0,0,0,0,'[]'),(7245,'191.101.50.220','normal','',0,0,0,0,0,'[]'),(7246,'144.172.68.115','normal','',0,0,0,0,0,'[]'),(7247,'44.240.176.116','normal','',0,0,0,1,0,'{\"login\":[1636703607]}'),(7248,'161.97.133.63','normal','',0,0,0,3,0,'{\"login\":[1636704352,1636713493,1637042789]}'),(7249,'162.214.190.238','normal','',0,0,0,1,0,'{\"login\":[1636706426]}'),(7250,'142.93.213.201','normal','',0,0,0,3,0,'{\"login\":[1636709467,1637629499,1641291840]}'),(7251,'149.255.62.9','normal','',0,0,0,1,0,'{\"login\":[1636711396]}'),(7252,'184.168.97.99','normal','',0,0,0,0,2,'{\"nf\":[1636711638,1638423312]}'),(7253,'104.207.246.48','normal','',0,0,0,0,2,'{\"nf\":[1636714760,1637215125]}'),(7254,'149.56.150.87','normal','',0,0,0,0,0,'[]'),(7255,'163.44.206.200','normal','',0,0,0,2,0,'{\"login\":[1636715087,1637596651]}'),(7256,'51.77.222.51','normal','',0,0,0,2,0,'{\"login\":[1636720818,1637509038]}'),(7257,'167.71.199.161','normal','',0,0,0,37,0,'{\"login\":[1636723026,1636754350,1637706296,1637808762,1637826635,1638474413,1638787901,1638852282,1639017754,1640618265,1641106195,1641120486,1641354031,1641403194,1643024486,1644123199,1644443333,1645206587,1645842431,1646708164,1646731640,1647162677,1647933599,1648729113,1649505133,1649555006,1650037307,1650126621,1650259958,1650718320,1651039733,1652268581,1652367262,1652572772,1653432534,1654633396,1655145643]}'),(7258,'65.21.234.114','normal','',0,0,0,5,0,'{\"login\":[1636724349,1636727413,1637557494,1637558902,1637609686]}'),(7259,'3.144.33.197','normal','',0,0,0,1,0,'{\"login\":[1636725827]}'),(7260,'54.179.161.21','normal','',0,0,0,1,0,'{\"login\":[1636728049]}'),(7261,'139.59.103.209','normal','',0,0,0,3,0,'{\"login\":[1636728805,1637078936,1641357341]}'),(7262,'54.36.108.118','normal','',0,0,0,1,0,'{\"login\":[1636732308]}'),(7263,'173.249.144.234','normal','',0,0,0,1,0,'{\"login\":[1636734389]}'),(7264,'168.119.251.113','normal','',0,0,0,2,0,'{\"login\":[1636737454,1637041758]}'),(7265,'162.55.64.68','normal','',0,0,0,0,2,'{\"nf\":[1636739073,1636796264]}'),(7266,'18.231.118.245','normal','',0,0,0,2,0,'{\"login\":[1636739568,1636846914]}'),(7267,'35.224.3.160','normal','',0,0,0,3,0,'{\"login\":[1636740252,1639716723,1641142609]}'),(7268,'155.133.129.13','normal','',0,0,0,4,0,'{\"login\":[1636740928,1636848355,1636884202,1637114933]}'),(7269,'149.56.160.147','normal','',0,0,0,0,2,'{\"nf\":[1636741727,1636741793]}'),(7270,'208.167.245.88','normal','',0,0,0,1,0,'{\"login\":[1636743064]}'),(7271,'149.56.150.113','normal','',0,0,0,0,0,'[]'),(7272,'5.22.249.103','normal','',0,0,0,0,1,'{\"nf\":[1636746450]}'),(7273,'54.200.155.74','normal','',0,0,0,0,0,'[]'),(7274,'34.220.76.231','normal','',0,0,0,0,0,'[]'),(7275,'54.184.57.36','normal','',0,0,0,0,0,'[]'),(7276,'34.221.213.188','normal','',0,0,0,0,0,'[]'),(7277,'212.51.178.42','normal','',0,0,0,1,0,'{\"login\":[1636750748]}'),(7278,'114.119.145.130','normal','',0,0,0,0,0,'[]'),(7279,'8.130.55.145','normal','',0,0,0,51,0,'{\"login\":[1636755505,1637124461,1637454519,1637664882,1638493463,1639030401,1640527219,1641412694,1641910480,1642323537,1642846977,1644397323,1645848107,1645998872,1646265200,1646451154,1646483807,1646516062,1646621121,1647190151,1647499470,1647897156,1648235301,1650385080,1650529270,1650662319,1651746427,1652017782,1653397552,1653908835,1654268935,1654407069,1654499581,1654501946,1655538046,1655774200,1656136482,1656906502,1657078877,1657314082,1658453561,1658819939,1658824489,1658949309,1659131882,1659267109,1659434885,1660362031,1660520025,1661090484,1661507248]}'),(7280,'176.9.117.99','normal','',0,0,0,0,2,'{\"nf\":[1636756189,1654152538]}'),(7281,'104.244.73.93','normal','',0,0,0,0,0,'[]'),(7282,'157.55.39.183','normal','',0,0,0,0,0,'[]'),(7283,'195.248.243.180','normal','',0,0,0,2,0,'{\"login\":[1636765094,1636853936]}'),(7284,'197.229.6.167','normal','',0,0,0,0,0,'[]'),(7285,'18.116.121.27','normal','',0,0,0,6,0,'{\"login\":[1636767356,1636774128,1636877140,1636885349,1637209076,1637805240]}'),(7286,'178.32.89.175','normal','',0,0,0,54,0,'{\"login\":[1636769378,1637217689,1638282934,1638483953,1639542131,1639727457,1639837951,1640119302,1640577552,1640681985,1640767544,1640960810,1641060996,1641209008,1641276467,1641325783,1641365051,1641496380,1641768986,1641814075,1642137975,1642138690,1642230028,1642339919,1642546919,1642633017,1642687662,1642866110,1643055495,1643056131,1643732345,1643750914,1644436205,1644507880,1644529437,1644579899,1644718338,1644726446,1645101654,1645216747,1645843366,1646029992,1646294037,1646422537,1646498313,1646575968,1646700873,1646939877,1647191053,1647227257,1647595727,1648178466,1648554269,1648629413]}'),(7287,'34.96.130.9','normal','',0,0,0,0,0,'[]'),(7288,'5.189.177.98','normal','',0,0,0,3,0,'{\"login\":[1636777287,1637176444,1639227078]}'),(7289,'104.200.20.27','normal','',0,0,0,0,1,'{\"nf\":[1636779490]}'),(7290,'102.65.163.82','normal','',0,0,0,0,0,'[]'),(7291,'31.14.255.249','normal','',0,0,0,0,1,'{\"nf\":[1636781682]}'),(7292,'185.214.126.63','normal','',0,0,0,0,2,'{\"nf\":[1636786780,1638034771]}'),(7293,'67.20.76.208','normal','',0,0,0,0,0,'[]'),(7294,'185.41.68.114','normal','',0,0,0,0,3,'{\"nf\":[1636789620,1636806300,1638385455]}'),(7295,'13.94.249.188','normal','',0,0,0,10,0,'{\"login\":[1636798496,1637168560,1637884686,1638137618,1639460841,1641984471,1642045607,1643740480,1644331239,1645902596]}'),(7296,'65.1.165.235','normal','',0,0,0,1,0,'{\"login\":[1636799596]}'),(7297,'190.116.41.90','normal','',0,0,0,0,0,'[]'),(7298,'110.249.201.208','normal','',0,0,0,0,0,'[]'),(7299,'51.38.187.133','normal','',0,0,0,8,0,'{\"login\":[1636809766,1636814060,1636902977,1637684765,1637692574,1637782589,1637883435,1637915328]}'),(7300,'103.144.253.38','normal','',0,0,0,40,0,'{\"login\":[1636810399,1636986126,1637081571,1637668486,1637839232,1638166481,1638369995,1638486706,1638731968,1638982440,1639380349,1639774704,1639844497,1639850243,1639894905,1640112341,1640295626,1640822645,1640827736,1641378132,1641698967,1641762956,1641930337,1642012210,1642908449,1643046320,1643306238,1643548278,1643560398,1644209185,1644235542,1644540342,1644578052,1645773695,1645913867,1646256360,1646596249,1646689266,1646830990,1646848321]}'),(7301,'185.2.4.56','normal','',0,0,0,75,0,'{\"login\":[1636813452,1637821270,1638232099,1638401516,1638979342,1639164695,1639326700,1639340761,1640280535,1640655490,1640948765,1641020351,1641140395,1641314508,1641696486,1641699777,1641912023,1642185310,1642246559,1642311583,1642341584,1642661578,1643553537,1643564971,1643570142,1644740102,1646246269,1646614375,1646742125,1646901121,1647780494,1647903159,1647960622,1648210752,1648537306,1648545561,1648702265,1649033078,1649581236,1649812928,1650044296,1650173804,1650297726,1650397937,1650689116,1651559281,1651990267,1654050219,1654289889,1654305435,1654431993,1654926508,1654926895,1655077025,1655191430,1655883778,1656079833,1656088571,1656555806,1656936920,1657057070,1657401099,1657561210,1657859167,1658250315,1660003407,1660156918,1660996360,1661154356,1661244620,1661358855,1661366192,1662292195,1662783064,1662911701]}'),(7302,'178.18.255.207','normal','',0,0,0,2,0,'{\"login\":[1636816371,1637828305]}'),(7303,'72.14.176.248','normal','',0,0,0,2,0,'{\"login\":[1636817392,1636841681]}'),(7304,'203.86.239.178','normal','',0,0,0,2,0,'{\"login\":[1636819237,1637101518]}'),(7305,'146.148.96.32','normal','',0,0,0,4,0,'{\"login\":[1636819878,1636826486,1637443082,1638457430]}'),(7306,'93.115.79.153','normal','',0,0,0,3,0,'{\"login\":[1636821152,1636889369,1637055528]}'),(7307,'13.37.107.119','normal','',0,0,0,2,0,'{\"login\":[1636824165,1637018872]}'),(7308,'52.5.70.31','normal','',0,0,0,0,0,'[]'),(7309,'143.198.179.234','normal','',0,0,0,5,0,'{\"login\":[1636824749,1637307344,1637655993,1637675386,1637736671]}'),(7310,'198.71.235.1','normal','',0,0,0,0,2,'{\"nf\":[1636825887,1636825891]}'),(7311,'54.71.127.233','normal','',0,0,0,0,0,'[]'),(7312,'161.35.113.223','normal','',0,0,0,2,0,'{\"login\":[1636836356,1636847782]}'),(7313,'52.11.166.244','normal','',0,0,0,0,0,'[]'),(7314,'34.217.144.69','normal','',0,0,0,0,0,'[]'),(7315,'161.35.94.99','normal','',0,0,0,7,0,'{\"login\":[1636837163,1638207694,1639233112,1639506798,1639509393,1639519899,1640141795]}'),(7316,'213.184.28.40','normal','',0,0,0,0,2,'{\"nf\":[1636841085,1639170340]}'),(7317,'75.119.193.23','normal','',0,0,0,0,0,'[]'),(7318,'156.146.56.108','normal','',0,0,0,0,0,'[]'),(7319,'2.57.122.21','normal','',0,0,0,0,0,'[]'),(7320,'2.57.122.21','normal','',0,0,0,0,0,'[]'),(7321,'2.57.122.21','normal','',0,0,0,0,0,'[]'),(7322,'94.4.125.73','normal','',0,0,0,0,1,'{\"nf\":[1636854035]}'),(7323,'111.7.100.26','normal','',0,0,0,0,2,'{\"nf\":[1636855963,1636855964]}'),(7324,'111.7.100.24','normal','',0,0,0,0,0,'[]'),(7325,'111.7.100.25','normal','',0,0,0,0,0,'[]'),(7326,'36.99.136.143','normal','',0,0,0,0,0,'[]'),(7327,'111.7.100.27','normal','',0,0,0,0,0,'[]'),(7328,'111.7.100.20','normal','',0,0,0,0,0,'[]'),(7329,'36.99.136.133','normal','',0,0,0,0,0,'[]'),(7330,'36.99.136.130','normal','',0,0,0,0,0,'[]'),(7331,'87.106.169.145','normal','',0,0,0,1,0,'{\"login\":[1636855444]}'),(7332,'173.236.169.222','normal','',0,0,0,1,0,'{\"login\":[1636859127]}'),(7333,'103.149.154.8','normal','',0,0,0,59,0,'{\"login\":[1636861702,1638304193,1638519629,1639178391,1639621301,1639777851,1640378035,1640900724,1640965204,1641004435,1641417466,1641793591,1642119825,1642172298,1643295502,1643481903,1643568989,1643654353,1644092608,1644118118,1644573448,1645335657,1646751557,1646836907,1646985528,1649530611,1649654746,1649675942,1649798408,1649837811,1650142393,1652080179,1652358017,1652717491,1652818629,1653044400,1653461387,1653504549,1653898490,1654117423,1654427189,1655720205,1656815153,1656910011,1657438539,1657850730,1658744206,1659276666,1659585938,1660006912,1660085709,1660758817,1660786637,1661650574,1661712237,1662406079,1662539624,1662889351,1663124756]}'),(7334,'69.163.232.79','normal','',0,0,0,8,0,'{\"login\":[1636863301,1637083652,1637248857,1637347988,1637673184,1638516849,1639243668,1639254963]}'),(7335,'34.124.241.52','normal','',0,0,0,1,0,'{\"login\":[1636863894]}'),(7336,'197.94.218.11','normal','',0,0,0,0,1,'{\"nf\":[1636869559]}'),(7337,'36.99.136.128','normal','',0,0,0,0,0,'[]'),(7338,'36.99.136.129','normal','',0,0,0,0,0,'[]'),(7339,'157.245.95.172','normal','',0,0,0,21,0,'{\"login\":[1636868731,1638875153,1638984494,1640348436,1640416002,1640787316,1641158875,1641798100,1641946639,1642045054,1642559848,1642629629,1642887812,1642916420,1642955006,1643297335,1643318107,1643320487,1643496080,1643528525,1644139919]}'),(7340,'138.68.142.255','normal','',0,0,0,0,5,'{\"nf\":[1636872253,1636872254,1636872255,1636872255,1643065292]}'),(7341,'107.189.28.100','normal','',0,0,0,0,0,'[]'),(7342,'80.249.174.66','normal','',0,0,0,43,0,'{\"login\":[1636880296,1637738522,1637814708,1638329363,1638330902,1638395038,1639159686,1639289261,1639738461,1639767875,1640973994,1641389436,1641530916,1641708044,1642028500,1642469970,1642895824,1643578224,1643631580,1643770779,1644240584,1644572534,1644599324,1644788361,1645955664,1646603749,1646625050,1647303038,1647476206,1647882946,1647909234,1648156409,1648300852,1648701396,1650445793,1650561081,1650586623,1650655593,1650826113,1651175849,1652048148,1652416870,1653801074]}'),(7343,'82.202.172.247','normal','',0,0,0,21,0,'{\"login\":[1636881424,1637097053,1637292277,1637425141,1637459784,1637686727,1637721478,1638127187,1638866175,1639143707,1639744361,1640587709,1640821623,1640999509,1641281381,1641349780,1641359494,1641431973,1641845388,1642015744,1642047012]}'),(7344,'162.240.27.242','normal','',0,0,0,55,0,'{\"login\":[1636888124,1636996092,1638269749,1638315749,1638406967,1638429741,1638484639,1639247208,1639719743,1639786855,1640192505,1640581274,1640851458,1641292246,1641796597,1642115444,1642119093,1642300400,1642303657,1642350933,1642351136,1642610407,1642899283,1643521645,1643742792,1644192240,1644232243,1644423160,1644656282,1646464894,1646484161,1646959167,1647106951,1647154330,1647399179,1647430435,1647689918,1648621765,1648727559,1649516991,1649572665,1649811706,1650138605,1650575993,1651115696,1651283693,1651692935,1653038004,1653209814,1654356465,1655071737,1655545301,1655710780,1656749266,1656896479]}'),(7345,'200.170.156.249','normal','',0,0,0,35,0,'{\"login\":[1636898353,1636984073,1637702432,1637995953,1638357937,1638515462,1638991665,1640036820,1640376355,1640442154,1640677360,1640728001,1641141145,1641890665,1641934824,1642151672,1642463666,1642485690,1642614475,1642616143,1642847584,1643016233,1643046959,1643059645,1643555839,1643768427,1644093617,1644434189,1645098770,1645851921,1646315639,1647169983,1647187467,1648408055,1648655320]}'),(7346,'81.88.52.205','normal','',0,0,0,58,0,'{\"login\":[1636899233,1639321848,1639797063,1639964677,1640747231,1641030845,1641070197,1641198679,1641385450,1641716382,1641897999,1641910708,1641951167,1641955996,1642059861,1642179646,1642302023,1642530140,1642539058,1642590727,1644188211,1644578974,1644832237,1645089565,1646270418,1646428779,1646447748,1646455642,1646530523,1646610418,1646877531,1647006744,1647374225,1647761117,1647808747,1649492195,1649577801,1650189156,1650302204,1650727329,1651703249,1652076576,1652258969,1652597045,1653238432,1653368437,1653372375,1654136731,1654165172,1654546740,1654629017,1654874349,1654930435,1655213389,1655902302,1657090748,1657485451,1657826774]}'),(7347,'95.142.160.195','normal','',0,0,0,9,0,'{\"login\":[1636901431,1636912240,1637079573,1637084744,1637122036,1637131809,1637325778,1637395698,1637432051]}'),(7348,'31.131.21.150','normal','',0,0,0,0,1,'{\"nf\":[1636902965]}'),(7349,'87.236.20.239','normal','',0,0,0,0,3,'{\"nf\":[1636904870,1636904871,1636997337]}'),(7350,'148.251.128.71','normal','',0,0,0,12,0,'{\"login\":[1636909257,1637066464,1637155815,1637848171,1637889173,1638205779,1638212658,1638538653,1638717228,1638843631,1639443512,1640372989]}'),(7351,'45.76.157.115','normal','',0,0,0,0,4,'{\"nf\":[1636911108,1636968861,1638165500,1639034516]}'),(7352,'93.115.79.62','normal','',0,0,0,8,0,'{\"login\":[1636912976,1637009978,1637179545,1637190472,1637718700,1637870987,1638452215,1638783766]}'),(7353,'103.232.53.131','normal','',0,0,0,2,0,'{\"login\":[1636922134,1637117325]}'),(7354,'34.216.141.110','normal','',0,0,0,0,0,'[]'),(7355,'62.149.143.131','normal','',0,0,0,0,1,'{\"nf\":[1636926378]}'),(7356,'217.182.193.49','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1650048082,0,1650047782,0,33,'{\"nf\":[1636927559,1636927567,1636927569,1636927581,1636927583,1636927584,1636927600,1636927604,1636927606,1636927608,1636927609,1636927611,1650047726,1650047728,1650047728,1650047736,1650047740,1650047741,1650047746,1650047746,1650047748,1650047755,1650047758,1650047758,1650047759,1650047763,1650047766,1650047772,1650047778,1650047778,1650047779,1650047781,1650047782]}'),(7357,'51.15.151.221','normal','',0,0,0,9,0,'{\"login\":[1636930423,1637179179,1637735791,1638278701,1638391824,1638432912,1638540808,1638816703,1638823079]}'),(7358,'82.223.69.194','normal','',0,0,0,2,0,'{\"login\":[1636936574,1636964962]}'),(7359,'42.236.10.116','normal','',0,0,0,0,0,'[]'),(7360,'70.123.152.85','normal','',0,0,0,1,0,'{\"login\":[1636937956]}'),(7361,'89.46.105.228','normal','',0,0,0,0,0,'[]'),(7362,'108.178.23.66','normal','',0,0,0,0,2,'{\"nf\":[1636945487,1637582942]}'),(7363,'204.12.197.234','normal','',0,0,0,0,0,'[]'),(7364,'128.199.190.211','normal','',0,0,0,5,0,'{\"login\":[1636957404,1637208692,1637427593,1637480623,1637648040]}'),(7365,'143.110.184.2','normal','',0,0,0,4,0,'{\"login\":[1636959579,1637141019,1637689783,1637811258]}'),(7366,'192.71.144.12','normal','',0,0,0,77,0,'{\"login\":[1636962232,1637672163,1637741421,1637845981,1638143855,1638460037,1639312095,1639599851,1639848114,1640676029,1641304480,1641859675,1641873674,1642005821,1642071517,1642163417,1642238987,1642307639,1642354572,1642474528,1642490918,1642525349,1642575806,1642950980,1643047595,1643724268,1644104758,1644773888,1645754821,1645815613,1645861592,1646260021,1646271923,1646571683,1647193777,1647321466,1647486278,1647702911,1647758188,1647923900,1648398466,1648417114,1649059767,1649693943,1650149078,1650456027,1650526314,1650717739,1651402282,1651930483,1652118930,1652604538,1652917349,1653365803,1653412180,1653520452,1653633857,1653759621,1654070586,1654211529,1654388851,1654417066,1654445952,1654644363,1654739257,1654804399,1657048467,1657166627,1657497211,1658263508,1658977320,1659338879,1661235429,1661439840,1661440956,1662185040,1662561258]}'),(7367,'51.178.89.84','normal','',0,0,0,1,0,'{\"login\":[1636966220]}'),(7368,'114.119.136.168','normal','',0,0,0,0,0,'[]'),(7369,'44.230.219.195','normal','',0,0,0,1,0,'{\"login\":[1636972748]}'),(7370,'23.231.13.250','normal','',0,0,0,0,0,'[]'),(7371,'158.69.63.179','normal','',0,0,0,69,0,'{\"login\":[1636973411,1637144134,1638295830,1638530822,1638757776,1639045373,1639229338,1639237921,1640298779,1640850414,1641015379,1641081292,1641320136,1641516257,1641801253,1642087120,1642361832,1642427311,1642597361,1643512329,1643541831,1644094620,1644230638,1644277655,1644542168,1644553225,1645938745,1645990514,1646285169,1646472397,1646559805,1646817852,1647344572,1647346721,1647401256,1647641703,1647772284,1648597499,1649993827,1650998435,1651004320,1651422697,1652380569,1652580856,1652722978,1653269050,1654054160,1654300865,1654347511,1654351381,1655015750,1655235788,1655418488,1655449068,1655460247,1655673651,1655786007,1655889124,1655909406,1656195649,1656878342,1657072238,1657543573,1657737950,1658327583,1658580050,1658682405,1659440525,1660314438]}'),(7372,'91.206.200.137','normal','',0,0,0,0,0,'[]'),(7373,'139.177.203.195','normal','',0,0,0,2,0,'{\"login\":[1636977555,1636982757]}'),(7374,'82.165.236.226','normal','',0,0,0,4,0,'{\"login\":[1637513809,1637632974,1637653790,1637939543]}'),(7375,'116.203.177.233','normal','',0,0,0,4,0,'{\"login\":[1636979817,1637073180,1637149227,1637654266]}'),(7376,'93.114.185.218','normal','',0,0,0,4,0,'{\"login\":[1636985469,1637204430,1637264443,1637695431]}'),(7377,'137.184.13.134','normal','',0,0,0,5,0,'{\"login\":[1636987515,1637244847,1637737602,1638113891,1638826288]}'),(7378,'15.236.117.199','normal','',0,0,0,2,0,'{\"login\":[1636990457,1637053495]}'),(7379,'194.61.116.239','normal','',0,0,0,0,0,'[]'),(7380,'188.166.35.186','normal','',0,0,0,0,2,'{\"nf\":[1636993396,1636993446]}'),(7381,'40.113.8.202','normal','',0,0,0,18,0,'{\"login\":[1636993754,1637040676,1637051485,1637130950,1638313340,1638377738,1638398272,1639016688,1641133670,1641337038,1641815578,1642040695,1642103790,1642156043,1642158254,1642324331,1642329135,1642588092]}'),(7382,'49.12.225.174','normal','',0,0,0,0,1,'{\"nf\":[1636995536]}'),(7383,'109.228.14.135','normal','',0,0,0,0,3,'{\"nf\":[1637002176,1637217843,1637736852]}'),(7384,'172.107.204.122','normal','',0,0,0,0,0,'[]'),(7385,'52.44.101.206','normal','',0,0,0,2,0,'{\"login\":[1637003502,1637476647]}'),(7386,'52.41.52.189','normal','',0,0,0,0,0,'[]'),(7387,'121.5.145.96','normal','',0,0,0,0,0,'[]'),(7388,'78.110.50.103','normal','',0,0,0,0,1,'{\"nf\":[1637009906]}'),(7389,'91.221.37.58','normal','',0,0,0,6,0,'{\"login\":[1637012466,1637052479,1637102304,1637293531,1637388837,1637436676]}'),(7390,'62.210.131.245','normal','',0,0,0,0,0,'[]'),(7391,'54.36.148.212','normal','',0,0,0,0,0,'[]'),(7392,'188.40.71.188','normal','',0,0,0,4,0,'{\"login\":[1637020802,1637070965,1637927956,1639493808]}'),(7393,'159.89.234.82','normal','',0,0,0,2,0,'{\"login\":[1637021844,1637167061]}'),(7394,'40.77.167.83','normal','',0,0,0,0,0,'[]'),(7395,'167.99.127.156','normal','',0,0,0,0,0,'[]'),(7396,'195.242.103.103','normal','',0,0,0,72,0,'{\"login\":[1637025805,1637107832,1638542252,1639232352,1639703312,1639718741,1639778902,1639782593,1640300045,1640550879,1640703169,1641298506,1641779337,1641951395,1642030629,1642148787,1642255238,1642267082,1642421087,1642527092,1642551803,1642863783,1643089123,1643505381,1643507117,1644616481,1645219778,1645271240,1646319589,1647155362,1647219952,1647315605,1647664183,1647786022,1647914145,1648222975,1648664105,1648736843,1649062562,1649827552,1649947817,1651111148,1651244828,1651269001,1651352653,1652049936,1652401177,1652850943,1653807467,1654052583,1654315959,1654378510,1654547228,1654597947,1654892234,1654992127,1655059302,1655412520,1656556756,1656751242,1656812449,1657284422,1657407413,1657571251,1657767378,1657823123,1657844226,1657986566,1658318227,1658466043,1659207693,1660083660]}'),(7397,'93.104.211.150','normal','',0,0,0,5,0,'{\"login\":[1637026814,1637742359,1637856959,1638472417,1638719938]}'),(7398,'46.101.26.42','normal','',0,0,0,6,0,'{\"login\":[1637029801,1637088971,1637940451,1638311756,1640884013,1641239775]}'),(7399,'3.94.4.121','normal','',0,0,0,2,0,'{\"login\":[1637038805,1637043782]}'),(7400,'54.36.148.145','normal','',0,0,0,0,0,'[]'),(7401,'143.198.120.95','normal','',0,0,0,2,0,'{\"login\":[1637039813,1637089284]}'),(7402,'23.82.137.102','blocked','You have been locked out due to too many invalid login attempts.',1637040965,1637040665,0,5,0,'{\"login\":[1637040662,1637040663,1637040663,1637040664,1637040665]}'),(7403,'192.64.150.25','normal','',0,0,0,0,0,'[]'),(7404,'51.159.6.103','normal','',0,0,0,3,0,'{\"login\":[1637040755,1637081143,1637120581]}'),(7405,'87.250.224.154','normal','',0,0,0,0,1,'{\"nf\":[1639206438]}'),(7406,'49.12.8.199','normal','',0,0,0,0,0,'[]'),(7407,'161.35.210.101','normal','',0,0,0,0,0,'[]'),(7408,'114.119.131.180','normal','',0,0,0,0,0,'[]'),(7409,'18.190.120.249','normal','',0,0,0,1,0,'{\"login\":[1637048188]}'),(7410,'102.165.65.110','normal','',0,0,0,0,0,'[]'),(7411,'78.47.116.216','normal','',0,0,0,23,0,'{\"login\":[1637050415,1637798059,1637978193,1638367774,1638511310,1639583374,1639792197,1639996685,1640092342,1640429446,1640445673,1640571987,1640745388,1641256889,1641795086,1641802669,1641952915,1642155305,1642223743,1642540369,1642558049,1642901587,1643057411]}'),(7412,'47.101.190.147','normal','',0,0,0,2,0,'{\"login\":[1637051344,1637052367]}'),(7413,'64.229.101.180','normal','',0,0,0,0,0,'[]'),(7414,'95.143.172.194','normal','',0,0,0,1,0,'{\"login\":[1637055539]}'),(7415,'3.84.41.92','normal','',0,0,0,1,0,'{\"login\":[1637057666]}'),(7416,'64.207.179.129','normal','',0,0,0,13,0,'{\"login\":[1637058642,1637130090,1637148565,1637367329,1637465067,1638245370,1638470449,1638482579,1638597096,1639497296,1639520787,1640152040,1640686670]}'),(7417,'200.80.43.108','normal','',0,0,0,1,0,'{\"login\":[1637058758]}'),(7418,'178.128.194.13','normal','',0,0,0,52,0,'{\"login\":[1637059676,1637103902,1637164189,1637783340,1637961720,1638828434,1639264770,1639728499,1640812486,1641148265,1641265497,1641487644,1641703066,1641766022,1641881008,1642153839,1642298775,1642365660,1643058688,1644136860,1644230103,1644727436,1644805252,1645860628,1645941497,1646279325,1646478417,1646499441,1646885306,1646914674,1646950420,1647407835,1647492965,1647752145,1648504337,1649516440,1649857096,1650630476,1650966305,1650977458,1651182278,1651408729,1651417108,1651696808,1652011037,1652049646,1652616433,1653255951,1653812047,1654422404,1654755892,1654762777]}'),(7419,'3.1.209.37','normal','',0,0,0,1,0,'{\"login\":[1637060709]}'),(7420,'92.205.2.161','normal','',0,0,0,0,1,'{\"nf\":[1637061683]}'),(7421,'194.6.208.106','normal','',0,0,0,5,0,'{\"login\":[1637062722,1637211733,1637652440,1638335672,1638463290]}'),(7422,'54.36.149.40','normal','',0,0,0,0,0,'[]'),(7423,'114.119.128.26','normal','',0,0,0,0,0,'[]'),(7424,'5.101.156.114','normal','',0,0,0,0,1,'{\"nf\":[1637066800]}'),(7425,'196.11.157.114','normal','',0,0,0,0,1,'{\"nf\":[1637067332]}'),(7426,'105.187.34.231','normal','',0,0,0,0,3,'{\"nf\":[1637067579,1637067580,1637067581]}'),(7427,'44.232.212.251','normal','',0,0,0,0,0,'[]'),(7428,'154.119.168.26','normal','',0,0,0,0,1,'{\"nf\":[1637070771]}'),(7429,'109.70.148.61','normal','',0,0,0,0,1,'{\"nf\":[1637073524]}'),(7430,'41.147.0.247','normal','',0,0,0,0,0,'[]'),(7431,'139.59.228.88','normal','',0,0,0,15,0,'{\"login\":[1637074294,1637118142,1637497773,1637643377,1637766515,1637850368,1638299077,1638920549,1640877669,1641331263,1641350965,1641608365,1641645160,1644409867,1646863118]}'),(7432,'197.185.117.26','normal','',0,0,0,0,0,'[]'),(7433,'95.111.229.252','normal','',0,0,0,8,0,'{\"login\":[1637076566,1637754627,1652850047,1653572721,1653596886,1653602176,1653603809,1653621602]}'),(7434,'104.154.85.100','normal','',0,0,0,1,0,'{\"login\":[1637077526]}'),(7435,'144.217.221.121','normal','',0,0,0,3,0,'{\"login\":[1637077767,1637091691,1637515602]}'),(7436,'147.161.163.2','normal','',0,0,0,0,0,'[]'),(7437,'3.215.228.144','normal','',0,0,0,1,0,'{\"login\":[1637080049]}'),(7438,'198.71.228.52','normal','',0,0,0,0,0,'[]'),(7439,'103.254.148.111','normal','',0,0,0,0,4,'{\"nf\":[1637082562,1637082569,1638941566,1639589031]}'),(7440,'113.31.114.242','normal','',0,0,0,0,0,'[]'),(7441,'62.221.254.71','normal','',0,0,0,8,0,'{\"login\":[1637083474,1637769937,1637789050,1638893447,1638893733,1638897993,1638916258,1639976045]}'),(7442,'52.5.185.176','normal','',0,0,0,1,0,'{\"login\":[1637085900]}'),(7443,'197.87.172.109','normal','',0,0,0,0,0,'[]'),(7444,'178.62.0.4','normal','',0,0,0,1,0,'{\"login\":[1637090497]}'),(7445,'192.81.214.91','normal','',0,0,0,5,0,'{\"login\":[1637092840,1653990158,1661083147,1661690826,1662168361]}'),(7446,'54.184.3.216','normal','',0,0,0,0,0,'[]'),(7447,'34.96.130.3','normal','',0,0,0,0,0,'[]'),(7448,'34.93.63.107','normal','',0,0,0,2,0,'{\"login\":[1637097698,1637595525]}'),(7449,'39.105.188.249','normal','',0,0,0,2,0,'{\"login\":[1637097803,1637481339]}'),(7450,'67.20.117.62','normal','',0,0,0,0,1,'{\"nf\":[1637099351]}'),(7451,'54.159.223.65','normal','',0,0,0,1,0,'{\"login\":[1637100065]}'),(7452,'34.86.35.29','normal','',0,0,0,0,0,'[]'),(7453,'161.35.94.89','normal','',0,0,0,3,0,'{\"login\":[1637101188,1637651419,1638914117]}'),(7454,'35.200.202.224','normal','',0,0,0,7,0,'{\"login\":[1637102442,1637105999,1637525668,1637872976,1637896496,1638295646,1638733767]}'),(7455,'174.138.6.122','normal','',0,0,0,16,0,'{\"login\":[1637103673,1637495052,1637505293,1637531526,1637540142,1638483257,1638921281,1640759654,1641306851,1649025613,1650188057,1652173377,1652201910,1652253555,1652835760,1652847098]}'),(7456,'69.49.235.148','normal','',0,0,0,2,0,'{\"login\":[1637109579,1637115683]}'),(7457,'3.65.230.181','normal','',0,0,0,0,0,'[]'),(7458,'128.199.161.145','normal','',0,0,0,7,0,'{\"login\":[1637113279,1637810770,1637991017,1638900349,1641536851,1641855606,1648124590]}'),(7459,'109.74.197.132','normal','',0,0,0,5,0,'{\"login\":[1637113373,1637182296,1637283668,1637344164,1637958308]}'),(7460,'18.117.128.160','normal','',0,0,0,1,2,'{\"nf\":[1637114534,1637114544],\"login\":[1637114549]}'),(7461,'185.220.101.33','normal','',0,0,0,0,0,'[]'),(7462,'34.233.132.104','normal','',0,0,0,1,0,'{\"login\":[1637116902]}'),(7463,'175.44.42.218','normal','',0,0,0,0,0,'[]'),(7464,'34.129.89.239','normal','',0,0,0,35,0,'{\"login\":[1637122835,1637249344,1637713878,1637960499,1638358774,1638481216,1638871893,1640340029,1640835993,1640925172,1640938801,1641117607,1641407270,1641728326,1642120548,1642234064,1642524026,1642648941,1642675002,1643500078,1644219067,1644617438,1644683777,1644819832,1645045838,1645062529,1645910151,1645965512,1645974088,1646807045,1646825343,1647391132,1647520862,1648465338,1648690626]}'),(7465,'39.101.140.2','normal','',0,0,0,0,0,'[]'),(7466,'82.165.111.160','normal','',0,0,0,3,0,'{\"login\":[1637125697,1637488575,1637604328]}'),(7467,'197.87.63.117','normal','',0,0,0,0,0,'[]'),(7468,'3.6.11.166','normal','',0,0,0,1,0,'{\"login\":[1637127025]}'),(7469,'169.60.78.94','normal','',0,0,0,5,0,'{\"login\":[1637129257,1637215112,1649071033,1649733081,1649849021]}'),(7470,'34.75.201.58','normal','',0,0,0,27,0,'{\"login\":[1637132623,1637173415,1637288932,1637440766,1637453877,1638203832,1638997871,1639406099,1639584309,1639601899,1639699131,1639807913,1640039500,1640349732,1640947672,1641195063,1641799731,1641802790,1641925609,1642508139,1643503073,1643538338,1643620240,1643662333,1643760206,1644231175,1644276006]}'),(7471,'23.88.38.58','normal','',0,0,0,21,0,'{\"login\":[1637138667,1637340893,1637731449,1638829514,1639403592,1639538512,1639746071,1640101681,1640339380,1640436766,1640467516,1640676692,1641469137,1641470597,1641698150,1642310004,1642394895,1642531034,1642557153,1643040268,1643095573]}'),(7472,'167.172.173.208','normal','',0,0,0,9,0,'{\"login\":[1637143318,1638502590,1640375235,1640878856,1641060084,1641247052,1642009379,1642076667,1643102149]}'),(7473,'114.119.128.23','normal','',0,0,0,0,0,'[]'),(7474,'45.162.168.164','normal','',0,0,0,0,0,'[]'),(7475,'185.61.153.71','normal','',0,0,0,0,0,'[]'),(7476,'108.62.9.134','normal','',0,0,0,0,0,'[]'),(7477,'102.39.129.11','normal','',0,0,0,0,0,'[]'),(7478,'102.39.186.23','normal','',0,0,0,0,0,'[]'),(7479,'34.216.40.19','normal','',0,0,0,0,0,'[]'),(7480,'41.133.94.205','normal','',0,0,0,0,0,'[]'),(7481,'5.189.170.189','normal','',0,0,0,0,0,'[]'),(7482,'114.119.151.128','normal','',0,0,0,0,0,'[]'),(7483,'85.128.142.224','normal','',0,0,0,1,0,'{\"login\":[1637511899]}'),(7484,'47.242.19.52','normal','',0,0,0,4,0,'{\"login\":[1637163748,1637331990,1638603309,1638740039]}'),(7485,'34.105.209.130','normal','',0,0,0,3,0,'{\"login\":[1637165478,1637405072,1637453222]}'),(7486,'54.167.217.28','normal','',0,0,0,0,0,'[]'),(7487,'45.79.218.7','normal','',0,0,0,0,0,'[]'),(7488,'85.128.143.37','normal','',0,0,0,0,0,'[]'),(7489,'114.119.142.97','normal','',0,0,0,0,0,'[]'),(7490,'212.35.199.149','normal','',0,0,0,0,0,'[]'),(7491,'200.150.96.66','normal','',0,0,0,0,0,'[]'),(7492,'103.6.244.166','normal','',0,0,0,0,0,'[]'),(7493,'217.16.15.157','normal','',0,0,0,0,0,'[]'),(7494,'209.44.113.107','normal','',0,0,0,0,0,'[]'),(7495,'177.12.170.40','normal','',0,0,0,0,0,'[]'),(7496,'198.54.124.87','normal','',0,0,0,0,0,'[]'),(7497,'159.203.71.236','normal','',0,0,0,2,0,'{\"login\":[1638914541,1638933396]}'),(7498,'89.46.105.123','normal','',0,0,0,0,0,'[]'),(7499,'132.148.120.129','normal','',0,0,0,0,0,'[]'),(7500,'194.146.50.138','normal','',0,0,0,0,0,'[]'),(7501,'194.146.50.138','normal','',0,0,0,0,0,'[]'),(7502,'162.244.93.185','normal','',0,0,0,0,0,'[]'),(7503,'67.225.243.67','normal','',0,0,0,0,0,'[]'),(7504,'103.113.25.50','normal','',0,0,0,0,0,'[]'),(7505,'212.1.66.230','normal','',0,0,0,0,0,'[]'),(7506,'89.46.108.200','normal','',0,0,0,0,0,'[]'),(7507,'23.160.194.117','normal','',0,0,0,0,0,'[]'),(7508,'95.110.173.129','normal','',0,0,0,0,0,'[]'),(7509,'207.246.249.198','normal','',0,0,0,0,0,'[]'),(7510,'51.68.11.239','normal','',0,0,0,0,0,'[]'),(7511,'219.85.73.89','normal','',0,0,0,0,0,'[]'),(7512,'89.46.106.151','normal','',0,0,0,0,0,'[]'),(7513,'80.82.122.49','normal','',0,0,0,0,0,'[]'),(7514,'91.216.241.2','normal','',0,0,0,0,0,'[]'),(7515,'18.236.75.21','normal','',0,0,0,0,0,'[]'),(7516,'34.212.28.104','normal','',0,0,0,0,0,'[]'),(7517,'194.163.133.151','normal','',0,0,0,1,0,'{\"login\":[1637180922]}'),(7518,'13.235.161.168','normal','',0,0,0,2,0,'{\"login\":[1641299577,1641318796]}'),(7519,'31.22.7.58','normal','',0,0,0,0,2,'{\"nf\":[1637199670,1645088768]}'),(7520,'212.83.164.56','normal','',0,0,0,0,0,'[]'),(7521,'84.54.14.186','normal','',0,0,0,0,1,'{\"nf\":[1637203434]}'),(7522,'206.189.111.216','normal','',0,0,0,3,0,'{\"login\":[1637796848,1638509941,1638902454]}'),(7523,'92.205.15.23','normal','',0,0,0,0,1,'{\"nf\":[1637205629]}'),(7524,'95.216.11.179','normal','',0,0,0,0,0,'[]'),(7525,'182.18.140.37','normal','',0,0,0,6,0,'{\"login\":[1637527996,1637554800,1637605427,1637622863,1637623977,1637648002]}'),(7526,'135.148.69.239','normal','',0,0,0,0,1,'{\"nf\":[1637212698]}'),(7527,'76.72.172.169','normal','',0,0,0,0,0,'[]'),(7528,'163.44.185.98','normal','',0,0,0,0,2,'{\"nf\":[1637219003,1638338654]}'),(7529,'54.38.65.226','normal','',0,0,0,1,0,'{\"login\":[1637219664]}'),(7530,'17.121.113.233','normal','',0,0,0,0,0,'[]'),(7531,'78.141.204.157','normal','',0,0,0,5,0,'{\"login\":[1637220832,1637786847,1637949429,1638213726,1638287046]}'),(7532,'139.99.83.251','normal','',0,0,0,0,1,'{\"nf\":[1637222299]}'),(7533,'107.180.109.52','normal','',0,0,0,0,0,'[]'),(7534,'186.234.80.26','normal','',0,0,0,0,0,'[]'),(7535,'67.21.32.151','blocked','You have been locked out due to too many invalid login attempts.',1637230481,1637230181,0,5,0,'{\"login\":[1637230177,1637230178,1637230179,1637230180,1637230181]}'),(7536,'177.53.67.186','normal','',0,0,0,18,0,'{\"login\":[1637230170,1637419579,1637781842,1638231149,1638855466,1639378004,1639745537,1640562755,1641244606,1641491638,1641761588,1642015030,1642332356,1642852491,1643519903,1644126233,1644189222,1644238940]}'),(7537,'103.228.112.200','normal','',0,0,0,0,1,'{\"nf\":[1637231261]}'),(7538,'114.119.144.165','normal','',0,0,0,0,0,'[]'),(7539,'151.106.96.10','normal','',0,0,0,0,1,'{\"nf\":[1637232978]}'),(7540,'186.234.80.31','normal','',0,0,0,0,0,'[]'),(7541,'173.236.149.72','normal','',0,0,0,0,1,'{\"nf\":[1637240599]}'),(7542,'102.65.45.158','normal','',0,0,0,0,0,'[]'),(7543,'185.137.233.223','normal','',0,0,0,27,0,'{\"login\":[1637247425,1637717724,1637879758,1637909438,1637970703,1638455353,1639310874,1640078554,1640355621,1640410760,1640421672,1640466156,1640504582,1640687340,1640860947,1640864119,1640924107,1641119040,1641284832,1641893110,1641934600,1642143718,1642229241,1642443335,1642538192,1642560302,1643643023]}'),(7544,'162.241.70.237','normal','',0,0,0,0,1,'{\"nf\":[1637249055]}'),(7545,'109.95.157.35','normal','',0,0,0,0,2,'{\"nf\":[1637249712,1637404056]}'),(7546,'185.165.31.146','normal','',0,0,0,0,0,'[]'),(7547,'51.68.11.211','normal','',0,0,0,0,7,'{\"nf\":[1637250620,1637250623,1637668924,1641292425,1641524383,1642141594,1645979325]}'),(7548,'95.111.254.6','normal','',0,0,0,3,0,'{\"login\":[1637250745,1638715866,1638841432]}'),(7549,'177.55.111.11','normal','',0,0,0,8,0,'{\"login\":[1637251271,1637318867,1637346137,1637441463,1638239988,1638346863,1638475086,1639950294]}'),(7550,'72.167.225.74','normal','',0,0,0,0,1,'{\"nf\":[1637253610]}'),(7551,'87.250.224.13','normal','',0,0,0,0,1,'{\"nf\":[1638293673]}'),(7552,'66.150.70.225','normal','',0,0,0,1,0,'{\"login\":[1637265054]}'),(7553,'185.201.11.127','normal','',0,0,0,0,3,'{\"nf\":[1637265590,1638088960,1640001985]}'),(7554,'173.249.33.122','normal','',0,0,0,0,2,'{\"nf\":[1637266163,1639983948]}'),(7555,'105.0.6.90','normal','',0,0,0,0,0,'[]'),(7556,'54.212.88.177','normal','',0,0,0,0,0,'[]'),(7557,'5.2.72.226','normal','',0,0,0,0,0,'[]'),(7558,'50.116.2.225','normal','',0,0,0,0,2,'{\"nf\":[1637268893,1637268899]}'),(7559,'94.154.222.236','normal','',0,0,0,0,0,'[]'),(7560,'212.66.193.72','normal','',0,0,0,0,4,'{\"nf\":[1637270836,1637284866,1637284875,1637408978]}'),(7561,'13.234.28.255','normal','',0,0,0,3,0,'{\"login\":[1637272559,1637373962,1637643679]}'),(7562,'38.107.221.192','normal','',0,0,0,0,0,'[]'),(7563,'123.21.3.81','normal','',0,0,0,0,1,'{\"nf\":[1637285728]}'),(7564,'51.75.52.229','normal','',0,0,0,0,0,'[]'),(7565,'107.174.226.224','normal','',0,0,0,1,0,'{\"login\":[1637290226]}'),(7566,'31.170.167.248','normal','',0,0,0,0,1,'{\"nf\":[1637292883]}'),(7567,'83.233.5.234','normal','',0,0,0,0,0,'[]'),(7568,'173.252.79.13','normal','',0,0,0,0,0,'[]'),(7569,'173.252.79.14','normal','',0,0,0,0,0,'[]'),(7570,'173.252.79.19','normal','',0,0,0,0,0,'[]'),(7571,'3.141.152.37','normal','',0,0,0,1,0,'{\"login\":[1637299539]}'),(7572,'18.216.38.101','normal','',0,0,0,1,0,'{\"login\":[1637299679]}'),(7573,'18.223.252.163','normal','',0,0,0,1,0,'{\"login\":[1637299736]}'),(7574,'165.22.214.5','normal','',0,0,0,0,0,'[]'),(7575,'18.116.100.92','normal','',0,0,0,1,0,'{\"login\":[1637301332]}'),(7576,'18.216.215.201','normal','',0,0,0,1,0,'{\"login\":[1637302988]}'),(7577,'114.119.148.175','normal','',0,0,0,0,0,'[]'),(7578,'52.15.73.211','normal','',0,0,0,1,0,'{\"login\":[1637303954]}'),(7579,'3.129.58.34','normal','',0,0,0,1,0,'{\"login\":[1637304876]}'),(7580,'13.59.230.61','normal','',0,0,0,2,0,'{\"login\":[1637306230,1637345829]}'),(7581,'52.15.245.73','normal','',0,0,0,2,0,'{\"login\":[1637306558,1637342115]}'),(7582,'3.128.181.53','normal','',0,0,0,1,0,'{\"login\":[1637307563]}'),(7583,'3.143.170.83','normal','',0,0,0,2,0,'{\"login\":[1637308446,1637355533]}'),(7584,'186.234.80.195','normal','',0,0,0,0,0,'[]'),(7585,'3.143.229.53','normal','',0,0,0,1,0,'{\"login\":[1637309233]}'),(7586,'202.172.26.53','normal','',0,0,0,4,0,'{\"login\":[1637309534,1643733505,1644371758,1644658179]}'),(7587,'3.12.111.47','normal','',0,0,0,1,0,'{\"login\":[1637310090]}'),(7588,'18.216.167.230','normal','',0,0,0,1,0,'{\"login\":[1637311165]}'),(7589,'184.154.167.34','normal','',0,0,0,0,0,'[]'),(7590,'3.140.216.50','normal','',0,0,0,1,0,'{\"login\":[1637311987]}'),(7591,'18.234.125.232','normal','',0,0,0,1,0,'{\"login\":[1637312873]}'),(7592,'18.116.98.48','normal','',0,0,0,2,0,'{\"login\":[1637313825,1637341574]}'),(7593,'3.142.246.167','normal','',0,0,0,1,0,'{\"login\":[1637314886]}'),(7594,'198.23.238.74','normal','',0,0,0,1,0,'{\"login\":[1637315083]}'),(7595,'3.139.55.145','normal','',0,0,0,2,0,'{\"login\":[1637315389,1637690676]}'),(7596,'3.139.91.199','normal','',0,0,0,1,0,'{\"login\":[1637316361]}'),(7597,'5.157.33.185','normal','',0,0,0,0,0,'[]'),(7598,'107.174.227.131','normal','',0,0,0,0,0,'[]'),(7599,'3.144.206.58','normal','',0,0,0,1,0,'{\"login\":[1637317561]}'),(7600,'52.14.72.118','normal','',0,0,0,1,0,'{\"login\":[1637318057]}'),(7601,'18.224.15.161','normal','',0,0,0,1,0,'{\"login\":[1637319018]}'),(7602,'3.91.240.216','normal','',0,0,0,1,0,'{\"login\":[1637320246]}'),(7603,'157.55.39.62','normal','',0,0,0,0,0,'[]'),(7604,'18.223.252.238','normal','',0,0,0,1,0,'{\"login\":[1637321018]}'),(7605,'3.128.18.218','normal','',0,0,0,1,0,'{\"login\":[1637321713]}'),(7606,'216.244.65.162','normal','',0,0,0,0,5,'{\"nf\":[1637322719,1639370805,1639457643,1639699256,1639734733]}'),(7607,'3.19.228.176','normal','',0,0,0,1,0,'{\"login\":[1637322922]}'),(7608,'18.206.230.177','normal','',0,0,0,1,0,'{\"login\":[1637323632]}'),(7609,'3.14.6.95','normal','',0,0,0,3,0,'{\"login\":[1637324564,1637368340,1637415693]}'),(7610,'18.118.101.34','normal','',0,0,0,1,0,'{\"login\":[1637325615]}'),(7611,'3.136.83.138','normal','',0,0,0,1,0,'{\"login\":[1637327379]}'),(7612,'3.129.59.89','normal','',0,0,0,1,0,'{\"login\":[1637328413]}'),(7613,'3.140.243.112','normal','',0,0,0,1,0,'{\"login\":[1637328971]}'),(7614,'18.118.185.54','normal','',0,0,0,1,0,'{\"login\":[1637330188]}'),(7615,'18.218.94.147','normal','',0,0,0,1,0,'{\"login\":[1637331376]}'),(7616,'18.217.142.241','normal','',0,0,0,2,0,'{\"login\":[1637331847,1637361884]}'),(7617,'3.20.204.34','normal','',0,0,0,1,0,'{\"login\":[1637333030]}'),(7618,'3.128.25.91','normal','',0,0,0,1,0,'{\"login\":[1637334646]}'),(7619,'52.201.224.39','normal','',0,0,0,1,0,'{\"login\":[1637335764]}'),(7620,'198.71.234.22','normal','',0,0,0,0,3,'{\"nf\":[1637335833,1641276085,1641276088]}'),(7621,'157.7.44.142','normal','',0,0,0,0,3,'{\"nf\":[1637336235,1638468098,1639893118]}'),(7622,'18.117.155.234','normal','',0,0,0,1,0,'{\"login\":[1637336508]}'),(7623,'185.184.25.90','normal','',0,0,0,0,2,'{\"nf\":[1637337160,1637789182]}'),(7624,'139.162.101.75','normal','',0,0,0,2,0,'{\"login\":[1637337447,1637355297]}'),(7625,'3.144.159.8','normal','',0,0,0,1,0,'{\"login\":[1637337587]}'),(7626,'3.21.19.84','normal','',0,0,0,1,0,'{\"login\":[1637338770]}'),(7627,'3.21.92.108','normal','',0,0,0,1,0,'{\"login\":[1637339252]}'),(7628,'18.118.106.24','normal','',0,0,0,1,0,'{\"login\":[1637340416]}'),(7629,'66.150.71.236','normal','',0,0,0,1,0,'{\"login\":[1637340484]}'),(7630,'70.40.220.120','normal','',0,0,0,0,1,'{\"nf\":[1637342785]}'),(7631,'52.15.109.32','normal','',0,0,0,1,0,'{\"login\":[1637343217]}'),(7632,'52.15.236.27','normal','',0,0,0,1,0,'{\"login\":[1637344224]}'),(7633,'157.245.196.32','normal','',0,0,0,2,0,'{\"login\":[1640013083,1653816081]}'),(7634,'18.221.154.162','normal','',0,0,0,1,0,'{\"login\":[1637345108]}'),(7635,'54.153.124.8','normal','',0,0,0,2,0,'{\"login\":[1637345441,1637430610]}'),(7636,'54.205.202.1','normal','',0,0,0,1,0,'{\"login\":[1637345646]}'),(7637,'3.137.141.3','normal','',0,0,0,1,0,'{\"login\":[1637346189]}'),(7638,'67.23.226.179','normal','',0,0,0,0,0,'[]'),(7639,'3.143.143.102','normal','',0,0,0,1,0,'{\"login\":[1637346869]}'),(7640,'13.58.231.160','normal','',0,0,0,1,0,'{\"login\":[1637347170]}'),(7641,'18.216.33.8','normal','',0,0,0,1,0,'{\"login\":[1637347646]}'),(7642,'3.19.245.16','normal','',0,0,0,1,0,'{\"login\":[1637347653]}'),(7643,'18.217.218.200','normal','',0,0,0,1,0,'{\"login\":[1637348191]}'),(7644,'18.188.69.4','normal','',0,0,0,2,0,'{\"login\":[1637348202,1637371771]}'),(7645,'142.93.245.196','normal','',0,0,0,46,0,'{\"login\":[1637348472,1637734915,1638354566,1639404848,1639977720,1640059811,1640296258,1640637959,1641370750,1643100172,1644452565,1646470142,1648468121,1651040043,1651429197,1651705182,1651984740,1652296035,1653038274,1653377630,1654519110,1654962190,1655396529,1655406585,1656530230,1657228907,1657565273,1658070301,1658241032,1658304728,1658821879,1659339901,1659374028,1659413097,1659741702,1660178865,1660181030,1660456084,1660529372,1660619610,1660695116,1661434319,1661623733,1661698293,1662074195,1662090150]}'),(7646,'3.23.132.49','normal','',0,0,0,1,0,'{\"login\":[1637348614]}'),(7647,'18.217.153.221','normal','',0,0,0,1,0,'{\"login\":[1637348683]}'),(7648,'3.16.15.87','normal','',0,0,0,1,0,'{\"login\":[1637349059]}'),(7649,'18.188.76.227','normal','',0,0,0,1,0,'{\"login\":[1637349509]}'),(7650,'3.22.172.236','normal','',0,0,0,1,0,'{\"login\":[1637349864]}'),(7651,'54.193.121.79','normal','',0,0,0,1,0,'{\"login\":[1637350224]}'),(7652,'3.15.217.40','normal','',0,0,0,2,0,'{\"login\":[1637350253,1637371810]}'),(7653,'18.222.183.71','normal','',0,0,0,1,0,'{\"login\":[1637350672]}'),(7654,'52.14.152.176','normal','',0,0,0,1,0,'{\"login\":[1637350846]}'),(7655,'3.141.153.53','normal','',0,0,0,1,0,'{\"login\":[1637351169]}'),(7656,'159.65.86.130','normal','',0,0,0,0,1,'{\"nf\":[1637351428]}'),(7657,'18.216.186.234','normal','',0,0,0,2,0,'{\"login\":[1637351470,1637370615]}'),(7658,'188.225.40.161','normal','',0,0,0,0,0,'[]'),(7659,'3.15.166.187','normal','',0,0,0,1,0,'{\"login\":[1637352288]}'),(7660,'34.213.222.196','normal','',0,0,0,0,0,'[]'),(7661,'3.133.105.60','normal','',0,0,0,1,0,'{\"login\":[1637352596]}'),(7662,'54.200.183.66','normal','',0,0,0,0,0,'[]'),(7663,'103.110.84.33','normal','',0,0,0,1,0,'{\"login\":[1640235579]}'),(7664,'3.136.106.222','normal','',0,0,0,1,0,'{\"login\":[1637352712]}'),(7665,'54.184.232.207','normal','',0,0,0,0,0,'[]'),(7666,'52.40.115.175','normal','',0,0,0,0,0,'[]'),(7667,'52.41.96.54','normal','',0,0,0,0,0,'[]'),(7668,'3.142.80.189','normal','',0,0,0,1,0,'{\"login\":[1637353353]}'),(7669,'18.117.178.218','normal','',0,0,0,1,0,'{\"login\":[1637353521]}'),(7670,'54.183.61.98','normal','',0,0,0,1,0,'{\"login\":[1637353527]}'),(7671,'18.220.196.121','normal','',0,0,0,1,0,'{\"login\":[1637354012]}'),(7672,'3.134.100.224','normal','',0,0,0,1,0,'{\"login\":[1637354015]}'),(7673,'54.219.141.34','normal','',0,0,0,1,0,'{\"login\":[1637355248]}'),(7674,'3.143.220.27','normal','',0,0,0,2,0,'{\"login\":[1637355319,1637357650]}'),(7675,'3.84.91.122','normal','',0,0,0,1,0,'{\"login\":[1637355463]}'),(7676,'31.177.95.38','normal','',0,0,0,0,0,'[]'),(7677,'3.16.24.97','normal','',0,0,0,1,0,'{\"login\":[1637356522]}'),(7678,'18.222.58.36','normal','',0,0,0,1,0,'{\"login\":[1637356549]}'),(7679,'200.147.58.26','normal','',0,0,0,0,0,'[]'),(7680,'54.215.240.144','normal','',0,0,0,1,0,'{\"login\":[1637357062]}'),(7681,'3.145.5.189','normal','',0,0,0,1,0,'{\"login\":[1637357550]}'),(7682,'18.222.35.68','normal','',0,0,0,1,0,'{\"login\":[1637357690]}'),(7683,'18.224.82.43','normal','',0,0,0,2,0,'{\"login\":[1637358729,1637484915]}'),(7684,'54.176.133.130','normal','',0,0,0,1,0,'{\"login\":[1637358801]}'),(7685,'13.58.13.213','normal','',0,0,0,1,0,'{\"login\":[1637359306]}'),(7686,'18.220.109.91','normal','',0,0,0,1,0,'{\"login\":[1637359773]}'),(7687,'54.157.40.180','normal','',0,0,0,1,0,'{\"login\":[1637359884]}'),(7688,'3.139.73.167','normal','',0,0,0,1,0,'{\"login\":[1637359911]}'),(7689,'18.219.167.28','normal','',0,0,0,1,0,'{\"login\":[1637360963]}'),(7690,'18.220.233.121','normal','',0,0,0,1,0,'{\"login\":[1637360997]}'),(7691,'13.58.6.173','normal','',0,0,0,1,0,'{\"login\":[1637361341]}'),(7692,'18.191.151.98','normal','',0,0,0,1,0,'{\"login\":[1637361784]}'),(7693,'3.141.18.63','normal','',0,0,0,1,0,'{\"login\":[1637362011]}'),(7694,'3.142.242.23','normal','',0,0,0,1,0,'{\"login\":[1637362082]}'),(7695,'3.134.115.184','normal','',0,0,0,1,0,'{\"login\":[1637362517]}'),(7696,'52.14.113.238','normal','',0,0,0,1,0,'{\"login\":[1637362769]}'),(7697,'52.14.30.52','normal','',0,0,0,1,0,'{\"login\":[1637363384]}'),(7698,'3.15.196.229','normal','',0,0,0,1,0,'{\"login\":[1637363438]}'),(7699,'45.129.18.111','normal','',0,0,0,0,0,'[]'),(7700,'3.142.95.17','normal','',0,0,0,1,0,'{\"login\":[1637363748]}'),(7701,'3.141.169.251','normal','',0,0,0,1,0,'{\"login\":[1637363810]}'),(7702,'185.220.102.252','normal','',0,0,0,0,1,'{\"nf\":[1646192365]}'),(7703,'3.141.105.146','normal','',0,0,0,1,0,'{\"login\":[1637365142]}'),(7704,'18.118.21.246','normal','',0,0,0,1,0,'{\"login\":[1637365513]}'),(7705,'18.219.54.122','normal','',0,0,0,1,0,'{\"login\":[1637365745]}'),(7706,'107.172.229.112','normal','',0,0,0,1,0,'{\"login\":[1637365853]}'),(7707,'52.8.206.76','normal','',0,0,0,1,0,'{\"login\":[1637366238]}'),(7708,'18.191.63.176','normal','',0,0,0,1,0,'{\"login\":[1637366254]}'),(7709,'18.191.166.182','normal','',0,0,0,1,0,'{\"login\":[1637366346]}'),(7710,'18.118.209.213','normal','',0,0,0,1,0,'{\"login\":[1637367252]}'),(7711,'3.144.176.166','normal','',0,0,0,2,0,'{\"login\":[1637367307,1637491072]}'),(7712,'18.218.63.197','normal','',0,0,0,1,0,'{\"login\":[1637367307]}'),(7713,'75.119.143.160','normal','',0,0,0,4,0,'{\"login\":[1637368404,1637801472,1639256378,1639791659]}'),(7714,'3.21.28.117','normal','',0,0,0,1,0,'{\"login\":[1637368481]}'),(7715,'13.52.238.39','normal','',0,0,0,1,0,'{\"login\":[1637368568]}'),(7716,'18.216.128.39','normal','',0,0,0,1,0,'{\"login\":[1637369412]}'),(7717,'18.225.11.110','normal','',0,0,0,1,0,'{\"login\":[1637369562]}'),(7718,'3.15.166.155','normal','',0,0,0,1,0,'{\"login\":[1637369567]}'),(7719,'54.67.95.69','normal','',0,0,0,1,0,'{\"login\":[1637370631]}'),(7720,'3.17.55.100','normal','',0,0,0,1,0,'{\"login\":[1637370643]}'),(7721,'3.144.142.155','normal','',0,0,0,2,0,'{\"login\":[1637370656,1637830663]}'),(7722,'3.101.37.188','normal','',0,0,0,1,0,'{\"login\":[1637371797]}'),(7723,'3.15.216.88','normal','',0,0,0,1,0,'{\"login\":[1637372837]}'),(7724,'13.58.128.43','normal','',0,0,0,1,0,'{\"login\":[1637372900]}'),(7725,'3.138.182.142','normal','',0,0,0,1,0,'{\"login\":[1637372959]}'),(7726,'18.117.79.218','normal','',0,0,0,1,0,'{\"login\":[1637373976]}'),(7727,'3.16.36.167','normal','',0,0,0,1,0,'{\"login\":[1637374015]}'),(7728,'54.215.94.153','normal','',0,0,0,1,0,'{\"login\":[1637374097]}'),(7729,'114.119.132.76','normal','',0,0,0,0,0,'[]'),(7730,'52.15.194.60','normal','',0,0,0,1,0,'{\"login\":[1637375082]}'),(7731,'3.22.233.19','normal','',0,0,0,1,0,'{\"login\":[1637375125]}'),(7732,'54.219.133.34','normal','',0,0,0,1,0,'{\"login\":[1637375152]}'),(7733,'18.118.84.177','normal','',0,0,0,1,0,'{\"login\":[1637376175]}'),(7734,'3.129.52.90','normal','',0,0,0,1,0,'{\"login\":[1637376220]}'),(7735,'3.134.94.111','normal','',0,0,0,1,0,'{\"login\":[1637377424]}'),(7736,'18.116.71.248','normal','',0,0,0,1,0,'{\"login\":[1637377492]}'),(7737,'18.191.38.247','normal','',0,0,0,1,0,'{\"login\":[1637378600]}'),(7738,'3.141.34.191','normal','',0,0,0,1,0,'{\"login\":[1637378645]}'),(7739,'18.191.228.157','normal','',0,0,0,1,0,'{\"login\":[1637380054]}'),(7740,'3.22.171.183','normal','',0,0,0,1,0,'{\"login\":[1637384120]}'),(7741,'34.77.162.25','normal','',0,0,0,0,0,'[]'),(7742,'3.144.198.97','normal','',0,0,0,1,0,'{\"login\":[1637390804]}'),(7743,'23.83.87.141','normal','',0,0,0,0,0,'[]'),(7744,'193.148.164.26','normal','',0,0,0,2,0,'{\"login\":[1637393059,1638473744]}'),(7745,'18.191.42.20','normal','',0,0,0,1,0,'{\"login\":[1637395566]}'),(7746,'82.165.88.19','normal','',0,0,0,0,1,'{\"nf\":[1637398096]}'),(7747,'107.172.246.121','normal','',0,0,0,0,0,'[]'),(7748,'13.58.110.90','normal','',0,0,0,1,0,'{\"login\":[1637403007]}'),(7749,'173.212.224.116','normal','',0,0,0,0,7,'{\"nf\":[1637403315,1639411237,1639411288,1639411372,1639411397,1645631352,1647286352]}'),(7750,'3.23.98.243','normal','',0,0,0,1,0,'{\"login\":[1637408134]}'),(7751,'68.183.108.18','normal','',0,0,0,13,0,'{\"login\":[1637409026,1637640091,1639614246,1639736349,1640987247,1642144450,1642165634,1642341806,1642376624,1642910701,1642924578,1642975421,1643100831]}'),(7752,'23.83.90.182','normal','',0,0,0,0,0,'[]'),(7753,'3.19.228.17','normal','',0,0,0,1,0,'{\"login\":[1637421184]}'),(7754,'167.86.118.101','normal','',0,0,0,7,0,'{\"login\":[1637422190,1637446971,1637733149,1637868274,1638251508,1638468486,1638490177]}'),(7755,'13.59.16.21','normal','',0,0,0,1,0,'{\"login\":[1637422545]}'),(7756,'3.139.95.26','normal','',0,0,0,1,0,'{\"login\":[1637424788]}'),(7757,'3.137.147.144','normal','',0,0,0,1,0,'{\"login\":[1637427621]}'),(7758,'49.249.232.74','normal','',0,0,0,5,0,'{\"login\":[1637430524,1637724266,1637796467,1638158940,1638240809]}'),(7759,'54.176.91.222','normal','',0,0,0,1,0,'{\"login\":[1637431666]}'),(7760,'3.137.207.51','normal','',0,0,0,1,0,'{\"login\":[1637435635]}'),(7761,'13.59.135.99','normal','',0,0,0,1,0,'{\"login\":[1637437226]}'),(7762,'188.40.21.69','normal','',0,0,0,1,0,'{\"login\":[1637438855]}'),(7763,'107.150.89.32','normal','',0,0,0,1,0,'{\"login\":[1637439466]}'),(7764,'185.206.92.65','normal','',0,0,0,16,0,'{\"login\":[1637440121,1637452487,1637699452,1637995012,1640164248,1641099984,1641137389,1641209742,1641376744,1641943628,1642037060,1642250881,1642592940,1642968659,1642997077,1645066933]}'),(7765,'18.223.180.116','normal','',0,0,0,1,0,'{\"login\":[1637440895]}'),(7766,'54.184.31.210','normal','',0,0,0,0,0,'[]'),(7767,'13.59.224.58','normal','',0,0,0,1,0,'{\"login\":[1637442630]}'),(7768,'18.219.134.45','normal','',0,0,0,1,0,'{\"login\":[1637446803]}'),(7769,'18.188.53.118','normal','',0,0,0,1,0,'{\"login\":[1637448642]}'),(7770,'206.189.6.60','normal','',0,0,0,33,0,'{\"login\":[1637449078,1638534356,1638709014,1638738693,1638779673,1638810408,1638838149,1638977237,1639013499,1639227824,1639576866,1639690825,1639896325,1640525831,1640717128,1640742625,1640766610,1641089726,1641183027,1641224042,1641363647,1642297961,1642547375,1642633851,1642842078,1642918724,1643484169,1643559256,1644208212,1644534866,1644559545,1645350146,1645744087]}'),(7771,'3.144.226.23','normal','',0,0,0,1,0,'{\"login\":[1637449781]}'),(7772,'3.16.148.35','normal','',0,0,0,1,0,'{\"login\":[1637451702]}'),(7773,'216.226.144.239','normal','',0,0,0,0,4,'{\"nf\":[1637451703,1637451716,1637451729,1637451747]}'),(7774,'3.144.160.112','normal','',0,0,0,1,0,'{\"login\":[1637456053]}'),(7775,'107.173.84.179','normal','',0,0,0,5,0,'{\"login\":[1637457588,1637693515,1639230098,1639285722,1639626359]}'),(7776,'3.141.10.168','normal','',0,0,0,1,0,'{\"login\":[1637457835]}'),(7777,'159.223.186.69','normal','',0,0,0,0,1,'{\"nf\":[1637460072]}'),(7778,'87.250.224.147','normal','',0,0,0,0,0,'[]'),(7779,'3.21.129.176','normal','',0,0,0,1,0,'{\"login\":[1637461885]}'),(7780,'18.119.156.192','normal','',0,0,0,1,0,'{\"login\":[1637463859]}'),(7781,'172.245.229.88','normal','',0,0,0,1,0,'{\"login\":[1637464699]}'),(7782,'18.216.124.111','normal','',0,0,0,1,0,'{\"login\":[1637465745]}'),(7783,'18.216.28.51','normal','',0,0,0,1,0,'{\"login\":[1637470021]}'),(7784,'66.115.165.238','blocked','You have been locked out due to too many invalid login attempts.',1637471298,1637470998,0,5,0,'{\"login\":[1637470994,1637470994,1637470995,1637470996,1637470996]}'),(7785,'40.77.167.80','normal','',0,0,0,0,0,'[]'),(7786,'3.22.117.80','normal','',0,0,0,1,0,'{\"login\":[1637471839]}'),(7787,'196.61.108.47','normal','',0,0,0,0,0,'[]'),(7788,'199.249.230.143','normal','',0,0,0,0,0,'[]'),(7789,'157.245.58.84','normal','',0,0,0,0,0,'[]'),(7790,'65.108.51.66','normal','',0,0,0,3,0,'{\"login\":[1637474026,1637682779,1638285050]}'),(7791,'167.172.69.81','normal','',0,0,0,5,0,'{\"login\":[1637475090,1637806243,1638503895,1639713930,1640613048]}'),(7792,'18.216.165.223','normal','',0,0,0,1,0,'{\"login\":[1637476082]}'),(7793,'18.216.53.247','normal','',0,0,0,1,0,'{\"login\":[1637477913]}'),(7794,'3.19.223.222','normal','',0,0,0,1,0,'{\"login\":[1637478966]}'),(7795,'52.15.239.38','normal','',0,0,0,1,0,'{\"login\":[1637480831]}'),(7796,'34.145.104.166','normal','',0,0,0,0,0,'[]'),(7797,'104.248.119.190','normal','',0,0,0,3,0,'{\"login\":[1637485186,1638902866,1638920010]}'),(7798,'88.198.24.212','normal','',0,0,0,4,0,'{\"login\":[1637486084,1637498735,1637526823,1637536323]}'),(7799,'85.128.142.216','normal','',0,0,0,2,0,'{\"login\":[1637486940,1637597668]}'),(7800,'18.189.29.229','normal','',0,0,0,1,0,'{\"login\":[1637486943]}'),(7801,'162.241.226.25','normal','',0,0,0,0,1,'{\"nf\":[1637487688]}'),(7802,'165.22.246.43','normal','',0,0,0,4,0,'{\"login\":[1637487787,1637519885,1637546678,1637867266]}'),(7803,'107.172.230.112','normal','',0,0,0,1,0,'{\"login\":[1637489890]}'),(7804,'51.222.138.98','normal','',0,0,0,1,0,'{\"login\":[1637490512]}'),(7805,'34.152.7.80','normal','',0,0,0,7,0,'{\"login\":[1637491397,1637813681,1638478725,1638506774,1638707107,1638897599,1638916711]}'),(7806,'18.191.193.244','normal','',0,0,0,1,0,'{\"login\":[1637492260]}'),(7807,'13.59.153.11','normal','',0,0,0,1,0,'{\"login\":[1637494375]}'),(7808,'20.76.174.67','normal','',0,0,0,4,0,'{\"login\":[1637495946,1637542721,1637646860,1654527756]}'),(7809,'94.130.183.10','normal','',0,0,0,2,0,'{\"login\":[1637496859,1637507149]}'),(7810,'18.223.151.199','normal','',0,0,0,1,0,'{\"login\":[1637497250]}'),(7811,'3.16.107.26','normal','',0,0,0,1,0,'{\"login\":[1637498142]}'),(7812,'82.223.9.22','normal','',0,0,0,2,0,'{\"login\":[1637510973,1637905446]}'),(7813,'3.140.164.161','normal','',0,0,0,1,0,'{\"login\":[1637500863]}'),(7814,'52.53.151.222','normal','',0,0,0,1,0,'{\"login\":[1637501421]}'),(7815,'103.124.95.35','normal','',0,0,0,5,0,'{\"login\":[1637501537,1637504312,1637537575,1637864460,1638256881]}'),(7816,'3.21.75.35','normal','',0,0,0,1,0,'{\"login\":[1637501753]}'),(7817,'18.117.79.91','normal','',0,0,0,1,0,'{\"login\":[1637501801]}'),(7818,'93.89.225.163','normal','',0,0,0,6,0,'{\"login\":[1637502469,1637616265,1637635298,1637654927,1637759696,1637952403]}'),(7819,'18.117.133.6','normal','',0,0,0,1,0,'{\"login\":[1637503047]}'),(7820,'13.58.51.58','normal','',0,0,0,1,0,'{\"login\":[1637504551]}'),(7821,'34.229.78.9','normal','',0,0,0,1,0,'{\"login\":[1637505886]}'),(7822,'34.207.122.67','normal','',0,0,0,1,0,'{\"login\":[1637508510]}'),(7823,'52.200.208.118','normal','',0,0,0,1,0,'{\"login\":[1637509134]}'),(7824,'3.137.146.164','normal','',0,0,0,1,0,'{\"login\":[1637511907]}'),(7825,'3.18.214.227','normal','',0,0,0,1,0,'{\"login\":[1637512466]}'),(7826,'3.144.235.253','normal','',0,0,0,1,0,'{\"login\":[1637513121]}'),(7827,'192.3.220.145','normal','',0,0,0,1,0,'{\"login\":[1637514349]}'),(7828,'185.164.59.39','normal','',0,0,0,0,0,'[]'),(7829,'103.195.202.25','normal','',0,0,0,0,0,'[]'),(7830,'52.14.133.101','normal','',0,0,0,1,0,'{\"login\":[1637515814]}'),(7831,'18.191.183.192','normal','',0,0,0,1,0,'{\"login\":[1637516456]}'),(7832,'114.119.129.206','normal','',0,0,0,0,0,'[]'),(7833,'3.142.143.118','normal','',0,0,0,1,0,'{\"login\":[1637517677]}'),(7834,'3.15.185.83','normal','',0,0,0,1,0,'{\"login\":[1637518208]}'),(7835,'185.225.39.205','normal','',0,0,0,0,6,'{\"nf\":[1637519811,1637519820,1637519821,1641501940,1641501942,1641501947]}'),(7836,'162.240.32.234','normal','',0,0,0,0,0,'[]'),(7837,'3.129.92.89','normal','',0,0,0,1,0,'{\"login\":[1637520941]}'),(7838,'18.117.251.157','normal','',0,0,0,1,0,'{\"login\":[1637521804]}'),(7839,'17.121.113.145','normal','',0,0,0,0,0,'[]'),(7840,'186.33.234.25','normal','',0,0,0,0,0,'[]'),(7841,'198.187.29.183','normal','',0,0,0,0,0,'[]'),(7842,'46.101.108.157','normal','',0,0,0,1,0,'{\"login\":[1637524512]}'),(7843,'3.19.69.38','normal','',0,0,0,1,0,'{\"login\":[1637525086]}'),(7844,'52.33.136.72','normal','',0,0,0,0,0,'[]'),(7845,'3.17.206.185','normal','',0,0,0,1,0,'{\"login\":[1637525652]}'),(7846,'114.119.130.136','normal','',0,0,0,0,0,'[]'),(7847,'18.223.195.212','normal','',0,0,0,1,0,'{\"login\":[1637528956]}'),(7848,'52.15.87.17','normal','',0,0,0,1,0,'{\"login\":[1637529695]}'),(7849,'13.52.177.162','normal','',0,0,0,1,0,'{\"login\":[1637532731]}'),(7850,'3.142.185.131','normal','',0,0,0,1,0,'{\"login\":[1637533693]}'),(7851,'54.183.222.5','normal','',0,0,0,1,0,'{\"login\":[1637534537]}'),(7852,'18.118.133.129','normal','',0,0,0,1,0,'{\"login\":[1637535368]}'),(7853,'185.161.208.207','normal','',0,0,0,0,1,'{\"nf\":[1637537059]}'),(7854,'159.223.38.35','normal','',0,0,0,0,0,'[]'),(7855,'18.225.34.144','normal','',0,0,0,1,0,'{\"login\":[1637538545]}'),(7856,'18.221.155.174','normal','',0,0,0,1,0,'{\"login\":[1637539400]}'),(7857,'18.220.62.57','normal','',0,0,0,1,0,'{\"login\":[1637540414]}'),(7858,'3.142.221.227','normal','',0,0,0,1,0,'{\"login\":[1637543418]}'),(7859,'3.140.253.254','normal','',0,0,0,1,0,'{\"login\":[1637544320]}'),(7860,'3.134.245.219','normal','',0,0,0,1,0,'{\"login\":[1637547535]}'),(7861,'107.161.78.209','normal','',0,0,0,2,0,'{\"login\":[1637548043,1641622953]}'),(7862,'3.21.163.177','normal','',0,0,0,2,0,'{\"login\":[1637548525,1637723713]}'),(7863,'218.255.186.82','normal','',0,0,0,5,0,'{\"login\":[1637550629,1638273058,1640819513,1641518389,1641894436]}'),(7864,'3.142.185.69','normal','',0,0,0,1,0,'{\"login\":[1637551605]}'),(7865,'18.222.40.0','normal','',0,0,0,1,0,'{\"login\":[1637552414]}'),(7866,'159.65.122.122','normal','',0,0,0,4,0,'{\"login\":[1637553425,1637625002,1638910688,1638941271]}'),(7867,'18.218.114.153','normal','',0,0,0,1,0,'{\"login\":[1637554234]}'),(7868,'18.222.208.251','normal','',0,0,0,1,0,'{\"login\":[1637555593]}'),(7869,'1.117.227.233','normal','',0,0,0,1,0,'{\"login\":[1637556149]}'),(7870,'18.223.33.160','normal','',0,0,0,1,0,'{\"login\":[1637557511]}'),(7871,'52.15.171.52','normal','',0,0,0,2,0,'{\"login\":[1637558183,1637818156]}'),(7872,'197.94.28.6','normal','',0,0,0,0,0,'[]'),(7873,'3.144.219.222','normal','',0,0,0,1,0,'{\"login\":[1637561368]}'),(7874,'5.101.157.181','normal','',0,0,0,0,2,'{\"nf\":[1637561512,1638185872]}'),(7875,'3.101.54.49','normal','',0,0,0,1,0,'{\"login\":[1637562217]}'),(7876,'213.150.213.102','normal','',0,0,0,0,0,'[]'),(7877,'3.135.64.197','normal','',0,0,0,1,0,'{\"login\":[1637563137]}'),(7878,'18.116.70.14','normal','',0,0,0,1,0,'{\"login\":[1637566280]}'),(7879,'95.91.15.103','normal','',0,0,0,0,0,'[]'),(7880,'3.142.47.103','normal','',0,0,0,1,0,'{\"login\":[1637567158]}'),(7881,'67.222.107.215','normal','',0,0,0,0,1,'{\"nf\":[1637568378]}'),(7882,'18.117.89.253','normal','',0,0,0,1,0,'{\"login\":[1637570437]}'),(7883,'18.119.98.5','normal','',0,0,0,1,0,'{\"login\":[1637571426]}'),(7884,'3.19.209.30','normal','',0,0,0,1,0,'{\"login\":[1637572879]}'),(7885,'3.140.243.27','normal','',0,0,0,1,0,'{\"login\":[1637573720]}'),(7886,'3.19.76.202','normal','',0,0,0,1,0,'{\"login\":[1637574057]}'),(7887,'172.105.60.107','normal','',0,0,0,0,2,'{\"nf\":[1637577437,1638118026]}'),(7888,'102.222.180.8','normal','',0,0,0,0,0,'[]'),(7889,'102.165.84.75','normal','',0,0,0,0,0,'[]'),(7890,'197.95.133.22','normal','',0,0,0,0,0,'[]'),(7891,'3.16.83.27','normal','',0,0,0,1,0,'{\"login\":[1637595882]}'),(7892,'18.217.101.43','normal','',0,0,0,1,0,'{\"login\":[1637596165]}'),(7893,'54.36.148.171','normal','',0,0,0,0,0,'[]'),(7894,'54.36.148.21','normal','',0,0,0,0,0,'[]'),(7895,'88.99.209.173','normal','',0,0,0,2,0,'{\"login\":[1637598768,1637637579]}'),(7896,'44.199.169.13','normal','',0,0,0,5,0,'{\"login\":[1637599834,1637607480,1637610725,1637615105,1637645612]}'),(7897,'213.238.180.161','normal','',0,0,0,1,0,'{\"login\":[1637602130]}'),(7898,'54.36.148.71','normal','',0,0,0,0,0,'[]'),(7899,'192.64.150.99','normal','',0,0,0,0,0,'[]'),(7900,'197.245.69.88','normal','',0,0,0,0,0,'[]'),(7901,'69.64.48.135','normal','',0,0,0,2,0,'{\"login\":[1637606470,1637847591]}'),(7902,'216.70.80.40','normal','',0,0,0,0,1,'{\"nf\":[1637607817]}'),(7903,'186.33.187.235','normal','',0,0,0,3,0,'{\"login\":[1637608624,1637799464,1638895185]}'),(7904,'94.102.15.34','normal','',0,0,0,0,4,'{\"nf\":[1637608706,1637608707,1637608708,1637608709]}'),(7905,'185.20.13.60','normal','',0,0,0,0,1,'{\"nf\":[1637610147]}'),(7906,'103.8.25.60','normal','',0,0,0,0,1,'{\"nf\":[1637611403]}'),(7907,'52.24.209.180','normal','',0,0,0,0,0,'[]'),(7908,'52.12.144.106','normal','',0,0,0,0,0,'[]'),(7909,'103.253.212.28','normal','',0,0,0,0,1,'{\"nf\":[1637612091]}'),(7910,'195.252.155.49','normal','',0,0,0,0,0,'[]'),(7911,'198.71.227.48','normal','',0,0,0,0,6,'{\"nf\":[1637614918,1638467183,1642175199,1642927079,1644892802,1644931886]}'),(7912,'162.241.218.58','normal','',0,0,0,0,1,'{\"nf\":[1637614928]}'),(7913,'41.5.96.129','normal','',0,0,0,0,0,'[]'),(7914,'165.227.144.103','normal','',0,0,0,3,0,'{\"login\":[1637617338,1637638719,1637802146]}'),(7915,'23.83.179.236','normal','',0,0,0,0,0,'[]'),(7916,'137.184.12.177','normal','',0,0,0,3,0,'{\"login\":[1637621669,1639973247,1641341018]}'),(7917,'175.44.42.209','normal','',0,0,0,0,0,'[]'),(7918,'34.93.37.156','normal','',0,0,0,7,0,'{\"login\":[1637626137,1638309180,1639655545,1641643657,1641648002,1642724299,1642784109]}'),(7919,'3.212.4.70','normal','',0,0,0,3,0,'{\"login\":[1637628458,1637631823,1637858830]}'),(7920,'89.163.143.75','normal','',0,0,0,0,2,'{\"nf\":[1637631632,1637631639]}'),(7921,'153.92.7.128','normal','',0,0,0,0,1,'{\"nf\":[1637633937]}'),(7922,'184.154.201.90','normal','',0,0,0,0,0,'[]'),(7923,'54.36.148.191','normal','',0,0,0,0,0,'[]'),(7924,'156.155.123.68','normal','',0,0,0,0,0,'[]'),(7925,'85.128.142.46','normal','',0,0,0,2,0,'{\"login\":[1637641000,1637775154]}'),(7926,'195.133.239.225','normal','',0,0,0,0,4,'{\"nf\":[1637641265,1637641271,1639084597,1639144195]}'),(7927,'87.116.7.56','normal','',0,0,0,1,0,'{\"login\":[1637642181]}'),(7928,'77.55.217.166','normal','',0,0,0,0,2,'{\"nf\":[1637644446,1637644647]}'),(7929,'45.129.18.142','normal','',0,0,0,0,0,'[]'),(7930,'178.254.15.201','normal','',0,0,0,1,0,'{\"login\":[1637650602]}'),(7931,'18.134.119.29','normal','',0,0,0,1,0,'{\"login\":[1637650665]}'),(7932,'105.242.31.218','normal','',0,0,0,0,0,'[]'),(7933,'165.165.183.50','normal','',0,0,0,0,0,'[]'),(7934,'147.182.214.72','normal','',0,0,0,1,0,'{\"login\":[1637652742]}'),(7935,'95.211.209.81','normal','',0,0,0,0,1,'{\"nf\":[1637653940]}'),(7936,'34.217.253.81','normal','',0,0,0,0,0,'[]'),(7937,'198.71.236.21','normal','',0,0,0,0,0,'[]'),(7938,'89.107.68.194','normal','',0,0,0,0,0,'[]'),(7939,'131.153.78.138','normal','',0,0,0,0,2,'{\"nf\":[1637666593,1637666593]}'),(7940,'67.209.122.184','normal','',0,0,0,0,2,'{\"nf\":[1637666686,1637666687]}'),(7941,'176.119.35.187','normal','',0,0,0,0,2,'{\"nf\":[1637677811,1637921683]}'),(7942,'185.182.56.95','normal','',0,0,0,0,1,'{\"nf\":[1637679570]}'),(7943,'185.220.101.36','normal','',0,0,0,0,0,'[]'),(7944,'186.234.80.197','normal','',0,0,0,0,0,'[]'),(7945,'3.141.6.147','normal','',0,0,0,1,0,'{\"login\":[1637686834]}'),(7946,'18.217.44.147','normal','',0,0,0,1,0,'{\"login\":[1637686840]}'),(7947,'3.135.218.118','normal','',0,0,0,1,0,'{\"login\":[1637686845]}'),(7948,'3.145.40.195','normal','',0,0,0,1,0,'{\"login\":[1637687070]}'),(7949,'3.23.102.52','normal','',0,0,0,1,0,'{\"login\":[1637687087]}'),(7950,'3.16.10.91','normal','',0,0,0,1,0,'{\"login\":[1637687424]}'),(7951,'3.16.51.156','normal','',0,0,0,1,0,'{\"login\":[1637687657]}'),(7952,'114.119.128.158','normal','',0,0,0,0,0,'[]'),(7953,'3.144.147.107','normal','',0,0,0,1,0,'{\"login\":[1637687989]}'),(7954,'91.18.176.166','normal','',0,0,0,0,0,'[]'),(7955,'3.18.113.242','normal','',0,0,0,2,0,'{\"login\":[1637688175,1637692094]}'),(7956,'3.138.112.206','normal','',0,0,0,1,0,'{\"login\":[1637688190]}'),(7957,'3.131.141.117','normal','',0,0,0,3,0,'{\"login\":[1637688295,1637762072,1637822179]}'),(7958,'3.142.222.229','normal','',0,0,0,1,0,'{\"login\":[1637688453]}'),(7959,'18.220.31.255','normal','',0,0,0,1,0,'{\"login\":[1637688903]}'),(7960,'3.139.98.205','normal','',0,0,0,1,0,'{\"login\":[1637688922]}'),(7961,'52.15.192.216','normal','',0,0,0,1,0,'{\"login\":[1637688951]}'),(7962,'3.134.77.167','normal','',0,0,0,1,0,'{\"login\":[1637689142]}'),(7963,'18.118.165.67','normal','',0,0,0,1,0,'{\"login\":[1637689334]}'),(7964,'3.144.249.50','normal','',0,0,0,1,0,'{\"login\":[1637689517]}'),(7965,'18.221.32.252','normal','',0,0,0,2,0,'{\"login\":[1637689634,1637921040]}'),(7966,'3.141.28.197','normal','',0,0,0,1,0,'{\"login\":[1637689779]}'),(7967,'13.59.199.40','normal','',0,0,0,2,0,'{\"login\":[1637689869,1637694283]}'),(7968,'18.224.34.197','normal','',0,0,0,1,0,'{\"login\":[1637690233]}'),(7969,'3.141.197.84','normal','',0,0,0,1,0,'{\"login\":[1637690288]}'),(7970,'18.118.158.242','normal','',0,0,0,1,0,'{\"login\":[1637690544]}'),(7971,'3.134.91.103','normal','',0,0,0,1,0,'{\"login\":[1637690674]}'),(7972,'13.59.217.117','normal','',0,0,0,3,0,'{\"login\":[1637690905,1637829888,1637913626]}'),(7973,'13.58.175.28','normal','',0,0,0,1,0,'{\"login\":[1637690933]}'),(7974,'3.134.93.252','normal','',0,0,0,1,0,'{\"login\":[1637691276]}'),(7975,'3.135.222.162','normal','',0,0,0,1,0,'{\"login\":[1637691545]}'),(7976,'3.143.238.116','normal','',0,0,0,1,0,'{\"login\":[1637691657]}'),(7977,'3.19.242.131','normal','',0,0,0,1,0,'{\"login\":[1637691801]}'),(7978,'13.59.129.42','normal','',0,0,0,1,0,'{\"login\":[1637691977]}'),(7979,'18.217.192.177','normal','',0,0,0,1,0,'{\"login\":[1637692227]}'),(7980,'3.12.84.249','normal','',0,0,0,1,0,'{\"login\":[1637692445]}'),(7981,'105.225.45.170','normal','',0,0,0,0,0,'[]'),(7982,'3.134.253.208','normal','',0,0,0,1,0,'{\"login\":[1637692721]}'),(7983,'3.135.225.29','normal','',0,0,0,1,0,'{\"login\":[1637692975]}'),(7984,'18.117.122.12','normal','',0,0,0,1,0,'{\"login\":[1637693093]}'),(7985,'18.222.26.9','normal','',0,0,0,2,0,'{\"login\":[1637693367,1637694984]}'),(7986,'18.222.205.69','normal','',0,0,0,1,0,'{\"login\":[1637693646]}'),(7987,'18.220.112.175','normal','',0,0,0,1,0,'{\"login\":[1637693738]}'),(7988,'3.142.255.66','normal','',0,0,0,1,0,'{\"login\":[1637693882]}'),(7989,'3.129.57.64','normal','',0,0,0,1,0,'{\"login\":[1637694066]}'),(7990,'18.216.179.13','normal','',0,0,0,1,0,'{\"login\":[1637694156]}'),(7991,'18.116.29.64','normal','',0,0,0,1,0,'{\"login\":[1637694596]}'),(7992,'3.135.240.72','normal','',0,0,0,1,0,'{\"login\":[1637694867]}'),(7993,'18.220.142.229','normal','',0,0,0,1,0,'{\"login\":[1637695164]}'),(7994,'3.145.29.11','normal','',0,0,0,1,0,'{\"login\":[1637695293]}'),(7995,'13.59.118.253','normal','',0,0,0,2,0,'{\"login\":[1637695572,1637828227]}'),(7996,'3.14.10.150','normal','',0,0,0,1,0,'{\"login\":[1637695878]}'),(7997,'3.19.14.101','normal','',0,0,0,1,0,'{\"login\":[1637695943]}'),(7998,'18.217.129.118','normal','',0,0,0,1,0,'{\"login\":[1637696194]}'),(7999,'18.219.50.240','normal','',0,0,0,1,0,'{\"login\":[1637696332]}'),(8000,'3.144.69.183','normal','',0,0,0,1,0,'{\"login\":[1637696635]}'),(8001,'3.128.160.225','normal','',0,0,0,2,0,'{\"login\":[1637696911,1637796092]}'),(8002,'18.118.173.221','normal','',0,0,0,1,0,'{\"login\":[1637697057]}'),(8003,'18.223.117.48','normal','',0,0,0,1,0,'{\"login\":[1637697257]}'),(8004,'18.222.83.151','normal','',0,0,0,1,0,'{\"login\":[1637697320]}'),(8005,'18.118.19.123','normal','',0,0,0,1,0,'{\"login\":[1637697537]}'),(8006,'3.144.176.36','normal','',0,0,0,1,0,'{\"login\":[1637697660]}'),(8007,'3.129.5.227','normal','',0,0,0,1,0,'{\"login\":[1637698013]}'),(8008,'3.136.87.121','normal','',0,0,0,1,0,'{\"login\":[1637698302]}'),(8009,'3.21.248.58','normal','',0,0,0,1,0,'{\"login\":[1637698406]}'),(8010,'3.14.244.112','normal','',0,0,0,1,0,'{\"login\":[1637698573]}'),(8011,'18.218.128.255','normal','',0,0,0,2,0,'{\"login\":[1637698720,1637703305]}'),(8012,'3.23.92.99','normal','',0,0,0,1,0,'{\"login\":[1637698992]}'),(8013,'114.119.137.122','normal','',0,0,0,0,0,'[]'),(8014,'18.220.178.61','normal','',0,0,0,1,0,'{\"login\":[1637699252]}'),(8015,'3.141.24.149','normal','',0,0,0,1,0,'{\"login\":[1637699402]}'),(8016,'18.188.34.90','normal','',0,0,0,1,0,'{\"login\":[1637699587]}'),(8017,'52.14.9.244','normal','',0,0,0,1,0,'{\"login\":[1637699621]}'),(8018,'18.188.183.93','normal','',0,0,0,2,0,'{\"login\":[1637699714,1637739126]}'),(8019,'3.16.148.150','normal','',0,0,0,1,0,'{\"login\":[1637699898]}'),(8020,'18.223.126.202','normal','',0,0,0,1,0,'{\"login\":[1637700068]}'),(8021,'18.216.175.217','normal','',0,0,0,1,0,'{\"login\":[1637700255]}'),(8022,'74.208.25.176','normal','',0,0,0,23,0,'{\"login\":[1637700409,1639659809,1640413707,1640740793,1640942022,1640988358,1641029047,1641287298,1641415440,1641883417,1641894334,1641945356,1642013615,1642065702,1642445960,1642638861,1642854353,1642856823,1643325903,1643645273,1644586446,1644695384,1645041113]}'),(8023,'3.21.53.224','normal','',0,0,0,1,0,'{\"login\":[1637700609]}'),(8024,'54.67.110.172','normal','',0,0,0,1,0,'{\"login\":[1637700721]}'),(8025,'18.117.149.104','normal','',0,0,0,1,0,'{\"login\":[1637700875]}'),(8026,'3.131.152.29','normal','',0,0,0,1,0,'{\"login\":[1637701046]}'),(8027,'3.141.170.3','normal','',0,0,0,1,0,'{\"login\":[1637701289]}'),(8028,'18.188.90.14','normal','',0,0,0,1,0,'{\"login\":[1637701649]}'),(8029,'3.143.22.186','normal','',0,0,0,1,0,'{\"login\":[1637701708]}'),(8030,'3.143.249.24','normal','',0,0,0,1,0,'{\"login\":[1637701913]}'),(8031,'18.218.162.255','normal','',0,0,0,1,0,'{\"login\":[1637702086]}'),(8032,'18.188.107.215','normal','',0,0,0,1,0,'{\"login\":[1637702205]}'),(8033,'3.140.253.148','normal','',0,0,0,1,0,'{\"login\":[1637702374]}'),(8034,'3.140.254.58','normal','',0,0,0,1,0,'{\"login\":[1637702614]}'),(8035,'18.117.137.252','normal','',0,0,0,1,0,'{\"login\":[1637702852]}'),(8036,'18.118.165.25','normal','',0,0,0,1,0,'{\"login\":[1637703024]}'),(8037,'3.19.63.26','normal','',0,0,0,1,0,'{\"login\":[1637703154]}'),(8038,'3.19.215.193','normal','',0,0,0,1,0,'{\"login\":[1637703572]}'),(8039,'35.86.92.81','normal','',0,0,0,0,0,'[]'),(8040,'54.186.148.138','normal','',0,0,0,0,0,'[]'),(8041,'13.58.73.84','normal','',0,0,0,1,0,'{\"login\":[1637703860]}'),(8042,'3.14.130.33','normal','',0,0,0,1,0,'{\"login\":[1637704009]}'),(8043,'3.128.202.105','normal','',0,0,0,1,0,'{\"login\":[1637704136]}'),(8044,'3.19.55.209','normal','',0,0,0,1,0,'{\"login\":[1637704461]}'),(8045,'18.223.24.174','normal','',0,0,0,1,0,'{\"login\":[1637704558]}'),(8046,'18.191.197.248','normal','',0,0,0,1,0,'{\"login\":[1637704867]}'),(8047,'18.188.130.42','normal','',0,0,0,1,0,'{\"login\":[1637705274]}'),(8048,'18.116.87.78','normal','',0,0,0,1,0,'{\"login\":[1637705471]}'),(8049,'3.133.127.193','normal','',0,0,0,1,0,'{\"login\":[1637705544]}'),(8050,'3.137.139.188','normal','',0,0,0,1,0,'{\"login\":[1637705628]}'),(8051,'3.141.14.114','normal','',0,0,0,1,0,'{\"login\":[1637705820]}'),(8052,'18.224.108.101','normal','',0,0,0,1,0,'{\"login\":[1637705999]}'),(8053,'18.223.22.13','normal','',0,0,0,1,0,'{\"login\":[1637706328]}'),(8054,'3.16.188.29','normal','',0,0,0,1,0,'{\"login\":[1637706419]}'),(8055,'3.140.199.157','normal','',0,0,0,1,0,'{\"login\":[1637706700]}'),(8056,'3.143.208.4','normal','',0,0,0,2,0,'{\"login\":[1637707190,1637816737]}'),(8057,'3.142.73.191','normal','',0,0,0,1,0,'{\"login\":[1637707256]}'),(8058,'3.137.146.102','normal','',0,0,0,1,0,'{\"login\":[1637707642]}'),(8059,'3.141.15.247','normal','',0,0,0,1,0,'{\"login\":[1637707657]}'),(8060,'18.189.26.191','normal','',0,0,0,1,0,'{\"login\":[1637707850]}'),(8061,'3.144.72.141','normal','',0,0,0,1,0,'{\"login\":[1637708373]}'),(8062,'3.17.144.102','normal','',0,0,0,1,0,'{\"login\":[1637708708]}'),(8063,'18.221.236.168','normal','',0,0,0,1,0,'{\"login\":[1637709119]}'),(8064,'18.117.79.120','normal','',0,0,0,1,0,'{\"login\":[1637709429]}'),(8065,'3.21.129.13','normal','',0,0,0,1,0,'{\"login\":[1637709507]}'),(8066,'18.223.2.95','normal','',0,0,0,1,0,'{\"login\":[1637709637]}'),(8067,'133.18.226.126','normal','',0,0,0,9,0,'{\"login\":[1637710146,1637790494,1638169089,1638177160,1638232969,1638248338,1638458751,1638510621,1638767507]}'),(8068,'3.142.219.204','normal','',0,0,0,1,0,'{\"login\":[1637710173]}'),(8069,'3.22.224.152','normal','',0,0,0,1,0,'{\"login\":[1637710230]}'),(8070,'18.217.95.182','normal','',0,0,0,1,0,'{\"login\":[1637711133]}'),(8071,'3.22.208.22','normal','',0,0,0,2,0,'{\"login\":[1637711139,1637714563]}'),(8072,'3.142.238.1','normal','',0,0,0,1,0,'{\"login\":[1637711447]}'),(8073,'3.135.194.4','normal','',0,0,0,1,0,'{\"login\":[1637711524]}'),(8074,'3.136.19.165','normal','',0,0,0,1,0,'{\"login\":[1637711882]}'),(8075,'18.217.46.87','normal','',0,0,0,1,0,'{\"login\":[1637712240]}'),(8076,'3.16.10.108','normal','',0,0,0,1,0,'{\"login\":[1637712241]}'),(8077,'3.144.145.128','normal','',0,0,0,1,0,'{\"login\":[1637712799]}'),(8078,'3.17.68.94','normal','',0,0,0,1,0,'{\"login\":[1637712816]}'),(8079,'18.117.90.90','normal','',0,0,0,1,0,'{\"login\":[1637713841]}'),(8080,'3.138.189.199','normal','',0,0,0,1,0,'{\"login\":[1637714105]}'),(8081,'18.223.121.44','normal','',0,0,0,1,0,'{\"login\":[1637714720]}'),(8082,'18.219.125.207','normal','',0,0,0,1,0,'{\"login\":[1637714997]}'),(8083,'3.15.43.92','normal','',0,0,0,1,0,'{\"login\":[1637715083]}'),(8084,'13.59.211.137','normal','',0,0,0,1,0,'{\"login\":[1637715098]}'),(8085,'3.140.199.4','normal','',0,0,0,1,0,'{\"login\":[1637715641]}'),(8086,'3.144.245.144','normal','',0,0,0,1,0,'{\"login\":[1637715653]}'),(8087,'3.144.128.170','normal','',0,0,0,1,0,'{\"login\":[1637716231]}'),(8088,'3.14.69.166','normal','',0,0,0,1,0,'{\"login\":[1637716253]}'),(8089,'3.142.91.62','normal','',0,0,0,2,0,'{\"login\":[1637717189,1637964378]}'),(8090,'195.154.82.194','normal','',0,0,0,0,3,'{\"nf\":[1637717622,1637781547,1643897511]}'),(8091,'18.222.26.212','normal','',0,0,0,1,0,'{\"login\":[1637717640]}'),(8092,'3.21.166.26','normal','',0,0,0,1,0,'{\"login\":[1637717662]}'),(8093,'13.58.130.54','normal','',0,0,0,1,0,'{\"login\":[1637718065]}'),(8094,'3.139.78.189','normal','',0,0,0,1,0,'{\"login\":[1637718998]}'),(8095,'18.225.8.222','normal','',0,0,0,1,0,'{\"login\":[1637719120]}'),(8096,'3.21.244.141','normal','',0,0,0,1,0,'{\"login\":[1637719238]}'),(8097,'3.144.78.32','normal','',0,0,0,1,0,'{\"login\":[1637720219]}'),(8098,'54.177.57.248','normal','',0,0,0,1,0,'{\"login\":[1637720419]}'),(8099,'52.15.61.233','normal','',0,0,0,1,0,'{\"login\":[1637720715]}'),(8100,'3.137.140.151','normal','',0,0,0,1,0,'{\"login\":[1637721020]}'),(8101,'18.216.45.189','normal','',0,0,0,1,0,'{\"login\":[1637721097]}'),(8102,'3.134.253.249','normal','',0,0,0,1,0,'{\"login\":[1637721675]}'),(8103,'13.57.244.34','normal','',0,0,0,1,0,'{\"login\":[1637721700]}'),(8104,'3.144.142.253','normal','',0,0,0,1,0,'{\"login\":[1637722387]}'),(8105,'45.129.18.173','normal','',0,0,0,0,0,'[]'),(8106,'3.137.140.210','normal','',0,0,0,1,0,'{\"login\":[1637722911]}'),(8107,'13.58.205.63','normal','',0,0,0,1,0,'{\"login\":[1637723349]}'),(8108,'103.8.25.16','normal','',0,0,0,0,0,'[]'),(8109,'3.14.81.143','normal','',0,0,0,1,0,'{\"login\":[1637724093]}'),(8110,'18.191.116.31','normal','',0,0,0,1,0,'{\"login\":[1637724322]}'),(8111,'18.116.52.214','normal','',0,0,0,1,0,'{\"login\":[1637725074]}'),(8112,'3.129.10.38','normal','',0,0,0,1,0,'{\"login\":[1637725430]}'),(8113,'3.141.195.77','normal','',0,0,0,1,0,'{\"login\":[1637725739]}'),(8114,'3.144.234.193','normal','',0,0,0,1,0,'{\"login\":[1637726209]}'),(8115,'3.144.221.109','normal','',0,0,0,1,0,'{\"login\":[1637726522]}'),(8116,'18.191.194.125','normal','',0,0,0,1,0,'{\"login\":[1637727088]}'),(8117,'3.21.102.103','normal','',0,0,0,1,0,'{\"login\":[1637727138]}'),(8118,'3.145.30.50','normal','',0,0,0,1,0,'{\"login\":[1637727669]}'),(8119,'13.59.205.137','normal','',0,0,0,1,0,'{\"login\":[1637727861]}'),(8120,'18.224.170.181','normal','',0,0,0,1,0,'{\"login\":[1637728435]}'),(8121,'18.222.140.223','normal','',0,0,0,1,0,'{\"login\":[1637728941]}'),(8122,'3.110.97.242','normal','',0,0,0,0,0,'[]'),(8123,'13.59.156.222','normal','',0,0,0,1,0,'{\"login\":[1637729419]}'),(8124,'3.14.86.147','normal','',0,0,0,1,0,'{\"login\":[1637729735]}'),(8125,'45.176.92.136','normal','',0,0,0,0,0,'[]'),(8126,'3.143.144.72','normal','',0,0,0,1,0,'{\"login\":[1637730331]}'),(8127,'3.142.122.87','normal','',0,0,0,1,0,'{\"login\":[1637730644]}'),(8128,'3.137.208.212','normal','',0,0,0,1,0,'{\"login\":[1637731221]}'),(8129,'13.58.114.103','normal','',0,0,0,1,0,'{\"login\":[1637731612]}'),(8130,'3.144.147.125','normal','',0,0,0,1,0,'{\"login\":[1637731938]}'),(8131,'18.117.129.178','normal','',0,0,0,1,0,'{\"login\":[1637732186]}'),(8132,'3.143.68.170','normal','',0,0,0,1,0,'{\"login\":[1637732545]}'),(8133,'3.21.234.169','normal','',0,0,0,1,0,'{\"login\":[1637733007]}'),(8134,'34.208.109.97','normal','',0,0,0,0,0,'[]'),(8135,'94.23.86.99','normal','',0,0,0,0,0,'[]'),(8136,'3.138.136.17','normal','',0,0,0,1,0,'{\"login\":[1637733484]}'),(8137,'3.16.203.244','normal','',0,0,0,1,0,'{\"login\":[1637734010]}'),(8138,'43.135.170.79','normal','',0,0,0,0,0,'[]'),(8139,'3.129.68.152','normal','',0,0,0,1,0,'{\"login\":[1637734532]}'),(8140,'144.76.14.153','normal','',0,0,0,0,0,'[]'),(8141,'3.19.185.33','normal','',0,0,0,1,0,'{\"login\":[1637734763]}'),(8142,'34.217.23.157','normal','',0,0,0,0,0,'[]'),(8143,'3.144.142.219','normal','',0,0,0,1,0,'{\"login\":[1637735393]}'),(8144,'18.188.178.47','normal','',0,0,0,1,0,'{\"login\":[1637735903]}'),(8145,'3.15.206.254','normal','',0,0,0,1,0,'{\"login\":[1637736463]}'),(8146,'3.14.73.167','normal','',0,0,0,1,0,'{\"login\":[1637737155]}'),(8147,'181.215.176.234','normal','',0,0,0,0,0,'[]'),(8148,'3.15.166.219','normal','',0,0,0,1,0,'{\"login\":[1637737873]}'),(8149,'3.143.248.22','normal','',0,0,0,1,0,'{\"login\":[1637738131]}'),(8150,'13.228.220.76','normal','',0,0,0,0,0,'[]'),(8151,'18.223.155.219','normal','',0,0,0,1,0,'{\"login\":[1637739580]}'),(8152,'18.118.143.248','normal','',0,0,0,1,0,'{\"login\":[1637740537]}'),(8153,'3.12.104.138','normal','',0,0,0,1,0,'{\"login\":[1637741189]}'),(8154,'3.141.14.37','normal','',0,0,0,1,0,'{\"login\":[1637741534]}'),(8155,'18.117.112.213','normal','',0,0,0,2,0,'{\"login\":[1637742317,1638015269]}'),(8156,'54.37.16.241','normal','',0,0,0,0,0,'[]'),(8157,'18.118.106.168','normal','',0,0,0,1,0,'{\"login\":[1637743209]}'),(8158,'18.191.224.169','normal','',0,0,0,1,0,'{\"login\":[1637744129]}'),(8159,'3.15.33.11','normal','',0,0,0,1,0,'{\"login\":[1637744783]}'),(8160,'18.191.175.103','normal','',0,0,0,1,0,'{\"login\":[1637745165]}'),(8161,'3.142.220.185','normal','',0,0,0,1,0,'{\"login\":[1637745641]}'),(8162,'35.224.222.188','normal','',0,0,0,0,0,'[]'),(8163,'199.188.203.35','normal','',0,0,0,0,0,'[]'),(8164,'206.180.185.143','normal','',0,0,0,0,0,'[]'),(8165,'18.191.248.106','normal','',0,0,0,1,0,'{\"login\":[1637746804]}'),(8166,'3.144.169.185','normal','',0,0,0,1,0,'{\"login\":[1637747841]}'),(8167,'3.134.107.21','normal','',0,0,0,1,0,'{\"login\":[1637748891]}'),(8168,'3.144.132.150','normal','',0,0,0,1,0,'{\"login\":[1637749548]}'),(8169,'3.144.178.80','normal','',0,0,0,2,0,'{\"login\":[1637749859,1637792176]}'),(8170,'18.216.91.10','normal','',0,0,0,1,0,'{\"login\":[1637750389]}'),(8171,'52.14.144.107','normal','',0,0,0,1,0,'{\"login\":[1637751487]}'),(8172,'18.224.108.81','normal','',0,0,0,1,0,'{\"login\":[1637752389]}'),(8173,'18.223.117.56','normal','',0,0,0,1,0,'{\"login\":[1637753106]}'),(8174,'3.14.245.107','normal','',0,0,0,1,0,'{\"login\":[1637753396]}'),(8175,'3.141.44.202','normal','',0,0,0,1,0,'{\"login\":[1637754017]}'),(8176,'106.75.73.155','normal','',0,0,0,0,2,'{\"nf\":[1637754134,1637820060]}'),(8177,'18.222.66.240','normal','',0,0,0,1,0,'{\"login\":[1637755007]}'),(8178,'148.72.65.131','normal','',0,0,0,0,3,'{\"nf\":[1637756087,1638523855,1638793144]}'),(8179,'3.133.98.167','normal','',0,0,0,1,0,'{\"login\":[1637756092]}'),(8180,'3.144.128.101','normal','',0,0,0,1,0,'{\"login\":[1637756727]}'),(8181,'164.151.5.20','normal','',0,0,0,0,1,'{\"nf\":[1654588127]}'),(8182,'164.151.5.20','normal','',0,0,0,0,0,'[]'),(8183,'3.19.246.0','normal','',0,0,0,1,0,'{\"login\":[1637757817]}'),(8184,'118.68.218.242','normal','',0,0,0,0,9,'{\"nf\":[1637758221,1637758224,1638046863,1638046868,1638208611,1638208615,1639815148,1641489275,1641489280]}'),(8185,'3.142.198.176','normal','',0,0,0,1,0,'{\"login\":[1637758279]}'),(8186,'3.143.224.243','normal','',0,0,0,1,0,'{\"login\":[1637758926]}'),(8187,'18.223.235.215','normal','',0,0,0,1,0,'{\"login\":[1637759919]}'),(8188,'3.12.123.250','normal','',0,0,0,1,0,'{\"login\":[1637761029]}'),(8189,'18.191.144.127','normal','',0,0,0,1,0,'{\"login\":[1637761498]}'),(8190,'31.177.95.64','normal','',0,0,0,0,0,'[]'),(8191,'18.117.76.215','normal','',0,0,0,1,0,'{\"login\":[1637762563]}'),(8192,'125.212.243.172','normal','',0,0,0,2,0,'{\"login\":[1637762989,1637807860]}'),(8193,'3.19.239.84','normal','',0,0,0,1,0,'{\"login\":[1637763662]}'),(8194,'3.15.8.240','normal','',0,0,0,1,0,'{\"login\":[1637764866]}'),(8195,'3.17.133.56','normal','',0,0,0,1,0,'{\"login\":[1637765391]}'),(8196,'18.223.114.88','normal','',0,0,0,1,0,'{\"login\":[1637766047]}'),(8197,'3.138.68.127','normal','',0,0,0,1,0,'{\"login\":[1637766616]}'),(8198,'18.223.239.66','normal','',0,0,0,1,0,'{\"login\":[1637767226]}'),(8199,'18.218.235.142','normal','',0,0,0,1,0,'{\"login\":[1637767743]}'),(8200,'3.144.252.25','normal','',0,0,0,1,0,'{\"login\":[1637768863]}'),(8201,'3.17.14.14','normal','',0,0,0,1,0,'{\"login\":[1637769993]}'),(8202,'20.107.221.36','normal','',0,0,0,0,0,'[]'),(8203,'18.191.172.74','normal','',0,0,0,1,0,'{\"login\":[1637770522]}'),(8204,'18.118.199.254','normal','',0,0,0,1,0,'{\"login\":[1637771138]}'),(8205,'3.17.208.215','normal','',0,0,0,1,0,'{\"login\":[1637771708]}'),(8206,'18.223.16.30','normal','',0,0,0,1,0,'{\"login\":[1637772908]}'),(8207,'159.65.1.255','normal','',0,0,0,28,0,'{\"login\":[1637773450,1638513059,1640776770,1646151276,1646852436,1647379090,1650203920,1650229512,1650232701,1651379117,1652210124,1652240735,1652818407,1652820449,1652850171,1653563748,1653570610,1653602645,1653613462,1654505935,1654523938,1654533152,1654617536,1654665265,1655294137,1655342468,1656787590,1656821156]}'),(8208,'18.223.203.142','normal','',0,0,0,1,0,'{\"login\":[1637774381]}'),(8209,'18.224.252.120','normal','',0,0,0,1,0,'{\"login\":[1637774665]}'),(8210,'13.58.113.227','normal','',0,0,0,1,0,'{\"login\":[1637775246]}'),(8211,'3.144.185.224','normal','',0,0,0,1,0,'{\"login\":[1637775871]}'),(8212,'18.217.205.163','normal','',0,0,0,1,0,'{\"login\":[1637776568]}'),(8213,'3.19.56.69','normal','',0,0,0,1,0,'{\"login\":[1637776956]}'),(8214,'3.14.84.108','normal','',0,0,0,1,0,'{\"login\":[1637778208]}'),(8215,'3.144.164.199','normal','',0,0,0,1,0,'{\"login\":[1637779482]}'),(8216,'109.237.103.118','normal','',0,0,0,0,1,'{\"nf\":[1637779805]}'),(8217,'3.19.185.109','normal','',0,0,0,1,0,'{\"login\":[1637779996]}'),(8218,'3.145.26.55','normal','',0,0,0,1,0,'{\"login\":[1637780715]}'),(8219,'52.14.248.112','normal','',0,0,0,1,0,'{\"login\":[1637781144]}'),(8220,'18.118.32.45','normal','',0,0,0,1,0,'{\"login\":[1637781464]}'),(8221,'114.119.135.196','normal','',0,0,0,0,0,'[]'),(8222,'18.216.118.87','normal','',0,0,0,1,0,'{\"login\":[1637782622]}'),(8223,'18.118.86.29','normal','',0,0,0,2,0,'{\"login\":[1637783464,1637818841]}'),(8224,'3.133.98.50','normal','',0,0,0,1,0,'{\"login\":[1637783717]}'),(8225,'18.217.16.75','normal','',0,0,0,1,0,'{\"login\":[1637784234]}'),(8226,'3.138.35.82','normal','',0,0,0,1,0,'{\"login\":[1637784566]}'),(8227,'3.16.129.245','normal','',0,0,0,1,0,'{\"login\":[1637785228]}'),(8228,'54.189.241.134','normal','',0,0,0,0,0,'[]'),(8229,'54.188.30.201','normal','',0,0,0,0,0,'[]'),(8230,'54.191.18.3','normal','',0,0,0,0,0,'[]'),(8231,'3.128.79.108','normal','',0,0,0,1,0,'{\"login\":[1637785895]}'),(8232,'3.144.190.114','normal','',0,0,0,1,0,'{\"login\":[1637786439]}'),(8233,'3.16.70.168','normal','',0,0,0,1,0,'{\"login\":[1637786527]}'),(8234,'3.139.101.113','normal','',0,0,0,1,0,'{\"login\":[1637787025]}'),(8235,'3.145.69.216','normal','',0,0,0,1,0,'{\"login\":[1637787673]}'),(8236,'3.142.140.168','normal','',0,0,0,1,0,'{\"login\":[1637787844]}'),(8237,'18.220.8.60','normal','',0,0,0,1,0,'{\"login\":[1637788899]}'),(8238,'3.134.114.207','normal','',0,0,0,1,0,'{\"login\":[1637789460]}'),(8239,'3.136.116.6','normal','',0,0,0,1,0,'{\"login\":[1637789860]}'),(8240,'3.21.166.117','normal','',0,0,0,1,0,'{\"login\":[1637790677]}'),(8241,'18.222.172.62','normal','',0,0,0,1,0,'{\"login\":[1637791288]}'),(8242,'18.220.50.96','normal','',0,0,0,1,0,'{\"login\":[1637791343]}'),(8243,'3.144.244.65','normal','',0,0,0,1,0,'{\"login\":[1637791418]}'),(8244,'3.15.158.8','normal','',0,0,0,1,0,'{\"login\":[1637791718]}'),(8245,'3.16.31.50','normal','',0,0,0,1,0,'{\"login\":[1637792044]}'),(8246,'3.144.152.153','normal','',0,0,0,1,0,'{\"login\":[1637792339]}'),(8247,'38.146.5.121','blocked','You have been locked out due to too many invalid login attempts.',1637793698,1637793398,0,5,0,'{\"login\":[1637793393,1637793395,1637793397,1637793397,1637793398]}'),(8248,'206.189.129.168','normal','',0,0,0,13,0,'{\"login\":[1637793532,1637839995,1638514764,1639526105,1639903437,1640589479,1641146165,1641807453,1641839452,1641913576,1642321134,1642433677,1642525785]}'),(8249,'18.219.231.42','normal','',0,0,0,1,0,'{\"login\":[1637793955]}'),(8250,'52.14.139.91','normal','',0,0,0,1,0,'{\"login\":[1637793982]}'),(8251,'114.119.140.56','normal','',0,0,0,0,0,'[]'),(8252,'18.223.205.226','normal','',0,0,0,1,0,'{\"login\":[1637794392]}'),(8253,'18.216.56.29','normal','',0,0,0,1,0,'{\"login\":[1637795024]}'),(8254,'3.137.171.222','normal','',0,0,0,1,0,'{\"login\":[1637795246]}'),(8255,'216.172.172.85','normal','',0,0,0,0,1,'{\"nf\":[1637795599]}'),(8256,'3.144.164.128','normal','',0,0,0,1,0,'{\"login\":[1637796474]}'),(8257,'3.128.27.52','normal','',0,0,0,1,0,'{\"login\":[1637797103]}'),(8258,'3.134.111.229','normal','',0,0,0,1,0,'{\"login\":[1637797397]}'),(8259,'18.223.172.127','normal','',0,0,0,1,0,'{\"login\":[1637797815]}'),(8260,'18.188.11.137','normal','',0,0,0,1,0,'{\"login\":[1637797939]}'),(8261,'18.223.32.91','normal','',0,0,0,1,0,'{\"login\":[1637798553]}'),(8262,'3.140.195.157','normal','',0,0,0,1,0,'{\"login\":[1637799224]}'),(8263,'18.191.38.142','normal','',0,0,0,1,0,'{\"login\":[1637799769]}'),(8264,'64.92.125.31','normal','',0,0,0,0,0,'[]'),(8265,'18.191.149.213','normal','',0,0,0,1,0,'{\"login\":[1637800377]}'),(8266,'3.143.242.138','normal','',0,0,0,1,0,'{\"login\":[1637800788]}'),(8267,'3.14.27.141','normal','',0,0,0,1,0,'{\"login\":[1637801546]}'),(8268,'18.191.243.234','normal','',0,0,0,1,0,'{\"login\":[1637801726]}'),(8269,'3.145.6.66','normal','',0,0,0,2,0,'{\"login\":[1637802320,1637823172]}'),(8270,'18.190.154.82','normal','',0,0,0,1,0,'{\"login\":[1637802973]}'),(8271,'18.219.193.112','normal','',0,0,0,1,0,'{\"login\":[1637803107]}'),(8272,'3.144.140.226','normal','',0,0,0,1,0,'{\"login\":[1637803769]}'),(8273,'18.222.207.241','normal','',0,0,0,1,0,'{\"login\":[1637803896]}'),(8274,'3.20.221.121','normal','',0,0,0,1,0,'{\"login\":[1637804465]}'),(8275,'3.133.89.182','normal','',0,0,0,1,0,'{\"login\":[1637805086]}'),(8276,'3.142.184.242','normal','',0,0,0,1,0,'{\"login\":[1637805391]}'),(8277,'18.191.10.148','normal','',0,0,0,3,0,'{\"login\":[1637806288,1637834378,1637911533]}'),(8278,'3.144.80.253','normal','',0,0,0,1,0,'{\"login\":[1637806490]}'),(8279,'3.133.134.109','normal','',0,0,0,1,0,'{\"login\":[1637807106]}'),(8280,'18.217.136.61','normal','',0,0,0,1,0,'{\"login\":[1637807711]}'),(8281,'3.142.97.226','normal','',0,0,0,1,0,'{\"login\":[1637808274]}'),(8282,'3.142.145.248','normal','',0,0,0,1,0,'{\"login\":[1637808718]}'),(8283,'18.224.16.139','normal','',0,0,0,1,0,'{\"login\":[1637809111]}'),(8284,'3.145.68.31','normal','',0,0,0,1,0,'{\"login\":[1637809788]}'),(8285,'13.58.140.208','normal','',0,0,0,1,0,'{\"login\":[1637810221]}'),(8286,'18.188.225.222','normal','',0,0,0,1,0,'{\"login\":[1637811017]}'),(8287,'3.20.205.61','normal','',0,0,0,1,0,'{\"login\":[1637811513]}'),(8288,'3.144.100.116','normal','',0,0,0,1,0,'{\"login\":[1637811674]}'),(8289,'18.118.3.247','normal','',0,0,0,1,0,'{\"login\":[1637812218]}'),(8290,'18.218.224.228','normal','',0,0,0,1,0,'{\"login\":[1637812373]}'),(8291,'18.222.164.77','normal','',0,0,0,1,0,'{\"login\":[1637813122]}'),(8292,'18.189.21.94','normal','',0,0,0,1,0,'{\"login\":[1637813690]}'),(8293,'3.17.110.108','normal','',0,0,0,1,0,'{\"login\":[1637814078]}'),(8294,'3.19.27.139','normal','',0,0,0,1,0,'{\"login\":[1637814755]}'),(8295,'3.144.142.160','normal','',0,0,0,1,0,'{\"login\":[1637815061]}'),(8296,'18.188.224.175','normal','',0,0,0,1,0,'{\"login\":[1637815584]}'),(8297,'3.128.26.73','normal','',0,0,0,1,0,'{\"login\":[1637816185]}'),(8298,'176.9.25.107','normal','',0,0,0,0,0,'[]'),(8299,'92.205.12.68','normal','',0,0,0,0,1,'{\"nf\":[1637817048]}'),(8300,'3.145.50.86','normal','',0,0,0,1,0,'{\"login\":[1637817347]}'),(8301,'3.12.76.164','normal','',0,0,0,1,0,'{\"login\":[1637817576]}'),(8302,'18.191.53.140','normal','',0,0,0,2,0,'{\"login\":[1637818130,1637872108]}'),(8303,'3.140.210.25','normal','',0,0,0,1,0,'{\"login\":[1637819575]}'),(8304,'3.145.26.44','normal','',0,0,0,1,0,'{\"login\":[1637820100]}'),(8305,'13.59.11.116','normal','',0,0,0,1,0,'{\"login\":[1637820736]}'),(8306,'18.216.47.137','normal','',0,0,0,1,0,'{\"login\":[1637821016]}'),(8307,'3.16.45.85','normal','',0,0,0,1,0,'{\"login\":[1637821384]}'),(8308,'3.144.250.13','normal','',0,0,0,1,0,'{\"login\":[1637823910]}'),(8309,'18.222.150.253','normal','',0,0,0,1,0,'{\"login\":[1637823965]}'),(8310,'3.142.84.167','normal','',0,0,0,1,0,'{\"login\":[1637824688]}'),(8311,'18.191.201.0','normal','',0,0,0,1,0,'{\"login\":[1637824999]}'),(8312,'3.144.241.138','normal','',0,0,0,1,0,'{\"login\":[1637825408]}'),(8313,'3.142.98.205','normal','',0,0,0,1,0,'{\"login\":[1637826499]}'),(8314,'18.219.25.87','normal','',0,0,0,1,0,'{\"login\":[1637827323]}'),(8315,'18.216.231.114','normal','',0,0,0,1,0,'{\"login\":[1637828092]}'),(8316,'3.139.78.108','normal','',0,0,0,1,0,'{\"login\":[1637828792]}'),(8317,'13.58.166.143','normal','',0,0,0,1,0,'{\"login\":[1637831524]}'),(8318,'3.144.143.86','normal','',0,0,0,3,0,'{\"login\":[1637831756,1637988309,1638062588]}'),(8319,'3.131.157.180','normal','',0,0,0,1,0,'{\"login\":[1637832509]}'),(8320,'18.224.1.174','normal','',0,0,0,1,0,'{\"login\":[1637832757]}'),(8321,'79.96.115.42','normal','',0,0,0,0,1,'{\"nf\":[1637833033]}'),(8322,'54.36.148.203','normal','',0,0,0,0,0,'[]'),(8323,'3.137.195.85','normal','',0,0,0,1,0,'{\"login\":[1637833355]}'),(8324,'3.144.193.251','normal','',0,0,0,2,0,'{\"login\":[1637835176,1637866497]}'),(8325,'3.144.166.222','normal','',0,0,0,1,0,'{\"login\":[1637835863]}'),(8326,'18.188.177.133','normal','',0,0,0,1,0,'{\"login\":[1637836260]}'),(8327,'18.191.222.24','normal','',0,0,0,1,0,'{\"login\":[1637836871]}'),(8328,'89.31.140.124','normal','',0,0,0,0,1,'{\"nf\":[1637837656]}'),(8329,'3.14.151.69','normal','',0,0,0,1,0,'{\"login\":[1637837943]}'),(8330,'157.55.39.161','normal','',0,0,0,0,0,'[]'),(8331,'13.59.114.75','normal','',0,0,0,1,0,'{\"login\":[1637838784]}'),(8332,'18.218.123.59','normal','',0,0,0,1,0,'{\"login\":[1637839515]}'),(8333,'18.222.59.180','normal','',0,0,0,1,0,'{\"login\":[1637839885]}'),(8334,'42.236.10.74','normal','',0,0,0,0,0,'[]'),(8335,'3.142.97.216','normal','',0,0,0,1,0,'{\"login\":[1637840547]}'),(8336,'18.222.228.244','normal','',0,0,0,1,0,'{\"login\":[1637841456]}'),(8337,'3.21.207.119','normal','',0,0,0,1,0,'{\"login\":[1637842622]}'),(8338,'45.144.225.119','normal','',0,0,0,0,0,'[]'),(8339,'3.141.19.7','normal','',0,0,0,0,0,'[]'),(8340,'3.133.103.35','normal','',0,0,0,1,0,'{\"login\":[1637843196]}'),(8341,'3.142.95.12','normal','',0,0,0,1,0,'{\"login\":[1637843536]}'),(8342,'3.23.96.235','normal','',0,0,0,1,0,'{\"login\":[1637844255]}'),(8343,'13.59.144.6','normal','',0,0,0,1,0,'{\"login\":[1637844741]}'),(8344,'51.254.204.117','normal','',0,0,0,0,0,'[]'),(8345,'3.19.59.20','normal','',0,0,0,1,0,'{\"login\":[1637845215]}'),(8346,'52.15.106.63','normal','',0,0,0,1,0,'{\"login\":[1637846300]}'),(8347,'18.218.216.233','normal','',0,0,0,1,0,'{\"login\":[1637847262]}'),(8348,'102.182.123.87','normal','',0,0,0,0,0,'[]'),(8349,'18.118.83.235','normal','',0,0,0,1,0,'{\"login\":[1637847946]}'),(8350,'173.231.216.219','normal','',0,0,0,0,1,'{\"nf\":[1637848174]}'),(8351,'52.14.62.37','normal','',0,0,0,1,0,'{\"login\":[1637848570]}'),(8352,'3.20.233.43','normal','',0,0,0,1,0,'{\"login\":[1637848905]}'),(8353,'93.158.92.241','normal','',0,0,0,0,0,'[]'),(8354,'93.158.92.199','normal','',0,0,0,0,0,'[]'),(8355,'93.158.92.236','normal','',0,0,0,0,1,'{\"nf\":[1637849049]}'),(8356,'93.158.92.217','normal','',0,0,0,0,1,'{\"nf\":[1637849050]}'),(8357,'41.13.212.135','normal','',0,0,0,0,0,'[]'),(8358,'3.141.192.109','normal','',0,0,0,1,0,'{\"login\":[1637850307]}'),(8359,'52.14.240.69','normal','',0,0,0,1,0,'{\"login\":[1637851548]}'),(8360,'3.22.117.194','normal','',0,0,0,1,0,'{\"login\":[1637851974]}'),(8361,'13.59.196.230','normal','',0,0,0,3,0,'{\"login\":[1637853085,1637858622,1637943018]}'),(8362,'18.218.20.57','normal','',0,0,0,1,0,'{\"login\":[1637853504]}'),(8363,'3.129.211.8','normal','',0,0,0,1,0,'{\"login\":[1637854518]}'),(8364,'3.15.9.93','normal','',0,0,0,1,0,'{\"login\":[1637854798]}'),(8365,'3.139.96.98','normal','',0,0,0,1,0,'{\"login\":[1637856229]}'),(8366,'13.59.189.104','normal','',0,0,0,1,0,'{\"login\":[1637857709]}'),(8367,'3.17.37.226','normal','',0,0,0,1,0,'{\"login\":[1637859430]}'),(8368,'52.14.168.126','normal','',0,0,0,2,0,'{\"login\":[1637859517,1637922931]}'),(8369,'1.202.113.112','normal','',0,0,0,0,0,'[]'),(8370,'3.144.149.60','normal','',0,0,0,1,0,'{\"login\":[1637861140]}'),(8371,'3.134.79.148','normal','',0,0,0,1,0,'{\"login\":[1637862834]}'),(8372,'3.144.178.245','normal','',0,0,0,1,0,'{\"login\":[1637863086]}'),(8373,'104.244.77.122','normal','',0,0,0,0,0,'[]'),(8374,'18.119.126.145','normal','',0,0,0,1,0,'{\"login\":[1637864653]}'),(8375,'3.133.102.127','normal','',0,0,0,1,0,'{\"login\":[1637864897]}'),(8376,'3.19.241.171','normal','',0,0,0,1,0,'{\"login\":[1637866678]}'),(8377,'207.46.13.109','normal','',0,0,0,0,0,'[]'),(8378,'18.117.85.112','normal','',0,0,0,1,0,'{\"login\":[1637868713]}'),(8379,'34.124.187.110','normal','',0,0,0,2,0,'{\"login\":[1637869571,1637944912]}'),(8380,'3.17.160.183','normal','',0,0,0,1,0,'{\"login\":[1637870280]}'),(8381,'18.118.211.45','normal','',0,0,0,1,0,'{\"login\":[1637870390]}'),(8382,'18.237.224.156','normal','',0,0,0,0,0,'[]'),(8383,'18.237.224.72','normal','',0,0,0,0,0,'[]'),(8384,'54.148.249.94','normal','',0,0,0,0,0,'[]'),(8385,'34.217.115.21','normal','',0,0,0,0,0,'[]'),(8386,'54.184.197.90','normal','',0,0,0,0,0,'[]'),(8387,'18.236.222.205','normal','',0,0,0,0,0,'[]'),(8388,'54.202.116.53','normal','',0,0,0,0,0,'[]'),(8389,'3.139.79.244','normal','',0,0,0,1,0,'{\"login\":[1637871986]}'),(8390,'3.137.154.137','normal','',0,0,0,1,0,'{\"login\":[1637873895]}'),(8391,'3.144.159.210','normal','',0,0,0,1,0,'{\"login\":[1637873976]}'),(8392,'197.211.216.118','normal','',0,0,0,0,0,'[]'),(8393,'18.222.62.140','normal','',0,0,0,1,0,'{\"login\":[1637875047]}'),(8394,'18.117.93.154','normal','',0,0,0,1,0,'{\"login\":[1637875357]}'),(8395,'186.67.132.252','normal','',0,0,0,6,0,'{\"login\":[1637875441,1637913019,1638412485,1639172617,1639270575,1654512190]}'),(8396,'3.141.16.206','normal','',0,0,0,1,0,'{\"login\":[1637875817]}'),(8397,'18.119.141.217','normal','',0,0,0,1,0,'{\"login\":[1637876745]}'),(8398,'3.140.240.69','normal','',0,0,0,1,0,'{\"login\":[1637877311]}'),(8399,'18.222.231.119','normal','',0,0,0,1,0,'{\"login\":[1637879155]}'),(8400,'18.224.33.221','normal','',0,0,0,1,0,'{\"login\":[1637880070]}'),(8401,'18.191.176.61','normal','',0,0,0,1,0,'{\"login\":[1637880573]}'),(8402,'18.222.189.250','normal','',0,0,0,1,0,'{\"login\":[1637880943]}'),(8403,'108.167.132.53','normal','',0,0,0,0,1,'{\"nf\":[1637881077]}'),(8404,'18.220.148.229','normal','',0,0,0,1,0,'{\"login\":[1637881559]}'),(8405,'109.72.0.182','normal','',0,0,0,2,0,'{\"login\":[1637881740,1637933137]}'),(8406,'95.217.157.20','normal','',0,0,0,0,0,'[]'),(8407,'3.22.185.144','normal','',0,0,0,1,0,'{\"login\":[1637882725]}'),(8408,'18.220.251.27','normal','',0,0,0,1,0,'{\"login\":[1637883823]}'),(8409,'18.216.18.13','normal','',0,0,0,1,0,'{\"login\":[1637884113]}'),(8410,'3.144.177.250','normal','',0,0,0,2,0,'{\"login\":[1637885111,1638005518]}'),(8411,'3.142.92.124','normal','',0,0,0,1,0,'{\"login\":[1637885827]}'),(8412,'18.225.32.24','normal','',0,0,0,1,0,'{\"login\":[1637886826]}'),(8413,'18.221.98.113','normal','',0,0,0,1,0,'{\"login\":[1637888095]}'),(8414,'18.223.135.227','normal','',0,0,0,2,0,'{\"login\":[1637888529,1637919342]}'),(8415,'18.118.95.160','normal','',0,0,0,1,0,'{\"login\":[1637889409]}'),(8416,'18.118.173.125','normal','',0,0,0,1,0,'{\"login\":[1637889919]}'),(8417,'18.116.48.185','normal','',0,0,0,1,0,'{\"login\":[1637890562]}'),(8418,'3.145.46.194','normal','',0,0,0,1,0,'{\"login\":[1637891225]}'),(8419,'3.145.50.228','normal','',0,0,0,1,0,'{\"login\":[1637892041]}'),(8420,'3.142.240.82','normal','',0,0,0,1,0,'{\"login\":[1637893246]}'),(8421,'18.225.35.139','normal','',0,0,0,1,0,'{\"login\":[1637894240]}'),(8422,'3.17.203.255','normal','',0,0,0,1,0,'{\"login\":[1637894734]}'),(8423,'3.16.37.150','normal','',0,0,0,1,0,'{\"login\":[1637895401]}'),(8424,'18.119.140.233','normal','',0,0,0,1,0,'{\"login\":[1637896306]}'),(8425,'3.16.43.113','normal','',0,0,0,1,0,'{\"login\":[1637897982]}'),(8426,'3.22.41.105','normal','',0,0,0,1,0,'{\"login\":[1637898182]}'),(8427,'18.224.138.40','normal','',0,0,0,1,0,'{\"login\":[1637899033]}'),(8428,'3.145.56.216','normal','',0,0,0,2,0,'{\"login\":[1637899511,1638005252]}'),(8429,'18.117.146.169','normal','',0,0,0,1,0,'{\"login\":[1637900208]}'),(8430,'40.77.167.21','normal','',0,0,0,0,0,'[]'),(8431,'40.77.167.96','normal','',0,0,0,0,0,'[]'),(8432,'18.117.163.148','normal','',0,0,0,1,0,'{\"login\":[1637900666]}'),(8433,'3.140.201.50','normal','',0,0,0,1,0,'{\"login\":[1637901937]}'),(8434,'3.17.58.164','normal','',0,0,0,1,0,'{\"login\":[1637903211]}'),(8435,'18.222.249.146','normal','',0,0,0,1,0,'{\"login\":[1637903686]}'),(8436,'18.188.109.173','normal','',0,0,0,1,0,'{\"login\":[1637904366]}'),(8437,'3.128.190.1','normal','',0,0,0,1,0,'{\"login\":[1637904948]}'),(8438,'3.128.27.126','normal','',0,0,0,1,0,'{\"login\":[1637906145]}'),(8439,'3.15.38.16','normal','',0,0,0,1,0,'{\"login\":[1637907348]}'),(8440,'3.15.16.38','normal','',0,0,0,1,0,'{\"login\":[1637907871]}'),(8441,'18.218.195.0','normal','',0,0,0,1,0,'{\"login\":[1637908235]}'),(8442,'3.138.199.93','normal','',0,0,0,1,0,'{\"login\":[1637908723]}'),(8443,'13.58.248.111','normal','',0,0,0,1,0,'{\"login\":[1637908880]}'),(8444,'114.119.142.179','normal','',0,0,0,0,0,'[]'),(8445,'3.141.244.38','normal','',0,0,0,1,0,'{\"login\":[1637909593]}'),(8446,'3.143.115.217','normal','',0,0,0,1,0,'{\"login\":[1637909634]}'),(8447,'3.17.153.235','normal','',0,0,0,1,0,'{\"login\":[1637910417]}'),(8448,'13.58.113.116','normal','',0,0,0,1,0,'{\"login\":[1637911072]}'),(8449,'188.126.94.196','normal','',0,0,0,0,0,'[]'),(8450,'3.15.144.35','normal','',0,0,0,2,0,'{\"login\":[1637912409,1637984329]}'),(8451,'52.14.105.211','normal','',0,0,0,1,0,'{\"login\":[1637913293]}'),(8452,'3.143.23.59','normal','',0,0,0,1,0,'{\"login\":[1637913663]}'),(8453,'3.16.212.216','normal','',0,0,0,1,0,'{\"login\":[1637913972]}'),(8454,'52.64.156.128','normal','',0,0,0,1,0,'{\"login\":[1637914482]}'),(8455,'3.15.212.208','normal','',0,0,0,1,0,'{\"login\":[1637914520]}'),(8456,'18.223.135.234','normal','',0,0,0,1,0,'{\"login\":[1637915705]}'),(8457,'18.119.166.154','normal','',0,0,0,1,0,'{\"login\":[1637916562]}'),(8458,'52.15.222.66','normal','',0,0,0,1,0,'{\"login\":[1637917312]}'),(8459,'77.73.103.78','normal','',0,0,0,1,0,'{\"login\":[1637917380]}'),(8460,'3.16.89.19','normal','',0,0,0,1,0,'{\"login\":[1637918275]}'),(8461,'18.188.234.239','normal','',0,0,0,1,0,'{\"login\":[1637918951]}'),(8462,'159.69.25.52','normal','',0,0,0,0,0,'[]'),(8463,'3.145.39.60','normal','',0,0,0,1,0,'{\"login\":[1637919889]}'),(8464,'195.154.82.73','normal','',0,0,0,1,0,'{\"login\":[1637920446]}'),(8465,'3.137.161.174','normal','',0,0,0,2,0,'{\"login\":[1637922086,1637978911]}'),(8466,'114.119.150.38','normal','',0,0,0,0,0,'[]'),(8467,'3.129.52.49','normal','',0,0,0,1,0,'{\"login\":[1637922687]}'),(8468,'3.142.173.87','normal','',0,0,0,1,0,'{\"login\":[1637923554]}'),(8469,'3.129.218.217','normal','',0,0,0,1,0,'{\"login\":[1637924683]}'),(8470,'3.22.208.157','normal','',0,0,0,1,0,'{\"login\":[1637925613]}'),(8471,'105.185.186.182','normal','',0,0,0,0,0,'[]'),(8472,'3.144.190.18','normal','',0,0,0,1,0,'{\"login\":[1637926197]}'),(8473,'13.58.151.64','normal','',0,0,0,1,0,'{\"login\":[1637926561]}'),(8474,'157.55.39.171','normal','',0,0,0,0,0,'[]'),(8475,'18.223.117.253','normal','',0,0,0,1,0,'{\"login\":[1637927362]}'),(8476,'18.219.46.252','normal','',0,0,0,1,0,'{\"login\":[1637927760]}'),(8477,'3.17.75.168','normal','',0,0,0,1,0,'{\"login\":[1637928217]}'),(8478,'220.132.196.5','normal','',0,0,0,53,0,'{\"login\":[1637929583,1638185223,1638528705,1640189190,1640720744,1640859897,1641036258,1641072048,1641325721,1641764432,1641961766,1642104523,1642187443,1642673338,1642966728,1643020345,1643637339,1643640752,1643677269,1644101714,1644238392,1645092389,1646017615,1646601978,1647105473,1647810367,1647934827,1648123368,1648413469,1649100334,1649219138,1649229407,1649578665,1650010366,1650566342,1650593491,1650605546,1650629570,1651412482,1651577560,1652152292,1652929432,1653015369,1653391229,1654355849,1655651805,1656875297,1657185273,1657397138,1657541426,1658177336,1658310651,1658402419]}'),(8479,'18.219.66.25','normal','',0,0,0,1,0,'{\"login\":[1637930460]}'),(8480,'18.190.154.8','normal','',0,0,0,1,0,'{\"login\":[1637931048]}'),(8481,'3.139.108.75','normal','',0,0,0,1,0,'{\"login\":[1637931371]}'),(8482,'44.195.129.227','normal','',0,0,0,0,1,'{\"nf\":[1637931709]}'),(8483,'18.220.59.180','normal','',0,0,0,1,0,'{\"login\":[1637931998]}'),(8484,'18.188.61.112','normal','',0,0,0,1,0,'{\"login\":[1637933238]}'),(8485,'18.223.205.71','normal','',0,0,0,1,0,'{\"login\":[1637934292]}'),(8486,'3.144.162.109','normal','',0,0,0,1,0,'{\"login\":[1637934698]}'),(8487,'3.145.54.84','normal','',0,0,0,1,0,'{\"login\":[1637935512]}'),(8488,'18.188.64.21','normal','',0,0,0,1,0,'{\"login\":[1637936111]}'),(8489,'134.122.123.230','normal','',0,0,0,2,0,'{\"login\":[1637936424,1637981372]}'),(8490,'52.15.58.250','normal','',0,0,0,1,0,'{\"login\":[1637936841]}'),(8491,'3.14.3.150','normal','',0,0,0,1,0,'{\"login\":[1637937203]}'),(8492,'3.144.109.254','normal','',0,0,0,1,0,'{\"login\":[1637938567]}'),(8493,'18.118.200.132','normal','',0,0,0,1,0,'{\"login\":[1637939498]}'),(8494,'18.119.159.249','normal','',0,0,0,1,0,'{\"login\":[1637940283]}'),(8495,'3.128.28.124','normal','',0,0,0,1,0,'{\"login\":[1637941348]}'),(8496,'3.21.27.3','normal','',0,0,0,1,0,'{\"login\":[1637941438]}'),(8497,'188.40.176.4','normal','',0,0,0,0,2,'{\"nf\":[1637943024,1637943031]}'),(8498,'34.134.7.193','normal','',0,0,0,1,0,'{\"login\":[1637943839]}'),(8499,'3.141.43.161','normal','',0,0,0,1,0,'{\"login\":[1637944596]}'),(8500,'18.191.184.11','normal','',0,0,0,1,0,'{\"login\":[1637944919]}'),(8501,'3.133.79.68','normal','',0,0,0,1,0,'{\"login\":[1637946175]}'),(8502,'3.144.175.96','normal','',0,0,0,1,0,'{\"login\":[1637946483]}'),(8503,'18.188.38.90','normal','',0,0,0,1,0,'{\"login\":[1637946699]}'),(8504,'3.133.143.253','normal','',0,0,0,2,0,'{\"login\":[1637947817,1637989129]}'),(8505,'18.118.27.221','normal','',0,0,0,1,0,'{\"login\":[1637948065]}'),(8506,'3.137.211.129','normal','',0,0,0,1,0,'{\"login\":[1637949060]}'),(8507,'18.117.82.227','normal','',0,0,0,1,0,'{\"login\":[1637951313]}'),(8508,'3.144.34.148','normal','',0,0,0,1,0,'{\"login\":[1637951701]}'),(8509,'18.188.143.239','normal','',0,0,0,1,0,'{\"login\":[1637952937]}'),(8510,'3.15.225.131','normal','',0,0,0,1,0,'{\"login\":[1637953187]}'),(8511,'18.118.46.66','normal','',0,0,0,1,0,'{\"login\":[1637954840]}'),(8512,'13.58.247.180','normal','',0,0,0,1,0,'{\"login\":[1637955619]}'),(8513,'153.127.62.34','normal','',0,0,0,3,0,'{\"login\":[1637955882,1638356251,1638444639]}'),(8514,'13.58.3.244','normal','',0,0,0,1,0,'{\"login\":[1637956601]}'),(8515,'3.14.8.111','normal','',0,0,0,1,0,'{\"login\":[1637957119]}'),(8516,'52.14.172.93','normal','',0,0,0,1,0,'{\"login\":[1637957446]}'),(8517,'18.217.92.235','normal','',0,0,0,1,0,'{\"login\":[1637957817]}'),(8518,'18.223.3.85','normal','',0,0,0,1,0,'{\"login\":[1637958094]}'),(8519,'3.16.25.79','normal','',0,0,0,1,0,'{\"login\":[1637958693]}'),(8520,'18.216.40.187','normal','',0,0,0,1,0,'{\"login\":[1637959514]}'),(8521,'95.181.152.179','normal','',0,0,0,0,0,'[]'),(8522,'52.14.185.158','normal','',0,0,0,1,0,'{\"login\":[1637960060]}'),(8523,'3.17.37.235','normal','',0,0,0,1,0,'{\"login\":[1637961111]}'),(8524,'13.59.161.218','normal','',0,0,0,1,0,'{\"login\":[1637961544]}'),(8525,'149.28.137.4','normal','',0,0,0,2,0,'{\"login\":[1637961853,1638339238]}'),(8526,'18.221.179.77','normal','',0,0,0,1,0,'{\"login\":[1637962171]}'),(8527,'18.222.163.3','normal','',0,0,0,2,0,'{\"login\":[1637962935,1637984418]}'),(8528,'34.96.130.15','normal','',0,0,0,0,0,'[]'),(8529,'3.16.188.205','normal','',0,0,0,1,0,'{\"login\":[1637963398]}'),(8530,'3.23.97.188','normal','',0,0,0,1,0,'{\"login\":[1637964311]}'),(8531,'3.15.197.213','normal','',0,0,0,1,0,'{\"login\":[1637964915]}'),(8532,'3.128.27.134','normal','',0,0,0,2,0,'{\"login\":[1637965530,1638044150]}'),(8533,'3.144.110.254','normal','',0,0,0,1,0,'{\"login\":[1637965624]}'),(8534,'18.222.197.36','normal','',0,0,0,1,0,'{\"login\":[1637966446]}'),(8535,'18.217.110.79','normal','',0,0,0,1,0,'{\"login\":[1637966663]}'),(8536,'3.142.219.46','normal','',0,0,0,1,0,'{\"login\":[1637966774]}'),(8537,'18.217.106.127','normal','',0,0,0,1,0,'{\"login\":[1637967280]}'),(8538,'3.145.74.55','normal','',0,0,0,1,0,'{\"login\":[1637967614]}'),(8539,'3.138.189.180','normal','',0,0,0,1,0,'{\"login\":[1637968186]}'),(8540,'180.163.220.68','normal','',0,0,0,0,0,'[]'),(8541,'3.137.150.162','normal','',0,0,0,1,0,'{\"login\":[1637969632]}'),(8542,'3.16.157.83','normal','',0,0,0,1,0,'{\"login\":[1637970228]}'),(8543,'3.138.244.75','normal','',0,0,0,1,0,'{\"login\":[1637970339]}'),(8544,'3.144.83.235','normal','',0,0,0,1,0,'{\"login\":[1637971166]}'),(8545,'3.144.117.59','normal','',0,0,0,1,0,'{\"login\":[1637971862]}'),(8546,'18.219.240.42','normal','',0,0,0,1,0,'{\"login\":[1637972686]}'),(8547,'18.116.62.160','normal','',0,0,0,1,0,'{\"login\":[1637973513]}'),(8548,'3.145.66.115','normal','',0,0,0,1,0,'{\"login\":[1637973561]}'),(8549,'18.189.30.93','normal','',0,0,0,1,0,'{\"login\":[1637974265]}'),(8550,'3.136.161.237','normal','',0,0,0,1,0,'{\"login\":[1637974342]}'),(8551,'165.227.84.130','normal','',0,0,0,14,0,'{\"login\":[1637974632,1640742133,1644344764,1644419113,1644481876,1652176577,1652207846,1652218477,1652223219,1652229485,1652244235,1652832631,1652840317,1652848716]}'),(8552,'18.118.215.87','normal','',0,0,0,1,0,'{\"login\":[1637974973]}'),(8553,'18.224.16.192','normal','',0,0,0,1,0,'{\"login\":[1637975874]}'),(8554,'3.129.211.87','normal','',0,0,0,1,0,'{\"login\":[1637976614]}'),(8555,'3.129.18.96','normal','',0,0,0,1,0,'{\"login\":[1637977301]}'),(8556,'18.117.102.47','normal','',0,0,0,1,0,'{\"login\":[1637977343]}'),(8557,'188.126.79.17','normal','',0,0,0,0,0,'[]'),(8558,'3.133.87.11','normal','',0,0,0,1,0,'{\"login\":[1637978067]}'),(8559,'3.145.13.123','normal','',0,0,0,1,0,'{\"login\":[1637979738]}'),(8560,'18.188.196.169','normal','',0,0,0,1,0,'{\"login\":[1637980428]}'),(8561,'3.129.87.155','normal','',0,0,0,1,0,'{\"login\":[1637980490]}'),(8562,'3.133.117.69','normal','',0,0,0,1,0,'{\"login\":[1637981329]}'),(8563,'3.142.98.108','normal','',0,0,0,1,0,'{\"login\":[1637981366]}'),(8564,'3.144.149.98','normal','',0,0,0,1,0,'{\"login\":[1637981864]}'),(8565,'3.12.74.239','normal','',0,0,0,1,0,'{\"login\":[1637982737]}'),(8566,'18.224.6.93','normal','',0,0,0,1,0,'{\"login\":[1637983539]}'),(8567,'42.236.10.76','normal','',0,0,0,0,0,'[]'),(8568,'3.21.134.222','normal','',0,0,0,1,0,'{\"login\":[1637985086]}'),(8569,'3.144.210.96','normal','',0,0,0,1,0,'{\"login\":[1637985877]}'),(8570,'18.220.32.200','normal','',0,0,0,1,0,'{\"login\":[1637986570]}'),(8571,'18.222.49.178','normal','',0,0,0,1,0,'{\"login\":[1637987388]}'),(8572,'3.144.142.206','normal','',0,0,0,1,0,'{\"login\":[1637987424]}'),(8573,'200.152.177.20','normal','',0,0,0,1,0,'{\"login\":[1637987815]}'),(8574,'3.21.43.244','normal','',0,0,0,1,0,'{\"login\":[1637988172]}'),(8575,'18.224.172.109','normal','',0,0,0,1,0,'{\"login\":[1637989696]}'),(8576,'18.222.173.6','normal','',0,0,0,1,0,'{\"login\":[1637990557]}'),(8577,'18.225.33.114','normal','',0,0,0,1,0,'{\"login\":[1637991313]}'),(8578,'3.14.11.19','normal','',0,0,0,1,0,'{\"login\":[1637991327]}'),(8579,'18.118.173.15','normal','',0,0,0,1,0,'{\"login\":[1637991997]}'),(8580,'3.144.175.122','normal','',0,0,0,1,0,'{\"login\":[1637993327]}'),(8581,'3.145.63.212','normal','',0,0,0,1,0,'{\"login\":[1637993592]}'),(8582,'18.118.206.52','normal','',0,0,0,1,0,'{\"login\":[1637994314]}'),(8583,'3.137.41.101','normal','',0,0,0,1,0,'{\"login\":[1637994620]}'),(8584,'3.23.96.254','normal','',0,0,0,1,0,'{\"login\":[1637995157]}'),(8585,'18.119.118.216','normal','',0,0,0,1,0,'{\"login\":[1637995972]}'),(8586,'114.119.133.30','normal','',0,0,0,0,0,'[]'),(8587,'18.191.207.123','normal','',0,0,0,1,0,'{\"login\":[1637996931]}'),(8588,'13.58.9.212','normal','',0,0,0,1,0,'{\"login\":[1637997517]}'),(8589,'13.58.101.245','normal','',0,0,0,1,0,'{\"login\":[1637997804]}'),(8590,'18.217.121.253','normal','',0,0,0,1,0,'{\"login\":[1637998445]}'),(8591,'3.14.253.139','normal','',0,0,0,1,0,'{\"login\":[1637998632]}'),(8592,'18.118.137.107','normal','',0,0,0,1,0,'{\"login\":[1637999269]}'),(8593,'3.23.85.169','normal','',0,0,0,2,0,'{\"login\":[1638000200,1638014381]}'),(8594,'18.117.133.95','normal','',0,0,0,1,0,'{\"login\":[1638001201]}'),(8595,'18.221.20.149','normal','',0,0,0,1,0,'{\"login\":[1638001759]}'),(8596,'3.14.15.169','normal','',0,0,0,1,2,'{\"login\":[1638001924],\"nf\":[1640637656,1640686734]}'),(8597,'18.218.88.216','normal','',0,0,0,1,0,'{\"login\":[1638002713]}'),(8598,'18.191.1.195','normal','',0,0,0,1,0,'{\"login\":[1638003602]}'),(8599,'18.224.108.82','normal','',0,0,0,1,0,'{\"login\":[1638004643]}'),(8600,'18.188.92.207','normal','',0,0,0,1,0,'{\"login\":[1638006312]}'),(8601,'18.218.70.102','normal','',0,0,0,1,0,'{\"login\":[1638006620]}'),(8602,'3.21.228.249','normal','',0,0,0,1,0,'{\"login\":[1638007181]}'),(8603,'162.241.24.65','normal','',0,0,0,0,1,'{\"nf\":[1638007272]}'),(8604,'18.118.137.90','normal','',0,0,0,1,0,'{\"login\":[1638008248]}'),(8605,'3.17.37.124','normal','',0,0,0,1,0,'{\"login\":[1638009095]}'),(8606,'114.119.140.60','normal','',0,0,0,0,0,'[]'),(8607,'107.189.10.63','normal','',0,0,0,0,0,'[]'),(8608,'3.144.98.61','normal','',0,0,0,1,0,'{\"login\":[1638009938]}'),(8609,'18.117.238.116','normal','',0,0,0,1,0,'{\"login\":[1638010353]}'),(8610,'3.136.25.108','normal','',0,0,0,1,0,'{\"login\":[1638010887]}'),(8611,'3.17.14.131','normal','',0,0,0,1,0,'{\"login\":[1638011834]}'),(8612,'18.222.187.233','normal','',0,0,0,1,0,'{\"login\":[1638012745]}'),(8613,'18.216.128.47','normal','',0,0,0,1,0,'{\"login\":[1638013246]}'),(8614,'3.17.162.104','normal','',0,0,0,1,0,'{\"login\":[1638013752]}'),(8615,'3.139.55.220','normal','',0,0,0,1,0,'{\"login\":[1638014948]}'),(8616,'18.218.36.133','normal','',0,0,0,1,0,'{\"login\":[1638016526]}'),(8617,'52.14.97.209','normal','',0,0,0,1,0,'{\"login\":[1638017831]}'),(8618,'3.142.153.94','normal','',0,0,0,1,0,'{\"login\":[1638018273]}'),(8619,'18.219.245.135','normal','',0,0,0,1,0,'{\"login\":[1638019807]}'),(8620,'18.191.18.6','normal','',0,0,0,1,0,'{\"login\":[1638019935]}'),(8621,'3.145.75.104','normal','',0,0,0,1,0,'{\"login\":[1638021988]}'),(8622,'3.15.190.196','normal','',0,0,0,1,0,'{\"login\":[1638023945]}'),(8623,'20.197.180.116','normal','',0,0,0,0,1,'{\"nf\":[1638024201]}'),(8624,'3.143.246.56','normal','',0,0,0,2,0,'{\"login\":[1638025475,1638051931]}'),(8625,'18.188.203.109','normal','',0,0,0,1,0,'{\"login\":[1638025741]}'),(8626,'3.144.227.185','normal','',0,0,0,1,0,'{\"login\":[1638027658]}'),(8627,'3.14.248.205','normal','',0,0,0,1,0,'{\"login\":[1638027968]}'),(8628,'3.23.104.24','normal','',0,0,0,1,0,'{\"login\":[1638030438]}'),(8629,'78.142.50.93','normal','',0,0,0,0,0,'[]'),(8630,'3.88.190.86','normal','',0,0,0,1,0,'{\"login\":[1638032937]}'),(8631,'3.17.146.204','normal','',0,0,0,1,0,'{\"login\":[1638033126]}'),(8632,'27.50.84.251','normal','',0,0,0,0,0,'[]'),(8633,'3.19.143.226','normal','',0,0,0,1,0,'{\"login\":[1638035601]}'),(8634,'18.117.160.212','normal','',0,0,0,1,0,'{\"login\":[1638035942]}'),(8635,'107.178.110.109','normal','',0,0,0,0,0,'[]'),(8636,'18.219.212.87','normal','',0,0,0,1,0,'{\"login\":[1638038430]}'),(8637,'18.221.142.231','normal','',0,0,0,2,0,'{\"login\":[1638040871,1638105904]}'),(8638,'18.116.71.187','normal','',0,0,0,1,0,'{\"login\":[1638041222]}'),(8639,'197.94.32.121','normal','',0,0,0,0,0,'[]'),(8640,'185.158.115.77','normal','',0,0,0,0,0,'[]'),(8641,'185.104.44.147','normal','',0,0,0,0,0,'[]'),(8642,'3.15.190.228','normal','',0,0,0,1,0,'{\"login\":[1638043962]}'),(8643,'34.220.241.202','normal','',0,0,0,0,0,'[]'),(8644,'18.223.188.175','normal','',0,0,0,1,0,'{\"login\":[1638046379]}'),(8645,'18.188.60.86','normal','',0,0,0,2,0,'{\"login\":[1638048909,1638133403]}'),(8646,'18.188.35.228','normal','',0,0,0,1,0,'{\"login\":[1638049328]}'),(8647,'3.17.128.187','normal','',0,0,0,1,0,'{\"login\":[1638051715]}'),(8648,'3.137.208.128','normal','',0,0,0,1,0,'{\"login\":[1638054447]}'),(8649,'18.118.160.29','normal','',0,0,0,1,0,'{\"login\":[1638054911]}'),(8650,'51.159.70.42','normal','',0,0,0,0,0,'[]'),(8651,'18.217.75.143','normal','',0,0,0,1,0,'{\"login\":[1638057311]}'),(8652,'3.16.54.110','normal','',0,0,0,1,0,'{\"login\":[1638059902]}'),(8653,'3.140.201.152','normal','',0,0,0,2,0,'{\"login\":[1638060156,1638195933]}'),(8654,'91.196.124.211','normal','',0,0,0,0,0,'[]'),(8655,'18.219.178.36','normal','',0,0,0,1,0,'{\"login\":[1638062853]}'),(8656,'3.14.1.57','normal','',0,0,0,1,0,'{\"login\":[1638065302]}'),(8657,'198.54.128.140','blocked','You have been locked out due to too many invalid login attempts.',1638066049,1638065749,0,5,0,'{\"login\":[1638065747,1638065747,1638065748,1638065748,1638065749]}'),(8658,'18.216.49.232','normal','',0,0,0,1,0,'{\"login\":[1638068052]}'),(8659,'3.14.5.120','normal','',0,0,0,1,0,'{\"login\":[1638068122]}'),(8660,'34.83.166.55','normal','',0,0,0,0,9,'{\"nf\":[1638069430,1638137187,1638200175,1638200178,1641484767,1641497657,1641497660,1642453699,1643305308]}'),(8661,'173.254.30.34','normal','',0,0,0,0,0,'[]'),(8662,'18.224.2.247','normal','',0,0,0,1,0,'{\"login\":[1638070590]}'),(8663,'18.191.72.167','normal','',0,0,0,1,0,'{\"login\":[1638070833]}'),(8664,'18.224.180.130','normal','',0,0,0,1,0,'{\"login\":[1638073230]}'),(8665,'18.190.25.104','normal','',0,0,0,2,0,'{\"login\":[1638073780,1638120667]}'),(8666,'3.134.253.112','normal','',0,0,0,1,0,'{\"login\":[1638076079]}'),(8667,'69.49.231.96','normal','',0,0,0,0,1,'{\"nf\":[1638076465]}'),(8668,'3.22.117.223','normal','',0,0,0,1,0,'{\"login\":[1638078610]}'),(8669,'3.23.96.213','normal','',0,0,0,1,0,'{\"login\":[1638078798]}'),(8670,'18.188.24.39','normal','',0,0,0,1,0,'{\"login\":[1638081203]}'),(8671,'18.223.185.199','normal','',0,0,0,1,0,'{\"login\":[1638081622]}'),(8672,'3.133.95.132','normal','',0,0,0,1,0,'{\"login\":[1638084052]}'),(8673,'3.135.64.198','normal','',0,0,0,1,0,'{\"login\":[1638086642]}'),(8674,'18.191.188.78','normal','',0,0,0,1,0,'{\"login\":[1638086958]}'),(8675,'51.68.11.215','normal','',0,0,0,0,2,'{\"nf\":[1638087093,1660978945]}'),(8676,'54.36.149.11','normal','',0,0,0,0,0,'[]'),(8677,'3.12.162.142','normal','',0,0,0,3,0,'{\"login\":[1638089533,1638190463,1638204641]}'),(8678,'3.129.42.101','normal','',0,0,0,1,0,'{\"login\":[1638089943]}'),(8679,'128.81.157.36','normal','',0,0,0,0,0,'[]'),(8680,'3.131.98.226','normal','',0,0,0,1,0,'{\"login\":[1638092418]}'),(8681,'18.222.188.89','normal','',0,0,0,1,0,'{\"login\":[1638092944]}'),(8682,'18.116.19.189','normal','',0,0,0,1,0,'{\"login\":[1638095427]}'),(8683,'3.17.134.216','normal','',0,0,0,2,0,'{\"login\":[1638097888,1638115132]}'),(8684,'13.59.87.97','normal','',0,0,0,1,0,'{\"login\":[1638098323]}'),(8685,'3.22.101.193','normal','',0,0,0,1,0,'{\"login\":[1638100801]}'),(8686,'3.16.68.144','normal','',0,0,0,1,0,'{\"login\":[1638100917]}'),(8687,'18.188.56.26','normal','',0,0,0,1,0,'{\"login\":[1638101959]}'),(8688,'18.117.132.200','normal','',0,0,0,2,0,'{\"login\":[1638102923,1638229477]}'),(8689,'3.21.52.15','normal','',0,0,0,1,0,'{\"login\":[1638103391]}'),(8690,'3.144.195.198','normal','',0,0,0,1,0,'{\"login\":[1638104950]}'),(8691,'18.188.101.251','normal','',0,0,0,1,0,'{\"login\":[1638105568]}'),(8692,'3.82.195.166','normal','',0,0,0,1,0,'{\"login\":[1638105709]}'),(8693,'114.119.148.14','normal','',0,0,0,0,0,'[]'),(8694,'18.189.141.187','normal','',0,0,0,1,0,'{\"login\":[1638107406]}'),(8695,'3.136.85.41','normal','',0,0,0,1,0,'{\"login\":[1638107595]}'),(8696,'18.217.130.139','normal','',0,0,0,1,0,'{\"login\":[1638108090]}'),(8697,'3.17.174.205','normal','',0,0,0,1,0,'{\"login\":[1638108373]}'),(8698,'3.131.157.156','normal','',0,0,0,1,0,'{\"login\":[1638108899]}'),(8699,'3.15.32.200','normal','',0,0,0,2,0,'{\"login\":[1638109840,1638178550]}'),(8700,'3.145.4.50','normal','',0,0,0,1,0,'{\"login\":[1638111149]}'),(8701,'3.138.184.90','normal','',0,0,0,1,0,'{\"login\":[1638111719]}'),(8702,'3.135.209.29','normal','',0,0,0,1,0,'{\"login\":[1638112119]}'),(8703,'3.144.245.251','normal','',0,0,0,1,0,'{\"login\":[1638112700]}'),(8704,'35.189.162.74','normal','',0,0,0,0,2,'{\"nf\":[1638112785,1638112790]}'),(8705,'3.14.68.184','normal','',0,0,0,1,0,'{\"login\":[1638113913]}'),(8706,'3.131.153.62','normal','',0,0,0,1,0,'{\"login\":[1638115668]}'),(8707,'18.119.127.73','normal','',0,0,0,1,0,'{\"login\":[1638116505]}'),(8708,'18.221.62.133','normal','',0,0,0,1,0,'{\"login\":[1638116836]}'),(8709,'5.157.59.66','normal','',0,0,0,0,5,'{\"nf\":[1638117251,1638512828,1638790514,1639660175,1644841510]}'),(8710,'5.157.59.66','normal','',0,0,0,0,1,'{\"nf\":[1638117251]}'),(8711,'18.116.71.213','normal','',0,0,0,1,0,'{\"login\":[1638117625]}'),(8712,'3.131.151.93','normal','',0,0,0,1,0,'{\"login\":[1638118055]}'),(8713,'103.1.100.202','normal','',0,0,0,3,0,'{\"login\":[1638119081,1639147358,1640106660]}'),(8714,'3.21.190.170','normal','',0,0,0,1,0,'{\"login\":[1638119475]}'),(8715,'3.21.21.11','normal','',0,0,0,1,0,'{\"login\":[1638121118]}'),(8716,'18.224.23.94','normal','',0,0,0,2,0,'{\"login\":[1638121824,1638137714]}'),(8717,'3.141.13.122','normal','',0,0,0,1,0,'{\"login\":[1638122255]}'),(8718,'18.223.16.174','normal','',0,0,0,1,0,'{\"login\":[1638123531]}'),(8719,'3.23.87.24','normal','',0,0,0,1,0,'{\"login\":[1638124981]}'),(8720,'52.91.94.226','normal','',0,0,0,3,0,'{\"login\":[1638125422,1638140861,1638197528]}'),(8721,'37.9.169.7','normal','',0,0,0,0,2,'{\"nf\":[1638126020,1638509220]}'),(8722,'18.223.161.142','normal','',0,0,0,1,0,'{\"login\":[1638126043]}'),(8723,'3.16.81.204','normal','',0,0,0,1,0,'{\"login\":[1638126479]}'),(8724,'18.220.219.156','normal','',0,0,0,1,0,'{\"login\":[1638127506]}'),(8725,'3.21.97.83','normal','',0,0,0,1,0,'{\"login\":[1638127800]}'),(8726,'18.117.243.210','normal','',0,0,0,1,0,'{\"login\":[1638128910]}'),(8727,'3.17.5.48','normal','',0,0,0,1,0,'{\"login\":[1638130304]}'),(8728,'52.38.7.226','normal','',0,0,0,0,0,'[]'),(8729,'52.11.64.247','normal','',0,0,0,0,0,'[]'),(8730,'54.213.211.50','normal','',0,0,0,0,0,'[]'),(8731,'18.217.147.21','normal','',0,0,0,1,0,'{\"login\":[1638131063]}'),(8732,'18.223.155.131','normal','',0,0,0,1,0,'{\"login\":[1638131727]}'),(8733,'3.143.221.81','normal','',0,0,0,1,0,'{\"login\":[1638132134]}'),(8734,'92.205.12.81','normal','',0,0,0,0,1,'{\"nf\":[1638134497]}'),(8735,'18.222.220.65','normal','',0,0,0,1,0,'{\"login\":[1638134897]}'),(8736,'18.225.5.151','normal','',0,0,0,1,0,'{\"login\":[1638135455]}'),(8737,'18.223.116.174','normal','',0,0,0,1,0,'{\"login\":[1638136292]}'),(8738,'18.216.9.75','normal','',0,0,0,2,0,'{\"login\":[1638136811,1638250519]}'),(8739,'18.219.28.128','normal','',0,0,0,1,0,'{\"login\":[1638138165]}'),(8740,'3.15.234.4','normal','',0,0,0,1,0,'{\"login\":[1638139518]}'),(8741,'13.59.44.21','normal','',0,0,0,1,0,'{\"login\":[1638141399]}'),(8742,'3.18.107.140','normal','',0,0,0,2,0,'{\"login\":[1638142237,1638183724]}'),(8743,'18.191.129.204','normal','',0,0,0,1,0,'{\"login\":[1638142663]}'),(8744,'50.31.80.25','normal','',0,0,0,0,0,'[]'),(8745,'18.118.25.98','normal','',0,0,0,1,0,'{\"login\":[1638144118]}'),(8746,'185.154.53.7','normal','',0,0,0,0,0,'[]'),(8747,'18.116.112.229','normal','',0,0,0,1,0,'{\"login\":[1638145489]}'),(8748,'18.191.170.243','normal','',0,0,0,2,0,'{\"login\":[1638145818,1638241085]}'),(8749,'3.145.38.10','normal','',0,0,0,1,0,'{\"login\":[1638146829]}'),(8750,'18.220.108.221','normal','',0,0,0,1,0,'{\"login\":[1638146833]}'),(8751,'3.16.136.71','normal','',0,0,0,1,0,'{\"login\":[1638148379]}'),(8752,'18.191.144.11','normal','',0,0,0,1,0,'{\"login\":[1638148575]}'),(8753,'18.188.211.84','normal','',0,0,0,1,0,'{\"login\":[1638150131]}'),(8754,'51.195.42.19','normal','',0,0,0,17,0,'{\"login\":[1638150414,1638532225,1638992699,1639246506,1639591819,1639681548,1646568271,1647028414,1647199234,1647351312,1647506105,1647713853,1647719768,1648270614,1649533845,1649537605,1649811092]}'),(8755,'3.144.118.152','normal','',0,0,0,1,0,'{\"login\":[1638151463]}'),(8756,'18.218.134.152','normal','',0,0,0,1,0,'{\"login\":[1638152033]}'),(8757,'3.144.111.222','normal','',0,0,0,1,0,'{\"login\":[1638152857]}'),(8758,'3.14.251.18','normal','',0,0,0,1,0,'{\"login\":[1638154761]}'),(8759,'3.133.93.106','normal','',0,0,0,2,0,'{\"login\":[1638156056,1638203035]}'),(8760,'3.144.97.154','normal','',0,0,0,1,0,'{\"login\":[1638156644]}'),(8761,'3.128.160.103','normal','',0,0,0,1,0,'{\"login\":[1638157547]}'),(8762,'18.119.126.63','normal','',0,0,0,1,0,'{\"login\":[1638157979]}'),(8763,'46.4.105.172','normal','',0,0,0,0,1,'{\"nf\":[1638159030]}'),(8764,'18.217.119.28','normal','',0,0,0,1,0,'{\"login\":[1638159356]}'),(8765,'3.135.230.1','normal','',0,0,0,1,0,'{\"login\":[1638160898]}'),(8766,'3.139.107.251','normal','',0,0,0,3,0,'{\"login\":[1638161128,1638227537,1638235211]}'),(8767,'3.141.30.250','normal','',0,0,0,2,0,'{\"login\":[1638162272,1638180856]}'),(8768,'18.117.238.23','normal','',0,0,0,1,0,'{\"login\":[1638162665]}'),(8769,'18.191.40.231','normal','',0,0,0,1,0,'{\"login\":[1638163816]}'),(8770,'18.119.29.142','normal','',0,0,0,1,0,'{\"login\":[1638164081]}'),(8771,'3.144.18.80','normal','',0,0,0,1,0,'{\"login\":[1638165656]}'),(8772,'3.142.82.23','normal','',0,0,0,1,0,'{\"login\":[1638167069]}'),(8773,'3.142.240.227','normal','',0,0,0,1,0,'{\"login\":[1638167317]}'),(8774,'3.141.29.216','normal','',0,0,0,1,0,'{\"login\":[1638168565]}'),(8775,'18.118.86.99','normal','',0,0,0,1,0,'{\"login\":[1638169030]}'),(8776,'51.158.127.119','normal','',0,0,0,0,0,'[]'),(8777,'3.16.108.37','normal','',0,0,0,1,0,'{\"login\":[1638170597]}'),(8778,'18.191.240.0','normal','',0,0,0,1,0,'{\"login\":[1638172019]}'),(8779,'18.222.104.183','normal','',0,0,0,1,0,'{\"login\":[1638172431]}'),(8780,'3.133.146.45','normal','',0,0,0,1,0,'{\"login\":[1638173678]}'),(8781,'18.219.142.38','normal','',0,0,0,1,0,'{\"login\":[1638174313]}'),(8782,'163.172.238.161','normal','',0,0,0,0,1,'{\"nf\":[1638174792]}'),(8783,'18.191.227.126','normal','',0,0,0,1,0,'{\"login\":[1638175127]}'),(8784,'18.116.165.10','normal','',0,0,0,1,0,'{\"login\":[1638175421]}'),(8785,'195.67.74.174','normal','',0,0,0,13,0,'{\"login\":[1638175881,1639559503,1639740601,1640341322,1640868146,1641401781,1641718016,1641751205,1641813947,1642056979,1642118365,1642170814,1642885533]}'),(8786,'108.178.39.50','normal','',0,0,0,0,0,'[]'),(8787,'3.145.1.193','normal','',0,0,0,1,0,'{\"login\":[1638177110]}'),(8788,'13.59.126.68','normal','',0,0,0,1,0,'{\"login\":[1638178844]}'),(8789,'20.37.127.214','normal','',0,0,0,11,0,'{\"login\":[1638179495,1639027263,1639692902,1639987610,1640291843,1640299413,1640493210,1640499217,1640795733,1641713484,1641804367]}'),(8790,'3.144.18.70','normal','',0,0,0,1,0,'{\"login\":[1638180027]}'),(8791,'157.245.217.209','normal','',0,0,0,4,0,'{\"login\":[1638180827,1639555902,1640369639,1640710763]}'),(8792,'3.12.76.126','normal','',0,0,0,1,0,'{\"login\":[1638181844]}'),(8793,'18.219.223.23','normal','',0,0,0,1,0,'{\"login\":[1638183444]}'),(8794,'3.15.156.32','normal','',0,0,0,1,0,'{\"login\":[1638184928]}'),(8795,'18.219.101.168','normal','',0,0,0,1,0,'{\"login\":[1638185315]}'),(8796,'18.191.144.102','normal','',0,0,0,1,0,'{\"login\":[1638186644]}'),(8797,'18.116.60.137','normal','',0,0,0,2,0,'{\"login\":[1638187001,1638214225]}'),(8798,'198.98.62.6','normal','',0,0,0,0,0,'[]'),(8799,'13.59.67.111','normal','',0,0,0,1,0,'{\"login\":[1638188728]}'),(8800,'3.143.226.249','normal','',0,0,0,1,0,'{\"login\":[1638190178]}'),(8801,'197.229.1.202','normal','',0,0,0,0,0,'[]'),(8802,'18.118.20.126','normal','',0,0,0,1,0,'{\"login\":[1638192012]}'),(8803,'18.188.26.145','normal','',0,0,0,1,0,'{\"login\":[1638192149]}'),(8804,'147.182.192.77','normal','',0,0,0,3,0,'{\"login\":[1638193698,1640081290,1640557259]}'),(8805,'3.19.70.24','normal','',0,0,0,1,0,'{\"login\":[1638193805]}'),(8806,'18.221.106.192','normal','',0,0,0,1,0,'{\"login\":[1638195611]}'),(8807,'119.8.119.224','normal','',0,0,0,18,0,'{\"login\":[1638196968,1639388788,1639399853,1639665208,1640426125,1640470228,1640623023,1640654831,1640865178,1641954462,1642078149,1642081031,1642137265,1642452117,1643022410,1644120165,1644250086,1645218769]}'),(8808,'18.118.3.81','normal','',0,0,0,1,0,'{\"login\":[1638197468]}'),(8809,'18.118.194.140','normal','',0,0,0,2,0,'{\"login\":[1638199171,1638252615]}'),(8810,'18.218.180.234','normal','',0,0,0,1,0,'{\"login\":[1638199370]}'),(8811,'159.65.238.248','normal','',0,0,0,5,0,'{\"login\":[1638201023,1638614060,1638752239,1638770182,1638776950]}'),(8812,'18.219.14.38','normal','',0,0,0,1,0,'{\"login\":[1638201119]}'),(8813,'18.222.130.160','normal','',0,0,0,2,0,'{\"login\":[1638203013,1638261640]}'),(8814,'3.21.37.192','normal','',0,0,0,1,0,'{\"login\":[1638204852]}'),(8815,'176.9.91.103','normal','',0,0,0,10,0,'{\"login\":[1638206698,1638508579,1638531527,1638814601,1639261348,1639769439,1640362845,1640735297,1640964095,1641013380]}'),(8816,'18.220.217.189','normal','',0,0,0,1,0,'{\"login\":[1638206799]}'),(8817,'162.241.225.165','normal','',0,0,0,0,0,'[]'),(8818,'18.224.170.152','normal','',0,0,0,1,0,'{\"login\":[1638208635]}'),(8819,'18.223.196.94','normal','',0,0,0,1,0,'{\"login\":[1638208663]}'),(8820,'3.138.122.190','normal','',0,0,0,1,0,'{\"login\":[1638210289]}'),(8821,'18.218.240.156','normal','',0,0,0,1,0,'{\"login\":[1638210497]}'),(8822,'3.140.252.133','normal','',0,0,0,2,0,'{\"login\":[1638212271,1638240814]}'),(8823,'3.16.147.41','normal','',0,0,0,1,0,'{\"login\":[1638214037]}'),(8824,'185.87.252.43','normal','',0,0,0,0,2,'{\"nf\":[1638214985,1639147533]}'),(8825,'3.14.129.66','normal','',0,0,0,1,0,'{\"login\":[1638215859]}'),(8826,'13.58.99.87','normal','',0,0,0,1,0,'{\"login\":[1638216066]}'),(8827,'18.236.214.98','normal','',0,0,0,0,0,'[]'),(8828,'3.16.164.44','normal','',0,0,0,1,0,'{\"login\":[1638217827]}'),(8829,'3.16.180.239','normal','',0,0,0,1,0,'{\"login\":[1638217912]}'),(8830,'114.119.139.134','normal','',0,0,0,0,0,'[]'),(8831,'3.14.4.179','normal','',0,0,0,1,0,'{\"login\":[1638219917]}'),(8832,'3.145.58.86','normal','',0,0,0,1,0,'{\"login\":[1638221746]}'),(8833,'18.117.192.39','normal','',0,0,0,1,0,'{\"login\":[1638221869]}'),(8834,'138.68.238.253','normal','',0,0,0,0,0,'[]'),(8835,'3.129.249.56','normal','',0,0,0,1,0,'{\"login\":[1638223558]}'),(8836,'18.116.82.27','normal','',0,0,0,1,0,'{\"login\":[1638223700]}'),(8837,'207.180.216.107','normal','',0,0,0,0,1,'{\"nf\":[1638224551]}'),(8838,'3.145.50.38','normal','',0,0,0,1,0,'{\"login\":[1638225622]}'),(8839,'108.179.209.130','normal','',0,0,0,0,5,'{\"nf\":[1638227302,1638227354,1638227432,1642251473,1642251556]}'),(8840,'3.20.238.114','normal','',0,0,0,1,0,'{\"login\":[1638227711]}'),(8841,'3.144.18.76','normal','',0,0,0,1,0,'{\"login\":[1638229509]}'),(8842,'3.12.123.50','normal','',0,0,0,1,0,'{\"login\":[1638231178]}'),(8843,'3.14.128.4','normal','',0,0,0,1,0,'{\"login\":[1638231374]}'),(8844,'114.119.140.84','normal','',0,0,0,0,0,'[]'),(8845,'52.15.136.39','normal','',0,0,0,1,0,'{\"login\":[1638233328]}'),(8846,'52.14.33.252','normal','',0,0,0,0,1,'{\"nf\":[1638233395]}'),(8847,'52.14.59.124','normal','',0,0,0,1,0,'{\"login\":[1638235047]}'),(8848,'3.16.57.47','normal','',0,0,0,1,0,'{\"login\":[1638236975]}'),(8849,'3.144.214.63','normal','',0,0,0,1,0,'{\"login\":[1638237082]}'),(8850,'18.117.185.246','normal','',0,0,0,1,0,'{\"login\":[1638238925]}'),(8851,'18.116.163.184','normal','',0,0,0,1,0,'{\"login\":[1638242637]}'),(8852,'3.86.16.142','normal','',0,0,0,1,0,'{\"login\":[1638243275]}'),(8853,'3.23.96.65','normal','',0,0,0,1,0,'{\"login\":[1638244607]}'),(8854,'18.212.30.38','normal','',0,0,0,1,0,'{\"login\":[1638244962]}'),(8855,'13.57.19.185','normal','',0,0,0,0,0,'[]'),(8856,'3.145.34.231','normal','',0,0,0,1,0,'{\"login\":[1638246529]}'),(8857,'3.17.130.77','normal','',0,0,0,1,0,'{\"login\":[1638248546]}'),(8858,'3.14.130.116','normal','',0,0,0,1,0,'{\"login\":[1638248653]}'),(8859,'3.143.253.123','normal','',0,0,0,1,0,'{\"login\":[1638254886]}'),(8860,'52.15.245.123','normal','',0,0,0,1,0,'{\"login\":[1638255252]}'),(8861,'3.145.76.216','normal','',0,0,0,1,0,'{\"login\":[1638258034]}'),(8862,'18.118.148.242','normal','',0,0,0,1,0,'{\"login\":[1638258630]}'),(8863,'3.128.31.61','normal','',0,0,0,1,0,'{\"login\":[1638262828]}'),(8864,'18.116.60.248','normal','',0,0,0,1,0,'{\"login\":[1638265897]}'),(8865,'136.243.18.223','normal','',0,0,0,4,0,'{\"login\":[1638266664,1638481690,1638498721,1638940374]}'),(8866,'185.67.34.1','normal','',0,0,0,0,3,'{\"nf\":[1638268450,1638268454,1638268458]}'),(8867,'18.117.230.204','normal','',0,0,0,2,0,'{\"login\":[1638269325,1638307144]}'),(8868,'3.14.146.22','normal','',0,0,0,1,0,'{\"login\":[1638270685]}'),(8869,'92.204.221.12','normal','',0,0,0,0,1,'{\"nf\":[1638273533]}'),(8870,'23.146.242.186','normal','',0,0,0,0,10,'{\"nf\":[1638275580,1638275583,1638275587,1638275591,1638275594,1638275598,1638275603,1638275607,1638275610,1638275613]}'),(8871,'3.17.165.220','normal','',0,0,0,1,0,'{\"login\":[1638275833]}'),(8872,'173.252.79.112','normal','',0,0,0,0,0,'[]'),(8873,'173.252.79.1','normal','',0,0,0,0,0,'[]'),(8874,'197.94.210.226','normal','',0,0,0,0,0,'[]'),(8875,'3.22.169.88','normal','',0,0,0,1,0,'{\"login\":[1638281122]}'),(8876,'3.129.89.118','normal','',0,0,0,2,0,'{\"login\":[1638286487,1638289713]}'),(8877,'176.53.218.44','normal','',0,0,0,0,0,'[]'),(8878,'5.2.89.15','normal','',0,0,0,0,5,'{\"nf\":[1638295131,1645507369,1645547716,1646070393,1646338918]}'),(8879,'3.12.198.44','normal','',0,0,0,1,0,'{\"login\":[1638296332]}'),(8880,'89.104.111.67','normal','',0,0,0,0,0,'[]'),(8881,'176.53.216.85','normal','',0,0,0,0,0,'[]'),(8882,'89.104.100.200','normal','',0,0,0,0,0,'[]'),(8883,'197.95.135.83','normal','',0,0,0,0,0,'[]'),(8884,'3.16.82.197','normal','',0,0,0,2,0,'{\"login\":[1638300598,1638313805]}'),(8885,'54.188.186.22','normal','',0,0,0,0,0,'[]'),(8886,'157.55.39.216','normal','',0,0,0,0,0,'[]'),(8887,'54.244.168.83','normal','',0,0,0,0,0,'[]'),(8888,'54.191.166.20','normal','',0,0,0,0,0,'[]'),(8889,'14.202.170.226','normal','',0,0,0,1,0,'{\"login\":[1638305814]}'),(8890,'114.119.132.173','normal','',0,0,0,0,0,'[]'),(8891,'49.12.108.63','normal','',0,0,0,0,20,'{\"nf\":[1638307717,1638307719,1638307720,1638307720,1638307721,1638307724,1638307727,1638307728,1638307729,1638307729,1638307730,1638307731,1638307732,1638307732,1638307734,1638307734,1638307735,1638307735,1638307737,1638307738]}'),(8892,'159.203.81.134','normal','',0,0,0,4,0,'{\"login\":[1638315798,1638923434,1638938574,1639970546]}'),(8893,'114.119.133.78','normal','',0,0,0,0,0,'[]'),(8894,'3.142.69.179','normal','',0,0,0,1,0,'{\"login\":[1638319019]}'),(8895,'159.203.105.46','normal','',0,0,0,1,0,'{\"login\":[1638322364]}'),(8896,'34.90.227.223','normal','',0,0,0,1,0,'{\"login\":[1638325823]}'),(8897,'103.101.161.52','normal','',0,0,0,1,0,'{\"login\":[1640429207]}'),(8898,'187.73.33.9','normal','',0,0,0,0,3,'{\"nf\":[1638339225,1639072008,1639072010]}'),(8899,'54.213.221.218','normal','',0,0,0,0,0,'[]'),(8900,'103.150.221.228','normal','',0,0,0,0,0,'[]'),(8901,'105.184.111.153','normal','',0,0,0,0,1,'{\"nf\":[1638344806]}'),(8902,'58.61.241.150','normal','',0,0,0,0,0,'[]'),(8903,'192.249.118.57','normal','',0,0,0,0,0,'[]'),(8904,'77.111.247.22','normal','',0,0,0,0,1,'{\"nf\":[1638360560]}'),(8905,'77.111.247.43','normal','',0,0,0,0,1,'{\"nf\":[1638360560]}'),(8906,'77.111.247.5','normal','',0,0,0,0,1,'{\"nf\":[1638360560]}'),(8907,'77.111.247.50','normal','',0,0,0,0,2,'{\"nf\":[1638360560,1653465933]}'),(8908,'41.180.90.74','normal','',0,0,0,0,0,'[]'),(8909,'65.154.226.165','normal','',0,0,0,0,0,'[]'),(8910,'182.50.151.17','normal','',0,0,0,0,1,'{\"nf\":[1638380368]}'),(8911,'176.53.220.37','normal','',0,0,0,0,0,'[]'),(8912,'176.113.43.185','normal','',0,0,0,0,0,'[]'),(8913,'45.90.63.190','normal','',0,0,0,0,0,'[]'),(8914,'176.53.221.148','normal','',0,0,0,0,0,'[]'),(8915,'128.199.205.101','normal','',0,0,0,0,1,'{\"nf\":[1638385420]}'),(8916,'103.148.155.16','normal','',0,0,0,1,0,'{\"login\":[1638387536]}'),(8917,'35.87.39.86','normal','',0,0,0,0,0,'[]'),(8918,'52.89.48.98','normal','',0,0,0,0,0,'[]'),(8919,'34.212.55.24','normal','',0,0,0,0,0,'[]'),(8920,'88.99.70.181','normal','',0,0,0,6,0,'{\"login\":[1638391692,1638468393,1638474228,1638484810,1638703837,1638900855]}'),(8921,'207.180.213.165','normal','',0,0,0,10,0,'{\"login\":[1638392903,1638865093,1639587898,1640020692,1641125578,1641233690,1641321484,1641360816,1641711377,1641872503]}'),(8922,'5.189.133.114','normal','',0,0,0,24,0,'{\"login\":[1638393965,1638485325,1638529411,1639517248,1639848826,1640359400,1640996562,1641136642,1641240964,1641303028,1641420849,1641505110,1641517856,1641824447,1642429136,1642453018,1642455656,1642545171,1643056772,1643487575,1643525109,1643560967,1643615709,1643738164]}'),(8923,'64.225.18.166','normal','',0,0,0,0,0,'[]'),(8924,'105.187.34.222','normal','',0,0,0,0,0,'[]'),(8925,'103.28.36.106','normal','',0,0,0,0,1,'{\"nf\":[1638394866]}'),(8926,'162.241.85.214','normal','',0,0,0,0,1,'{\"nf\":[1638403098]}'),(8927,'149.86.129.133','normal','',0,0,0,2,0,'{\"login\":[1638405801,1640868780]}'),(8928,'114.119.134.51','normal','',0,0,0,0,0,'[]'),(8929,'42.236.10.77','normal','',0,0,0,0,0,'[]'),(8930,'69.160.160.59','normal','',0,0,0,0,1,'{\"nf\":[1638414270]}'),(8931,'198.211.115.226','normal','',0,0,0,1,0,'{\"login\":[1638418480]}'),(8932,'186.234.80.122','normal','',0,0,0,1,0,'{\"login\":[1638420580]}'),(8933,'163.44.185.73','normal','',0,0,0,0,1,'{\"nf\":[1638421946]}'),(8934,'41.193.122.228','normal','',0,0,0,0,0,'[]'),(8935,'114.119.151.197','normal','',0,0,0,0,0,'[]'),(8936,'207.46.13.234','normal','',0,0,0,0,0,'[]'),(8937,'54.38.46.147','normal','',0,0,0,1,0,'{\"login\":[1638425656]}'),(8938,'35.223.249.133','normal','',0,0,0,1,0,'{\"login\":[1638426198]}'),(8939,'197.94.32.53','normal','',0,0,0,0,0,'[]'),(8940,'186.234.80.35','normal','',0,0,0,1,0,'{\"login\":[1638428894]}'),(8941,'91.151.89.181','normal','',0,0,0,0,3,'{\"nf\":[1638433578,1640655678,1640655681]}'),(8942,'8.210.158.38','normal','',0,0,0,2,0,'{\"login\":[1638437589,1653977615]}'),(8943,'173.230.129.142','normal','',0,0,0,0,3,'{\"nf\":[1638449775,1638449776,1638449797]}'),(8944,'173.230.129.142','normal','',0,0,0,0,1,'{\"nf\":[1638449775]}'),(8945,'173.230.129.142','normal','',0,0,0,0,1,'{\"nf\":[1638449775]}'),(8946,'173.230.129.142','normal','',0,0,0,0,1,'{\"nf\":[1638449775]}'),(8947,'35.202.150.249','normal','',0,0,0,4,0,'{\"login\":[1638451122,1640576626,1641101756,1642327529]}'),(8948,'105.184.149.160','normal','',0,0,0,0,0,'[]'),(8949,'18.222.108.85','normal','',0,0,0,1,0,'{\"login\":[1638461255]}'),(8950,'114.55.138.75','normal','',0,0,0,2,0,'{\"login\":[1638464110,1638730396]}'),(8951,'34.147.48.161','normal','',0,0,0,2,0,'{\"login\":[1638466533,1638521018]}'),(8952,'208.87.134.124','normal','',0,0,0,1,0,'{\"login\":[1638469841]}'),(8953,'183.253.80.99','normal','',0,0,0,0,0,'[]'),(8954,'194.32.107.70','normal','',0,0,0,0,0,'[]'),(8955,'54.151.170.118','normal','',0,0,0,3,0,'{\"login\":[1638477250,1638487874,1638931618]}'),(8956,'34.221.55.22','normal','',0,0,0,0,0,'[]'),(8957,'154.21.208.145','normal','',0,0,0,0,0,'[]'),(8958,'47.254.178.197','normal','',0,0,0,7,0,'{\"login\":[1638486239,1638508354,1638898706,1638915384,1638918366,1639967786,1640830777]}'),(8959,'198.71.231.17','normal','',0,0,0,0,0,'[]'),(8960,'3.25.198.121','normal','',0,0,0,2,0,'{\"login\":[1638490888,1638697260]}'),(8961,'193.148.16.254','blocked','You have been locked out due to too many invalid login attempts.',1638492195,1638491895,0,5,0,'{\"login\":[1638491893,1638491893,1638491894,1638491894,1638491895]}'),(8962,'139.59.4.45','normal','',0,0,0,4,0,'{\"login\":[1638497693,1639165425,1640855663,1640916560]}'),(8963,'198.52.97.144','normal','',0,0,0,1,0,'{\"login\":[1638498403]}'),(8964,'167.99.138.106','normal','',0,0,0,7,0,'{\"login\":[1638499117,1639639831,1639813616,1640422243,1641012388,1641286067,1642075185]}'),(8965,'114.119.148.105','normal','',0,0,0,0,0,'[]'),(8966,'142.93.219.131','normal','',0,0,0,2,0,'{\"login\":[1639620757,1640801075]}'),(8967,'35.247.181.50','normal','',0,0,0,2,0,'{\"login\":[1638505131,1638905842]}'),(8968,'35.157.153.210','normal','',0,0,0,0,0,'[]'),(8969,'207.46.13.200','normal','',0,0,0,0,0,'[]'),(8970,'206.81.7.35','normal','',0,0,0,16,0,'{\"login\":[1638509844,1638700520,1638743597,1638911531,1640763023,1640773354,1640888731,1641591692,1642759304,1644441035,1644450660,1644499014,1645707308,1646089145,1647308641,1648153345]}'),(8971,'34.73.232.4','normal','',0,0,0,1,0,'{\"login\":[1638511594]}'),(8972,'165.22.193.8','normal','',0,0,0,3,0,'{\"login\":[1638516155,1641231290,1642166379]}'),(8973,'41.193.221.50','normal','',0,0,0,0,0,'[]'),(8974,'162.241.219.14','normal','',0,0,0,0,1,'{\"nf\":[1638533314]}'),(8975,'93.158.92.232','normal','',0,0,0,0,1,'{\"nf\":[1642406347]}'),(8976,'93.158.92.215','normal','',0,0,0,0,0,'[]'),(8977,'93.158.92.218','normal','',0,0,0,0,1,'{\"nf\":[1638545111]}'),(8978,'93.158.92.237','normal','',0,0,0,0,2,'{\"nf\":[1638545112,1640046737]}'),(8979,'5.39.84.56','normal','',0,0,0,0,1,'{\"nf\":[1638549187]}'),(8980,'143.137.191.207','normal','',0,0,0,0,0,'[]'),(8981,'72.167.190.64','normal','',0,0,0,0,0,'[]'),(8982,'47.104.235.50','normal','',0,0,0,0,0,'[]'),(8983,'72.4.143.116','normal','',0,0,0,0,0,'[]'),(8984,'185.87.109.34','normal','',0,0,0,0,0,'[]'),(8985,'185.87.109.34','normal','',0,0,0,0,0,'[]'),(8986,'176.227.172.95','normal','',0,0,0,0,0,'[]'),(8987,'66.232.124.250','normal','',0,0,0,0,0,'[]'),(8988,'200.58.111.40','normal','',0,0,0,0,0,'[]'),(8989,'66.175.216.151','normal','',0,0,0,0,0,'[]'),(8990,'20.101.106.180','normal','',0,0,0,0,0,'[]'),(8991,'89.46.106.229','normal','',0,0,0,0,0,'[]'),(8992,'89.46.106.229','normal','',0,0,0,0,0,'[]'),(8993,'175.138.4.133','normal','',0,0,0,0,0,'[]'),(8994,'103.63.213.13','normal','',0,0,0,0,0,'[]'),(8995,'52.87.215.236','normal','',0,0,0,0,1,'{\"nf\":[1638554004]}'),(8996,'34.209.210.194','normal','',0,0,0,0,0,'[]'),(8997,'114.119.140.239','normal','',0,0,0,0,0,'[]'),(8998,'18.222.202.121','normal','',0,0,0,1,0,'{\"login\":[1638578422]}'),(8999,'13.59.5.226','normal','',0,0,0,1,0,'{\"login\":[1638579038]}'),(9000,'3.133.85.12','normal','',0,0,0,1,0,'{\"login\":[1638580045]}'),(9001,'18.222.85.109','normal','',0,0,0,1,0,'{\"login\":[1638580419]}'),(9002,'3.145.114.156','normal','',0,0,0,1,0,'{\"login\":[1638581250]}'),(9003,'34.219.104.155','normal','',0,0,0,1,0,'{\"login\":[1638582056]}'),(9004,'34.212.139.48','normal','',0,0,0,1,0,'{\"login\":[1638582361]}'),(9005,'69.163.199.161','normal','',0,0,0,0,0,'[]'),(9006,'18.218.227.62','normal','',0,0,0,1,0,'{\"login\":[1638583069]}'),(9007,'18.222.188.221','normal','',0,0,0,1,0,'{\"login\":[1638583250]}'),(9008,'18.191.142.17','normal','',0,0,0,1,0,'{\"login\":[1638583934]}'),(9009,'3.144.223.106','normal','',0,0,0,1,0,'{\"login\":[1638585373]}'),(9010,'3.128.205.134','normal','',0,0,0,1,0,'{\"login\":[1638585406]}'),(9011,'3.86.93.60','normal','',0,0,0,1,0,'{\"login\":[1638586053]}'),(9012,'18.221.182.131','normal','',0,0,0,1,0,'{\"login\":[1638586385]}'),(9013,'3.140.208.216','normal','',0,0,0,1,0,'{\"login\":[1638586689]}'),(9014,'18.219.249.5','normal','',0,0,0,1,0,'{\"login\":[1638586818]}'),(9015,'18.219.36.177','normal','',0,0,0,1,0,'{\"login\":[1638587343]}'),(9016,'52.90.85.236','normal','',0,0,0,1,0,'{\"login\":[1638588299]}'),(9017,'3.145.124.193','normal','',0,0,0,1,0,'{\"login\":[1638589194]}'),(9018,'54.36.148.176','normal','',0,0,0,0,0,'[]'),(9019,'18.191.220.3','normal','',0,0,0,1,0,'{\"login\":[1638589739]}'),(9020,'18.222.31.37','normal','',0,0,0,1,0,'{\"login\":[1638590159]}'),(9021,'52.91.97.237','normal','',0,0,0,1,0,'{\"login\":[1638591794]}'),(9022,'3.144.132.173','normal','',0,0,0,1,0,'{\"login\":[1638592632]}'),(9023,'3.95.163.206','normal','',0,0,0,2,0,'{\"login\":[1638592911,1638692651]}'),(9024,'3.140.195.62','normal','',0,0,0,1,0,'{\"login\":[1638593714]}'),(9025,'18.219.240.86','normal','',0,0,0,1,0,'{\"login\":[1638594727]}'),(9026,'3.134.83.205','normal','',0,0,0,1,0,'{\"login\":[1638594882]}'),(9027,'3.145.5.181','normal','',0,0,0,1,0,'{\"login\":[1638595281]}'),(9028,'3.145.81.206','normal','',0,0,0,1,0,'{\"login\":[1638596738]}'),(9029,'3.94.57.162','normal','',0,0,0,1,0,'{\"login\":[1638597710]}'),(9030,'18.218.124.187','normal','',0,0,0,1,0,'{\"login\":[1638598152]}'),(9031,'3.17.175.163','normal','',0,0,0,1,0,'{\"login\":[1638599027]}'),(9032,'18.224.93.207','normal','',0,0,0,1,0,'{\"login\":[1638599328]}'),(9033,'18.188.72.24','normal','',0,0,0,1,0,'{\"login\":[1638601140]}'),(9034,'3.137.153.250','normal','',0,0,0,1,0,'{\"login\":[1638602014]}'),(9035,'18.224.27.95','normal','',0,0,0,1,0,'{\"login\":[1638602170]}'),(9036,'18.220.254.196','normal','',0,0,0,1,0,'{\"login\":[1638603211]}'),(9037,'18.117.228.235','normal','',0,0,0,1,0,'{\"login\":[1638603441]}'),(9038,'18.188.110.77','normal','',0,0,0,1,0,'{\"login\":[1638604749]}'),(9039,'3.137.174.4','normal','',0,0,0,1,0,'{\"login\":[1638605077]}'),(9040,'18.116.10.2','normal','',0,0,0,1,0,'{\"login\":[1638606530]}'),(9041,'3.133.139.136','normal','',0,0,0,1,0,'{\"login\":[1638607917]}'),(9042,'54.152.217.92','normal','',0,0,0,1,0,'{\"login\":[1638608403]}'),(9043,'3.141.1.6','normal','',0,0,0,1,0,'{\"login\":[1638609330]}'),(9044,'18.219.161.153','normal','',0,0,0,1,0,'{\"login\":[1638609822]}'),(9045,'3.14.7.248','normal','',0,0,0,1,0,'{\"login\":[1638611077]}'),(9046,'18.191.247.183','normal','',0,0,0,1,0,'{\"login\":[1638612313]}'),(9047,'3.144.181.10','normal','',0,0,0,1,0,'{\"login\":[1638612919]}'),(9048,'3.84.91.217','normal','',0,0,0,1,0,'{\"login\":[1638613939]}'),(9049,'3.144.242.56','normal','',0,0,0,1,0,'{\"login\":[1638614584]}'),(9050,'13.58.52.126','normal','',0,0,0,1,0,'{\"login\":[1638615936]}'),(9051,'18.119.108.97','normal','',0,0,0,1,0,'{\"login\":[1638616296]}'),(9052,'3.144.154.111','normal','',0,0,0,1,0,'{\"login\":[1638617406]}'),(9053,'18.219.27.232','normal','',0,0,0,1,0,'{\"login\":[1638617549]}'),(9054,'52.15.147.249','normal','',0,0,0,2,0,'{\"login\":[1638618253,1638763634]}'),(9055,'13.58.149.145','normal','',0,0,0,1,0,'{\"login\":[1638618533]}'),(9056,'18.216.44.33','normal','',0,0,0,2,0,'{\"login\":[1638619221,1638715212]}'),(9057,'3.131.90.228','normal','',0,0,0,1,0,'{\"login\":[1638619616]}'),(9058,'18.217.221.40','normal','',0,0,0,1,0,'{\"login\":[1638619798]}'),(9059,'3.144.209.189','normal','',0,0,0,1,0,'{\"login\":[1638620306]}'),(9060,'184.72.179.112','normal','',0,0,0,1,0,'{\"login\":[1638620694]}'),(9061,'3.23.96.223','normal','',0,0,0,1,0,'{\"login\":[1638621668]}'),(9062,'3.134.76.49','normal','',0,0,0,1,0,'{\"login\":[1638622282]}'),(9063,'3.131.94.182','normal','',0,0,0,1,0,'{\"login\":[1638622347]}'),(9064,'18.224.252.249','normal','',0,0,0,1,0,'{\"login\":[1638623436]}'),(9065,'3.144.143.223','normal','',0,0,0,1,0,'{\"login\":[1638624017]}'),(9066,'3.142.232.223','normal','',0,0,0,1,0,'{\"login\":[1638624027]}'),(9067,'3.144.98.7','normal','',0,0,0,1,0,'{\"login\":[1638624354]}'),(9068,'3.15.21.208','normal','',0,0,0,1,0,'{\"login\":[1638624889]}'),(9069,'18.221.6.206','normal','',0,0,0,1,0,'{\"login\":[1638624900]}'),(9070,'3.138.139.29','normal','',0,0,0,1,0,'{\"login\":[1638625400]}'),(9071,'18.205.103.107','normal','',0,0,0,1,0,'{\"login\":[1638625922]}'),(9072,'18.223.121.139','normal','',0,0,0,1,0,'{\"login\":[1638625963]}'),(9073,'3.145.58.128','normal','',0,0,0,1,0,'{\"login\":[1638626128]}'),(9074,'3.145.50.87','normal','',0,0,0,1,0,'{\"login\":[1638626734]}'),(9075,'13.59.252.224','normal','',0,0,0,1,0,'{\"login\":[1638627153]}'),(9076,'107.189.10.137','normal','',0,0,0,0,0,'[]'),(9077,'3.86.160.64','normal','',0,0,0,1,0,'{\"login\":[1638689316]}'),(9078,'18.223.126.116','normal','',0,0,0,1,0,'{\"login\":[1638690311]}'),(9079,'34.239.130.145','normal','',0,0,0,1,0,'{\"login\":[1638690850]}'),(9080,'35.175.218.36','normal','',0,0,0,1,0,'{\"login\":[1638691607]}'),(9081,'3.82.150.68','normal','',0,0,0,1,0,'{\"login\":[1638691651]}'),(9082,'162.241.24.92','normal','',0,0,0,0,1,'{\"nf\":[1638691925]}'),(9083,'3.142.249.24','normal','',0,0,0,1,0,'{\"login\":[1638692515]}'),(9084,'103.48.193.247','normal','',0,0,0,1,0,'{\"login\":[1638692695]}'),(9085,'18.222.57.64','normal','',0,0,0,1,0,'{\"login\":[1638693288]}'),(9086,'54.172.0.69','normal','',0,0,0,1,0,'{\"login\":[1638694051]}'),(9087,'3.15.202.117','normal','',0,0,0,1,0,'{\"login\":[1638694838]}'),(9088,'17.121.113.159','normal','',0,0,0,0,0,'[]'),(9089,'3.145.105.2','normal','',0,0,0,2,0,'{\"login\":[1638695724,1638782485]}'),(9090,'18.116.65.193','normal','',0,0,0,1,0,'{\"login\":[1638695730]}'),(9091,'18.117.114.157','normal','',0,0,0,1,0,'{\"login\":[1638696341]}'),(9092,'18.188.5.10','normal','',0,0,0,1,0,'{\"login\":[1638697475]}'),(9093,'3.91.183.146','normal','',0,0,0,2,0,'{\"login\":[1638697998,1638738018]}'),(9094,'3.80.212.150','normal','',0,0,0,2,0,'{\"login\":[1638698806,1638700392]}'),(9095,'3.145.129.179','normal','',0,0,0,1,0,'{\"login\":[1638698868]}'),(9096,'52.14.221.152','normal','',0,0,0,1,0,'{\"login\":[1638699592]}'),(9097,'54.205.104.219','normal','',0,0,0,1,0,'{\"login\":[1638701321]}'),(9098,'3.145.112.117','normal','',0,0,0,1,0,'{\"login\":[1638701760]}'),(9099,'3.83.30.182','normal','',0,0,0,1,0,'{\"login\":[1638702031]}'),(9100,'54.226.207.77','normal','',0,0,0,1,0,'{\"login\":[1638702923]}'),(9101,'18.118.22.173','normal','',0,0,0,1,0,'{\"login\":[1638703370]}'),(9102,'3.145.128.224','normal','',0,0,0,1,0,'{\"login\":[1638703660]}'),(9103,'52.23.232.94','normal','',0,0,0,1,0,'{\"login\":[1638704486]}'),(9104,'18.191.134.171','normal','',0,0,0,1,0,'{\"login\":[1638705336]}'),(9105,'18.220.220.57','normal','',0,0,0,1,0,'{\"login\":[1638705924]}'),(9106,'3.135.193.61','normal','',0,0,0,1,0,'{\"login\":[1638706237]}'),(9107,'13.58.75.14','normal','',0,0,0,1,0,'{\"login\":[1638707124]}'),(9108,'229.134.149.69','normal','',0,0,0,0,0,'[]'),(9109,'3.145.100.177','normal','',0,0,0,1,0,'{\"login\":[1638707719]}'),(9110,'13.59.89.3','normal','',0,0,0,1,0,'{\"login\":[1638707858]}'),(9111,'18.220.48.77','normal','',0,0,0,1,0,'{\"login\":[1638708965]}'),(9112,'18.222.232.134','normal','',0,0,0,1,0,'{\"login\":[1638709180]}'),(9113,'3.144.153.222','normal','',0,0,0,1,0,'{\"login\":[1638709635]}'),(9114,'3.145.84.69','normal','',0,0,0,1,0,'{\"login\":[1638709912]}'),(9115,'104.244.77.53','normal','',0,0,0,0,0,'[]'),(9116,'15.165.40.4','normal','',0,0,0,1,0,'{\"login\":[1638710362]}'),(9117,'3.82.138.58','normal','',0,0,0,1,0,'{\"login\":[1638710781]}'),(9118,'54.161.128.147','normal','',0,0,0,1,0,'{\"login\":[1638711015]}'),(9119,'3.141.190.112','normal','',0,0,0,1,0,'{\"login\":[1638711666]}'),(9120,'3.144.181.92','normal','',0,0,0,1,0,'{\"login\":[1638712406]}'),(9121,'18.217.163.239','normal','',0,0,0,1,0,'{\"login\":[1638713013]}'),(9122,'34.227.20.182','normal','',0,0,0,1,0,'{\"login\":[1638713350]}'),(9123,'3.131.95.9','normal','',0,0,0,1,0,'{\"login\":[1638714445]}'),(9124,'18.221.179.135','normal','',0,0,0,1,0,'{\"login\":[1638714669]}'),(9125,'13.59.224.121','normal','',0,0,0,1,0,'{\"login\":[1638714694]}'),(9126,'3.20.223.209','normal','',0,0,0,1,0,'{\"login\":[1638715260]}'),(9127,'18.118.29.55','normal','',0,0,0,1,0,'{\"login\":[1638715701]}'),(9128,'18.116.165.3','normal','',0,0,0,1,0,'{\"login\":[1638716330]}'),(9129,'18.188.42.42','normal','',0,0,0,1,0,'{\"login\":[1638717050]}'),(9130,'18.191.110.207','normal','',0,0,0,1,0,'{\"login\":[1638717069]}'),(9131,'52.14.38.134','normal','',0,0,0,1,0,'{\"login\":[1638717927]}'),(9132,'54.208.68.119','normal','',0,0,0,1,0,'{\"login\":[1638718230]}'),(9133,'3.19.53.162','normal','',0,0,0,1,0,'{\"login\":[1638719343]}'),(9134,'18.119.125.113','normal','',0,0,0,1,0,'{\"login\":[1638719415]}'),(9135,'212.41.9.227','normal','',0,0,0,0,0,'[]'),(9136,'3.15.1.156','normal','',0,0,0,1,0,'{\"login\":[1638719840]}'),(9137,'3.86.221.98','normal','',0,0,0,1,0,'{\"login\":[1638720695]}'),(9138,'18.118.113.200','normal','',0,0,0,1,0,'{\"login\":[1638720699]}'),(9139,'3.19.66.115','normal','',0,0,0,1,0,'{\"login\":[1638721183]}'),(9140,'3.17.161.92','normal','',0,0,0,1,0,'{\"login\":[1638721741]}'),(9141,'3.142.55.15','normal','',0,0,0,2,0,'{\"login\":[1638721950,1638788829]}'),(9142,'18.218.177.145','normal','',0,0,0,1,0,'{\"login\":[1638722435]}'),(9143,'34.227.105.192','normal','',0,0,0,1,0,'{\"login\":[1638722588]}'),(9144,'3.145.148.173','normal','',0,0,0,1,0,'{\"login\":[1638723329]}'),(9145,'18.222.138.115','normal','',0,0,0,1,0,'{\"login\":[1638723749]}'),(9146,'54.186.225.120','normal','',0,0,0,1,0,'{\"login\":[1638724327]}'),(9147,'3.83.137.151','normal','',0,0,0,1,0,'{\"login\":[1638724378]}'),(9148,'3.17.29.172','normal','',0,0,0,1,0,'{\"login\":[1638724657]}'),(9149,'3.138.197.48','normal','',0,0,0,1,0,'{\"login\":[1638724996]}'),(9150,'3.138.246.57','normal','',0,0,0,1,0,'{\"login\":[1638725158]}'),(9151,'3.139.236.100','normal','',0,0,0,1,0,'{\"login\":[1638726173]}'),(9152,'18.117.155.36','normal','',0,0,0,1,0,'{\"login\":[1638726578]}'),(9153,'18.118.241.253','normal','',0,0,0,1,0,'{\"login\":[1638726717]}'),(9154,'18.219.246.17','normal','',0,0,0,1,0,'{\"login\":[1638726747]}'),(9155,'18.188.226.192','normal','',0,0,0,1,0,'{\"login\":[1638727374]}'),(9156,'3.144.231.98','normal','',0,0,0,1,0,'{\"login\":[1638727663]}'),(9157,'3.144.30.243','normal','',0,0,0,1,0,'{\"login\":[1638728071]}'),(9158,'54.165.144.194','normal','',0,0,0,1,0,'{\"login\":[1638728321]}'),(9159,'18.222.148.42','normal','',0,0,0,1,0,'{\"login\":[1638728745]}'),(9160,'18.212.36.178','normal','',0,0,0,1,0,'{\"login\":[1638729301]}'),(9161,'167.86.109.208','normal','',0,0,0,0,1,'{\"nf\":[1638729596]}'),(9162,'3.141.46.23','normal','',0,0,0,1,0,'{\"login\":[1638729653]}'),(9163,'3.145.117.252','normal','',0,0,0,1,0,'{\"login\":[1638729998]}'),(9164,'3.134.94.59','normal','',0,0,0,1,0,'{\"login\":[1638730562]}'),(9165,'3.90.50.175','normal','',0,0,0,1,0,'{\"login\":[1638730847]}'),(9166,'3.144.254.42','normal','',0,0,0,2,0,'{\"login\":[1638731666,1638744507]}'),(9167,'185.103.199.197','normal','',0,0,0,0,5,'{\"nf\":[1639692323,1639919313,1642818326,1642818328,1642818328]}'),(9168,'45.158.15.145','normal','',0,0,0,0,0,'[]'),(9169,'3.135.216.19','normal','',0,0,0,1,0,'{\"login\":[1638732132]}'),(9170,'3.131.99.170','normal','',0,0,0,1,0,'{\"login\":[1638732363]}'),(9171,'174.129.119.47','normal','',0,0,0,1,0,'{\"login\":[1638732761]}'),(9172,'18.217.149.160','normal','',0,0,0,1,0,'{\"login\":[1638732959]}'),(9173,'3.22.241.211','normal','',0,0,0,1,0,'{\"login\":[1638733449]}'),(9174,'52.15.224.110','normal','',0,0,0,1,0,'{\"login\":[1638734072]}'),(9175,'3.139.61.177','normal','',0,0,0,1,0,'{\"login\":[1638734600]}'),(9176,'54.172.27.67','normal','',0,0,0,2,0,'{\"login\":[1638735076,1638758692]}'),(9177,'18.119.135.231','normal','',0,0,0,1,0,'{\"login\":[1638735391]}'),(9178,'52.40.237.71','normal','',0,0,0,0,0,'[]'),(9179,'52.15.101.116','normal','',0,0,0,1,0,'{\"login\":[1638735872]}'),(9180,'3.16.54.24','normal','',0,0,0,1,0,'{\"login\":[1638736580]}'),(9181,'18.219.253.123','normal','',0,0,0,1,0,'{\"login\":[1638737234]}'),(9182,'3.134.104.56','normal','',0,0,0,1,0,'{\"login\":[1638737844]}'),(9183,'18.220.209.88','normal','',0,0,0,1,0,'{\"login\":[1638738524]}'),(9184,'3.133.130.159','normal','',0,0,0,1,0,'{\"login\":[1638738555]}'),(9185,'35.174.113.221','normal','',0,0,0,1,0,'{\"login\":[1638739288]}'),(9186,'3.144.157.172','normal','',0,0,0,1,0,'{\"login\":[1638739826]}'),(9187,'74.208.47.219','normal','',0,0,0,2,0,'{\"login\":[1638740292,1638924360]}'),(9188,'3.87.201.49','normal','',0,0,0,1,0,'{\"login\":[1638740418]}'),(9189,'27.254.86.43','normal','',0,0,0,0,1,'{\"nf\":[1638740637]}'),(9190,'13.59.189.68','normal','',0,0,0,1,0,'{\"login\":[1638741147]}'),(9191,'18.224.213.97','normal','',0,0,0,1,0,'{\"login\":[1638741249]}'),(9192,'18.223.213.226','normal','',0,0,0,1,0,'{\"login\":[1638742147]}'),(9193,'18.216.76.171','normal','',0,0,0,1,0,'{\"login\":[1638742445]}'),(9194,'81.69.191.124','normal','',0,0,0,0,0,'[]'),(9195,'3.144.150.192','normal','',0,0,0,1,0,'{\"login\":[1638742926]}'),(9196,'18.118.159.178','normal','',0,0,0,1,0,'{\"login\":[1638743610]}'),(9197,'3.21.248.10','normal','',0,0,0,1,0,'{\"login\":[1638743824]}'),(9198,'3.145.124.244','normal','',0,0,0,1,0,'{\"login\":[1638744330]}'),(9199,'18.188.173.219','normal','',0,0,0,1,0,'{\"login\":[1638745073]}'),(9200,'3.22.186.100','normal','',0,0,0,1,0,'{\"login\":[1638745622]}'),(9201,'54.166.77.167','normal','',0,0,0,1,0,'{\"login\":[1638746203]}'),(9202,'13.58.227.45','normal','',0,0,0,1,0,'{\"login\":[1638746812]}'),(9203,'85.128.143.18','normal','',0,0,0,3,0,'{\"login\":[1638746963,1638899186,1638903818]}'),(9204,'3.15.30.158','normal','',0,0,0,1,0,'{\"login\":[1638747055]}'),(9205,'3.145.144.125','normal','',0,0,0,1,0,'{\"login\":[1638747575]}'),(9206,'35.173.211.70','normal','',0,0,0,1,0,'{\"login\":[1638748217]}'),(9207,'54.90.87.48','normal','',0,0,0,1,0,'{\"login\":[1638748874]}'),(9208,'185.112.83.30','normal','',0,0,0,0,0,'[]'),(9209,'3.139.62.24','normal','',0,0,0,1,0,'{\"login\":[1638749417]}'),(9210,'3.19.76.78','normal','',0,0,0,1,0,'{\"login\":[1638749711]}'),(9211,'3.144.91.51','normal','',0,0,0,1,0,'{\"login\":[1638750225]}'),(9212,'54.180.173.125','normal','',0,0,0,3,0,'{\"login\":[1638750393,1638903372,1638925691]}'),(9213,'54.196.45.54','normal','',0,0,0,1,0,'{\"login\":[1638750797]}'),(9214,'3.15.5.92','normal','',0,0,0,1,0,'{\"login\":[1638751427]}'),(9215,'3.87.195.210','normal','',0,0,0,1,0,'{\"login\":[1638752041]}'),(9216,'3.15.155.92','normal','',0,0,0,1,0,'{\"login\":[1638752245]}'),(9217,'54.166.39.139','normal','',0,0,0,1,0,'{\"login\":[1638752710]}'),(9218,'18.222.232.6','normal','',0,0,0,1,0,'{\"login\":[1638752780]}'),(9219,'18.217.124.23','normal','',0,0,0,1,0,'{\"login\":[1638753492]}'),(9220,'3.22.208.138','normal','',0,0,0,1,0,'{\"login\":[1638754087]}'),(9221,'18.216.227.214','normal','',0,0,0,1,0,'{\"login\":[1638754903]}'),(9222,'18.188.34.23','normal','',0,0,0,1,0,'{\"login\":[1638755138]}'),(9223,'18.224.22.246','normal','',0,0,0,1,0,'{\"login\":[1638755510]}'),(9224,'18.191.156.92','normal','',0,0,0,1,0,'{\"login\":[1638756023]}'),(9225,'18.216.97.8','normal','',0,0,0,1,0,'{\"login\":[1638756597]}'),(9226,'185.231.70.62','normal','',0,0,0,0,0,'[]'),(9227,'3.136.25.4','normal','',0,0,0,1,0,'{\"login\":[1638757200]}'),(9228,'52.14.20.166','normal','',0,0,0,1,0,'{\"login\":[1638757939]}'),(9229,'18.217.96.42','normal','',0,0,0,1,0,'{\"login\":[1638758021]}'),(9230,'1.15.175.155','normal','',0,0,0,0,0,'[]'),(9231,'3.129.5.216','normal','',0,0,0,1,0,'{\"login\":[1638758468]}'),(9232,'18.119.19.6','normal','',0,0,0,1,0,'{\"login\":[1638759265]}'),(9233,'149.210.196.40','normal','',0,0,0,0,2,'{\"nf\":[1638759269,1639427770]}'),(9234,'3.15.45.217','normal','',0,0,0,1,0,'{\"login\":[1638759884]}'),(9235,'54.166.117.225','normal','',0,0,0,1,0,'{\"login\":[1638760359]}'),(9236,'52.14.240.238','normal','',0,0,0,1,0,'{\"login\":[1638761225]}'),(9237,'18.218.116.108','normal','',0,0,0,1,0,'{\"login\":[1638761350]}'),(9238,'18.225.8.96','normal','',0,0,0,1,0,'{\"login\":[1638761761]}'),(9239,'182.50.135.70','normal','',0,0,0,1,0,'{\"login\":[1640522326]}'),(9240,'18.222.104.140','normal','',0,0,0,1,0,'{\"login\":[1638762472]}'),(9241,'13.58.219.25','normal','',0,0,0,1,0,'{\"login\":[1638763096]}'),(9242,'54.211.241.72','normal','',0,0,0,1,0,'{\"login\":[1638763994]}'),(9243,'18.216.81.74','normal','',0,0,0,1,0,'{\"login\":[1638764408]}'),(9244,'3.19.77.206','normal','',0,0,0,1,0,'{\"login\":[1638764439]}'),(9245,'34.201.244.98','normal','',0,0,0,1,0,'{\"login\":[1638765133]}'),(9246,'18.117.219.29','normal','',0,0,0,1,0,'{\"login\":[1638765762]}'),(9247,'3.144.134.251','normal','',0,0,0,1,0,'{\"login\":[1638766345]}'),(9248,'3.18.102.211','normal','',0,0,0,1,0,'{\"login\":[1638767110]}'),(9249,'163.172.32.214','normal','',0,0,0,0,6,'{\"nf\":[1638767235,1639613733,1639613736,1639628425,1639654472,1639914503]}'),(9250,'13.59.155.220','normal','',0,0,0,1,0,'{\"login\":[1638767420]}'),(9251,'3.137.168.82','normal','',0,0,0,1,0,'{\"login\":[1638768322]}'),(9252,'3.84.204.71','normal','',0,0,0,1,0,'{\"login\":[1638768382]}'),(9253,'54.88.57.187','normal','',0,0,0,1,0,'{\"login\":[1638769147]}'),(9254,'3.12.129.73','normal','',0,0,0,1,0,'{\"login\":[1638769689]}'),(9255,'3.82.101.131','normal','',0,0,0,1,0,'{\"login\":[1638769942]}'),(9256,'3.144.110.141','normal','',0,0,0,1,0,'{\"login\":[1638770443]}'),(9257,'3.145.87.191','normal','',0,0,0,1,0,'{\"login\":[1638770864]}'),(9258,'18.117.152.221','normal','',0,0,0,1,0,'{\"login\":[1638771116]}'),(9259,'3.133.89.145','normal','',0,0,0,1,0,'{\"login\":[1638771817]}'),(9260,'18.191.93.198','normal','',0,0,0,1,0,'{\"login\":[1638772303]}'),(9261,'3.21.113.29','normal','',0,0,0,1,0,'{\"login\":[1638773142]}'),(9262,'52.15.88.197','normal','',0,0,0,1,0,'{\"login\":[1638773219]}'),(9263,'82.165.81.93','normal','',0,0,0,0,1,'{\"nf\":[1638773597]}'),(9264,'194.59.164.96','normal','',0,0,0,0,2,'{\"nf\":[1638773744,1638773746]}'),(9265,'3.16.44.68','normal','',0,0,0,1,0,'{\"login\":[1638774620]}'),(9266,'46.182.4.117','normal','',0,0,0,0,2,'{\"nf\":[1638774963,1639651100]}'),(9267,'3.145.87.136','normal','',0,0,0,1,0,'{\"login\":[1638775145]}'),(9268,'18.223.20.232','normal','',0,0,0,1,0,'{\"login\":[1638775881]}'),(9269,'52.7.141.211','normal','',0,0,0,1,0,'{\"login\":[1638776058]}'),(9270,'52.15.238.132','normal','',0,0,0,1,0,'{\"login\":[1638776802]}'),(9271,'3.145.85.189','normal','',0,0,0,1,0,'{\"login\":[1638777318]}'),(9272,'144.76.60.89','normal','',0,0,0,0,1,'{\"nf\":[1638778034]}'),(9273,'52.91.114.93','normal','',0,0,0,1,0,'{\"login\":[1638778177]}'),(9274,'3.138.141.209','normal','',0,0,0,1,0,'{\"login\":[1638778783]}'),(9275,'3.143.245.12','normal','',0,0,0,1,0,'{\"login\":[1638779367]}'),(9276,'3.15.238.73','normal','',0,0,0,1,0,'{\"login\":[1638779477]}'),(9277,'18.191.191.46','normal','',0,0,0,1,0,'{\"login\":[1638779637]}'),(9278,'3.145.115.131','normal','',0,0,0,1,0,'{\"login\":[1638780310]}'),(9279,'3.14.129.63','normal','',0,0,0,1,0,'{\"login\":[1638780967]}'),(9280,'18.118.208.124','normal','',0,0,0,1,0,'{\"login\":[1638781682]}'),(9281,'18.222.133.112','normal','',0,0,0,1,0,'{\"login\":[1638782388]}'),(9282,'3.139.239.104','normal','',0,0,0,1,0,'{\"login\":[1638783365]}'),(9283,'3.140.184.177','normal','',0,0,0,1,0,'{\"login\":[1638783810]}'),(9284,'18.222.147.96','normal','',0,0,0,1,0,'{\"login\":[1638784631]}'),(9285,'3.88.7.75','normal','',0,0,0,1,0,'{\"login\":[1638785174]}'),(9286,'18.190.156.231','normal','',0,0,0,1,0,'{\"login\":[1638785200]}'),(9287,'18.221.126.105','normal','',0,0,0,1,0,'{\"login\":[1638785958]}'),(9288,'13.58.108.76','normal','',0,0,0,1,0,'{\"login\":[1638786008]}'),(9289,'18.118.217.45','normal','',0,0,0,1,0,'{\"login\":[1638786668]}'),(9290,'3.144.139.135','normal','',0,0,0,1,0,'{\"login\":[1638787362]}'),(9291,'3.145.72.181','normal','',0,0,0,1,0,'{\"login\":[1638788130]}'),(9292,'3.145.89.156','normal','',0,0,0,1,0,'{\"login\":[1638788813]}'),(9293,'207.244.238.71','normal','',0,0,0,0,1,'{\"nf\":[1638789031]}'),(9294,'18.188.29.72','normal','',0,0,0,1,0,'{\"login\":[1638789612]}'),(9295,'18.117.106.118','normal','',0,0,0,1,0,'{\"login\":[1638790221]}'),(9296,'3.95.183.79','normal','',0,0,0,1,0,'{\"login\":[1638791011]}'),(9297,'104.236.205.248','normal','',0,0,0,0,3,'{\"nf\":[1638791156,1641489384,1643299631]}'),(9298,'198.54.114.126','normal','',0,0,0,0,1,'{\"nf\":[1638791463]}'),(9299,'18.217.70.114','normal','',0,0,0,1,0,'{\"login\":[1638791720]}'),(9300,'18.116.64.105','normal','',0,0,0,1,0,'{\"login\":[1638791758]}'),(9301,'3.15.173.179','normal','',0,0,0,1,0,'{\"login\":[1638792517]}'),(9302,'52.201.217.68','normal','',0,0,0,1,0,'{\"login\":[1638792610]}'),(9303,'18.217.125.217','normal','',0,0,0,1,0,'{\"login\":[1638793166]}'),(9304,'18.117.157.237','normal','',0,0,0,1,0,'{\"login\":[1638794062]}'),(9305,'5.101.156.115','normal','',0,0,0,0,1,'{\"nf\":[1638794076]}'),(9306,'3.144.186.140','normal','',0,0,0,1,0,'{\"login\":[1638794741]}'),(9307,'3.137.171.15','normal','',0,0,0,1,0,'{\"login\":[1638795516]}'),(9308,'3.145.19.77','normal','',0,0,0,1,0,'{\"login\":[1638795558]}'),(9309,'3.19.65.119','normal','',0,0,0,1,0,'{\"login\":[1638796265]}'),(9310,'3.133.155.48','normal','',0,0,0,1,0,'{\"login\":[1638796932]}'),(9311,'3.83.87.203','normal','',0,0,0,1,0,'{\"login\":[1638797729]}'),(9312,'3.22.130.15','normal','',0,0,0,1,0,'{\"login\":[1638797873]}'),(9313,'18.224.66.172','normal','',0,0,0,1,0,'{\"login\":[1638798375]}'),(9314,'13.59.170.88','normal','',0,0,0,1,0,'{\"login\":[1638798619]}'),(9315,'3.15.37.179','normal','',0,0,0,1,0,'{\"login\":[1638799341]}'),(9316,'3.138.246.143','normal','',0,0,0,1,0,'{\"login\":[1638799882]}'),(9317,'3.145.120.168','normal','',0,0,0,1,0,'{\"login\":[1638799984]}'),(9318,'3.133.142.23','normal','',0,0,0,1,0,'{\"login\":[1638800572]}'),(9319,'18.219.189.121','normal','',0,0,0,1,0,'{\"login\":[1638800732]}'),(9320,'3.87.212.254','normal','',0,0,0,1,0,'{\"login\":[1638801359]}'),(9321,'3.16.42.108','normal','',0,0,0,1,0,'{\"login\":[1638801976]}'),(9322,'18.218.255.79','normal','',0,0,0,1,0,'{\"login\":[1638802794]}'),(9323,'18.117.234.122','normal','',0,0,0,1,0,'{\"login\":[1638802832]}'),(9324,'18.223.120.252','normal','',0,0,0,1,0,'{\"login\":[1638803809]}'),(9325,'3.144.151.13','normal','',0,0,0,1,0,'{\"login\":[1638803963]}'),(9326,'18.118.130.156','normal','',0,0,0,1,0,'{\"login\":[1638804060]}'),(9327,'18.118.159.121','normal','',0,0,0,1,0,'{\"login\":[1638805018]}'),(9328,'18.119.10.230','normal','',0,0,0,1,0,'{\"login\":[1638805148]}'),(9329,'18.189.7.212','normal','',0,0,0,1,0,'{\"login\":[1638805519]}'),(9330,'18.116.230.88','normal','',0,0,0,1,0,'{\"login\":[1638805525]}'),(9331,'3.141.170.110','normal','',0,0,0,1,0,'{\"login\":[1638806032]}'),(9332,'18.222.215.224','normal','',0,0,0,1,0,'{\"login\":[1638806369]}'),(9333,'3.15.2.154','normal','',0,0,0,1,0,'{\"login\":[1638806860]}'),(9334,'3.15.149.180','normal','',0,0,0,1,0,'{\"login\":[1638807386]}'),(9335,'3.18.102.75','normal','',0,0,0,1,0,'{\"login\":[1638808208]}'),(9336,'142.4.4.131','normal','',0,0,0,0,0,'[]'),(9337,'3.14.4.74','normal','',0,0,0,1,0,'{\"login\":[1638808874]}'),(9338,'186.234.80.3','normal','',0,0,0,0,0,'[]'),(9339,'95.111.244.61','normal','',0,0,0,0,0,'[]'),(9340,'23.254.226.131','normal','',0,0,0,0,0,'[]'),(9341,'108.163.233.106','normal','',0,0,0,0,0,'[]'),(9342,'142.4.20.101','normal','',0,0,0,0,0,'[]'),(9343,'82.223.66.74','normal','',0,0,0,0,0,'[]'),(9344,'178.254.36.225','normal','',0,0,0,2,0,'{\"login\":[1640014739,1640563656]}'),(9345,'66.94.97.122','normal','',0,0,0,0,0,'[]'),(9346,'149.248.39.45','normal','',0,0,0,0,0,'[]'),(9347,'196.41.130.163','normal','',0,0,0,0,0,'[]'),(9348,'3.24.51.182','normal','',0,0,0,0,0,'[]'),(9349,'46.105.92.2','normal','',0,0,0,0,0,'[]'),(9350,'194.163.164.120','normal','',0,0,0,0,0,'[]'),(9351,'77.68.27.144','normal','',0,0,0,0,0,'[]'),(9352,'168.119.212.141','normal','',0,0,0,0,0,'[]'),(9353,'64.20.45.219','normal','',0,0,0,0,0,'[]'),(9354,'34.198.130.128','normal','',0,0,0,0,0,'[]'),(9355,'139.155.93.139','normal','',0,0,0,0,0,'[]'),(9356,'184.154.44.82','normal','',0,0,0,0,0,'[]'),(9357,'17.121.115.178','normal','',0,0,0,0,0,'[]'),(9358,'207.154.196.6','normal','',0,0,0,2,0,'{\"login\":[1640520097,1640803925]}'),(9359,'37.46.248.5','normal','',0,0,0,0,0,'[]'),(9360,'146.88.239.37','normal','',0,0,0,0,0,'[]'),(9361,'66.249.77.69','normal','',0,0,0,0,0,'[]'),(9362,'65.2.92.210','normal','',0,0,0,0,0,'[]'),(9363,'66.249.64.45','normal','',0,0,0,0,0,'[]'),(9364,'104.131.121.50','normal','',0,0,0,0,0,'[]'),(9365,'138.199.59.145','normal','',0,0,0,0,0,'[]'),(9366,'5.2.77.64','normal','',0,0,0,0,0,'[]'),(9367,'158.69.243.138','normal','',0,0,0,0,0,'[]'),(9368,'103.106.74.67','normal','',0,0,0,7,0,'{\"login\":[1638861870,1639233858,1639533964,1639736875,1639874324,1640057084,1640495890]}'),(9369,'185.83.147.245','normal','',0,0,0,0,1,'{\"nf\":[1651996386]}'),(9370,'18.220.1.62','normal','',0,0,0,1,0,'{\"login\":[1638868522]}'),(9371,'34.96.130.24','normal','',0,0,0,0,0,'[]'),(9372,'34.77.162.13','normal','',0,0,0,0,0,'[]'),(9373,'45.129.18.169','normal','',0,0,0,0,0,'[]'),(9374,'45.129.18.110','normal','',0,0,0,0,0,'[]'),(9375,'45.129.18.204','normal','',0,0,0,0,0,'[]'),(9376,'13.59.214.133','normal','',0,0,0,2,0,'{\"login\":[1638887719,1638889971]}'),(9377,'3.135.236.85','normal','',0,0,0,1,0,'{\"login\":[1638889184]}'),(9378,'18.223.211.84','normal','',0,0,0,1,0,'{\"login\":[1638891089]}'),(9379,'194.247.196.67','normal','',0,0,0,0,1,'{\"nf\":[1638891350]}'),(9380,'3.14.151.91','normal','',0,0,0,2,0,'{\"login\":[1638891774,1638993089]}'),(9381,'109.70.148.54','normal','',0,0,0,1,0,'{\"login\":[1638894911]}'),(9382,'18.191.214.14','normal','',0,0,0,1,0,'{\"login\":[1638895080]}'),(9383,'18.217.190.200','normal','',0,0,0,1,0,'{\"login\":[1638895155]}'),(9384,'145.239.8.229','normal','',0,0,0,1,0,'{\"login\":[1638895690]}'),(9385,'103.75.184.179','normal','',0,0,0,4,0,'{\"login\":[1638896797,1640110226,1640864770,1651382476]}'),(9386,'188.166.2.155','normal','',0,0,0,1,0,'{\"login\":[1638897157]}'),(9387,'208.109.48.221','normal','',0,0,0,0,0,'[]'),(9388,'85.128.143.98','normal','',0,0,0,1,0,'{\"login\":[1638898349]}'),(9389,'3.135.207.12','normal','',0,0,0,1,0,'{\"login\":[1638898700]}'),(9390,'87.118.77.199','normal','',0,0,0,2,0,'{\"login\":[1638908991,1638921798]}'),(9391,'3.15.40.33','normal','',0,0,0,1,0,'{\"login\":[1638901369]}'),(9392,'47.112.232.140','normal','',0,0,0,2,0,'{\"login\":[1638901705,1640815902]}'),(9393,'18.119.161.152','normal','',0,0,0,1,0,'{\"login\":[1638902112]}'),(9394,'209.97.187.85','normal','',0,0,0,8,0,'{\"login\":[1638902121,1638927360,1640766521,1642718741,1642756406,1643114169,1643729129,1644342088]}'),(9395,'185.99.3.147','normal','',0,0,0,0,0,'[]'),(9396,'18.191.90.171','normal','',0,0,0,1,0,'{\"login\":[1638905093]}'),(9397,'159.89.203.130','normal','',0,0,0,5,0,'{\"login\":[1638905488,1638910311,1638915055,1640808472,1641500466]}'),(9398,'138.197.169.56','normal','',0,0,0,0,4,'{\"nf\":[1638905868,1638905869,1638905871,1638905872]}'),(9399,'18.218.137.27','normal','',0,0,0,1,0,'{\"login\":[1638906018]}'),(9400,'195.24.207.209','normal','',0,0,0,2,0,'{\"login\":[1638906341,1638923107]}'),(9401,'1.117.146.139','normal','',0,0,0,2,0,'{\"login\":[1638906800,1638933050]}'),(9402,'35.231.195.223','normal','',0,0,0,4,0,'{\"login\":[1638907211,1638930376,1638934290,1638938259]}'),(9403,'139.180.188.247','normal','',0,0,0,1,0,'{\"login\":[1638908006]}'),(9404,'54.36.148.43','normal','',0,0,0,0,0,'[]'),(9405,'54.36.149.106','normal','',0,0,0,0,0,'[]'),(9406,'3.145.142.61','normal','',0,0,0,1,0,'{\"login\":[1638908547]}'),(9407,'34.217.59.86','normal','',0,0,0,0,0,'[]'),(9408,'54.185.13.197','normal','',0,0,0,0,0,'[]'),(9409,'35.85.145.212','normal','',0,0,0,0,0,'[]'),(9410,'182.92.155.28','normal','',0,0,0,3,0,'{\"login\":[1638911189,1639944104,1641768588]}'),(9411,'52.14.8.229','normal','',0,0,0,1,0,'{\"login\":[1638911724]}'),(9412,'194.1.184.78','normal','',0,0,0,1,0,'{\"login\":[1638912019]}'),(9413,'167.172.75.203','normal','',0,0,0,3,0,'{\"login\":[1638912385,1640790264,1641764152]}'),(9414,'3.142.152.105','normal','',0,0,0,1,0,'{\"login\":[1638912622]}'),(9415,'18.191.227.49','normal','',0,0,0,1,0,'{\"login\":[1638915568]}'),(9416,'18.217.164.206','normal','',0,0,0,1,0,'{\"login\":[1638916275]}'),(9417,'104.196.16.44','normal','',0,0,0,0,0,'[]'),(9418,'89.46.105.243','normal','',0,0,0,0,0,'[]'),(9419,'58.96.89.121','normal','',0,0,0,2,0,'{\"login\":[1638917930,1638923902]}'),(9420,'34.126.121.108','normal','',0,0,0,1,0,'{\"login\":[1638918722]}'),(9421,'3.145.98.17','normal','',0,0,0,1,0,'{\"login\":[1638918992]}'),(9422,'145.14.158.15','normal','',0,0,0,2,0,'{\"login\":[1638919227,1638929919]}'),(9423,'18.218.48.72','normal','',0,0,0,1,0,'{\"login\":[1638919549]}'),(9424,'144.91.99.71','normal','',0,0,0,3,0,'{\"login\":[1638922181,1638936087,1638940893]}'),(9425,'3.144.212.100','normal','',0,0,0,1,0,'{\"login\":[1638922301]}'),(9426,'62.221.197.151','normal','',0,0,0,1,0,'{\"login\":[1638922618]}'),(9427,'114.119.141.79','normal','',0,0,0,0,0,'[]'),(9428,'85.128.143.77','normal','',0,0,0,1,0,'{\"login\":[1638924781]}'),(9429,'3.16.188.21','normal','',0,0,0,1,0,'{\"login\":[1638925469]}'),(9430,'192.163.245.82','normal','',0,0,0,0,2,'{\"nf\":[1638925522,1639577834]}'),(9431,'18.191.71.193','normal','',0,0,0,1,0,'{\"login\":[1638926119]}'),(9432,'185.27.99.129','normal','',0,0,0,0,0,'[]'),(9433,'185.27.99.126','normal','',0,0,0,0,2,'{\"nf\":[1644091933,1650009868]}'),(9434,'185.27.99.118','normal','',0,0,0,0,1,'{\"nf\":[1638926519]}'),(9435,'185.27.99.140','normal','',0,0,0,0,3,'{\"nf\":[1638926519,1644091930,1652050199]}'),(9436,'185.27.99.121','normal','',0,0,0,0,0,'[]'),(9437,'3.144.206.161','normal','',0,0,0,1,0,'{\"login\":[1638929275]}'),(9438,'3.19.221.143','normal','',0,0,0,1,0,'{\"login\":[1638930023]}'),(9439,'167.172.72.208','normal','',0,0,0,3,0,'{\"login\":[1638932484,1642715880,1644422303]}'),(9440,'18.189.32.174','normal','',0,0,0,1,0,'{\"login\":[1638933030]}'),(9441,'52.13.107.60','normal','',0,0,0,1,0,'{\"login\":[1638935609]}'),(9442,'18.118.148.19','normal','',0,0,0,1,0,'{\"login\":[1638935971]}'),(9443,'13.59.234.182','blocked','You have been locked out due to too many invalid login attempts.',1639047307,1639047007,0,7,0,'{\"login\":[1638936532,1638964514,1639046765,1639046767,1639046769,1639046782,1639047007]}'),(9444,'103.35.65.252','normal','',0,0,0,1,0,'{\"login\":[1638937799]}'),(9445,'103.3.246.217','normal','',0,0,0,1,0,'{\"login\":[1650293929]}'),(9446,'93.115.21.70','normal','',0,0,0,1,0,'{\"login\":[1638939585]}'),(9447,'18.191.123.245','normal','',0,0,0,1,0,'{\"login\":[1638939686]}'),(9448,'3.145.63.225','normal','',0,0,0,1,0,'{\"login\":[1638940483]}'),(9449,'184.170.251.98','normal','',0,0,0,0,3,'{\"nf\":[1638942638,1638942641,1639561300]}'),(9450,'163.44.185.41','normal','',0,0,0,0,1,'{\"nf\":[1638942926]}'),(9451,'3.137.167.72','normal','',0,0,0,1,0,'{\"login\":[1638943518]}'),(9452,'18.191.170.154','normal','',0,0,0,2,0,'{\"login\":[1638944414,1638965358]}'),(9453,'31.170.161.40','normal','',0,0,0,0,2,'{\"nf\":[1638947124,1640042948]}'),(9454,'3.142.210.222','normal','',0,0,0,1,0,'{\"login\":[1638947357]}'),(9455,'54.36.149.19','normal','',0,0,0,0,0,'[]'),(9456,'54.149.87.117','normal','',0,0,0,0,0,'[]'),(9457,'18.224.165.89','normal','',0,0,0,1,0,'{\"login\":[1638949934]}'),(9458,'17.121.115.13','normal','',0,0,0,0,0,'[]'),(9459,'3.145.121.121','normal','',0,0,0,1,0,'{\"login\":[1638950885]}'),(9460,'13.58.235.33','normal','',0,0,0,1,0,'{\"login\":[1638954162]}'),(9461,'3.133.92.80','normal','',0,0,0,1,0,'{\"login\":[1638954935]}'),(9462,'45.162.168.96','normal','',0,0,0,0,0,'[]'),(9463,'151.106.96.108','normal','',0,0,0,0,5,'{\"nf\":[1638956874,1638956877,1639131466,1639572726,1639816590]}'),(9464,'185.182.56.85','normal','',0,0,0,0,0,'[]'),(9465,'18.116.32.72','normal','',0,0,0,1,0,'{\"login\":[1638957988]}'),(9466,'52.30.210.57','normal','',0,0,0,0,0,'[]'),(9467,'186.234.80.135','normal','',0,0,0,0,0,'[]'),(9468,'3.17.75.76','normal','',0,0,0,1,0,'{\"login\":[1638960320]}'),(9469,'18.190.153.97','normal','',0,0,0,1,0,'{\"login\":[1638960820]}'),(9470,'18.223.172.198','normal','',0,0,0,1,0,'{\"login\":[1638961002]}'),(9471,'157.7.106.195','normal','',0,0,0,0,3,'{\"nf\":[1638961137,1639714906,1639863095]}'),(9472,'3.129.9.247','normal','',0,0,0,1,0,'{\"login\":[1638961665]}'),(9473,'3.18.212.207','normal','',0,0,0,1,0,'{\"login\":[1638962176]}'),(9474,'18.138.129.53','normal','',0,0,0,0,0,'[]'),(9475,'104.129.18.149','blocked','You have been locked out due to too many invalid login attempts.',1638962950,1638962650,0,5,0,'{\"login\":[1638962648,1638962649,1638962649,1638962650,1638962650]}'),(9476,'18.189.171.87','normal','',0,0,0,1,0,'{\"login\":[1638963304]}'),(9477,'13.59.125.234','normal','',0,0,0,1,0,'{\"login\":[1638964337]}'),(9478,'194.163.147.193','normal','',0,0,0,0,0,'[]'),(9479,'203.151.56.123','normal','',0,0,0,0,1,'{\"nf\":[1638964733]}'),(9480,'77.68.3.219','normal','',0,0,0,0,0,'[]'),(9481,'114.77.123.160','normal','',0,0,0,0,0,'[]'),(9482,'18.117.244.125','normal','',0,0,0,1,0,'{\"login\":[1638965562]}'),(9483,'93.89.225.124','normal','',0,0,0,0,1,'{\"nf\":[1638965757]}'),(9484,'89.31.140.122','normal','',0,0,0,0,1,'{\"nf\":[1638966463]}'),(9485,'13.58.195.249','normal','',0,0,0,1,0,'{\"login\":[1638966612]}'),(9486,'162.0.239.41','normal','',0,0,0,0,0,'[]'),(9487,'3.141.37.63','normal','',0,0,0,1,0,'{\"login\":[1638967077]}'),(9488,'3.141.200.120','normal','',0,0,0,1,0,'{\"login\":[1638968813]}'),(9489,'88.99.26.219','normal','',0,0,0,0,2,'{\"nf\":[1639141903,1639314225]}'),(9490,'3.16.51.24','normal','',0,0,0,1,0,'{\"login\":[1638969071]}'),(9491,'18.224.180.147','normal','',0,0,0,2,0,'{\"login\":[1638969680,1638980697]}'),(9492,'176.96.136.51','normal','',0,0,0,0,0,'[]'),(9493,'148.66.129.183','normal','',0,0,0,0,0,'[]'),(9494,'3.137.198.14','normal','',0,0,0,1,0,'{\"login\":[1638970322]}'),(9495,'52.15.61.252','normal','',0,0,0,1,0,'{\"login\":[1638970425]}'),(9496,'178.18.241.84','normal','',0,0,0,0,0,'[]'),(9497,'3.145.98.70','normal','',0,0,0,1,0,'{\"login\":[1638971140]}'),(9498,'125.212.192.144','normal','',0,0,0,0,0,'[]'),(9499,'104.236.141.95','normal','',0,0,0,0,1,'{\"nf\":[1638971771]}'),(9500,'13.58.20.243','normal','',0,0,0,1,0,'{\"login\":[1638971945]}'),(9501,'18.118.82.27','normal','',0,0,0,1,0,'{\"login\":[1638972573]}'),(9502,'191.252.51.69','normal','',0,0,0,0,2,'{\"nf\":[1638972865,1638972865]}'),(9503,'3.137.169.116','normal','',0,0,0,1,0,'{\"login\":[1638973059]}'),(9504,'3.145.107.255','normal','',0,0,0,1,0,'{\"login\":[1638973444]}'),(9505,'3.135.214.98','normal','',0,0,0,1,0,'{\"login\":[1638973541]}'),(9506,'3.16.164.207','normal','',0,0,0,1,0,'{\"login\":[1638974093]}'),(9507,'18.116.51.56','normal','',0,0,0,1,0,'{\"login\":[1638974724]}'),(9508,'3.141.44.159','normal','',0,0,0,1,0,'{\"login\":[1638974753]}'),(9509,'105.186.92.178','normal','',0,0,0,0,0,'[]'),(9510,'3.22.71.26','normal','',0,0,0,1,0,'{\"login\":[1638975466]}'),(9511,'3.145.75.27','normal','',0,0,0,1,0,'{\"login\":[1638975727]}'),(9512,'3.22.208.197','normal','',0,0,0,3,0,'{\"login\":[1638975961,1639006822,1639019550]}'),(9513,'13.59.134.247','normal','',0,0,0,1,0,'{\"login\":[1638977481]}'),(9514,'18.189.20.158','normal','',0,0,0,1,0,'{\"login\":[1638978205]}'),(9515,'18.217.211.77','normal','',0,0,0,1,0,'{\"login\":[1638978471]}'),(9516,'3.140.195.192','normal','',0,0,0,1,0,'{\"login\":[1638979007]}'),(9517,'47.242.50.8','normal','',0,0,0,0,0,'[]'),(9518,'3.136.23.47','normal','',0,0,0,1,0,'{\"login\":[1638979788]}'),(9519,'18.216.202.15','normal','',0,0,0,1,0,'{\"login\":[1638980084]}'),(9520,'3.110.38.216','normal','',0,0,0,0,0,'[]'),(9521,'34.94.196.43','normal','',0,0,0,0,2,'{\"nf\":[1638981185,1639325373]}'),(9522,'3.16.13.13','normal','',0,0,0,1,0,'{\"login\":[1638981556]}'),(9523,'3.144.216.19','normal','',0,0,0,1,0,'{\"login\":[1638982355]}'),(9524,'185.165.171.175','normal','',0,0,0,0,0,'[]'),(9525,'136.243.95.77','normal','',0,0,0,0,0,'[]'),(9526,'3.21.205.194','normal','',0,0,0,1,0,'{\"login\":[1638983118]}'),(9527,'34.123.125.44','normal','',0,0,0,2,0,'{\"login\":[1640645700,1654525149]}'),(9528,'3.143.223.246','normal','',0,0,0,1,0,'{\"login\":[1638983565]}'),(9529,'3.15.210.49','normal','',0,0,0,1,0,'{\"login\":[1638984044]}'),(9530,'89.28.164.5','normal','',0,0,0,0,0,'[]'),(9531,'18.221.123.95','normal','',0,0,0,1,0,'{\"login\":[1638985183]}'),(9532,'176.31.106.179','normal','',0,0,0,0,3,'{\"nf\":[1638985403,1645479206,1645479240]}'),(9533,'174.138.30.81','normal','',0,0,0,0,0,'[]'),(9534,'91.218.230.92','normal','',0,0,0,1,0,'{\"login\":[1640240318]}'),(9535,'18.190.24.144','normal','',0,0,0,1,0,'{\"login\":[1638986211]}'),(9536,'18.188.29.203','normal','',0,0,0,1,0,'{\"login\":[1638986843]}'),(9537,'3.137.191.24','normal','',0,0,0,1,0,'{\"login\":[1638987117]}'),(9538,'95.217.114.218','normal','',0,0,0,0,0,'[]'),(9539,'3.144.201.9','normal','',0,0,0,1,0,'{\"login\":[1638987701]}'),(9540,'18.219.100.85','normal','',0,0,0,1,0,'{\"login\":[1638988164]}'),(9541,'52.15.198.93','normal','',0,0,0,1,0,'{\"login\":[1638988649]}'),(9542,'3.144.228.176','normal','',0,0,0,1,0,'{\"login\":[1638989712]}'),(9543,'3.129.24.201','normal','',0,0,0,1,0,'{\"login\":[1638990702]}'),(9544,'202.92.4.198','normal','',0,0,0,0,2,'{\"nf\":[1638991133,1638991135]}'),(9545,'13.59.116.179','normal','',0,0,0,1,0,'{\"login\":[1638991293]}'),(9546,'3.133.106.90','normal','',0,0,0,1,0,'{\"login\":[1638991655]}'),(9547,'3.144.207.108','normal','',0,0,0,1,0,'{\"login\":[1638992207]}'),(9548,'114.119.133.1','normal','',0,0,0,0,0,'[]'),(9549,'18.221.13.75','normal','',0,0,0,1,0,'{\"login\":[1638994223]}'),(9550,'3.145.79.23','normal','',0,0,0,1,0,'{\"login\":[1638994870]}'),(9551,'18.221.164.236','normal','',0,0,0,1,0,'{\"login\":[1638995064]}'),(9552,'35.87.154.146','normal','',0,0,0,0,0,'[]'),(9553,'18.117.127.240','normal','',0,0,0,1,0,'{\"login\":[1638995793]}'),(9554,'3.12.104.13','normal','',0,0,0,1,0,'{\"login\":[1638996543]}'),(9555,'35.87.176.67','normal','',0,0,0,0,0,'[]'),(9556,'3.15.159.80','normal','',0,0,0,1,0,'{\"login\":[1638997632]}'),(9557,'3.14.149.141','normal','',0,0,0,1,0,'{\"login\":[1638998356]}'),(9558,'18.191.172.124','normal','',0,0,0,1,0,'{\"login\":[1638998721]}'),(9559,'3.129.63.204','normal','',0,0,0,1,0,'{\"login\":[1638999357]}'),(9560,'3.145.149.248','normal','',0,0,0,1,0,'{\"login\":[1638999780]}'),(9561,'3.21.236.180','normal','',0,0,0,1,0,'{\"login\":[1639000304]}'),(9562,'3.140.192.252','normal','',0,0,0,1,0,'{\"login\":[1639001329]}'),(9563,'3.145.105.139','normal','',0,0,0,1,0,'{\"login\":[1639002510]}'),(9564,'18.117.111.36','normal','',0,0,0,1,0,'{\"login\":[1639002919]}'),(9565,'3.15.199.32','normal','',0,0,0,1,0,'{\"login\":[1639003223]}'),(9566,'18.191.169.179','normal','',0,0,0,1,0,'{\"login\":[1639003897]}'),(9567,'3.140.190.17','normal','',0,0,0,1,0,'{\"login\":[1639004894]}'),(9568,'3.17.163.136','normal','',0,0,0,1,0,'{\"login\":[1639005987]}'),(9569,'3.16.44.143','normal','',0,0,0,1,0,'{\"login\":[1639006511]}'),(9570,'3.144.111.233','normal','',0,0,0,1,0,'{\"login\":[1639007594]}'),(9571,'54.229.73.50','normal','',0,0,0,0,0,'[]'),(9572,'3.17.71.76','normal','',0,0,0,1,0,'{\"login\":[1639008010]}'),(9573,'18.119.119.91','normal','',0,0,0,1,0,'{\"login\":[1639008497]}'),(9574,'3.142.95.226','normal','',0,0,0,1,0,'{\"login\":[1639009514]}'),(9575,'18.219.163.84','normal','',0,0,0,1,0,'{\"login\":[1639010492]}'),(9576,'13.59.139.133','normal','',0,0,0,1,0,'{\"login\":[1639011090]}'),(9577,'18.222.178.63','normal','',0,0,0,1,0,'{\"login\":[1639011433]}'),(9578,'18.222.204.191','normal','',0,0,0,1,0,'{\"login\":[1639011957]}'),(9579,'3.144.191.172','normal','',0,0,0,1,0,'{\"login\":[1639013165]}'),(9580,'66.249.64.59','normal','',0,0,0,0,0,'[]'),(9581,'66.249.64.57','normal','',0,0,0,0,0,'[]'),(9582,'3.16.143.33','normal','',0,0,0,1,0,'{\"login\":[1639014235]}'),(9583,'52.14.127.195','normal','',0,0,0,1,0,'{\"login\":[1639014803]}'),(9584,'18.188.193.230','normal','',0,0,0,1,0,'{\"login\":[1639015222]}'),(9585,'3.22.98.108','normal','',0,0,0,1,0,'{\"login\":[1639015866]}'),(9586,'18.117.73.64','normal','',0,0,0,1,0,'{\"login\":[1639016403]}'),(9587,'3.141.43.91','normal','',0,0,0,1,0,'{\"login\":[1639016879]}'),(9588,'3.14.135.171','normal','',0,0,0,1,0,'{\"login\":[1639018033]}'),(9589,'18.216.39.82','normal','',0,0,0,1,0,'{\"login\":[1639019033]}'),(9590,'3.145.150.96','normal','',0,0,0,1,0,'{\"login\":[1639020037]}'),(9591,'18.191.196.90','normal','',0,0,0,1,0,'{\"login\":[1639020583]}'),(9592,'3.143.209.129','normal','',0,0,0,1,0,'{\"login\":[1639021613]}'),(9593,'3.16.22.58','normal','',0,0,0,1,0,'{\"login\":[1639022680]}'),(9594,'18.188.89.239','normal','',0,0,0,1,0,'{\"login\":[1639023326]}'),(9595,'3.145.157.189','normal','',0,0,0,1,0,'{\"login\":[1639023823]}'),(9596,'18.222.105.241','normal','',0,0,0,1,0,'{\"login\":[1639024447]}'),(9597,'3.129.204.219','normal','',0,0,0,1,0,'{\"login\":[1639025021]}'),(9598,'91.208.197.96','normal','',0,0,0,0,0,'[]'),(9599,'18.219.144.81','normal','',0,0,0,1,0,'{\"login\":[1639025499]}'),(9600,'185.182.59.44','normal','',0,0,0,9,0,'{\"login\":[1639026206,1639499886,1639727976,1640527905,1640644413,1640716227,1641124112,1641692293,1641770357]}'),(9601,'3.145.114.225','normal','',0,0,0,1,0,'{\"login\":[1639026541]}'),(9602,'3.17.11.23','normal','',0,0,0,1,0,'{\"login\":[1639028224]}'),(9603,'50.87.144.64','normal','',0,0,0,0,0,'[]'),(9604,'134.209.194.57','normal','',0,0,0,0,0,'[]'),(9605,'18.222.131.138','blocked','You have been locked out due to too many invalid login attempts.',1639047540,1639047240,0,5,0,'{\"nf\":[],\"login\":[1639047151,1639047166,1639047169,1639047173,1639047240]}'),(9606,'18.218.182.82','blocked','You have been locked out due to too many invalid login attempts.',1639048200,1639047900,0,5,0,'{\"nf\":[],\"login\":[1639047849,1639047851,1639047860,1639047896,1639047900]}'),(9607,'3.145.155.75','normal','You have been locked out due to too many invalid login attempts.',1639047839,1639047539,0,3,0,'{\"nf\":[],\"login\":[1639047902,1639047962,1639047984]}'),(9608,'52.15.105.187','blocked','You have been locked out due to too many invalid login attempts.',1639047486,1639047186,0,5,0,'{\"nf\":[],\"login\":[1639047121,1639047122,1639047165,1639047175,1639047186]}'),(9609,'3.141.30.107','blocked','You have been locked out due to too many invalid login attempts.',1639047514,1639047214,0,5,0,'{\"nf\":[],\"login\":[1639047142,1639047157,1639047160,1639047162,1639047214]}'),(9610,'3.15.19.196','normal','',0,0,0,12,0,'{\"login\":[1639046771,1639046911,1639047206,1639047258,1639047286,1639047289,1639047533,1639047712,1639047832,1639047964,1639047984,1639048013]}'),(9611,'18.216.142.224','normal','You have been locked out due to too many invalid login attempts.',1639047324,1639047024,0,5,0,'{\"nf\":[],\"login\":[1639047510,1639047611,1639047680,1639047751,1639047902]}'),(9612,'52.14.28.39','blocked','You have been locked out due to too many invalid login attempts.',1639047722,1639047422,0,5,0,'{\"nf\":[],\"login\":[1639047148,1639047312,1639047334,1639047346,1639047422]}'),(9613,'3.144.224.163','blocked','You have been locked out due to too many invalid login attempts.',1639048300,1639048000,0,5,0,'{\"nf\":[],\"login\":[1639047704,1639047758,1639047874,1639047926,1639048000]}'),(9614,'3.145.11.74','blocked','You have been locked out due to too many invalid login attempts.',1639047960,1639047660,0,5,0,'{\"nf\":[],\"login\":[1639047387,1639047485,1639047596,1639047646,1639047660]}'),(9615,'3.144.131.79','blocked','You have been locked out due to too many invalid login attempts.',1639047669,1639047369,0,5,0,'{\"nf\":[],\"login\":[1639047256,1639047268,1639047277,1639047326,1639047369]}'),(9616,'3.15.144.99','blocked','You have been locked out due to too many invalid login attempts.',1639048132,1639047832,0,7,0,'{\"nf\":[],\"login\":[1639047356,1639047467,1639047578,1639047625,1639047705,1639047814,1639047832]}'),(9617,'3.142.196.185','normal','You have been locked out due to too many invalid login attempts.',1639047452,1639047152,0,3,0,'{\"nf\":[],\"login\":[1639047500,1639047771,1639047918]}'),(9618,'3.144.131.79','normal','',0,0,0,1,0,'{\"login\":[1639046777]}'),(9619,'13.59.108.255','blocked','You have been locked out due to too many invalid login attempts.',1639048340,1639048040,0,8,0,'{\"nf\":[],\"login\":[1639047297,1639047308,1639047535,1639047744,1639047850,1639047868,1639047907,1639048040]}'),(9620,'3.17.69.138','blocked','You have been locked out due to too many invalid login attempts.',1639048078,1639047778,0,6,0,'{\"nf\":[],\"login\":[1639047392,1639047479,1639047489,1639047559,1639047702,1639047778]}'),(9621,'18.116.60.34','blocked','You have been locked out due to too many invalid login attempts.',1639047864,1639047564,0,5,0,'{\"nf\":[],\"login\":[1639047313,1639047337,1639047451,1639047505,1639047564]}'),(9622,'18.188.252.241','normal','You have been locked out due to too many invalid login attempts.',1639047640,1639047340,0,3,0,'{\"nf\":[],\"login\":[1639047669,1639047815,1639047960]}'),(9623,'3.145.121.90','blocked','You have been locked out due to too many invalid login attempts.',1639048054,1639047754,0,7,0,'{\"nf\":[],\"login\":[1639047353,1639047376,1639047520,1639047537,1639047685,1639047732,1639047754]}'),(9624,'3.145.54.46','normal','You have been locked out due to too many invalid login attempts.',1639047226,1639046926,0,3,0,'{\"nf\":[],\"login\":[1639047234,1639047266,1639047303]}'),(9625,'3.145.121.90','normal','',0,0,0,1,0,'{\"login\":[1639046781]}'),(9626,'18.219.10.166','normal','You have been locked out due to too many invalid login attempts.',1639047599,1639047299,0,2,0,'{\"nf\":[],\"login\":[1639047605,1639047792]}'),(9627,'3.18.110.161','normal','You have been locked out due to too many invalid login attempts.',1639048169,1639047869,0,1,0,'{\"nf\":[],\"login\":[1639048243]}'),(9628,'18.219.10.166','normal','',0,0,0,1,0,'{\"login\":[1639046781]}'),(9629,'3.145.23.146','blocked','You have been locked out due to too many invalid login attempts.',1639047521,1639047221,0,7,0,'{\"login\":[1639046782,1639046789,1639046929,1639047116,1639047145,1639047176,1639047221]}'),(9630,'3.145.96.211','normal','You have been locked out due to too many invalid login attempts.',1639047366,1639047066,0,5,0,'{\"nf\":[],\"login\":[1639047640,1639047792,1639047886,1639047902,1639048014]}'),(9631,'3.144.22.102','blocked','You have been locked out due to too many invalid login attempts.',1639047587,1639047287,0,5,0,'{\"nf\":[],\"login\":[1639047177,1639047191,1639047201,1639047203,1639047287]}'),(9632,'18.222.86.162','normal','You have been locked out due to too many invalid login attempts.',1639047679,1639047379,0,4,0,'{\"nf\":[],\"login\":[1639047707,1639047802,1639047808,1639047896]}'),(9633,'3.129.68.36','blocked','You have been locked out due to too many invalid login attempts.',1639047507,1639047207,0,5,0,'{\"nf\":[],\"login\":[1639047151,1639047163,1639047184,1639047191,1639047207]}'),(9634,'3.19.222.196','blocked','You have been locked out due to too many invalid login attempts.',1639048035,1639047735,0,5,0,'{\"nf\":[],\"login\":[1639047617,1639047630,1639047643,1639047660,1639047735]}'),(9635,'3.144.193.171','normal','You have been locked out due to too many invalid login attempts.',1639047168,1639046868,0,4,0,'{\"nf\":[],\"login\":[1639047238,1639047284,1639047313,1639047319]}'),(9636,'13.58.20.54','normal','You have been locked out due to too many invalid login attempts.',1639047892,1639047592,0,1,0,'{\"nf\":[],\"login\":[1639048029]}'),(9637,'3.22.164.239','blocked','You have been locked out due to too many invalid login attempts.',1639047964,1639047664,0,6,0,'{\"nf\":[],\"login\":[1639047315,1639047503,1639047537,1639047574,1639047658,1639047662]}'),(9638,'13.59.157.80','normal','You have been locked out due to too many invalid login attempts.',1639047213,1639046913,0,7,0,'{\"nf\":[],\"login\":[1639047303,1639047507,1639047613,1639047691,1639047693,1639047943,1639048016]}'),(9639,'18.219.96.202','blocked','You have been locked out due to too many invalid login attempts.',1639048259,1639047959,0,8,0,'{\"nf\":[],\"login\":[1639047403,1639047527,1639047543,1639047733,1639047810,1639047924,1639047948,1639047959]}'),(9640,'18.220.193.82','blocked','You have been locked out due to too many invalid login attempts.',1639047985,1639047685,0,5,0,'{\"nf\":[],\"login\":[1639047466,1639047585,1639047633,1639047665,1639047685]}'),(9641,'18.223.161.249','blocked','You have been locked out due to too many invalid login attempts.',1639047518,1639047218,0,5,0,'{\"nf\":[],\"login\":[1639047155,1639047172,1639047173,1639047186,1639047217]}'),(9642,'3.139.96.44','normal','You have been locked out due to too many invalid login attempts.',1639047160,1639046860,0,4,0,'{\"nf\":[],\"login\":[1639047216,1639047260,1639047281,1639047299]}'),(9643,'18.222.25.15','normal','You have been locked out due to too many invalid login attempts.',1639047281,1639046981,0,1,0,'{\"nf\":[],\"login\":[1639047311]}'),(9644,'3.145.132.107','blocked','You have been locked out due to too many invalid login attempts.',1639047588,1639047288,0,5,0,'{\"nf\":[],\"login\":[1639047137,1639047187,1639047188,1639047279,1639047287]}'),(9645,'18.225.32.80','normal','You have been locked out due to too many invalid login attempts.',1639047288,1639046988,0,1,0,'{\"nf\":[],\"login\":[1639047308]}'),(9646,'18.217.182.110','normal','You have been locked out due to too many invalid login attempts.',1639047806,1639047506,0,4,0,'{\"nf\":[],\"login\":[1639047826,1639047854,1639047862,1639047887]}'),(9647,'18.116.13.220','normal','You have been locked out due to too many invalid login attempts.',1639047772,1639047472,0,2,0,'{\"nf\":[],\"login\":[1639047773,1639047840]}'),(9648,'3.145.86.136','normal','You have been locked out due to too many invalid login attempts.',1639047886,1639047586,0,2,0,'{\"nf\":[],\"login\":[1639047912,1639047927]}'),(9649,'18.188.146.231','normal','You have been locked out due to too many invalid login attempts.',1639047710,1639047410,0,4,0,'{\"nf\":[],\"login\":[1639047758,1639047854,1639047917,1639047921]}'),(9650,'18.191.118.78','normal','You have been locked out due to too many invalid login attempts.',1639047925,1639047625,0,2,0,'{\"nf\":[],\"login\":[1639047932,1639047936]}'),(9651,'3.17.128.238','blocked','You have been locked out due to too many invalid login attempts.',1639048207,1639047907,0,5,0,'{\"nf\":[],\"login\":[1639047754,1639047763,1639047877,1639047889,1639047906]}'),(9652,'3.18.108.227','blocked','You have been locked out due to too many invalid login attempts.',1639047573,1639047273,0,5,0,'{\"nf\":[],\"login\":[1639047239,1639047240,1639047242,1639047254,1639047273]}'),(9653,'18.118.200.51','normal','You have been locked out due to too many invalid login attempts.',1639047947,1639047647,0,3,0,'{\"nf\":[],\"login\":[1639048008,1639048033,1639048037]}'),(9654,'3.20.237.117','blocked','You have been locked out due to too many invalid login attempts.',1639047793,1639047493,0,5,0,'{\"nf\":[],\"login\":[1639047345,1639047390,1639047463,1639047487,1639047493]}'),(9655,'3.145.46.183','normal','You have been locked out due to too many invalid login attempts.',1639047880,1639047580,0,3,0,'{\"nf\":[],\"login\":[1639047910,1639047962,1639047992]}'),(9656,'3.135.231.237','blocked','You have been locked out due to too many invalid login attempts.',1639048284,1639047984,0,5,0,'{\"nf\":[],\"login\":[1639047853,1639047897,1639047939,1639047962,1639047984]}'),(9657,'42.236.10.123','normal','',0,0,0,0,0,'[]'),(9658,'192.185.176.242','normal','',0,0,0,0,1,'{\"nf\":[1639052060]}'),(9659,'5.189.149.157','normal','',0,0,0,0,3,'{\"nf\":[1639057697,1639057698,1639057705]}'),(9660,'172.241.250.175','normal','',0,0,0,0,0,'[]'),(9661,'203.197.86.127','normal','',0,0,0,0,0,'[]'),(9662,'114.119.136.134','normal','',0,0,0,0,0,'[]'),(9663,'185.3.235.221','normal','',0,0,0,1,0,'{\"login\":[1640554844]}'),(9664,'178.18.240.26','normal','',0,0,0,2,0,'{\"login\":[1640856214,1653808797]}'),(9665,'103.130.218.132','normal','',0,0,0,0,0,'[]'),(9666,'39.103.157.70','normal','',0,0,0,23,0,'{\"login\":[1648403797,1649104173,1652279362,1654110836,1655073724,1655405403,1655407773,1656266371,1657385814,1658462677,1658545282,1658566621,1658661422,1658731654,1659256460,1659727706,1660745235,1661353774,1661680953,1661696203,1662120241,1662202762,1662232922]}'),(9667,'114.119.148.4','normal','',0,0,0,0,0,'[]'),(9668,'52.149.180.201','normal','',0,0,0,5,0,'{\"login\":[1640796835,1642407444,1642892384,1643015204,1654508928]}'),(9669,'35.88.162.153','normal','',0,0,0,0,0,'[]'),(9670,'54.149.42.56','normal','',0,0,0,0,0,'[]'),(9671,'47.254.69.97','normal','',0,0,0,0,0,'[]'),(9672,'178.128.30.1','normal','',0,0,0,0,1,'{\"nf\":[1639083052]}'),(9673,'83.150.213.2','normal','',0,0,0,0,3,'{\"nf\":[1639084255,1639426569,1639637541]}'),(9674,'65.21.195.183','normal','',0,0,0,0,0,'[]'),(9675,'167.99.75.244','normal','',0,0,0,2,0,'{\"login\":[1640247484,1640570547]}'),(9676,'43.241.73.39','normal','',0,0,0,0,0,'[]'),(9677,'162.240.24.125','normal','',0,0,0,0,0,'[]'),(9678,'195.226.223.181','normal','',0,0,0,1,0,'{\"login\":[1642230787]}'),(9679,'31.177.95.24','normal','',0,0,0,0,0,'[]'),(9680,'207.244.252.54','normal','',0,0,0,0,0,'[]'),(9681,'193.169.255.204','normal','',0,0,0,0,0,'[]'),(9682,'3.94.133.178','normal','',0,0,0,0,1,'{\"nf\":[1639105192]}'),(9683,'200.147.58.23','normal','',0,0,0,0,0,'[]'),(9684,'197.248.5.24','normal','',0,0,0,0,0,'[]'),(9685,'103.145.50.32','normal','',0,0,0,0,0,'[]'),(9686,'149.18.50.22','normal','',0,0,0,1,0,'{\"login\":[1642208845]}'),(9687,'185.231.59.189','normal','',0,0,0,0,0,'[]'),(9688,'173.249.11.108','normal','',0,0,0,0,0,'[]'),(9689,'45.32.108.183','normal','',0,0,0,0,0,'[]'),(9690,'46.19.33.146','normal','',0,0,0,0,0,'[]'),(9691,'5.101.114.110','normal','',0,0,0,0,0,'[]'),(9692,'54.152.17.134','normal','',0,0,0,0,0,'[]'),(9693,'178.172.136.150','normal','',0,0,0,0,0,'[]'),(9694,'135.181.142.240','normal','',0,0,0,0,0,'[]'),(9695,'103.145.50.194','normal','',0,0,0,0,0,'[]'),(9696,'173.249.147.174','normal','',0,0,0,1,0,'{\"login\":[1640778183]}'),(9697,'162.215.208.240','normal','',0,0,0,0,0,'[]'),(9698,'3.85.16.162','normal','',0,0,0,0,1,'{\"nf\":[1639123550]}'),(9699,'104.244.72.7','normal','',0,0,0,0,0,'[]'),(9700,'13.233.254.180','normal','',0,0,0,0,0,'[]'),(9701,'114.55.35.75','normal','',0,0,0,0,0,'[]'),(9702,'162.241.201.102','normal','',0,0,0,1,0,'{\"login\":[1640922499]}'),(9703,'23.254.252.219','normal','',0,0,0,0,1,'{\"nf\":[1639125814]}'),(9704,'167.86.69.41','normal','',0,0,0,1,0,'{\"login\":[1640254457]}'),(9705,'178.134.167.6','normal','',0,0,0,0,2,'{\"nf\":[1639127296,1639127301]}'),(9706,'14.215.44.185','normal','',0,0,0,1,0,'{\"login\":[1642196864]}'),(9707,'107.190.139.130','normal','',0,0,0,0,0,'[]'),(9708,'167.99.121.170','normal','',0,0,0,0,0,'[]'),(9709,'185.220.174.145','normal','',0,0,0,0,0,'[]'),(9710,'185.225.39.112','normal','',0,0,0,0,3,'{\"nf\":[1639131735,1640442834,1641481017]}'),(9711,'173.212.214.140','normal','',0,0,0,0,0,'[]'),(9712,'47.105.153.104','normal','',0,0,0,1,0,'{\"login\":[1650136313]}'),(9713,'217.199.187.72','normal','',0,0,0,0,1,'{\"nf\":[1639134190]}'),(9714,'74.208.59.166','normal','',0,0,0,0,1,'{\"nf\":[1639138329]}'),(9715,'68.168.211.58','normal','',0,0,0,0,0,'[]'),(9716,'162.214.101.181','normal','',0,0,0,0,0,'[]'),(9717,'35.189.40.244','normal','',0,0,0,2,0,'{\"login\":[1639145160,1642591175]}'),(9718,'198.71.236.82','normal','',0,0,0,0,1,'{\"nf\":[1639149949]}'),(9719,'139.99.53.101','normal','',0,0,0,0,2,'{\"nf\":[1639152877,1641688162]}'),(9720,'161.35.52.207','normal','',0,0,0,51,0,'{\"login\":[1639157560,1639590856,1639676426,1640167319,1641492435,1642617813,1645947697,1646468252,1646676279,1647459968,1647485145,1650123136,1651158826,1651728506,1652282638,1652538050,1652649486,1653002875,1653506520,1653802898,1654535943,1654607023,1655165085,1655210382,1655417888,1656032430,1656231715,1656309117,1657043991,1657061409,1657300319,1657982160,1658010230,1658301053,1658409101,1658430056,1658547549,1658656114,1658940276,1659098138,1659129327,1659318291,1659330803,1660345591,1660583681,1660612820,1660742702,1660939509,1661299318,1661311467,1663062311]}'),(9721,'89.31.140.131','normal','',0,0,0,0,0,'[]'),(9722,'121.5.113.11','normal','',0,0,0,0,0,'[]'),(9723,'185.206.162.231','normal','',0,0,0,0,1,'{\"nf\":[1639163705]}'),(9724,'173.252.79.24','normal','',0,0,0,0,0,'[]'),(9725,'118.178.178.215','normal','',0,0,0,0,1,'{\"nf\":[1639167359]}'),(9726,'35.88.149.168','normal','',0,0,0,0,0,'[]'),(9727,'52.36.55.253','normal','',0,0,0,0,0,'[]'),(9728,'34.211.116.23','normal','',0,0,0,0,0,'[]'),(9729,'74.208.59.78','normal','',0,0,0,0,0,'[]'),(9730,'114.119.139.247','normal','',0,0,0,0,0,'[]'),(9731,'50.87.144.25','normal','',0,0,0,0,2,'{\"nf\":[1639181203,1642900464]}'),(9732,'66.113.160.164','normal','',0,0,0,0,1,'{\"nf\":[1639186778]}'),(9733,'34.77.162.28','normal','',0,0,0,0,0,'[]'),(9734,'66.249.70.41','normal','',0,0,0,0,0,'[]'),(9735,'144.76.158.26','normal','',0,0,0,0,1,'{\"nf\":[1639205786]}'),(9736,'206.189.53.149','normal','',0,0,0,2,0,'{\"login\":[1640245443,1650169346]}'),(9737,'143.244.134.174','normal','',0,0,0,1,0,'{\"login\":[1641860881]}'),(9738,'77.222.61.9','normal','',0,0,0,1,0,'{\"login\":[1639224102]}'),(9739,'143.198.239.39','normal','',0,0,0,0,1,'{\"nf\":[1639228119]}'),(9740,'121.4.238.122','blocked','You have been locked out due to too many invalid login attempts.',1639234532,1639234232,0,5,0,'{\"login\":[1639234223,1639234226,1639234228,1639234230,1639234232]}'),(9741,'128.199.186.197','normal','',0,0,0,1,0,'{\"login\":[1642187750]}'),(9742,'51.91.104.61','normal','',0,0,0,0,0,'[]'),(9743,'157.7.106.118','normal','',0,0,0,0,4,'{\"nf\":[1639241836,1642672861,1643559522,1643559522]}'),(9744,'41.193.235.0','normal','',0,0,0,0,1,'{\"nf\":[1639245467]}'),(9745,'198.204.224.244','normal','',0,0,0,0,0,'[]'),(9746,'37.228.136.74','normal','',0,0,0,0,0,'[]'),(9747,'34.217.124.198','normal','',0,0,0,0,0,'[]'),(9748,'54.202.4.171','normal','',0,0,0,0,0,'[]'),(9749,'54.187.137.61','normal','',0,0,0,0,0,'[]'),(9750,'34.214.6.205','normal','',0,0,0,0,0,'[]'),(9751,'103.172.205.188','normal','',0,0,0,2,0,'{\"login\":[1640243235,1640432246]}'),(9752,'124.126.78.162','normal','',0,0,0,0,0,'[]'),(9753,'120.24.108.217','normal','',0,0,0,1,0,'{\"login\":[1640234385]}'),(9754,'185.137.168.149','normal','',0,0,0,1,0,'{\"login\":[1642199764]}'),(9755,'185.182.57.115','normal','',0,0,0,0,0,'[]'),(9756,'3.108.56.213','normal','',0,0,0,0,0,'[]'),(9757,'104.244.76.13','normal','',0,0,0,1,0,'{\"login\":[1652747976]}'),(9758,'188.166.152.29','normal','',0,0,0,7,0,'{\"login\":[1639292850,1640862010,1640897566,1643044124,1644266199,1644451541,1644455667]}'),(9759,'66.115.166.244','normal','',0,0,0,0,2,'{\"nf\":[1639296185,1639340396]}'),(9760,'27.0.15.87','normal','',0,0,0,0,2,'{\"nf\":[1639296381,1639296385]}'),(9761,'206.189.14.219','normal','',0,0,0,1,0,'{\"login\":[1639662871]}'),(9762,'209.97.167.63','normal','',0,0,0,0,0,'[]'),(9763,'37.122.215.208','normal','',0,0,0,0,0,'[]'),(9764,'67.220.184.98','normal','',0,0,0,0,3,'{\"nf\":[1639319052,1639650074,1642145326]}'),(9765,'23.108.52.245','normal','',0,0,0,0,0,'[]'),(9766,'157.245.166.98','normal','',0,0,0,2,0,'{\"login\":[1653989526,1661168830]}'),(9767,'157.55.39.215','normal','',0,0,0,0,0,'[]'),(9768,'91.206.201.131','normal','',0,0,0,0,0,'[]'),(9769,'149.56.150.216','normal','',0,0,0,0,0,'[]'),(9770,'216.145.14.142','normal','',0,0,0,0,0,'[]'),(9771,'185.104.29.78','normal','',0,0,0,0,1,'{\"nf\":[1639337197]}'),(9772,'5.161.62.218','normal','',0,0,0,0,1,'{\"nf\":[1639337737]}'),(9773,'47.93.61.192','normal','',0,0,0,25,0,'{\"login\":[1642842694,1642845134,1643480344,1643680729,1644281519,1644293667,1645073227,1645738783,1645757540,1646064431,1646435748,1646692158,1646907884,1647002288,1647945927,1648149813,1648163096,1648452603,1648480210,1648544991,1648564590,1649959950,1651704540,1652277392,1652942713]}'),(9774,'82.196.10.165','normal','',0,0,0,1,0,'{\"login\":[1640259154]}'),(9775,'114.119.156.95','normal','',0,0,0,0,0,'[]'),(9776,'192.169.145.227','normal','',0,0,0,0,1,'{\"nf\":[1639345291]}'),(9777,'161.97.118.183','normal','',0,0,0,0,0,'[]'),(9778,'192.99.153.103','normal','',0,0,0,0,0,'[]'),(9779,'159.65.223.194','normal','',0,0,0,2,0,'{\"login\":[1640912630,1653992285]}'),(9780,'122.17.148.164','normal','',0,0,0,3,0,'{\"login\":[1640667369,1650291769,1661077516]}'),(9781,'194.5.175.15','normal','',0,0,0,2,0,'{\"login\":[1640650320,1650135126]}'),(9782,'185.220.101.168','normal','',0,0,0,0,0,'[]'),(9783,'52.24.54.73','normal','',0,0,0,0,1,'{\"nf\":[1639362224]}'),(9784,'159.223.65.121','normal','',0,0,0,0,0,'[]'),(9785,'173.252.79.11','normal','',0,0,0,0,0,'[]'),(9786,'173.252.79.4','normal','',0,0,0,0,0,'[]'),(9787,'159.89.100.177','normal','',0,0,0,0,0,'[]'),(9788,'125.193.82.212','normal','',0,0,0,0,0,'[]'),(9789,'129.205.167.42','normal','',0,0,0,0,0,'[]'),(9790,'82.165.81.127','normal','',0,0,0,0,1,'{\"nf\":[1639376050]}'),(9791,'194.242.10.226','normal','',0,0,0,0,0,'[]'),(9792,'184.94.152.178','normal','',0,0,0,0,0,'[]'),(9793,'105.225.176.80','normal','',0,0,0,0,1,'{\"nf\":[1639380443]}'),(9794,'51.79.146.95','normal','',0,0,0,0,0,'[]'),(9795,'65.21.206.44','normal','',0,0,0,0,0,'[]'),(9796,'198.54.128.143','blocked','You have been locked out due to too many invalid login attempts.',1639384592,1639384292,0,5,0,'{\"login\":[1639384289,1639384290,1639384291,1639384291,1639384292]}'),(9797,'185.156.73.104','normal','',0,0,0,0,1,'{\"nf\":[1639392789]}'),(9798,'78.190.43.240','normal','',0,0,0,0,0,'[]'),(9799,'3.110.0.76','normal','',0,0,0,0,0,'[]'),(9800,'186.234.80.86','normal','',0,0,0,0,0,'[]'),(9801,'133.18.228.79','normal','',0,0,0,0,0,'[]'),(9802,'141.136.0.129','normal','',0,0,0,0,0,'[]'),(9803,'34.86.35.22','normal','',0,0,0,0,0,'[]'),(9804,'167.172.210.130','normal','',0,0,0,0,1,'{\"nf\":[1639445966]}'),(9805,'108.179.193.25','normal','',0,0,0,0,0,'[]'),(9806,'193.34.145.204','normal','',0,0,0,0,1,'{\"nf\":[1639455127]}'),(9807,'144.91.83.189','normal','',0,0,0,0,0,'[]'),(9808,'192.185.83.84','normal','',0,0,0,0,1,'{\"nf\":[1639464666]}'),(9809,'31.177.95.141','normal','',0,0,0,0,0,'[]'),(9810,'114.119.141.232','normal','',0,0,0,0,0,'[]'),(9811,'184.171.244.50','normal','',0,0,0,0,0,'[]'),(9812,'104.143.93.44','normal','',0,0,0,0,2,'{\"nf\":[1639474669,1639474681]}'),(9813,'104.219.251.41','normal','',0,0,0,0,0,'[]'),(9814,'173.252.79.6','normal','',0,0,0,0,0,'[]'),(9815,'123.31.41.38','normal','',0,0,0,2,0,'{\"login\":[1640413963,1650144707]}'),(9816,'78.157.40.35','normal','',0,0,0,33,0,'{\"login\":[1639478998,1639687733,1640050274,1640423362,1640514830,1640739872,1640791075,1641967851,1642154570,1642398571,1642432770,1642511806,1642970588,1643321685,1644293122,1644677350,1645857716,1645984955,1646093712,1646860353,1646942735,1647072855,1647353493,1647359777,1647653822,1647724707,1648470048,1648480814,1648570905,1649487915,1650124142,1651053408,1651067428]}'),(9817,'146.59.197.18','normal','',0,0,0,2,0,'{\"login\":[1639489387,1639563158]}'),(9818,'66.70.189.34','normal','',0,0,0,0,1,'{\"nf\":[1639490467]}'),(9819,'167.86.74.70','normal','',0,0,0,13,0,'{\"login\":[1639492057,1640885041,1640931404,1641195780,1641202314,1641472822,1642098005,1642188141,1642382128,1642423932,1643328334,1644108829,1644297496]}'),(9820,'87.249.49.150','normal','',0,0,0,3,0,'{\"login\":[1639495564,1639682571,1639826429]}'),(9821,'173.252.83.12','normal','',0,0,0,0,0,'[]'),(9822,'173.252.83.120','normal','',0,0,0,0,0,'[]'),(9823,'141.136.41.146','normal','',0,0,0,0,0,'[]'),(9824,'94.180.185.215','normal','',0,0,0,0,0,'[]'),(9825,'133.18.77.118','normal','',0,0,0,6,0,'{\"login\":[1639510251,1639564958,1639716213,1639863734,1640424473,1640873489]}'),(9826,'17.121.112.34','normal','',0,0,0,0,0,'[]'),(9827,'142.93.201.0','normal','',0,0,0,51,0,'{\"login\":[1639519013,1639569513,1640150543,1640547236,1640624385,1641139637,1642391448,1643561536,1644165896,1644707247,1646015726,1646251283,1646437637,1646500572,1646908851,1647181964,1647663143,1647717811,1648636791,1649707003,1651157852,1651696165,1652301166,1652533288,1653493357,1654198660,1654418245,1654591866,1654722511,1655019326,1657449885,1657478811,1657569944,1657649317,1657847953,1658302631,1658812960,1658832311,1660112052,1660217178,1660227497,1660236867,1660353783,1660497943,1660720994,1660768765,1660955013,1662139423,1662180914,1662382615,1663019229]}'),(9828,'95.108.213.61','normal','',0,0,0,0,0,'[]'),(9829,'46.32.228.70','normal','',0,0,0,17,0,'{\"login\":[1639526995,1654720736,1655416095,1655821841,1656023606,1656776714,1656854906,1657059224,1658374188,1658388174,1659982195,1660321643,1661260253,1661623831,1661630740,1662100420,1662239385]}'),(9830,'144.202.107.203','normal','',0,0,0,1,0,'{\"login\":[1639531271]}'),(9831,'185.162.147.26','normal','',0,0,0,1,0,'{\"login\":[1640781172]}'),(9832,'162.144.63.211','normal','',0,0,0,28,0,'{\"login\":[1639535785,1639886421,1640414292,1641862070,1641964796,1642288289,1642520453,1643533599,1644179194,1644479266,1644596568,1644606786,1645853850,1646252005,1646680572,1646702335,1646966139,1647670385,1648173297,1649484685,1650185650,1650271335,1650472468,1650476239,1651966762,1651987341,1652422775,1653429120]}'),(9833,'217.25.90.232','normal','',0,0,0,1,0,'{\"login\":[1639536692]}'),(9834,'192.3.165.138','normal','',0,0,0,18,0,'{\"login\":[1639539423,1640521020,1640680656,1640800301,1640959711,1641327129,1641805969,1642535825,1642626262,1643044438,1643293001,1643470745,1643489276,1643511168,1644100696,1644198286,1644289853,1644448471]}'),(9835,'151.106.117.117','normal','',0,0,0,0,3,'{\"nf\":[1639540889,1642678795,1642755780]}'),(9836,'167.99.252.52','normal','',0,0,0,76,0,'{\"login\":[1639541230,1639698094,1639959415,1640113736,1640283036,1640636033,1640671436,1640993616,1641016377,1641958777,1641969617,1642011496,1642060591,1642096565,1642438978,1642467265,1642961908,1643033841,1643307424,1644144962,1644229041,1644435201,1645854812,1646444370,1646460074,1646505004,1647113593,1647147074,1647416203,1648203896,1648215965,1648598704,1649029366,1649065945,1649757419,1649946250,1649996746,1650387365,1650394511,1650487111,1650857186,1651287193,1651411542,1651556460,1651999295,1652005158,1652071224,1652420810,1652549754,1652620855,1652838930,1652899984,1653200903,1653533815,1654056508,1654311361,1654317936,1654628126,1654973019,1655665753,1655815285,1656535889,1656832276,1657124405,1657257934,1657482134,1658370908,1658410210,1658527288,1658541846,1658683380,1658747320,1659399239,1659839499,1660136586,1661765427]}'),(9837,'201.21.198.89','normal','',0,0,0,2,0,'{\"login\":[1639543043,1639565871]}'),(9838,'3.15.31.123','normal','',0,0,0,0,1,'{\"nf\":[1639544561]}'),(9839,'105.184.111.21','normal','',0,0,0,0,3,'{\"nf\":[1639547326,1639547401,1639547450]}'),(9840,'74.208.57.251','normal','',0,0,0,0,1,'{\"nf\":[1639548171]}'),(9841,'23.99.229.218','normal','',0,0,0,58,0,'{\"login\":[1639548439,1639612178,1639739527,1640613967,1641138884,1641464754,1641501923,1642337833,1642577612,1642845747,1643092966,1643479783,1643512912,1643543589,1643657766,1644270530,1644390550,1644626017,1645229160,1645971407,1646523874,1646866962,1646964326,1646975934,1647495142,1647589706,1647920286,1648082832,1649712183,1649785913,1650957420,1652031906,1652254202,1652340000,1652825110,1652950646,1653302574,1653434269,1654432595,1654850101,1654906765,1655014557,1656913532,1657178688,1657298389,1657525941,1657897466,1658340094,1658831005,1659420660,1660660674,1660931150,1661288239,1661526028,1661638335,1661774899,1662153675,1662683551]}'),(9842,'34.245.176.0','normal','',0,0,0,1,0,'{\"login\":[1639549322]}'),(9843,'198.54.121.131','normal','',0,0,0,0,0,'[]'),(9844,'157.7.189.229','normal','',0,0,0,0,1,'{\"nf\":[1639551397]}'),(9845,'194.67.91.197','normal','',0,0,0,60,0,'{\"login\":[1639552328,1639954188,1640408393,1640646350,1640678683,1641274017,1641320071,1641501132,1641514661,1641515459,1641729833,1642257851,1642296346,1642349093,1642551358,1642632176,1642840237,1642963843,1642988113,1643053590,1643096888,1643306832,1643327118,1643331384,1643471863,1644215078,1644591100,1644792626,1645257635,1645268100,1646442463,1646460421,1646473869,1646592727,1646598415,1646599785,1646703784,1646739075,1646840838,1646990841,1647035458,1647208218,1647210008,1647239990,1654851585,1654904313,1654932408,1654983762,1655192398,1655786910,1656724070,1656844878,1656905628,1657396338,1657416141,1657822201,1658315122,1658603174,1658827098,1658955316]}'),(9846,'35.86.83.176','normal','',0,0,0,0,0,'[]'),(9847,'46.43.9.213','normal','',0,0,0,25,0,'{\"login\":[1639556796,1640621662,1641188648,1641793707,1641960480,1641988932,1642396942,1642556713,1642584192,1642907314,1642949978,1643061899,1643301534,1644456711,1644483425,1644555036,1644742078,1644780027,1644784184,1645083877,1645230213,1645238705,1645327076,1645977678,1646046330]}'),(9848,'188.166.33.234','normal','',0,0,0,21,0,'{\"login\":[1639558600,1639742203,1639816441,1640035472,1640158109,1640509364,1640647650,1640971804,1641758638,1641782305,1641865640,1642171556,1642371136,1642596067,1642607130,1643091679,1643475260,1644106798,1644600247,1644651527,1644776029]}'),(9849,'216.24.255.50','normal','',0,0,0,1,0,'{\"login\":[1639560413]}'),(9850,'107.155.108.120','normal','',0,0,0,0,0,'[]'),(9851,'185.18.212.66','normal','',0,0,0,3,0,'{\"login\":[1640400401,1650130226,1654509706]}'),(9852,'217.199.187.73','normal','',0,0,0,0,1,'{\"nf\":[1639568918]}'),(9853,'128.199.13.78','normal','',0,0,0,0,7,'{\"nf\":[1639571571,1639571572,1639571573,1639571575,1639571577,1639571578,1639571587]}'),(9854,'54.36.148.132','normal','',0,0,0,0,0,'[]'),(9855,'54.36.149.75','normal','',0,0,0,0,0,'[]'),(9856,'109.248.157.54','normal','',0,0,0,4,0,'{\"login\":[1639572258,1639706476,1639788981,1640560006]}'),(9857,'97.79.236.218','normal','',0,0,0,3,0,'{\"login\":[1640604092,1640697180,1642199286]}'),(9858,'103.31.249.221','normal','',0,0,0,54,0,'{\"login\":[1639574100,1639784721,1640503240,1640642471,1640915480,1641076649,1641409263,1642064242,1642100889,1642372756,1642685104,1642954001,1642982244,1643674951,1644240033,1644562256,1644676395,1644778072,1645088147,1645337704,1645821997,1646511279,1647108414,1647621456,1647648762,1648064640,1648080531,1648459337,1649840433,1651097451,1651192899,1651551773,1651725713,1652254993,1652555453,1652688778,1652785147,1652890993,1653016907,1653894741,1654429581,1654855575,1655474245,1655654244,1656234111,1656726051,1656748604,1657666564,1657673626,1659013916,1661653874,1661664208,1662329513,1662804378]}'),(9859,'178.254.29.42','normal','',0,0,0,5,0,'{\"login\":[1639575019,1639751474,1639765816,1639838682,1640584081]}'),(9860,'62.171.147.0','normal','',0,0,0,0,0,'[]'),(9861,'162.241.225.42','normal','',0,0,0,0,1,'{\"nf\":[1639579544]}'),(9862,'51.159.155.6','normal','',0,0,0,34,0,'{\"login\":[1639579649,1648596305,1650401052,1650479910,1650609956,1650855862,1650996352,1651069712,1651121200,1651363438,1651403193,1651579486,1652508194,1652672409,1653348655,1653906013,1654361896,1654390052,1655071073,1655425157,1655533479,1657171980,1658256942,1658345273,1658601204,1658946354,1658985754,1659006382,1661316838,1661633795,1661660709,1662041554,1662325904,1663027959]}'),(9863,'162.254.150.6','normal','',0,0,0,0,1,'{\"nf\":[1639581826]}'),(9864,'217.182.207.222','normal','',0,0,0,0,1,'{\"nf\":[1639586047]}'),(9865,'162.241.230.108','normal','',0,0,0,0,0,'[]'),(9866,'66.249.66.82','normal','',0,0,0,0,0,'[]'),(9867,'159.89.27.131','normal','',0,0,0,31,0,'{\"login\":[1639592812,1639904151,1640533421,1641341273,1641385527,1643514076,1644407098,1644773991,1647630896,1650016992,1650703372,1651030242,1652092706,1652592752,1652626390,1652671652,1654074509,1654504632,1654505825,1656112599,1657743420,1659081015,1659402678,1659722030,1660508209,1660667612,1660995139,1661637296,1661762365,1662016931,1662397846]}'),(9868,'197.101.119.29','normal','',0,0,0,0,0,'[]'),(9869,'185.153.208.38','normal','',0,0,0,11,0,'{\"login\":[1639596805,1640030068,1640066442,1641056365,1641477996,1642183908,1642232445,1642396731,1642445083,1642871861,1643471303]}'),(9870,'110.249.201.29','normal','',0,0,0,0,0,'[]'),(9871,'110.249.201.57','normal','',0,0,0,0,0,'[]'),(9872,'169.0.61.99','normal','',0,0,0,0,0,'[]'),(9873,'18.195.159.140','normal','',0,0,0,2,0,'{\"login\":[1639602930,1639791128]}'),(9874,'185.135.88.63','normal','',0,0,0,0,1,'{\"nf\":[1639603885]}'),(9875,'114.119.141.116','normal','',0,0,0,0,0,'[]'),(9876,'47.52.190.102','normal','',0,0,0,5,0,'{\"login\":[1639608043,1640034123,1640500542,1640573841,1641114741]}'),(9877,'143.244.177.220','normal','',0,0,0,49,0,'{\"login\":[1639609074,1640075846,1640866245,1641014379,1643540080,1644099681,1644193249,1645816519,1646249852,1647189245,1647386689,1647572511,1647890060,1648693297,1649540319,1649787724,1649803213,1650979891,1650997141,1651348160,1653229416,1653361176,1654299570,1654516673,1654871275,1655027391,1655653433,1656009546,1656238874,1656538716,1656554850,1657187818,1657310346,1658101905,1658651577,1659142784,1659291855,1659382776,1660279268,1660378010,1660431379,1660552110,1660587563,1661234668,1661398002,1661622342,1661740707,1662321456,1663103161]}'),(9878,'183.182.120.9','normal','',0,0,0,3,0,'{\"login\":[1639615794,1639615802,1639615808]}'),(9879,'185.25.205.159','normal','',0,0,0,7,0,'{\"login\":[1639618325,1639789515,1640629699,1640673395,1641026277,1641033544,1641100870]}'),(9880,'5.35.247.166','normal','',0,0,0,3,0,'{\"login\":[1639619323,1639721771,1639817151]}'),(9881,'202.61.253.63','normal','',0,0,0,0,0,'[]'),(9882,'185.238.0.101','normal','',0,0,0,5,0,'{\"login\":[1639624318,1639744951,1639771018,1640413121,1640632849]}'),(9883,'92.126.235.186','normal','',0,0,0,1,0,'{\"login\":[1639627597]}'),(9884,'194.13.83.88','normal','',0,0,0,6,0,'{\"login\":[1639628400,1639735291,1639962051,1642079513,1642148052,1642347240]}'),(9885,'161.97.181.141','normal','',0,0,0,2,0,'{\"login\":[1639630456,1639781009]}'),(9886,'212.103.4.29','normal','',0,0,0,80,0,'{\"login\":[1639637731,1640131845,1640349083,1640907028,1641001475,1641008402,1641064681,1641381112,1641456751,1642008685,1642466364,1642521348,1642586776,1642602205,1642856203,1644233314,1644472051,1644502215,1644794713,1645083149,1645443121,1646543697,1646547103,1646981133,1647031238,1647183790,1647757192,1647805519,1647911692,1648081679,1648137719,1648447438,1648649374,1648705377,1650038706,1650167871,1651184725,1652019304,1652258171,1652504934,1652612095,1652829670,1652847306,1652855538,1652920172,1653789098,1654162528,1654368996,1654634705,1654728453,1654802327,1654866677,1654962826,1655247374,1655582981,1656025788,1656226928,1656236491,1656295555,1656525495,1656838223,1657198231,1657409787,1657629912,1657644316,1658080119,1658375297,1658518469,1658998988,1659430865,1659833589,1660202433,1660247134,1660568924,1660964788,1661637076,1662316223,1662332216,1662798983,1663070127]}'),(9887,'18.183.151.66','normal','',0,0,0,3,0,'{\"login\":[1639638783,1639845950,1639858127]}'),(9888,'50.62.176.177','normal','',0,0,0,0,1,'{\"nf\":[1639643807]}'),(9889,'85.128.143.21','normal','',0,0,0,2,0,'{\"login\":[1639644750,1654502907]}'),(9890,'186.234.80.19','normal','',0,0,0,0,0,'[]'),(9891,'159.65.148.166','normal','',0,0,0,0,0,'[]'),(9892,'54.37.16.33','normal','',0,0,0,0,0,'[]'),(9893,'54.36.148.51','normal','',0,0,0,0,0,'[]'),(9894,'3.85.189.69','normal','',0,0,0,0,0,'[]'),(9895,'162.241.123.159','normal','',0,0,0,0,1,'{\"nf\":[1639663594]}'),(9896,'37.187.77.228','normal','',0,0,0,0,4,'{\"nf\":[1639671778,1639671788,1639671789,1639671791]}'),(9897,'178.79.97.252','normal','',0,0,0,0,0,'[]'),(9898,'114.119.135.193','normal','',0,0,0,0,0,'[]'),(9899,'5.185.42.79','normal','',0,0,0,2,0,'{\"login\":[1639678478,1642156783]}'),(9900,'93.90.192.123','normal','',0,0,0,7,0,'{\"login\":[1639680523,1639748780,1639773650,1640082655,1640356923,1640519639,1640529285]}'),(9901,'84.17.48.84','normal','',0,0,0,0,19,'{\"nf\":[1639684549,1639684556,1639684558,1639684560,1639684563,1639684566,1639684569,1639684571,1639684573,1639684581,1639684584,1639684586,1639684589,1639684592,1639684594,1639684597,1639684599,1639684601,1639684604]}'),(9902,'13.212.234.27','normal','',0,0,0,1,0,'{\"login\":[1639684623]}'),(9903,'165.73.112.199','normal','',0,0,0,0,0,'[]'),(9904,'207.46.13.231','normal','',0,0,0,0,0,'[]'),(9905,'114.119.144.88','normal','',0,0,0,0,0,'[]'),(9906,'161.22.41.200','normal','',0,0,0,2,0,'{\"login\":[1639694976,1640753606]}'),(9907,'115.29.199.218','normal','',0,0,0,9,0,'{\"login\":[1639696019,1639875033,1639991428,1641792089,1643040600,1643103788,1643324683,1644162409,1644543090]}'),(9908,'34.121.130.98','normal','',0,0,0,5,0,'{\"login\":[1639697054,1642279940,1643531343,1643552965,1644244529]}'),(9909,'68.79.63.93','normal','',0,0,0,23,0,'{\"login\":[1639701222,1640161204,1640287453,1640436110,1640703874,1640805417,1641272799,1641401054,1652394462,1653587026,1653791900,1654611541,1654717791,1654988260,1654992778,1655065819,1656021432,1656876820,1657392384,1657398728,1657520876,1658262996,1659997128]}'),(9910,'13.81.59.92','normal','',0,0,0,72,0,'{\"login\":[1639704365,1639743826,1640597456,1640975090,1641475774,1641749732,1642007979,1642033468,1642092254,1642150224,1642294732,1642398790,1642587216,1643048541,1643727711,1644229571,1644339024,1644615528,1644719351,1645858689,1646231594,1646489818,1646582117,1647662099,1647938505,1648633315,1649024497,1650300291,1650822224,1651193483,1651401374,1651705831,1651953421,1652354669,1653061241,1653922220,1654636019,1654890648,1654963472,1655228077,1655374266,1655428803,1655571688,1655659824,1656011701,1657051324,1657096722,1657329702,1657333501,1657900298,1658200855,1658342213,1658526172,1658539572,1658546407,1659099227,1659570652,1659576074,1660331837,1660591532,1661000078,1661142090,1661195118,1661256316,1661285457,1661632162,1661691132,1661747927,1662415084,1662816608,1663031254,1663095351]}'),(9911,'184.168.97.42','normal','',0,0,0,1,1,'{\"nf\":[1639709997],\"login\":[1640507546]}'),(9912,'93.113.110.104','normal','',0,0,0,27,0,'{\"login\":[1639715189,1639721262,1640200544,1640364520,1640431563,1640598351,1640902826,1641052674,1641138136,1641356668,1641843048,1641870102,1642083322,1642157518,1643547091,1643653211,1644109863,1644294213,1644351025,1644520451,1645090263,1645252405,1645260755,1645263934,1645790196,1646290315,1646299331]}'),(9913,'178.128.54.225','normal','',0,0,0,15,0,'{\"login\":[1639715705,1640345210,1640545421,1641058226,1641759998,1641998712,1645081699,1645327730,1646911782,1647123949,1647409979,1648077086,1649011321,1649255363,1649544105]}'),(9914,'185.152.67.228','blocked','You have been locked out due to too many invalid login attempts.',1639716403,1639716103,0,5,0,'{\"login\":[1639716100,1639716101,1639716102,1639716103,1639716103]}'),(9915,'44.236.134.152','normal','',0,0,0,1,0,'{\"login\":[1639718240]}'),(9916,'107.189.10.237','normal','',0,0,0,0,0,'[]'),(9917,'192.185.176.151','normal','',0,0,0,0,0,'[]'),(9918,'34.150.196.201','normal','',0,0,0,1,0,'{\"login\":[1639724337]}'),(9919,'94.130.58.196','normal','',0,0,0,6,0,'{\"login\":[1639724854,1639785252,1639850953,1639978956,1640571062,1641122651]}'),(9920,'42.193.16.135','normal','',0,0,0,0,0,'[]'),(9921,'167.114.116.25','normal','',0,0,0,0,0,'[]'),(9922,'5.45.207.119','normal','',0,0,0,0,0,'[]'),(9923,'5.255.253.181','normal','',0,0,0,0,0,'[]'),(9924,'87.250.224.71','normal','',0,0,0,0,1,'{\"nf\":[1639744286]}'),(9925,'54.36.148.140','normal','',0,0,0,0,0,'[]'),(9926,'104.131.92.191','normal','',0,0,0,1,0,'{\"login\":[1639746618]}'),(9927,'191.233.3.202','normal','',0,0,0,0,0,'[]'),(9928,'40.77.167.0','normal','',0,0,0,0,0,'[]'),(9929,'114.119.135.229','normal','',0,0,0,0,0,'[]'),(9930,'80.74.159.100','normal','',0,0,0,1,0,'{\"login\":[1639766326]}'),(9931,'207.46.13.236','normal','',0,0,0,0,0,'[]'),(9932,'3.14.10.49','normal','',0,0,0,0,0,'[]'),(9933,'36.110.214.194','normal','',0,0,0,0,3,'{\"nf\":[1639773265,1639773268,1639773269]}'),(9934,'36.110.214.195','normal','',0,0,0,0,0,'[]'),(9935,'36.110.211.2','normal','',0,0,0,0,1,'{\"nf\":[1639773268]}'),(9936,'133.130.102.247','normal','',0,0,0,20,0,'{\"login\":[1639777326,1639787390,1641888243,1641975153,1643562104,1644167151,1644262404,1644271074,1644642112,1644702275,1645079551,1645355497,1645805132,1646508307,1646575112,1646586088,1646605515,1646646655,1646909824,1647687838]}'),(9937,'103.31.38.182','normal','',0,0,0,1,0,'{\"login\":[1639787918]}'),(9938,'91.206.200.26','normal','',0,0,0,0,0,'[]'),(9939,'196.41.130.160','normal','',0,0,0,0,0,'[]'),(9940,'23.94.198.161','normal','',0,0,0,2,0,'{\"login\":[1640250840,1640558856]}'),(9941,'65.21.206.42','normal','',0,0,0,0,0,'[]'),(9942,'46.101.121.131','normal','',0,0,0,1,0,'{\"login\":[1639812211]}'),(9943,'207.46.13.51','normal','',0,0,0,0,0,'[]'),(9944,'27.133.243.241','normal','',0,0,0,2,0,'{\"login\":[1639820001,1640935604]}'),(9945,'137.117.208.19','normal','',0,0,0,34,0,'{\"login\":[1639820707,1639885722,1640198971,1640273635,1640298147,1640494547,1640546330,1640719838,1641105305,1641949874,1641965024,1642271892,1642526219,1643315132,1643501345,1643522798,1643574168,1644225339,1644275456,1644473081,1645067643,1645332993,1645336331,1645960120,1646004451,1646063490,1646249134,1646471622,1646476131,1646555573,1646563194,1646743658,1646940825,1647146015]}'),(9946,'188.166.236.240','normal','',0,0,0,3,0,'{\"login\":[1639822139,1640354971,1641429888]}'),(9947,'103.159.138.24','normal','',0,0,0,11,0,'{\"login\":[1639829297,1639861630,1639877892,1639949310,1640096853,1640694799,1640811495,1640857063,1641500352,1641528623,1641749619]}'),(9948,'106.122.206.21','normal','',0,0,0,0,1,'{\"nf\":[1639829507]}'),(9949,'183.253.80.100','normal','',0,0,0,0,0,'[]'),(9950,'88.87.206.123','normal','',0,0,0,63,0,'{\"login\":[1639830713,1639881472,1640155050,1640375791,1640634112,1640899667,1640901768,1641916863,1642067150,1642276735,1642290696,1642449457,1642527961,1642554027,1642589845,1642631324,1643312159,1643632725,1644168169,1644665877,1644682107,1644821876,1645756172,1645859661,1646267419,1646495213,1646496653,1646619746,1646639018,1646867925,1647490765,1647660018,1647675523,1648692400,1649070468,1649790104,1650122132,1650267028,1651182853,1651254382,1651256117,1652430708,1652696344,1652951320,1652982193,1653523147,1653819414,1654047847,1654267224,1654416474,1654600562,1657332243,1657421944,1657459197,1657469620,1658066696,1658246249,1658447876,1658689311,1659116766,1661072309,1661075823,1661670554]}'),(9951,'35.241.139.124','normal','',0,0,0,5,0,'{\"login\":[1639836492,1640086787,1640301942,1640464114,1640650244]}'),(9952,'82.165.80.124','normal','',0,0,0,0,1,'{\"nf\":[1639843170]}'),(9953,'94.23.72.30','normal','',0,0,0,31,0,'{\"login\":[1639846677,1639859521,1640279911,1640301309,1640351032,1640492521,1640702465,1640729818,1640765673,1640829793,1640896516,1640905978,1641049930,1641426351,1641427730,1641434767,1641810689,1641840626,1641982681,1642047726,1642173776,1642363635,1642561215,1642591618,1643013149,1644187212,1644469003,1644485495,1644798919,1645065502,1645357482]}'),(9954,'95.108.213.30','normal','',0,0,0,0,1,'{\"nf\":[1639922363]}'),(9955,'95.108.213.34','normal','',0,0,0,0,0,'[]'),(9956,'213.180.203.85','normal','',0,0,0,0,0,'[]'),(9957,'41.13.220.37','normal','',0,0,0,0,0,'[]'),(9958,'31.13.103.16','normal','',0,0,0,0,0,'[]'),(9959,'31.13.103.116','normal','',0,0,0,0,0,'[]'),(9960,'114.119.130.67','normal','',0,0,0,0,0,'[]'),(9961,'157.55.39.91','normal','',0,0,0,0,0,'[]'),(9962,'194.35.12.109','normal','',0,0,0,25,0,'{\"login\":[1639854650,1640341971,1640754529,1640756370,1640760994,1641000493,1641141875,1641313100,1641981125,1642044333,1642851871,1644272707,1644428156,1644585506,1644711257,1645093090,1645242972,1645837740,1646246984,1646538430,1646603343,1646920513,1646923438,1647042601,1647944684]}'),(9963,'196.223.229.220','normal','',0,0,0,0,2,'{\"nf\":[1639859697,1639859697]}'),(9964,'66.29.131.127','normal','',0,0,0,0,0,'[]'),(9965,'95.216.235.214','normal','',0,0,0,10,0,'{\"login\":[1639865839,1639901289,1639995350,1640409576,1640724366,1640808438,1640856710,1641339851,1641351195,1641691454]}'),(9966,'138.197.156.223','normal','',0,0,0,3,0,'{\"login\":[1639867249,1640194082,1640631577]}'),(9967,'185.220.102.249','normal','',0,0,0,1,0,'{\"login\":[1654807312]}'),(9968,'157.230.252.198','normal','',0,0,0,0,0,'[]'),(9969,'185.190.117.89','normal','',0,0,0,47,0,'{\"login\":[1639883609,1640516881,1641182331,1641517056,1641788257,1641966319,1643012124,1643550623,1643663483,1644296397,1645087437,1645831214,1645956558,1646476920,1646598011,1646617552,1647093410,1647488534,1647593733,1647797501,1649744618,1650023677,1650177777,1651080909,1651393081,1651525866,1652624169,1652880511,1653234318,1654274905,1654735056,1655360972,1655407180,1656807118,1656939681,1657227854,1658084502,1659980825,1660117142,1660204503,1660222005,1660462092,1661089248,1661126999,1661432128,1662304221,1663074525]}'),(9970,'185.201.11.158','normal','',0,0,0,0,1,'{\"nf\":[1639887804]}'),(9971,'185.253.218.211','normal','',0,0,0,1,0,'{\"login\":[1639892065]}'),(9972,'43.241.58.180','normal','',0,0,0,1,0,'{\"login\":[1640571994]}'),(9973,'185.191.171.24','normal','',0,0,0,0,0,'[]'),(9974,'185.191.171.25','normal','',0,0,0,0,0,'[]'),(9975,'107.189.30.75','normal','',0,0,0,0,0,'[]'),(9976,'161.35.34.204','normal','',0,0,0,12,0,'{\"login\":[1639900580,1641253192,1642075923,1642493583,1642496252,1642528833,1642994109,1643516406,1644186211,1644513285,1644597491,1644678311]}'),(9977,'41.71.27.210','normal','',0,0,0,0,0,'[]'),(9978,'171.244.188.22','normal','',0,0,0,16,0,'{\"login\":[1639919463,1641135161,1641254425,1641313039,1641315924,1641372176,1642072253,1642297154,1643041578,1644226398,1644331794,1646254905,1646418944,1646436522,1646814217,1646842744]}'),(9979,'208.87.133.119','normal','',0,0,0,5,0,'{\"login\":[1639920915,1640133266,1640178206,1640282414,1640695486]}'),(9980,'128.199.14.4','normal','',0,0,0,32,0,'{\"login\":[1639922363,1641745146,1643544763,1644593856,1647825031,1649838471,1652518637,1652659247,1652910381,1653032202,1653062824,1653197965,1653242325,1653409153,1653629189,1654064317,1654352041,1655376107,1656091536,1656547216,1656846208,1657522230,1659132521,1660130272,1660195192,1660284633,1660761283,1661101215,1661305858,1662425273,1662558647,1663109789]}'),(9981,'41.177.118.202','normal','',0,0,0,0,0,'[]'),(9982,'149.202.71.200','normal','',0,0,0,0,18,'{\"nf\":[1639925838,1639925839,1639925841,1639925842,1639925843,1639925844,1639925846,1639925847,1639925848,1639925849,1639925851,1639925852,1639925853,1639925854,1639925855,1639925856,1639925858,1639925859]}'),(9983,'72.9.158.112','normal','',0,0,0,2,1,'{\"nf\":[1639932799],\"login\":[1640589155,1640793248]}'),(9984,'140.82.17.66','normal','',0,0,0,0,0,'[]'),(9985,'23.148.145.101','normal','',0,0,0,0,0,'[]'),(9986,'107.161.23.61','normal','',0,0,0,0,11,'{\"nf\":[1639937364,1639937364,1639937374,1639937383,1639937402,1639937415,1639937423,1639937434,1639937436,1641625102,1641713080]}'),(9987,'176.122.25.75','normal','',0,0,0,0,1,'{\"nf\":[1639940131]}'),(9988,'167.172.62.246','normal','',0,0,0,0,0,'[]'),(9989,'167.172.62.216','normal','',0,0,0,0,0,'[]'),(9990,'94.232.44.137','blocked','You have been locked out due to too many invalid login attempts.',1639945254,1639944954,0,5,0,'{\"login\":[1639944949,1639944950,1639944952,1639944953,1639944954]}'),(9991,'34.244.203.225','normal','',0,0,0,1,0,'{\"login\":[1639951976]}'),(9992,'23.146.241.226','normal','',0,0,0,0,0,'[]'),(9993,'110.93.14.108','normal','',0,0,0,2,0,'{\"login\":[1639957181,1640099640]}'),(9994,'88.99.244.98','normal','',0,0,0,3,0,'{\"login\":[1639959712,1641540971,1641630955]}'),(9995,'85.128.143.19','normal','',0,0,0,1,0,'{\"login\":[1639964995]}'),(9996,'178.217.190.82','normal','',0,0,0,75,0,'{\"login\":[1639965985,1640556344,1640616904,1640824677,1641324376,1641386987,1641398172,1641434063,1641494018,1641522658,1641688961,1641694809,1641711858,1642622011,1643302708,1643559826,1643755521,1644510586,1644536686,1644623154,1644626972,1644716307,1646561503,1646653910,1646683454,1647331824,1647419765,1647503883,1648051061,1649768756,1650300932,1650322339,1650568908,1650699355,1650713683,1650828938,1651015569,1651050878,1651057628,1653594258,1653608452,1653793752,1654163403,1654273205,1654503143,1654776165,1654799855,1654850598,1655025362,1655254179,1655366989,1655740068,1655773301,1655813442,1656027989,1656036941,1656332068,1657303534,1657818534,1658249733,1658261970,1658306329,1658421436,1658553280,1659137011,1659322503,1660200372,1660244016,1660354957,1661149558,1661218345,1661433233,1661632071,1661633695,1662328604]}'),(9997,'64.227.16.181','normal','',0,0,0,6,0,'{\"login\":[1639968623,1640495222,1640768479,1640794810,1640815533,1641174422]}'),(9998,'138.197.153.219','normal','',0,0,0,0,0,'[]'),(9999,'67.225.140.29','normal','',0,0,0,0,1,'{\"nf\":[1639976153]}'),(10000,'172.105.234.191','normal','',0,0,0,0,0,'[]'),(10001,'95.111.250.152','normal','',0,0,0,1,0,'{\"login\":[1639978793]}'),(10002,'196.203.63.37','normal','',0,0,0,0,0,'[]'),(10003,'18.197.238.229','normal','',0,0,0,1,0,'{\"login\":[1639981586]}'),(10004,'46.4.4.223','normal','',0,0,0,2,0,'{\"login\":[1639987016,1651362749]}'),(10005,'114.119.136.111','normal','',0,0,0,0,0,'[]'),(10006,'102.132.225.85','normal','',0,0,0,0,0,'[]'),(10007,'34.238.155.14','normal','',0,0,0,0,0,'[]'),(10008,'85.94.218.162','normal','',0,0,0,0,0,'[]'),(10009,'54.36.148.198','normal','',0,0,0,0,0,'[]'),(10010,'54.36.148.3','normal','',0,0,0,0,0,'[]'),(10011,'197.89.119.109','normal','',0,0,0,0,0,'[]'),(10012,'212.98.224.90','normal','',0,0,0,0,0,'[]'),(10013,'82.202.161.134','normal','',0,0,0,0,0,'[]'),(10014,'34.237.199.140','normal','',0,0,0,0,0,'[]'),(10015,'143.244.139.217','normal','',0,0,0,0,0,'[]'),(10016,'37.97.158.125','normal','',0,0,0,0,1,'{\"nf\":[1640003555]}'),(10017,'45.32.159.11','normal','',0,0,0,0,0,'[]'),(10018,'139.59.142.249','normal','',0,0,0,12,0,'{\"login\":[1640780417,1640885066,1641327953,1641484584,1651387038,1652826359,1652838671,1653543791,1653604541,1653629567,1654619386,1654668256]}'),(10019,'102.65.144.31','normal','',0,0,0,0,2,'{\"nf\":[1640010975,1640011218]}'),(10020,'34.87.101.136','normal','',0,0,0,26,0,'{\"login\":[1648136148,1649030987,1650187128,1652172008,1652183054,1652186819,1652228741,1652829873,1653575624,1655298481,1655312202,1655329078,1656761652,1656762012,1656775259,1656805909,1656820897,1657448683,1657467011,1657470189,1657474231,1657490319,1660066267,1661777603,1661797061,1661797398]}'),(10021,'41.71.25.100','normal','',0,0,0,0,2,'{\"nf\":[1640015025,1640015204]}'),(10022,'41.79.133.162','normal','',0,0,0,0,7,'{\"nf\":[1640016863,1640016884,1640016962,1640017275,1640017281,1640017288,1640017295]}'),(10023,'106.13.105.55','normal','',0,0,0,0,0,'[]'),(10024,'185.18.197.154','normal','',0,0,0,1,0,'{\"login\":[1640823369]}'),(10025,'67.212.191.149','normal','',0,0,0,0,1,'{\"nf\":[1640022012]}'),(10026,'122.114.157.66','normal','',0,0,0,0,0,'[]'),(10027,'121.46.25.189','normal','',0,0,0,0,0,'[]'),(10028,'185.220.101.53','normal','',0,0,0,0,0,'[]'),(10029,'102.65.62.136','normal','',0,0,0,0,0,'[]'),(10030,'13.73.187.223','normal','',0,0,0,5,0,'{\"login\":[1641334555,1641642263,1643738275,1643747828,1646383416]}'),(10031,'102.182.190.211','normal','',0,0,0,0,0,'[]'),(10032,'151.106.113.172','normal','',0,0,0,2,0,'{\"login\":[1640732163,1640752643]}'),(10033,'37.59.203.134','normal','',0,0,0,0,0,'[]'),(10034,'144.208.72.128','normal','',0,0,0,0,1,'{\"nf\":[1640035693]}'),(10035,'47.97.204.2','normal','',0,0,0,0,0,'[]'),(10036,'23.226.120.90','normal','',0,0,0,3,0,'{\"login\":[1640094256,1648151052,1649762575]}'),(10037,'46.101.244.141','normal','',0,0,0,6,0,'{\"login\":[1640040842,1640679995,1640966302,1641006419,1641421522,1641763071]}'),(10038,'100.26.127.17','normal','',0,0,0,0,0,'[]'),(10039,'85.128.142.150','normal','',0,0,0,0,0,'[]'),(10040,'47.100.208.57','normal','',0,0,0,52,0,'{\"login\":[1640043537,1640288701,1640296888,1640697561,1640921961,1641059149,1641171473,1641952691,1642225320,1642228456,1642649777,1642875280,1644531244,1644667786,1645086025,1647294825,1647300972,1647338415,1647714844,1647718788,1647910459,1648130660,1648478994,1648623422,1648690182,1649204827,1649217511,1649815394,1650504639,1651340082,1652356008,1652361810,1652429396,1652909004,1653521134,1654130770,1654355234,1654511237,1654556122,1655543958,1655559490,1655743591,1656938766,1657324665,1657661835,1657689050,1658307407,1658469251,1661364130,1661654199,1662040087,1662068903]}'),(10041,'93.158.92.222','normal','',0,0,0,0,0,'[]'),(10042,'93.158.92.219','normal','',0,0,0,0,0,'[]'),(10043,'93.158.92.221','normal','',0,0,0,0,1,'{\"nf\":[1640046738]}'),(10044,'93.158.92.206','normal','',0,0,0,0,1,'{\"nf\":[1642406346]}'),(10045,'157.7.105.235','normal','',0,0,0,0,1,'{\"nf\":[1640052580]}'),(10046,'80.249.171.194','normal','',0,0,0,11,0,'{\"login\":[1640052986,1640303207,1640415430,1640898615,1640955320,1641134407,1642117630,1643302122,1643665769,1645802331,1645924309]}'),(10047,'3.109.172.7','normal','',0,0,0,0,0,'[]'),(10048,'194.9.191.20','normal','',0,0,0,0,0,'[]'),(10049,'165.227.127.43','normal','',0,0,0,7,0,'{\"login\":[1640069106,1640454654,1640692073,1641045320,1641135904,1641777757,1642027085]}'),(10050,'72.167.34.14','normal','',0,0,0,69,0,'{\"login\":[1640070437,1640184450,1640187612,1640274884,1640526523,1640632208,1641169999,1641955767,1642267900,1642555815,1643025512,1643030715,1643293623,1643310987,1643610065,1644122187,1644237252,1644433192,1644532143,1645732193,1645779143,1645783284,1645798644,1645803264,1646519068,1646612190,1647500568,1647519701,1647673479,1647835014,1648153109,1648634173,1648725510,1649493802,1649495415,1649657443,1649785310,1649808658,1650598589,1650628031,1650816992,1650956201,1651394006,1651934491,1651957337,1652723687,1652983644,1653348000,1653926067,1654180157,1654796157,1655016943,1655553554,1655558296,1655572505,1656811780,1656897227,1657055620,1657567952,1658050743,1658590408,1658812330,1660218584,1660294070,1660491187,1662048278,1662212850,1662773612,1663021406]}'),(10051,'34.77.162.1','normal','',0,0,0,0,0,'[]'),(10052,'17.121.113.144','normal','',0,0,0,0,0,'[]'),(10053,'207.241.231.163','normal','',0,0,0,0,0,'[]'),(10054,'95.55.61.50','normal','',0,0,0,0,0,'[]'),(10055,'168.62.219.163','normal','',0,0,0,0,0,'[]'),(10056,'114.119.150.239','normal','',0,0,0,0,0,'[]'),(10057,'185.103.199.186','normal','',0,0,0,0,2,'{\"nf\":[1640100108,1641126186]}'),(10058,'194.163.153.230','normal','',0,0,0,8,0,'{\"login\":[1640100297,1640412533,1640468869,1640534111,1641007413,1641127776,1641528482,1641704723]}'),(10059,'18.144.21.239','normal','',0,0,0,0,0,'[]'),(10060,'77.68.48.70','normal','',0,0,0,1,0,'{\"login\":[1640104994]}'),(10061,'50.87.144.117','normal','',0,0,0,0,1,'{\"nf\":[1640112335]}'),(10062,'190.45.171.85','normal','',0,0,0,5,0,'{\"login\":[1640120687,1642114723,1642253501,1643098540,1644267839]}'),(10063,'161.35.99.169','normal','',0,0,0,11,0,'{\"login\":[1640136107,1640995575,1641708883,1641779229,1642275114,1642411277,1642644720,1643551227,1643684201,1644247339,1644273258]}'),(10064,'160.16.141.108','normal','',0,0,0,4,0,'{\"login\":[1640140365,1640508674,1641418815,1641461848]}'),(10065,'67.20.76.83','normal','',0,0,0,0,0,'[]'),(10066,'144.76.29.149','normal','',0,0,0,0,0,'[]'),(10067,'92.63.106.95','normal','',0,0,0,2,0,'{\"login\":[1640156581,1640291208]}'),(10068,'54.212.16.202','normal','',0,0,0,0,0,'[]'),(10069,'144.91.73.85','normal','',0,0,0,7,0,'{\"login\":[1640165760,1640361160,1640690717,1640869215,1641050847,1641369322,1641734558]}'),(10070,'159.253.45.50','normal','',0,0,0,0,4,'{\"nf\":[1640172190,1640172194,1640172196,1640172198]}'),(10071,'197.95.150.234','normal','',0,0,0,0,0,'[]'),(10072,'197.94.12.26','normal','',0,0,0,0,1,'{\"nf\":[1640181943]}'),(10073,'91.228.56.162','normal','',0,0,0,7,0,'{\"login\":[1640182885,1640502566,1640842103,1640918707,1641345521,1641751086,1642041417]}'),(10074,'5.255.96.245','normal','',0,0,0,0,0,'[]'),(10075,'114.119.129.200','normal','',0,0,0,0,0,'[]'),(10076,'54.36.148.231','normal','',0,0,0,0,0,'[]'),(10077,'186.201.49.58','normal','',0,0,0,2,0,'{\"login\":[1640215864,1640784581]}'),(10078,'185.112.101.124','normal','',0,0,0,0,0,'[]'),(10079,'92.255.206.9','normal','',0,0,0,0,0,'[]'),(10080,'46.182.7.14','normal','',0,0,0,0,1,'{\"nf\":[1640223429]}'),(10081,'192.52.183.243','normal','',0,0,0,1,0,'{\"login\":[1640226723]}'),(10082,'23.101.132.31','normal','',0,0,0,0,9,'{\"nf\":[1640234417,1640234420,1640234421,1640234423,1640234424,1640234427,1640234429,1640234435,1640234445]}'),(10083,'54.36.149.88','normal','',0,0,0,0,0,'[]'),(10084,'85.92.123.33','normal','',0,0,0,1,0,'{\"login\":[1640236506]}'),(10085,'167.86.74.24','normal','',0,0,0,0,0,'[]'),(10086,'178.128.12.25','normal','',0,0,0,2,0,'{\"login\":[1640238353,1640595337]}'),(10087,'46.105.127.24','normal','',0,0,0,2,0,'{\"login\":[1640239276,1640546072]}'),(10088,'114.132.43.164','normal','',0,0,0,4,0,'{\"login\":[1640241279,1640252031,1640360944,1650294667]}'),(10089,'51.75.193.23','normal','',0,0,0,1,0,'{\"login\":[1640244265]}'),(10090,'162.241.61.80','normal','',0,0,0,0,1,'{\"nf\":[1640246363]}'),(10091,'128.199.199.157','normal','',0,0,0,2,0,'{\"login\":[1640249717,1640527107]}'),(10092,'52.12.186.20','normal','',0,0,0,0,0,'[]'),(10093,'50.59.99.143','normal','',0,0,0,3,0,'{\"login\":[1640255595,1650138877,1650291054]}'),(10094,'185.103.199.252','normal','',0,0,0,0,5,'{\"nf\":[1640257701,1642409829,1644028218,1644028218,1644028219]}'),(10095,'72.13.62.43','normal','',0,0,0,0,0,'[]'),(10096,'103.3.246.35','normal','',0,0,0,2,0,'{\"login\":[1640266052,1640805963]}'),(10097,'185.181.60.12','normal','',0,0,0,0,0,'[]'),(10098,'168.119.37.149','normal','',0,0,0,0,0,'[]'),(10099,'144.34.132.181','normal','',0,0,0,6,0,'{\"login\":[1640277392,1640622344,1640890231,1641034449,1641356733,1641392352]}'),(10100,'54.160.147.254','normal','',0,0,0,0,1,'{\"nf\":[1640277975]}'),(10101,'13.229.221.204','normal','',0,0,0,31,0,'{\"login\":[1640279284,1640870286,1641232487,1641737511,1641833392,1641918163,1641945131,1642035607,1642167866,1642536449,1642593384,1644228510,1645343223,1645451873,1646453397,1646578532,1647111520,1647188361,1647212711,1647309300,1647732679,1647881741,1648185289,1648233200,1648682236,1650404498,1650600617,1652379919,1653050323,1653597743,1654366066]}'),(10102,'132.148.220.74','normal','',0,0,0,0,0,'[]'),(10103,'46.4.12.123','normal','',0,0,0,0,1,'{\"nf\":[1640288562]}'),(10104,'114.119.130.111','normal','',0,0,0,0,0,'[]'),(10105,'173.252.79.16','normal','',0,0,0,0,0,'[]'),(10106,'62.210.91.138','normal','',0,0,0,0,1,'{\"nf\":[1640317707]}'),(10107,'54.36.149.72','normal','',0,0,0,0,0,'[]'),(10108,'185.243.218.50','normal','',0,0,0,0,0,'[]'),(10109,'107.189.3.246','normal','',0,0,0,0,0,'[]'),(10110,'5.2.76.221','normal','',0,0,0,1,0,'{\"login\":[1641895402]}'),(10111,'93.115.84.143','normal','',0,0,0,0,0,'[]'),(10112,'199.249.230.179','normal','',0,0,0,0,0,'[]'),(10113,'45.56.93.18','normal','',0,0,0,6,0,'{\"login\":[1640337444,1640378642,1640460751,1640633476,1640804905,1641035349]}'),(10114,'167.71.215.224','normal','',0,0,0,15,0,'{\"login\":[1640338091,1640520333,1640737131,1641225260,1641502713,1641804243,1642142999,1645973199,1647313521,1647954305,1649857771,1650028164,1650183908,1650412600,1651031417]}'),(10115,'54.36.148.193','normal','',0,0,0,0,0,'[]'),(10116,'167.94.138.113','normal','',0,0,0,0,0,'[]'),(10117,'35.170.5.72','normal','',0,0,0,1,0,'{\"login\":[1640351319]}'),(10118,'159.65.115.75','normal','',0,0,0,23,0,'{\"login\":[1640351687,1640523084,1640849367,1641104418,1641783797,1642258725,1642416744,1642509054,1642520904,1642550030,1642579417,1643501931,1643557555,1644514182,1644786286,1644813548,1645358146,1647338154,1647340283,1647366330,1647564886,1647636419,1648670846]}'),(10119,'51.254.101.166','normal','',0,0,0,1,0,'{\"login\":[1640352768]}'),(10120,'35.89.6.87','normal','',0,0,0,0,0,'[]'),(10121,'198.199.116.152','normal','',0,0,0,2,0,'{\"login\":[1640354103,1640702141]}'),(10122,'173.201.177.4','normal','',0,0,0,2,0,'{\"login\":[1640355526,1640419162]}'),(10123,'31.177.95.183','normal','',0,0,0,0,0,'[]'),(10124,'67.205.148.97','normal','',0,0,0,0,1,'{\"nf\":[1640358226]}'),(10125,'50.62.141.188','normal','',0,0,0,1,0,'{\"login\":[1640358354]}'),(10126,'184.168.116.126','normal','',0,0,0,1,0,'{\"login\":[1640359012]}'),(10127,'182.50.132.120','normal','',0,0,0,1,0,'{\"login\":[1640359648]}'),(10128,'148.66.145.17','normal','',0,0,0,1,0,'{\"login\":[1640360213]}'),(10129,'104.236.217.60','normal','',0,0,0,0,1,'{\"nf\":[1640364855]}'),(10130,'35.194.58.218','normal','',0,0,0,1,0,'{\"login\":[1640365081]}'),(10131,'44.201.251.224','normal','',0,0,0,0,1,'{\"nf\":[1640365448]}'),(10132,'165.227.141.125','normal','',0,0,0,27,0,'{\"login\":[1640367927,1640685999,1641948369,1644148025,1644444362,1645780533,1645856745,1646697962,1646929362,1648567776,1649019657,1650684583,1652539520,1652567695,1652676504,1652984862,1653275586,1653529860,1655173909,1655392322,1655561722,1655666410,1656521708,1656742689,1657085571,1657861990,1658332230]}'),(10133,'45.79.70.234','normal','',0,0,0,2,0,'{\"login\":[1640370752,1640558171]}'),(10134,'92.205.5.169','normal','',0,0,0,0,3,'{\"nf\":[1640373063,1641318664,1643767535]}'),(10135,'167.172.110.186','normal','',0,0,0,0,0,'[]'),(10136,'184.168.103.93','normal','',0,0,0,1,0,'{\"login\":[1640388067]}'),(10137,'109.90.75.13','normal','',0,0,0,1,0,'{\"login\":[1640388243]}'),(10138,'213.246.108.196','normal','',0,0,0,0,0,'[]'),(10139,'208.109.78.21','normal','',0,0,0,0,0,'[]'),(10140,'72.167.124.64','normal','',0,0,0,1,0,'{\"login\":[1640395895]}'),(10141,'34.86.35.30','normal','',0,0,0,0,0,'[]'),(10142,'184.168.102.31','normal','',0,0,0,1,0,'{\"login\":[1640397220]}'),(10143,'208.109.23.235','normal','',0,0,0,1,0,'{\"login\":[1640397950]}'),(10144,'72.9.156.120','normal','',0,0,0,1,0,'{\"login\":[1640398721]}'),(10145,'162.144.148.38','normal','',0,0,0,2,0,'{\"login\":[1640399563,1642178125]}'),(10146,'173.201.183.5','normal','',0,0,0,2,0,'{\"login\":[1640402003,1642205126]}'),(10147,'198.187.29.33','normal','',0,0,0,1,0,'{\"login\":[1640407262]}'),(10148,'95.108.213.21','normal','',0,0,0,0,2,'{\"nf\":[1640978429,1641395706]}'),(10149,'5.45.207.70','normal','',0,0,0,0,0,'[]'),(10150,'95.108.213.48','normal','',0,0,0,0,0,'[]'),(10151,'135.181.6.33','normal','',0,0,0,1,0,'{\"login\":[1640409090]}'),(10152,'132.148.196.75','normal','',0,0,0,1,0,'{\"login\":[1640410964]}'),(10153,'193.70.114.2','normal','',0,0,0,17,0,'{\"login\":[1640411356,1640893375,1641258124,1641513062,1641688138,1641764545,1641996880,1642034889,1642315556,1643043497,1643541247,1644085681,1644091607,1644377260,1644690546,1644697341,1644803038]}'),(10154,'109.234.161.230','normal','',0,0,0,1,0,'{\"login\":[1640412905]}'),(10155,'103.93.149.248','normal','',0,0,0,1,0,'{\"login\":[1640415945]}'),(10156,'198.57.247.130','normal','',0,0,0,0,0,'[]'),(10157,'89.45.251.18','normal','',0,0,0,1,0,'{\"login\":[1640420188]}'),(10158,'201.221.123.202','normal','',0,0,0,1,0,'{\"login\":[1640421339]}'),(10159,'184.107.72.134','normal','',0,0,0,2,0,'{\"login\":[1640422388,1640569095]}'),(10160,'35.202.251.51','normal','',0,0,0,3,0,'{\"login\":[1640422800,1641119762,1641121924]}'),(10161,'115.29.162.18','normal','',0,0,0,1,0,'{\"login\":[1640423364]}'),(10162,'72.167.65.133','normal','',0,0,0,1,0,'{\"login\":[1640424599]}'),(10163,'176.9.32.157','normal','',0,0,0,0,0,'[]'),(10164,'2.58.149.155','normal','',0,0,0,0,0,'[]'),(10165,'107.191.39.79','normal','',0,0,0,1,0,'{\"login\":[1640425799]}'),(10166,'153.126.139.207','normal','',0,0,0,4,0,'{\"login\":[1640433493,1640672090,1641259367,1641936328]}'),(10167,'54.36.61.218','normal','',0,0,0,1,0,'{\"login\":[1640615325]}'),(10168,'107.172.82.148','normal','',0,0,0,8,0,'{\"login\":[1640451754,1640968514,1641383980,1641486650,1642014321,1642016446,1642627917,1642886675]}'),(10169,'92.63.102.112','normal','',0,0,0,0,1,'{\"nf\":[1640460029]}'),(10170,'64.141.87.4','normal','',0,0,0,32,0,'{\"login\":[1640462766,1641041690,1641112594,1641701411,1641963269,1642538623,1643672644,1644142938,1644784282,1644792532,1645249310,1646854765,1646879493,1646926409,1647059966,1647195610,1647627245,1647735688,1648085124,1648103462,1648618102,1648661297,1649816014,1650024430,1650312313,1651060978,1651288929,1652434669,1652895153,1653395014,1653422007,1653445711]}'),(10171,'114.119.151.192','normal','',0,0,0,0,0,'[]'),(10172,'192.40.57.57','normal','',0,0,0,0,0,'[]'),(10173,'185.103.199.185','normal','',0,0,0,0,1,'{\"nf\":[1640492034]}'),(10174,'74.220.219.171','normal','',0,0,0,0,1,'{\"nf\":[1640499877]}'),(10175,'18.228.85.119','normal','',0,0,0,1,0,'{\"login\":[1640500897]}'),(10176,'5.56.132.189','normal','',0,0,0,1,0,'{\"login\":[1640502790]}'),(10177,'50.63.196.8','normal','',0,0,0,2,0,'{\"login\":[1640504313,1640602974]}'),(10178,'198.71.241.3','normal','',0,0,0,1,0,'{\"login\":[1640505516]}'),(10179,'92.205.4.19','normal','',0,0,0,1,0,'{\"login\":[1640506514]}'),(10180,'141.94.247.170','normal','',0,0,0,57,0,'{\"login\":[1640507308,1640936657,1641176635,1641737631,1642070786,1642108886,1642221511,1643551800,1644251172,1644294760,1644333459,1644557744,1644561350,1644640248,1645231266,1645806065,1646018555,1646054963,1646425826,1646474645,1647745908,1648572112,1649828793,1649956269,1650137662,1650307928,1650344023,1650550794,1650630793,1650645344,1651139704,1652265379,1652517977,1652673269,1652746420,1653516417,1653918377,1654280806,1654851095,1655777374,1656563430,1656728040,1657092262,1657416942,1657591891,1657832239,1658057786,1658331666,1659106885,1661160563,1661677166,1661745857,1662335859,1662692328,1662764423,1662795026,1663113815]}'),(10181,'116.74.122.170','normal','',0,0,0,1,0,'{\"login\":[1640508563]}'),(10182,'43.240.8.39','normal','',0,0,0,0,0,'[]'),(10183,'92.205.13.208','normal','',0,0,0,1,0,'{\"login\":[1640509539]}'),(10184,'173.201.178.186','normal','',0,0,0,1,0,'{\"login\":[1640510484]}'),(10185,'182.50.151.65','normal','',0,0,0,1,0,'{\"login\":[1640511520]}'),(10186,'92.205.7.127','normal','',0,0,0,2,0,'{\"login\":[1640512594,1642180328]}'),(10187,'148.72.232.93','normal','',0,0,0,1,0,'{\"login\":[1640515727]}'),(10188,'63.35.118.131','normal','',0,0,0,1,0,'{\"login\":[1640517784]}'),(10189,'185.157.161.36','normal','',0,0,0,1,0,'{\"login\":[1640518920]}'),(10190,'20.76.142.69','normal','',0,0,0,1,0,'{\"login\":[1640523544]}'),(10191,'67.222.152.219','normal','',0,0,0,2,0,'{\"login\":[1640524634,1640684525]}'),(10192,'92.204.55.213','normal','',0,0,0,0,1,'{\"nf\":[1640528535]}'),(10193,'198.71.235.34','normal','',0,0,0,1,0,'{\"login\":[1640529483]}'),(10194,'194.110.67.119','normal','',0,0,0,1,0,'{\"login\":[1640532069]}'),(10195,'159.203.31.171','normal','',0,0,0,2,0,'{\"login\":[1640534609,1662169634]}'),(10196,'184.168.115.128','normal','',0,0,0,1,0,'{\"login\":[1642174319]}'),(10197,'34.133.12.44','normal','',0,0,0,2,0,'{\"login\":[1640540962,1640699655]}'),(10198,'162.251.85.146','normal','',0,0,0,0,0,'[]'),(10199,'120.79.8.125','normal','',0,0,0,3,0,'{\"login\":[1640543185,1650135663,1662107363]}'),(10200,'1.203.76.148','normal','',0,0,0,1,0,'{\"login\":[1640543824]}'),(10201,'107.180.124.232','normal','',0,0,0,1,0,'{\"login\":[1640544275]}'),(10202,'184.168.100.242','normal','',0,0,0,1,0,'{\"login\":[1640544911]}'),(10203,'188.121.57.42','normal','',0,0,0,2,0,'{\"login\":[1640545445,1640552890]}'),(10204,'114.119.130.27','normal','',0,0,0,0,0,'[]'),(10205,'35.198.25.12','normal','',0,0,0,3,0,'{\"login\":[1640546695,1654503545,1662174999]}'),(10206,'35.247.159.133','normal','',0,0,0,2,0,'{\"login\":[1640547213,1650140050]}'),(10207,'202.29.6.34','normal','',0,0,0,2,0,'{\"login\":[1640547807,1642190618]}'),(10208,'92.204.220.71','normal','',0,0,0,1,0,'{\"login\":[1640548789]}'),(10209,'136.199.1.50','normal','',0,0,0,1,0,'{\"login\":[1640549384]}'),(10210,'148.72.232.55','normal','',0,0,0,1,0,'{\"login\":[1640550958]}'),(10211,'198.71.224.86','normal','',0,0,0,1,0,'{\"login\":[1640551399]}'),(10212,'34.217.208.104','normal','',0,0,0,0,0,'[]'),(10213,'50.62.141.186','normal','',0,0,0,1,0,'{\"login\":[1640553437]}'),(10214,'184.168.99.48','normal','',0,0,0,1,0,'{\"login\":[1640553926]}'),(10215,'184.168.116.113','normal','',0,0,0,1,0,'{\"login\":[1640555475]}'),(10216,'148.72.77.199','normal','',0,0,0,1,0,'{\"login\":[1640556520]}'),(10217,'72.167.64.243','normal','',0,0,0,2,0,'{\"login\":[1640557129,1640601977]}'),(10218,'68.178.221.138','normal','',0,0,0,2,0,'{\"login\":[1640558218,1640604543]}'),(10219,'210.211.113.136','normal','',0,0,0,2,0,'{\"login\":[1640559402,1640680283]}'),(10220,'103.159.224.46','normal','',0,0,0,35,0,'{\"login\":[1640560023,1640682547,1642215098,1645931999,1645983086,1646078521,1646807453,1647707927,1647795870,1649230970,1649586419,1649702324,1649855745,1650165206,1650309192,1650968733,1651129426,1651186466,1651295740,1651407797,1651714445,1652345318,1652947310,1653816653,1653817111,1654314643,1654706638,1655142738,1655163021,1655749200,1656791194,1657302249,1657567281,1658750128,1660133423]}'),(10221,'185.220.101.29','normal','',0,0,0,0,0,'[]'),(10222,'184.168.99.160','normal','',0,0,0,3,0,'{\"login\":[1640564344,1640575749,1640857294]}'),(10223,'194.44.53.72','normal','',0,0,0,1,0,'{\"login\":[1640565071]}'),(10224,'35.202.91.32','normal','',0,0,0,0,1,'{\"nf\":[1640565361]}'),(10225,'192.169.151.157','normal','',0,0,0,1,0,'{\"login\":[1640566325]}'),(10226,'185.145.252.60','normal','',0,0,0,3,0,'{\"login\":[1640569829,1640609687,1640612777]}'),(10227,'185.141.107.10','normal','',0,0,0,2,0,'{\"login\":[1640571252,1640647995]}'),(10228,'114.119.130.61','normal','',0,0,0,0,0,'[]'),(10229,'132.148.224.56','normal','',0,0,0,5,0,'{\"login\":[1640572652,1640590923,1650126971,1650132340,1650144368]}'),(10230,'148.66.147.2','normal','',0,0,0,1,0,'{\"login\":[1640573425]}'),(10231,'198.54.126.44','normal','',0,0,0,2,0,'{\"login\":[1640574869,1640584479]}'),(10232,'46.4.68.206','normal','',0,0,0,1,0,'{\"login\":[1640576457]}'),(10233,'148.72.232.119','normal','',0,0,0,1,0,'{\"login\":[1640577302]}'),(10234,'184.168.101.75','normal','',0,0,0,2,0,'{\"login\":[1640578114,1640689481]}'),(10235,'102.66.177.158','normal','',0,0,0,0,0,'[]'),(10236,'35.203.155.125','normal','',0,0,0,4,0,'{\"login\":[1640583819,1640858435,1654510136,1654516326]}'),(10237,'20.85.204.56','normal','',0,0,0,4,0,'{\"login\":[1640585330,1642206604,1642211139,1642277349]}'),(10238,'52.167.232.235','normal','',0,0,0,1,0,'{\"login\":[1640586030]}'),(10239,'184.168.102.96','normal','',0,0,0,1,0,'{\"login\":[1640586630]}'),(10240,'34.69.57.244','normal','',0,0,0,4,0,'{\"login\":[1640586811,1642237343,1644809479,1645972298]}'),(10241,'68.178.223.225','normal','',0,0,0,1,0,'{\"login\":[1640587860]}'),(10242,'130.255.166.146','normal','',0,0,0,0,0,'[]'),(10243,'130.255.166.171','normal','',0,0,0,0,3,'{\"nf\":[1647983226,1658411984,1659129035]}'),(10244,'130.255.166.174','normal','',0,0,0,0,1,'{\"nf\":[1640590171]}'),(10245,'130.255.166.219','normal','',0,0,0,0,1,'{\"nf\":[1640590172]}'),(10246,'130.255.166.151','normal','',0,0,0,0,0,'[]'),(10247,'18.222.43.30','normal','',0,0,0,1,0,'{\"login\":[1640590298]}'),(10248,'148.72.83.149','normal','',0,0,0,1,0,'{\"login\":[1640591423]}'),(10249,'95.128.46.215','normal','',0,0,0,3,0,'{\"login\":[1640592053,1640694848,1640788896]}'),(10250,'173.201.184.189','normal','',0,0,0,2,0,'{\"login\":[1640593127,1640785258]}'),(10251,'54.36.148.239','normal','',0,0,0,0,0,'[]'),(10252,'103.46.239.133','normal','',0,0,0,7,0,'{\"login\":[1640594277,1642453890,1642671683,1643567265,1644463947,1644605826,1644607683]}'),(10253,'184.168.112.225','normal','',0,0,0,1,0,'{\"login\":[1640594826]}'),(10254,'208.109.21.90','normal','',0,0,0,1,0,'{\"login\":[1640596893]}'),(10255,'66.222.133.157','normal','',0,0,0,1,0,'{\"login\":[1640597952]}'),(10256,'217.160.131.45','normal','',0,0,0,2,0,'{\"login\":[1640598523,1650143079]}'),(10257,'208.109.23.31','normal','',0,0,0,1,0,'{\"login\":[1640599494]}'),(10258,'173.201.186.32','normal','',0,0,0,1,0,'{\"login\":[1640605122]}'),(10259,'167.250.5.29','normal','',0,0,0,2,0,'{\"login\":[1640605754,1640702899]}'),(10260,'172.105.183.216','normal','',0,0,0,1,0,'{\"login\":[1640606223]}'),(10261,'92.204.223.27','normal','',0,0,0,1,0,'{\"login\":[1640606742]}'),(10262,'185.165.31.131','normal','',0,0,0,2,0,'{\"login\":[1640607991,1640688164]}'),(10263,'102.132.254.175','normal','',0,0,0,0,0,'[]'),(10264,'184.168.46.209','normal','',0,0,0,1,0,'{\"login\":[1640610247]}'),(10265,'173.201.178.226','normal','',0,0,0,2,0,'{\"login\":[1640611517,1640681014]}'),(10266,'185.61.154.35','normal','',0,0,0,1,0,'{\"login\":[1640612051]}'),(10267,'213.5.71.215','normal','',0,0,0,0,1,'{\"nf\":[1640613759]}'),(10268,'187.45.239.166','normal','',0,0,0,0,1,'{\"nf\":[1640613906]}'),(10269,'184.168.114.51','normal','',0,0,0,2,0,'{\"login\":[1640614733,1642209544]}'),(10270,'213.172.138.220','normal','',0,0,0,0,0,'[]'),(10271,'162.0.229.136','normal','',0,0,0,1,0,'{\"login\":[1640615924]}'),(10272,'182.50.135.82','normal','',0,0,0,1,0,'{\"login\":[1640616641]}'),(10273,'116.202.99.14','normal','',0,0,0,0,0,'[]'),(10274,'82.204.204.250','normal','',0,0,0,10,0,'{\"login\":[1640626420,1641770488,1644164768,1644528544,1646811035,1647156407,1649241235,1653206829,1658971940,1661012582]}'),(10275,'109.70.100.22','normal','',0,0,0,0,0,'[]'),(10276,'45.129.18.206','normal','',0,0,0,0,0,'[]'),(10277,'45.129.18.74','normal','',0,0,0,0,0,'[]'),(10278,'34.132.156.84','normal','',0,0,0,4,0,'{\"login\":[1640638603,1641211211,1641352665,1641423542]}'),(10279,'185.103.199.189','normal','',0,0,0,0,3,'{\"nf\":[1640638776,1641254982,1643796505]}'),(10280,'3.64.121.164','normal','',0,0,0,1,0,'{\"login\":[1640645702]}'),(10281,'207.46.13.233','normal','',0,0,0,0,0,'[]'),(10282,'69.164.220.103','normal','',0,0,0,0,0,'[]'),(10283,'199.195.254.132','normal','',0,0,0,1,0,'{\"login\":[1640657357]}'),(10284,'137.184.234.23','normal','',0,0,0,0,0,'[]'),(10285,'5.161.54.76','normal','',0,0,0,0,0,'[]'),(10286,'114.119.149.108','normal','',0,0,0,0,0,'[]'),(10287,'128.199.120.41','normal','',0,0,0,1,0,'{\"login\":[1640659841]}'),(10288,'107.180.109.15','normal','',0,0,0,0,0,'[]'),(10289,'167.172.62.245','normal','',0,0,0,0,0,'[]'),(10290,'159.223.8.243','normal','',0,0,0,0,0,'[]'),(10291,'147.182.246.72','normal','',0,0,0,0,0,'[]'),(10292,'161.35.237.29','normal','',0,0,0,0,0,'[]'),(10293,'195.154.177.197','normal','',0,0,0,0,0,'[]'),(10294,'184.168.114.104','normal','',0,0,0,1,0,'{\"login\":[1640675602]}'),(10295,'173.201.176.153','normal','',0,0,0,1,0,'{\"login\":[1640676427]}'),(10296,'133.18.229.152','normal','',0,0,0,1,0,'{\"login\":[1640677177]}'),(10297,'3.25.240.100','normal','',0,0,0,1,0,'{\"login\":[1640677994]}'),(10298,'162.0.215.176','normal','',0,0,0,1,0,'{\"login\":[1640678741]}'),(10299,'5.161.57.42','normal','',0,0,0,0,0,'[]'),(10300,'34.86.35.3','normal','',0,0,0,0,0,'[]'),(10301,'185.61.154.212','normal','',0,0,0,1,0,'{\"login\":[1640681657]}'),(10302,'54.36.149.10','normal','',0,0,0,0,0,'[]'),(10303,'78.141.213.10','normal','',0,0,0,0,0,'[]'),(10304,'137.184.37.207','normal','',0,0,0,0,0,'[]'),(10305,'159.253.25.213','normal','',0,0,0,2,0,'{\"login\":[1640683124,1650346873]}'),(10306,'92.205.10.38','normal','',0,0,0,1,0,'{\"login\":[1640685069]}'),(10307,'175.213.211.114','normal','',0,0,0,0,0,'[]'),(10308,'82.223.151.168','normal','',0,0,0,1,0,'{\"login\":[1640685933]}'),(10309,'35.203.64.230','normal','',0,0,0,2,0,'{\"login\":[1640688016,1641835873]}'),(10310,'173.201.176.23','normal','',0,0,0,1,0,'{\"login\":[1640688823]}'),(10311,'5.56.58.29','normal','',0,0,0,0,6,'{\"nf\":[1640689362,1640689373,1640689483,1640689494,1640689498,1640689580]}'),(10312,'121.40.142.99','normal','',0,0,0,1,0,'{\"login\":[1640690296]}'),(10313,'184.168.96.123','normal','',0,0,0,1,0,'{\"login\":[1640690963]}'),(10314,'54.36.149.2','normal','',0,0,0,0,0,'[]'),(10315,'92.205.0.137','normal','',0,0,0,1,0,'{\"login\":[1640693244]}'),(10316,'184.168.98.17','normal','',0,0,0,2,0,'{\"login\":[1640694046,1640920579]}'),(10317,'217.160.67.32','normal','',0,0,0,27,0,'{\"login\":[1640694115,1641534566,1641925831,1642093685,1642139413,1642153115,1642336200,1642609599,1643018283,1643052321,1643558122,1643754358,1644105776,1644159388,1644287069,1644287625,1644292574,1644327834,1644698318,1645344610,1645922393,1646465664,1646473516,1646682010,1647232732,1647523146,1647823387]}'),(10318,'208.109.174.214','normal','',0,0,0,2,0,'{\"login\":[1640696349,1650131745]}'),(10319,'207.244.241.95','normal','',0,0,0,1,0,'{\"login\":[1640698802]}'),(10320,'92.204.223.87','normal','',0,0,0,1,0,'{\"login\":[1640699608]}'),(10321,'47.91.17.201','normal','',0,0,0,1,0,'{\"login\":[1640703752]}'),(10322,'13.71.6.245','normal','',0,0,0,1,0,'{\"login\":[1640704611]}'),(10323,'72.167.71.145','normal','',0,0,0,2,0,'{\"login\":[1640705436,1640795407]}'),(10324,'81.6.43.9','normal','',0,0,0,0,0,'[]'),(10325,'110.40.236.3','normal','',0,0,0,11,0,'{\"login\":[1640721686,1640978403,1641503512,1641735969,1642286679,1643495515,1643564397,1644650579,1647022828,1647399441,1647765165]}'),(10326,'217.115.113.118','normal','',0,0,0,1,0,'{\"login\":[1640722558]}'),(10327,'185.85.162.242','normal','',0,0,0,0,0,'[]'),(10328,'50.62.177.193','normal','',0,0,0,0,1,'{\"nf\":[1640727437]}'),(10329,'114.119.139.110','normal','',0,0,0,0,0,'[]'),(10330,'178.238.230.251','normal','',0,0,0,7,0,'{\"login\":[1640745703,1641296960,1641524605,1641605775,1641612276,1641881479,1641890199]}'),(10331,'185.216.203.239','normal','',0,0,0,0,0,'[]'),(10332,'41.10.15.222','normal','',0,0,0,0,0,'[]'),(10333,'54.244.181.235','normal','',0,0,0,0,0,'[]'),(10334,'197.94.36.163','normal','',0,0,0,0,0,'[]'),(10335,'114.119.134.212','normal','',0,0,0,0,0,'[]'),(10336,'197.95.146.75','normal','',0,0,0,0,0,'[]'),(10337,'184.168.114.113','normal','',0,0,0,1,0,'{\"login\":[1640774172]}'),(10338,'107.180.124.4','normal','',0,0,0,1,0,'{\"login\":[1640779254]}'),(10339,'108.167.189.40','normal','',0,0,0,0,0,'[]'),(10340,'184.168.101.36','normal','',0,0,0,1,0,'{\"login\":[1640782062]}'),(10341,'194.187.146.71','normal','',0,0,0,2,0,'{\"login\":[1640786005,1645864499]}'),(10342,'168.235.69.106','normal','',0,0,0,1,0,'{\"login\":[1640786699]}'),(10343,'54.255.96.117','normal','',0,0,0,1,0,'{\"login\":[1640786744]}'),(10344,'192.169.151.159','normal','',0,0,0,1,0,'{\"login\":[1640788143]}'),(10345,'80.241.218.189','normal','',0,0,0,1,0,'{\"login\":[1640789614]}'),(10346,'198.54.114.14','normal','',0,0,0,1,0,'{\"login\":[1640791750]}'),(10347,'171.22.122.97','normal','',0,0,0,0,0,'[]'),(10348,'45.32.107.129','normal','',0,0,0,1,0,'{\"login\":[1640792511]}'),(10349,'17.121.112.49','normal','',0,0,0,0,0,'[]'),(10350,'17.121.115.11','normal','',0,0,0,0,0,'[]'),(10351,'210.190.157.130','normal','',0,0,0,2,0,'{\"login\":[1640793931,1640849451]}'),(10352,'153.122.75.248','normal','',0,0,0,9,0,'{\"login\":[1640794667,1640903565,1646019497,1646557268,1646844624,1646852013,1646853849,1646874617,1646980262]}'),(10353,'46.4.38.199','normal','',0,0,0,1,0,'{\"login\":[1640797558]}'),(10354,'184.168.114.187','normal','',0,0,0,2,0,'{\"login\":[1640798329,1642183906]}'),(10355,'184.168.103.26','normal','',0,0,0,1,0,'{\"login\":[1640801101]}'),(10356,'89.252.140.33','normal','',0,0,0,1,0,'{\"login\":[1640804602]}'),(10357,'35.222.130.43','normal','',0,0,0,2,0,'{\"login\":[1640804902,1640827070]}'),(10358,'178.128.244.166','normal','',0,0,0,1,0,'{\"login\":[1640805303]}'),(10359,'165.73.138.166','normal','',0,0,0,0,2,'{\"nf\":[1640806903,1640806903]}'),(10360,'54.36.148.80','normal','',0,0,0,0,0,'[]'),(10361,'190.24.123.39','normal','',0,0,0,1,0,'{\"login\":[1640841980]}'),(10362,'173.212.224.52','normal','',0,0,0,0,1,'{\"nf\":[1640843980]}'),(10363,'5.9.70.72','normal','',0,0,0,0,0,'[]'),(10364,'165.0.183.196','normal','',0,0,0,0,0,'[]'),(10365,'45.129.18.253','normal','',0,0,0,0,0,'[]'),(10366,'114.119.145.116','normal','',0,0,0,0,0,'[]'),(10367,'64.59.72.140','normal','',0,0,0,1,0,'{\"login\":[1640855245]}'),(10368,'105.8.1.61','normal','',0,0,0,0,0,'[]'),(10369,'198.20.170.59','normal','',0,0,0,2,0,'{\"login\":[1640862936,1650350563]}'),(10370,'50.62.137.47','normal','',0,0,0,2,0,'{\"login\":[1640865227,1649556649]}'),(10371,'194.233.73.61','normal','',0,0,0,1,0,'{\"login\":[1640868571]}'),(10372,'199.168.185.232','normal','',0,0,0,1,0,'{\"login\":[1640871134]}'),(10373,'41.13.246.85','normal','',0,0,0,0,0,'[]'),(10374,'84.17.59.82','blocked','You have been locked out due to too many invalid login attempts.',1640872047,1640871747,0,5,0,'{\"login\":[1640871742,1640871743,1640871743,1640871744,1640871747]}'),(10375,'185.191.127.214','normal','',0,0,0,0,0,'[]'),(10376,'209.203.3.88','normal','',0,0,0,0,1,'{\"nf\":[1640874286]}'),(10377,'54.241.157.131','normal','',0,0,0,0,0,'[]'),(10378,'104.149.133.54','normal','',0,0,0,0,0,'[]'),(10379,'66.94.121.172','normal','',0,0,0,5,0,'{\"login\":[1640881343,1641494532,1641512325,1641532743,1644539790]}'),(10380,'8.35.59.34','normal','',0,0,0,0,0,'[]'),(10381,'184.168.100.170','normal','',0,0,0,0,0,'[]'),(10382,'208.68.36.134','normal','',0,0,0,1,0,'{\"login\":[1640898626]}'),(10383,'50.62.149.31','normal','',0,0,0,0,0,'[]'),(10384,'132.148.183.105','normal','',0,0,0,1,0,'{\"login\":[1640906992]}'),(10385,'85.208.96.45','normal','',0,0,0,0,0,'[]'),(10386,'173.201.180.75','normal','',0,0,0,1,0,'{\"login\":[1640914499]}'),(10387,'27.111.82.74','normal','',0,0,0,2,0,'{\"login\":[1640916504,1650290330]}'),(10388,'148.72.97.73','normal','',0,0,0,3,0,'{\"login\":[1640918528,1642201616,1650135962]}'),(10389,'63.250.38.63','normal','',0,0,0,1,0,'{\"login\":[1640924604]}'),(10390,'167.248.133.41','normal','',0,0,0,0,0,'[]'),(10391,'198.187.29.114','normal','',0,0,0,1,0,'{\"login\":[1640925707]}'),(10392,'82.64.82.94','normal','',0,0,0,1,0,'{\"login\":[1640926838]}'),(10393,'148.72.255.53','normal','',0,0,0,0,0,'[]'),(10394,'184.168.96.0','normal','',0,0,0,0,0,'[]'),(10395,'149.62.171.31','normal','',0,0,0,3,0,'{\"login\":[1650137993,1650295372,1650304291]}'),(10396,'103.147.143.236','normal','',0,0,0,0,0,'[]'),(10397,'184.168.119.128','normal','',0,0,0,0,0,'[]'),(10398,'185.146.20.254','normal','',0,0,0,0,0,'[]'),(10399,'114.119.131.232','normal','',0,0,0,0,0,'[]'),(10400,'184.168.96.149','normal','',0,0,0,1,0,'{\"login\":[1642196013]}'),(10401,'160.251.28.21','normal','',0,0,0,0,0,'[]'),(10402,'198.54.114.109','normal','',0,0,0,0,1,'{\"nf\":[1650015559]}'),(10403,'192.138.189.160','normal','',0,0,0,0,0,'[]'),(10404,'128.199.232.182','blocked','You have been locked out due to too many invalid login attempts.',1640948147,1640947847,0,5,0,'{\"login\":[1640947837,1640947838,1640947839,1640947845,1640947847]}'),(10405,'185.3.235.251','normal','',0,0,0,0,0,'[]'),(10406,'41.13.204.115','normal','',0,0,0,0,0,'[]'),(10407,'82.223.111.249','normal','',0,0,0,7,0,'{\"login\":[1640952030,1641206076,1641689794,1641754045,1641838276,1642090821,1642389368]}'),(10408,'208.109.31.178','normal','',0,0,0,0,0,'[]'),(10409,'184.168.100.133','normal','',0,0,0,0,0,'[]'),(10410,'173.201.190.131','normal','',0,0,0,0,0,'[]'),(10411,'208.109.29.88','normal','',0,0,0,0,0,'[]'),(10412,'167.99.250.222','normal','',0,0,0,0,0,'[]'),(10413,'157.55.39.132','normal','',0,0,0,0,0,'[]'),(10414,'184.107.112.44','normal','',0,0,0,0,1,'{\"nf\":[1640962640]}'),(10415,'5.225.248.204','normal','',0,0,0,1,0,'{\"login\":[1640963002]}'),(10416,'184.168.103.144','normal','',0,0,0,0,0,'[]'),(10417,'130.185.78.76','normal','',0,0,0,0,0,'[]'),(10418,'39.105.56.236','normal','',0,0,0,1,0,'{\"login\":[1650134553]}'),(10419,'167.99.84.255','normal','',0,0,0,0,0,'[]'),(10420,'147.182.187.129','normal','',0,0,0,0,0,'[]'),(10421,'50.63.194.152','normal','',0,0,0,0,0,'[]'),(10422,'65.108.1.169','normal','',0,0,0,0,0,'[]'),(10423,'184.168.96.248','normal','',0,0,0,1,0,'{\"login\":[1642182870]}'),(10424,'185.2.5.77','normal','',0,0,0,52,0,'{\"login\":[1646101391,1646242708,1646257816,1646695058,1646883382,1647054173,1647200140,1647518537,1647625358,1648253740,1648457461,1649764950,1650433228,1651046211,1651733913,1652354001,1652670004,1652682137,1653041072,1653053682,1653063099,1653613857,1653773360,1654080044,1654447132,1654500155,1654787147,1654927283,1655712786,1656043920,1656190594,1656537776,1656850225,1657037959,1657070071,1657272800,1657401890,1657638270,1657645733,1657756855,1658001468,1658024405,1658081877,1658321488,1659255384,1659281675,1660683302,1661294654,1661508775,1662155005,1662687288,1663011682]}'),(10425,'51.15.240.178','normal','',0,0,0,1,0,'{\"login\":[1642222764]}'),(10426,'184.168.103.143','normal','',0,0,0,0,0,'[]'),(10427,'68.183.13.38','normal','',0,0,0,0,0,'[]'),(10428,'137.184.37.203','normal','',0,0,0,0,0,'[]'),(10429,'148.251.244.137','normal','',0,0,0,0,0,'[]'),(10430,'159.89.0.102','normal','',0,0,0,7,0,'{\"login\":[1641021371,1641416125,1642003627,1642103071,1642665846,1643617982,1644509697]}'),(10431,'50.63.194.153','normal','',0,0,0,1,0,'{\"login\":[1642178631]}'),(10432,'72.167.84.160','normal','',0,0,0,0,0,'[]'),(10433,'198.57.247.205','normal','',0,0,0,0,0,'[]'),(10434,'123.56.59.9','normal','',0,0,0,0,0,'[]'),(10435,'47.92.68.165','normal','',0,0,0,0,0,'[]'),(10436,'116.0.23.174','normal','',0,0,0,0,0,'[]'),(10437,'208.109.20.122','normal','',0,0,0,0,0,'[]'),(10438,'162.0.215.82','normal','',0,0,0,0,0,'[]'),(10439,'92.205.14.164','normal','',0,0,0,0,0,'[]'),(10440,'72.167.68.223','normal','',0,0,0,0,0,'[]'),(10441,'208.109.25.83','normal','',0,0,0,0,0,'[]'),(10442,'91.206.200.248','normal','',0,0,0,0,0,'[]'),(10443,'184.168.115.19','normal','',0,0,0,0,0,'[]'),(10444,'68.65.122.96','normal','',0,0,0,0,0,'[]'),(10445,'184.168.96.189','normal','',0,0,0,0,0,'[]'),(10446,'178.18.255.145','normal','',0,0,0,0,0,'[]'),(10447,'174.136.57.80','normal','',0,0,0,0,0,'[]'),(10448,'184.168.103.173','normal','',0,0,0,0,0,'[]'),(10449,'92.205.5.11','normal','',0,0,0,0,0,'[]'),(10450,'72.167.69.35','normal','',0,0,0,0,0,'[]'),(10451,'177.11.54.202','normal','',0,0,0,0,0,'[]'),(10452,'66.29.141.145','normal','',0,0,0,0,0,'[]'),(10453,'128.199.197.163','normal','',0,0,0,21,0,'{\"login\":[1645724385,1646633615,1646886255,1646948491,1647152267,1649036285,1649981224,1650499448,1650989036,1651175258,1652028644,1652569141,1652606698,1652748546,1652771472,1653376317,1653395117,1653403970,1653424663,1654179280,1654552140]}'),(10454,'194.242.10.14','normal','',0,0,0,0,0,'[]'),(10455,'95.111.235.203','normal','',0,0,0,1,0,'{\"login\":[1650301392]}'),(10456,'103.3.164.91','normal','',0,0,0,0,0,'[]'),(10457,'162.213.255.8','normal','',0,0,0,0,0,'[]'),(10458,'47.243.59.107','normal','',0,0,0,2,0,'{\"login\":[1642221664,1650141839]}'),(10459,'17.121.114.133','normal','',0,0,0,0,0,'[]'),(10460,'184.168.103.124','normal','',0,0,0,0,0,'[]'),(10461,'102.182.71.178','normal','',0,0,0,0,0,'[]'),(10462,'184.168.98.87','normal','',0,0,0,0,0,'[]'),(10463,'184.168.98.254','normal','',0,0,0,0,0,'[]'),(10464,'198.12.149.182','normal','',0,0,0,0,0,'[]'),(10465,'103.1.237.254','normal','',0,0,0,0,0,'[]'),(10466,'180.211.106.102','normal','',0,0,0,0,0,'[]'),(10467,'89.35.28.66','normal','',0,0,0,0,0,'[]'),(10468,'64.246.161.30','normal','',0,0,0,0,0,'[]'),(10469,'72.167.69.40','normal','',0,0,0,0,0,'[]'),(10470,'164.68.112.175','normal','',0,0,0,0,0,'[]'),(10471,'103.130.216.113','normal','',0,0,0,0,0,'[]'),(10472,'148.72.248.98','normal','',0,0,0,1,0,'{\"login\":[1642203025]}'),(10473,'103.227.177.205','normal','',0,0,0,0,0,'[]'),(10474,'92.243.15.140','normal','',0,0,0,0,0,'[]'),(10475,'175.36.67.101','normal','',0,0,0,1,0,'{\"login\":[1642229654]}'),(10476,'35.198.144.214','normal','',0,0,0,0,0,'[]'),(10477,'65.21.206.45','normal','',0,0,0,0,0,'[]'),(10478,'23.236.57.189','normal','',0,0,0,6,0,'{\"login\":[1641085027,1642456540,1644273807,1644474098,1644560447,1645068342]}'),(10479,'188.164.194.117','normal','',0,0,0,0,0,'[]'),(10480,'117.3.54.194','normal','',0,0,0,0,0,'[]'),(10481,'51.81.185.172','normal','',0,0,0,0,0,'[]'),(10482,'43.240.13.184','normal','',0,0,0,0,0,'[]'),(10483,'173.201.191.223','normal','',0,0,0,0,0,'[]'),(10484,'184.168.97.113','normal','',0,0,0,0,0,'[]'),(10485,'92.204.221.9','normal','',0,0,0,0,0,'[]'),(10486,'54.38.38.23','normal','',0,0,0,3,0,'{\"login\":[1661681805,1662081332,1662154813]}'),(10487,'66.29.146.11','normal','',0,0,0,0,0,'[]'),(10488,'208.109.68.254','normal','',0,0,0,0,0,'[]'),(10489,'184.168.113.249','normal','',0,0,0,0,0,'[]'),(10490,'92.204.220.69','normal','',0,0,0,0,0,'[]'),(10491,'185.220.101.142','normal','',0,0,0,0,0,'[]'),(10492,'13.234.75.152','normal','',0,0,0,0,0,'[]'),(10493,'54.36.148.72','normal','',0,0,0,0,0,'[]'),(10494,'54.36.149.83','normal','',0,0,0,0,0,'[]'),(10495,'114.119.137.249','normal','',0,0,0,0,0,'[]'),(10496,'165.0.8.224','normal','',0,0,0,0,0,'[]'),(10497,'143.198.28.38','normal','',0,0,0,0,0,'[]'),(10498,'130.255.166.80','normal','',0,0,0,0,0,'[]'),(10499,'130.255.166.97','normal','',0,0,0,0,1,'{\"nf\":[1641853713]}'),(10500,'130.255.166.115','normal','',0,0,0,0,1,'{\"nf\":[1641141931]}'),(10501,'130.255.166.79','normal','',0,0,0,0,1,'{\"nf\":[1641141932]}'),(10502,'50.87.140.205','normal','',0,0,0,0,0,'[]'),(10503,'77.227.40.200','normal','',0,0,0,2,0,'{\"login\":[1641152499,1641197229]}'),(10504,'157.7.190.240','normal','',0,0,0,1,2,'{\"login\":[1641180948],\"nf\":[1643890801,1646476408]}'),(10505,'45.129.18.124','normal','',0,0,0,0,0,'[]'),(10506,'40.77.167.29','normal','',0,0,0,0,0,'[]'),(10507,'148.66.147.38','normal','',0,0,0,0,0,'[]'),(10508,'184.168.98.94','normal','',0,0,0,0,0,'[]'),(10509,'92.205.5.219','normal','',0,0,0,0,0,'[]'),(10510,'50.116.87.120','normal','',0,0,0,0,1,'{\"nf\":[1641197934]}'),(10511,'118.109.138.182','normal','',0,0,0,0,0,'[]'),(10512,'129.205.129.114','normal','',0,0,0,0,0,'[]'),(10513,'92.205.5.183','normal','',0,0,0,0,0,'[]'),(10514,'179.43.187.138','normal','',0,0,0,0,0,'[]'),(10515,'198.54.126.110','normal','',0,0,0,2,0,'{\"login\":[1650139737,1650301063]}'),(10516,'63.250.38.202','normal','',0,0,0,0,0,'[]'),(10517,'20.113.91.235','normal','',0,0,0,0,0,'[]'),(10518,'72.167.124.187','normal','',0,0,0,0,0,'[]'),(10519,'17.121.113.179','normal','',0,0,0,0,0,'[]'),(10520,'104.219.248.98','normal','',0,0,0,1,0,'{\"login\":[1642219142]}'),(10521,'173.201.188.181','normal','',0,0,0,0,0,'[]'),(10522,'114.119.142.3','normal','',0,0,0,0,0,'[]'),(10523,'95.217.144.183','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1641219404,0,1641219104,0,25,'{\"nf\":[1641219082,1641219083,1641219084,1641219085,1641219085,1641219086,1641219087,1641219088,1641219089,1641219089,1641219090,1641219091,1641219091,1641219092,1641219093,1641219093,1641219094,1641219095,1641219096,1641219096,1641219097,1641219097,1641219098,1641219099,1641219104]}'),(10524,'34.140.57.55','normal','',0,0,0,16,0,'{\"login\":[1641220046,1641248274,1641393076,1641908930,1642173039,1642314759,1643321086,1643476953,1643656630,1644551410,1644595658,1644603972,1644811422,1646011006,1646275576,1646293291]}'),(10525,'167.94.138.59','normal','',0,0,0,0,0,'[]'),(10526,'154.70.118.74','normal','',0,0,0,0,2,'{\"nf\":[1641223753,1641223755]}'),(10527,'41.138.67.146','normal','',0,0,0,0,0,'[]'),(10528,'196.41.207.246','normal','',0,0,0,0,0,'[]'),(10529,'151.106.117.135','normal','',0,0,0,0,0,'[]'),(10530,'114.119.135.121','normal','',0,0,0,0,0,'[]'),(10531,'107.173.92.11','normal','',0,0,0,0,1,'{\"nf\":[1641263093]}'),(10532,'200.58.112.118','normal','',0,0,0,0,0,'[]'),(10533,'185.182.56.41','normal','',0,0,0,0,2,'{\"nf\":[1641273150,1642838200]}'),(10534,'184.168.152.128','normal','',0,0,0,0,0,'[]'),(10535,'54.203.48.52','normal','',0,0,0,0,0,'[]'),(10536,'185.103.159.101','normal','',0,0,0,0,1,'{\"nf\":[1641285805]}'),(10537,'204.11.50.131','normal','',0,0,0,0,0,'[]'),(10538,'107.172.65.184','normal','',0,0,0,0,1,'{\"nf\":[1641286648]}'),(10539,'165.232.179.99','normal','',0,0,0,1,0,'{\"login\":[1642198698]}'),(10540,'45.129.18.161','normal','',0,0,0,0,0,'[]'),(10541,'45.129.18.137','normal','',0,0,0,0,0,'[]'),(10542,'184.168.98.97','normal','',0,0,0,0,0,'[]'),(10543,'50.62.177.27','normal','',0,0,0,0,1,'{\"nf\":[1641293067]}'),(10544,'167.71.248.37','normal','',0,0,0,0,0,'[]'),(10545,'158.69.116.156','normal','',0,0,0,1,0,'{\"login\":[1661161053]}'),(10546,'68.178.220.63','normal','',0,0,0,0,0,'[]'),(10547,'45.77.239.152','normal','',0,0,0,0,5,'{\"nf\":[1641302172,1641302173,1641302174,1641302176,1641302177]}'),(10548,'199.188.200.139','normal','',0,0,0,0,0,'[]'),(10549,'184.168.102.151','normal','',0,0,0,0,0,'[]'),(10550,'184.168.102.202','normal','',0,0,0,0,0,'[]'),(10551,'178.128.209.138','normal','',0,0,0,0,0,'[]'),(10552,'54.36.149.100','normal','',0,0,0,0,0,'[]'),(10553,'62.122.254.38','normal','',0,0,0,3,0,'{\"login\":[1641312585,1641589172,1642790381]}'),(10554,'85.128.143.115','normal','',0,0,0,0,0,'[]'),(10555,'184.168.116.107','normal','',0,0,0,0,0,'[]'),(10556,'80.88.88.149','normal','',0,0,0,27,0,'{\"login\":[1654539896,1654895418,1655030643,1655170982,1655592695,1656761707,1656783281,1657079601,1657290921,1657336036,1657581227,1658052529,1658170543,1658658079,1659385457,1659978750,1660532086,1660584960,1661205156,1661209925,1661243844,1661519715,1661541642,1661632387,1662064994,1662772287,1663145223]}'),(10557,'67.205.29.114','normal','',0,0,0,2,0,'{\"login\":[1641315593,1641347778]}'),(10558,'92.205.8.255','normal','',0,0,0,0,0,'[]'),(10559,'67.23.226.241','normal','',0,0,0,0,0,'[]'),(10560,'64.225.69.194','normal','',0,0,0,1,0,'{\"login\":[1654067230]}'),(10561,'92.204.223.147','normal','',0,0,0,0,0,'[]'),(10562,'92.205.8.185','normal','',0,0,0,0,0,'[]'),(10563,'167.71.46.28','normal','',0,0,0,1,0,'{\"login\":[1641324946]}'),(10564,'17.121.112.39','normal','',0,0,0,0,0,'[]'),(10565,'35.233.254.115','normal','',0,0,0,12,0,'{\"login\":[1642226021,1642588972,1643090398,1643322284,1643531911,1643678402,1644518669,1645923347,1647166840,1647448354,1647737709,1647932372]}'),(10566,'92.204.218.48','normal','',0,0,0,0,0,'[]'),(10567,'184.168.98.160','normal','',0,0,0,0,0,'[]'),(10568,'80.253.244.53','normal','',0,0,0,0,0,'[]'),(10569,'184.168.116.210','normal','',0,0,0,0,0,'[]'),(10570,'81.88.49.53','normal','',0,0,0,0,1,'{\"nf\":[1641329212]}'),(10571,'185.101.158.220','normal','',0,0,0,0,0,'[]'),(10572,'184.168.97.21','normal','',0,0,0,0,0,'[]'),(10573,'43.229.129.91','normal','',0,0,0,14,0,'{\"login\":[1642207346,1645996092,1646740594,1647120874,1647701873,1647749013,1648212478,1648660410,1649739888,1650163424,1650678762,1650978671,1651065220,1651730561]}'),(10574,'51.7.222.204','normal','',0,0,0,0,1,'{\"nf\":[1641332180]}'),(10575,'173.249.35.204','normal','',0,0,0,0,0,'[]'),(10576,'162.0.232.89','normal','',0,0,0,0,0,'[]'),(10577,'81.88.49.57','normal','',0,0,0,0,1,'{\"nf\":[1641341597]}'),(10578,'185.83.144.103','normal','',0,0,0,0,33,'{\"nf\":[1641341916,1642385981,1642385982,1642385982,1646030329,1646642692,1647137218,1647730283,1648327998,1648877917,1649556006,1650144732,1650735388,1651360810,1651946177,1652910193,1653707439,1654638329,1655431312,1656182535,1656806711,1656806711,1657413079,1658010001,1658623744,1658623744,1659379715,1660003471,1660772486,1661443655,1662196180,1662196180,1662896001]}'),(10579,'35.240.212.116','normal','',0,0,0,1,0,'{\"login\":[1641344431]}'),(10580,'51.158.66.83','normal','',0,0,0,0,0,'[]'),(10581,'171.22.121.39','normal','',0,0,0,0,1,'{\"nf\":[1641347914]}'),(10582,'54.194.213.246','normal','',0,0,0,0,0,'[]'),(10583,'68.65.122.149','normal','',0,0,0,1,0,'{\"login\":[1650297628]}'),(10584,'173.201.196.221','normal','',0,0,0,0,0,'[]'),(10585,'8.131.62.110','normal','',0,0,0,36,0,'{\"login\":[1645986827,1646300842,1646591382,1648115108,1648263919,1648290714,1648409732,1648546154,1649033605,1649619871,1649704934,1649962147,1650315437,1650590207,1651318803,1652065881,1653067525,1653335067,1653463149,1653817572,1653927035,1654054945,1654538908,1654870765,1655575749,1655898420,1656122599,1657123613,1657409000,1657534364,1658255951,1658401315,1658737459,1659393790,1661106129,1661202845]}'),(10586,'137.184.159.101','normal','',0,0,0,6,0,'{\"login\":[1641358105,1641745260,1644279314,1645215735,1645362184,1646494219]}'),(10587,'187.73.33.90','normal','',0,0,0,0,1,'{\"nf\":[1641359066]}'),(10588,'92.204.219.114','normal','',0,0,0,0,0,'[]'),(10589,'89.223.122.155','normal','',0,0,0,1,0,'{\"login\":[1641360667]}'),(10590,'185.220.101.149','normal','',0,0,0,0,0,'[]'),(10591,'65.1.143.61','normal','',0,0,0,2,0,'{\"login\":[1641364086,1641586600]}'),(10592,'209.145.52.234','normal','',0,0,0,0,0,'[]'),(10593,'88.198.26.74','normal','',0,0,0,0,0,'[]'),(10594,'148.72.124.124','normal','',0,0,0,0,0,'[]'),(10595,'47.106.231.210','normal','',0,0,0,0,0,'[]'),(10596,'47.108.179.31','normal','',0,0,0,0,0,'[]'),(10597,'184.168.98.206','normal','',0,0,0,0,0,'[]'),(10598,'132.148.194.138','normal','',0,0,0,1,0,'{\"login\":[1642203676]}'),(10599,'81.169.238.121','normal','',0,0,0,0,0,'[]'),(10600,'68.178.220.188','normal','',0,0,0,0,0,'[]'),(10601,'54.193.208.158','normal','',0,0,0,0,0,'[]'),(10602,'184.168.98.0','normal','',0,0,0,0,1,'{\"nf\":[1662933889]}'),(10603,'1.203.77.246','normal','',0,0,0,0,0,'[]'),(10604,'37.61.232.10','normal','',0,0,0,0,0,'[]'),(10605,'54.36.148.109','normal','',0,0,0,0,0,'[]'),(10606,'185.103.199.251','normal','',0,0,0,0,1,'{\"nf\":[1641389300]}'),(10607,'34.208.209.27','normal','',0,0,0,0,0,'[]'),(10608,'82.165.88.34','normal','',0,0,0,0,0,'[]'),(10609,'165.73.96.207','normal','',0,0,0,0,0,'[]'),(10610,'176.98.43.77','normal','',0,0,0,0,0,'[]'),(10611,'114.119.151.151','normal','',0,0,0,0,0,'[]'),(10612,'184.168.103.230','normal','',0,0,0,0,0,'[]'),(10613,'107.172.181.20','normal','',0,0,0,0,1,'{\"nf\":[1641399994]}'),(10614,'184.168.99.253','normal','',0,0,0,0,0,'[]'),(10615,'72.167.105.198','normal','',0,0,0,0,0,'[]'),(10616,'60.205.205.107','normal','',0,0,0,0,0,'[]'),(10617,'66.29.141.108','normal','',0,0,0,1,0,'{\"login\":[1650301749]}'),(10618,'103.8.238.13','normal','',0,0,0,0,0,'[]'),(10619,'105.226.30.193','normal','',0,0,0,0,0,'[]'),(10620,'184.168.103.64','normal','',0,0,0,0,0,'[]'),(10621,'208.109.76.93','normal','',0,0,0,0,0,'[]'),(10622,'169.1.11.196','normal','',0,0,0,0,0,'[]'),(10623,'208.109.68.1','normal','',0,0,0,1,0,'{\"login\":[1642204378]}'),(10624,'109.74.194.9','normal','',0,0,0,0,0,'[]'),(10625,'50.63.194.155','normal','',0,0,0,1,0,'{\"login\":[1642223614]}'),(10626,'92.205.5.130','normal','',0,0,0,0,0,'[]'),(10627,'199.188.201.153','normal','',0,0,0,0,0,'[]'),(10628,'92.204.218.140','normal','',0,0,0,0,0,'[]'),(10629,'185.119.81.102','normal','',0,0,0,206,0,'{\"login\":[1656729467,1656739374,1656742010,1656750362,1656751865,1656752550,1656761308,1656769440,1656774007,1656783152,1656786389,1656791242,1656795617,1656795963,1656797618,1656803428,1656806868,1656807197,1656811146,1656814343,1656816357,1656823208,1656831895,1656834327,1656844394,1656849831,1656853737,1656870031,1656883617,1656892999,1656897421,1656897451,1656907715,1656921303,1656956459,1656965083,1656969044,1656970447,1656976804,1657008991,1657020746,1657053200,1657061521,1657076990,1657081590,1657082770,1657094108,1657142754,1657148895,1657152465,1657161103,1657174717,1657206232,1657206761,1657215522,1657222436,1657225494,1657620797,1657644283,1657667070,1657673724,1657679182,1657679733,1657684176,1657689238,1657711496,1657726462,1657729464,1657732067,1657750981,1657784632,1657803898,1657816750,1657822079,1657853129,1658673048,1658683079,1658684138,1658690911,1658715451,1658720390,1658740125,1658757585,1658759111,1658761088,1658775986,1658786794,1658803361,1658818279,1658844341,1658865108,1658886611,1658894143,1658910322,1658931809,1658950035,1658966187,1658983733,1659030723,1659031951,1659042524,1659055199,1659060157,1659064272,1659088954,1659106773,1659114910,1659125015,1659151574,1659157967,1659163550,1659173262,1659198434,1659203834,1659213345,1659225599,1659234909,1659249145,1659250333,1659255285,1659256170,1659259789,1659273544,1659278547,1659280552,1659280995,1659285469,1659293854,1659296742,1659312465,1659324229,1659324353,1659325315,1659329467,1659329831,1659338847,1659340385,1659342252,1659346492,1659353674,1659358444,1659368167,1659372089,1659381582,1659391901,1659399044,1659401937,1659417981,1659421407,1661285918,1661286276,1661296651,1661300403,1661350361,1661352891,1661360950,1661378043,1661380556,1661390783,1661410415,1661421873,1661437557,1661461123,1661468647,1661487347,1661489871,1661503055,1661759775,1661766949,1661775312,1661817234,1661818399,1661821219,1661832668,1661845927,1661867072,1661869808,1661872944,1661879581,1661885400,1661885789,1661921395,1661922268,1661924249,1661931257,1661943105,1661991873,1662005853,1662037765,1662060054,1662099803,1662117705,1662118309,1662122509,1662142316,1662142724,1662346136,1662348998,1662351027,1662370137,1662381001,1662382782,1662393021,1662394979,1662400921,1662414153]}'),(10630,'111.93.56.216','normal','',0,0,0,0,0,'[]'),(10631,'192.42.116.28','normal','',0,0,0,0,0,'[]'),(10632,'162.241.253.213','normal','',0,0,0,0,1,'{\"nf\":[1641439861]}'),(10633,'169.0.137.73','normal','',0,0,0,0,0,'[]'),(10634,'92.223.85.61','normal','',0,0,0,0,0,'[]'),(10635,'23.95.210.232','normal','',0,0,0,0,2,'{\"nf\":[1641461681,1641461695]}'),(10636,'181.177.122.90','normal','',0,0,0,0,0,'[]'),(10637,'184.168.96.164','normal','',0,0,0,0,0,'[]'),(10638,'88.214.43.164','normal','',0,0,0,0,4,'{\"nf\":[1641467076,1641467081,1643554283,1651978010]}'),(10639,'63.250.38.213','normal','',0,0,0,0,0,'[]'),(10640,'3.15.27.67','normal','',0,0,0,2,0,'{\"login\":[1641502379,1641516321]}'),(10641,'196.21.232.4','normal','',0,0,0,0,0,'[]'),(10642,'207.154.244.58','normal','',0,0,0,2,0,'{\"login\":[1650131447,1653810386]}'),(10643,'187.73.33.17','normal','',0,0,0,0,3,'{\"nf\":[1641481837,1642551540,1643099687]}'),(10644,'184.168.98.120','normal','',0,0,0,0,0,'[]'),(10645,'188.166.219.154','normal','',0,0,0,0,0,'[]'),(10646,'208.109.23.65','normal','',0,0,0,0,0,'[]'),(10647,'173.252.79.21','normal','',0,0,0,0,0,'[]'),(10648,'92.205.3.41','normal','',0,0,0,0,0,'[]'),(10649,'185.88.177.188','normal','',0,0,0,0,0,'[]'),(10650,'129.205.137.112','normal','',0,0,0,0,0,'[]'),(10651,'197.92.130.37','normal','',0,0,0,0,0,'[]'),(10652,'184.168.103.39','normal','',0,0,0,0,0,'[]'),(10653,'54.36.148.234','normal','',0,0,0,0,0,'[]'),(10654,'114.119.146.229','normal','',0,0,0,0,0,'[]'),(10655,'54.36.148.184','normal','',0,0,0,0,0,'[]'),(10656,'54.36.148.182','normal','',0,0,0,0,0,'[]'),(10657,'208.109.68.114','normal','',0,0,0,0,0,'[]'),(10658,'92.205.6.232','normal','',0,0,0,0,0,'[]'),(10659,'148.66.145.23','normal','',0,0,0,0,0,'[]'),(10660,'40.77.56.58','normal','',0,0,0,0,2,'{\"nf\":[1641508518,1641579213]}'),(10661,'72.167.67.108','normal','',0,0,0,0,0,'[]'),(10662,'107.189.31.26','normal','',0,0,0,0,0,'[]'),(10663,'46.101.232.85','normal','',0,0,0,4,0,'{\"login\":[1641514340,1641610963,1641633793,1641837582]}'),(10664,'46.138.220.48','normal','',0,0,0,0,0,'[]'),(10665,'167.71.194.63','normal','',0,0,0,5,0,'{\"login\":[1641520481,1641609680,1642762289,1645677418,1648178446]}'),(10666,'167.99.32.136','normal','',0,0,0,5,0,'{\"login\":[1641527251,1642004364,1642523583,1649954029,1653586351]}'),(10667,'148.72.232.161','normal','',0,0,0,0,1,'{\"nf\":[1641534405]}'),(10668,'202.92.5.170','normal','',0,0,0,18,0,'{\"login\":[1641534809,1643163720,1644428589,1649038456,1650211883,1652191720,1652227964,1653574496,1653585690,1653605898,1655295148,1655308163,1655319690,1655347738,1655353624,1656757317,1656779185,1656826183]}'),(10669,'184.94.240.140','normal','',0,0,0,0,0,'[]'),(10670,'197.229.3.175','normal','',0,0,0,0,0,'[]'),(10671,'197.229.3.131','normal','',0,0,0,0,0,'[]'),(10672,'46.101.62.105','normal','',0,0,0,19,0,'{\"login\":[1641538866,1642797013,1642819927,1644339195,1644373523,1648173581,1649070246,1652252814,1652831665,1653588506,1653591106,1654510377,1654611961,1654659590,1655281055,1655310051,1655322699,1655336973,1656751928]}'),(10673,'51.222.98.77','normal','',0,0,0,0,2,'{\"nf\":[1641539316,1641539367]}'),(10674,'194.44.247.218','normal','',0,0,0,0,0,'[]'),(10675,'17.121.113.164','normal','',0,0,0,0,0,'[]'),(10676,'196.61.107.63','normal','',0,0,0,0,0,'[]'),(10677,'114.119.139.226','normal','',0,0,0,0,0,'[]'),(10678,'207.174.215.236','normal','',0,0,0,0,1,'{\"nf\":[1641560978]}'),(10679,'45.129.18.106','normal','',0,0,0,0,0,'[]'),(10680,'45.129.18.125','normal','',0,0,0,0,0,'[]'),(10681,'37.120.183.98','normal','',0,0,0,0,0,'[]'),(10682,'208.109.37.76','normal','',0,0,0,2,0,'{\"login\":[1641592982,1641598040]}'),(10683,'185.213.27.108','normal','',0,0,0,0,0,'[]'),(10684,'198.71.231.19','normal','',0,0,0,0,2,'{\"nf\":[1641594783,1642456267]}'),(10685,'103.20.212.182','normal','',0,0,0,1,0,'{\"login\":[1641599337]}'),(10686,'45.129.18.38','normal','',0,0,0,0,0,'[]'),(10687,'45.129.18.227','normal','',0,0,0,0,0,'[]'),(10688,'104.248.15.201','normal','',0,0,0,12,0,'{\"login\":[1641601831,1646722391,1646862480,1649028678,1651468563,1652180789,1653546115,1653549182,1653562521,1654492631,1655281737,1655295561]}'),(10689,'139.59.117.30','normal','',0,0,0,3,0,'{\"login\":[1641603136,1641646490,1650309292]}'),(10690,'168.119.244.41','normal','',0,0,0,3,0,'{\"login\":[1641613564,1641793282,1643734305]}'),(10691,'208.109.19.46','normal','',0,0,0,0,0,'[]'),(10692,'65.108.105.247','normal','',0,0,0,0,4,'{\"nf\":[1641613954,1641613960,1641791563,1641791571]}'),(10693,'184.168.46.70','normal','',0,0,0,0,0,'[]'),(10694,'208.109.28.66','normal','',0,0,0,0,0,'[]'),(10695,'184.168.101.89','normal','',0,0,0,1,0,'{\"login\":[1642229013]}'),(10696,'161.35.66.40','normal','',0,0,0,2,0,'{\"login\":[1641616222,1641797379]}'),(10697,'164.90.136.91','normal','',0,0,0,0,0,'[]'),(10698,'45.77.140.189','normal','',0,0,0,1,0,'{\"login\":[1641617542]}'),(10699,'51.79.17.60','normal','',0,0,0,0,0,'[]'),(10700,'34.130.75.255','normal','',0,0,0,4,0,'{\"login\":[1641620241,1643767573,1645754242,1646177774]}'),(10701,'159.65.138.95','normal','',0,0,0,2,0,'{\"login\":[1641621539,1642765307]}'),(10702,'184.168.115.59','normal','',0,0,0,0,0,'[]'),(10703,'176.56.239.171','normal','',0,0,0,0,0,'[]'),(10704,'54.36.148.20','normal','',0,0,0,0,0,'[]'),(10705,'184.168.96.238','normal','',0,0,0,0,0,'[]'),(10706,'119.3.133.104','normal','',0,0,0,2,0,'{\"login\":[1641628378,1641832159]}'),(10707,'92.205.15.114','normal','',0,0,0,0,0,'[]'),(10708,'208.109.26.136','normal','',0,0,0,0,0,'[]'),(10709,'184.168.116.167','normal','',0,0,0,1,0,'{\"login\":[1642181320]}'),(10710,'39.35.85.247','normal','',0,0,0,0,0,'[]'),(10711,'151.80.45.72','normal','',0,0,0,3,0,'{\"login\":[1641632292,1641816741,1641826814]}'),(10712,'68.65.123.76','normal','',0,0,0,0,0,'[]'),(10713,'184.168.119.95','normal','',0,0,0,0,0,'[]'),(10714,'148.72.232.99','normal','',0,0,0,0,2,'{\"nf\":[1641634603,1641634606]}'),(10715,'157.230.135.182','normal','',0,0,0,1,0,'{\"login\":[1641636502]}'),(10716,'184.168.99.250','normal','',0,0,0,0,0,'[]'),(10717,'69.73.177.202','normal','',0,0,0,0,0,'[]'),(10718,'103.13.242.99','normal','',0,0,0,0,0,'[]'),(10719,'134.209.145.228','normal','',0,0,0,0,0,'[]'),(10720,'54.36.148.147','normal','',0,0,0,0,0,'[]'),(10721,'148.72.24.123','normal','',0,0,0,0,0,'[]'),(10722,'167.99.78.255','normal','',0,0,0,0,0,'[]'),(10723,'198.71.240.5','normal','',0,0,0,0,0,'[]'),(10724,'5.101.157.188','normal','',0,0,0,0,1,'{\"nf\":[1641646069]}'),(10725,'184.168.117.210','normal','',0,0,0,0,0,'[]'),(10726,'84.201.143.131','normal','',0,0,0,0,0,'[]'),(10727,'103.237.144.253','normal','',0,0,0,3,0,'{\"login\":[1641649395,1641760471,1641877053]}'),(10728,'45.130.228.76','normal','',0,0,0,0,1,'{\"nf\":[1641650901]}'),(10729,'185.220.101.19','normal','',0,0,0,1,0,'{\"login\":[1641651242]}'),(10730,'162.0.235.142','normal','',0,0,0,0,0,'[]'),(10731,'184.168.112.191','normal','',0,0,0,0,0,'[]'),(10732,'208.109.16.87','normal','',0,0,0,0,0,'[]'),(10733,'68.65.122.206','normal','',0,0,0,0,0,'[]'),(10734,'92.205.3.251','normal','',0,0,0,0,0,'[]'),(10735,'54.36.109.56','normal','',0,0,0,0,0,'[]'),(10736,'162.213.251.71','normal','',0,0,0,0,0,'[]'),(10737,'173.201.181.53','normal','',0,0,0,0,0,'[]'),(10738,'95.143.178.136','normal','',0,0,0,14,29,'{\"nf\":[1641671427,1641681616,1641697881,1641781850,1642084980,1642218301,1642250321,1642544043,1643279447,1644709219,1644959932,1645033196,1645102920,1645504592,1645900170,1645937459,1645955216,1645980457,1646061618,1646170424,1646262635,1646304159,1646414290,1646795586,1646903000,1646904905,1646952506,1647601604,1647845758],\"login\":[1641866390,1641916919,1641968656,1641986754,1642008094,1642046866,1642064636,1642102435,1642953803,1645400640,1645401633,1647546982,1647547848,1647548134]}'),(10739,'116.62.44.167','normal','',0,0,0,0,0,'[]'),(10740,'50.62.149.32','normal','',0,0,0,0,0,'[]'),(10741,'104.244.74.121','normal','',0,0,0,0,0,'[]'),(10742,'185.191.171.5','normal','',0,0,0,0,0,'[]'),(10743,'185.191.171.13','normal','',0,0,0,0,0,'[]'),(10744,'92.205.14.36','normal','',0,0,0,1,0,'{\"login\":[1642227832]}'),(10745,'103.28.39.137','normal','',0,0,0,0,0,'[]'),(10746,'41.76.111.112','normal','',0,0,0,0,1,'{\"nf\":[1641690404]}'),(10747,'82.192.85.41','normal','',0,0,0,10,0,'{\"login\":[1641690626,1641693126,1641706397,1641722405,1641726838,1641728442,1641742221,1641767383,1641791149,1641801132]}'),(10748,'185.220.101.138','normal','',0,0,0,1,0,'{\"login\":[1641696690]}'),(10749,'66.249.66.31','normal','',0,0,0,0,0,'[]'),(10750,'185.103.199.196','normal','',0,0,0,0,6,'{\"nf\":[1641744843,1643520955,1643520956,1643520956,1643520957,1643520957]}'),(10751,'2.57.88.218','normal','',0,0,0,0,1,'{\"nf\":[1641746454]}'),(10752,'116.203.252.136','normal','',0,0,0,0,2,'{\"nf\":[1641749379,1642865386]}'),(10753,'199.249.230.80','normal','',0,0,0,1,0,'{\"login\":[1641752545]}'),(10754,'209.141.48.150','normal','',0,0,0,0,0,'[]'),(10755,'62.102.148.68','normal','',0,0,0,0,0,'[]'),(10756,'185.220.101.39','normal','',0,0,0,0,0,'[]'),(10757,'185.129.61.6','normal','',0,0,0,0,0,'[]'),(10758,'192.42.116.24','normal','',0,0,0,0,0,'[]'),(10759,'51.195.45.190','normal','',0,0,0,0,0,'[]'),(10760,'194.32.107.159','normal','',0,0,0,0,0,'[]'),(10761,'185.220.103.119','normal','',0,0,0,0,0,'[]'),(10762,'185.220.102.8','normal','',0,0,0,0,6,'{\"nf\":[1649253572,1649253573,1649253574,1649253576,1649253577,1649253578]}'),(10763,'37.123.163.58','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1650780425,0,1650780125,0,40,'{\"nf\":[],\"login\":[]}'),(10764,'185.220.101.37','normal','',0,0,0,1,0,'{\"login\":[1655375428]}'),(10765,'5.2.79.111','normal','',0,0,0,0,0,'[]'),(10766,'185.220.100.240','normal','',0,0,0,0,0,'[]'),(10767,'185.220.101.165','normal','',0,0,0,0,0,'[]'),(10768,'185.129.61.5','normal','',0,0,0,0,0,'[]'),(10769,'193.239.232.102','normal','',0,0,0,0,0,'[]'),(10770,'209.141.46.81','normal','',0,0,0,0,0,'[]'),(10771,'37.228.129.109','normal','',0,0,0,0,0,'[]'),(10772,'185.220.101.6','normal','',0,0,0,0,0,'[]'),(10773,'171.25.193.20','normal','',0,0,0,0,0,'[]'),(10774,'199.249.230.160','normal','',0,0,0,0,0,'[]'),(10775,'114.119.150.45','normal','',0,0,0,0,0,'[]'),(10776,'136.232.206.78','normal','',0,0,0,1,0,'{\"login\":[1641775136]}'),(10777,'103.153.214.231','normal','',0,0,0,3,0,'{\"login\":[1660304682,1661071243,1661080059]}'),(10778,'45.149.78.43','normal','',0,0,0,0,0,'[]'),(10779,'193.189.100.198','normal','',0,0,0,1,5,'{\"login\":[1641789618],\"nf\":[1655205094,1655205096,1655205098,1655205100,1655205101]}'),(10780,'47.114.72.18','normal','',0,0,0,34,0,'{\"login\":[1645753468,1646087995,1646463427,1646474999,1646989073,1647065684,1648574559,1649567570,1650008155,1650664564,1650975043,1651188807,1652760686,1652992628,1653252702,1654232263,1654342388,1656867728,1657058503,1657632268,1657761649,1659773913,1660128183,1660344431,1660352604,1660575668,1660736897,1660762926,1661642319,1661723185,1662124291,1662688564,1662770963,1662887896]}'),(10781,'184.168.113.203','normal','',0,0,0,0,0,'[]'),(10782,'41.147.1.28','normal','',0,0,0,0,0,'[]'),(10783,'17.121.112.65','normal','',0,0,0,0,0,'[]'),(10784,'92.205.10.70','normal','',0,0,0,0,0,'[]'),(10785,'173.201.176.176','normal','',0,0,0,0,0,'[]'),(10786,'41.13.246.40','normal','',0,0,0,0,0,'[]'),(10787,'72.167.84.163','normal','',0,0,0,0,0,'[]'),(10788,'50.62.137.52','normal','',0,0,0,0,0,'[]'),(10789,'149.210.227.173','normal','',0,0,0,1,0,'{\"login\":[1642224538]}'),(10790,'114.119.150.92','normal','',0,0,0,0,0,'[]'),(10791,'184.168.116.203','normal','',0,0,0,0,0,'[]'),(10792,'197.101.116.4','normal','',0,0,0,0,0,'[]'),(10793,'23.88.52.224','normal','',0,0,0,4,0,'{\"login\":[1641812038,1644467554,1645584462,1645594238]}'),(10794,'165.0.2.85','normal','',0,0,0,0,0,'[]'),(10795,'197.86.207.64','normal','',0,0,0,0,0,'[]'),(10796,'208.109.65.232','normal','',0,0,0,0,0,'[]'),(10797,'198.54.126.158','normal','',0,0,0,0,0,'[]'),(10798,'45.153.160.135','normal','',0,0,0,0,0,'[]'),(10799,'50.116.89.2','normal','',0,0,0,0,1,'{\"nf\":[1641820615]}'),(10800,'185.247.95.238','normal','',0,0,0,2,0,'{\"login\":[1641821631,1641843059]}'),(10801,'102.182.207.221','normal','',0,0,0,0,0,'[]'),(10802,'162.247.72.199','normal','',0,0,0,1,0,'{\"login\":[1641836516]}'),(10803,'114.119.136.144','normal','',0,0,0,0,0,'[]'),(10804,'130.255.166.142','normal','',0,0,0,0,2,'{\"nf\":[1654140998,1656271605]}'),(10805,'130.255.166.120','normal','',0,0,0,0,1,'{\"nf\":[1641853715]}'),(10806,'54.153.59.9','normal','',0,0,0,0,0,'[]'),(10807,'51.81.93.102','normal','',0,0,0,1,0,'{\"login\":[1641859849]}'),(10808,'185.191.171.44','normal','',0,0,0,0,0,'[]'),(10809,'49.0.192.102','normal','',0,0,0,6,3,'{\"login\":[1641864139,1642747542,1642828235,1643118134,1643721647,1644478420],\"nf\":[1649029410,1649029411,1649029417]}'),(10810,'207.244.240.96','normal','',0,0,0,1,0,'{\"login\":[1641872704]}'),(10811,'185.25.23.54','normal','',0,0,0,0,0,'[]'),(10812,'72.167.69.214','normal','',0,0,0,0,0,'[]'),(10813,'45.129.18.44','normal','',0,0,0,0,0,'[]'),(10814,'45.129.18.210','normal','',0,0,0,0,0,'[]'),(10815,'105.12.5.69','normal','',0,0,0,0,0,'[]'),(10816,'212.227.132.232','normal','',0,0,0,0,0,'[]'),(10817,'92.205.1.246','normal','',0,0,0,0,0,'[]'),(10818,'213.190.4.190','normal','',0,0,0,4,0,'{\"login\":[1641898694,1643134175,1643142511,1643155097]}'),(10819,'184.168.97.210','normal','',0,0,0,0,0,'[]'),(10820,'105.187.38.197','normal','',0,0,0,0,0,'[]'),(10821,'178.62.74.65','normal','',0,0,0,0,4,'{\"nf\":[1641900403,1641900406,1641900407,1641900410]}'),(10822,'182.50.132.99','normal','',0,0,0,0,0,'[]'),(10823,'47.105.86.21','normal','',0,0,0,1,0,'{\"login\":[1642189219]}'),(10824,'66.249.66.215','normal','',0,0,0,0,0,'[]'),(10825,'66.249.66.1','normal','',0,0,0,0,0,'[]'),(10826,'101.0.97.134','normal','',0,0,0,0,0,'[]'),(10827,'156.155.29.10','normal','',0,0,0,0,0,'[]'),(10828,'43.129.172.101','normal','',0,0,0,0,0,'[]'),(10829,'40.77.167.32','normal','',0,0,0,0,0,'[]'),(10830,'162.0.229.212','normal','',0,0,0,0,0,'[]'),(10831,'186.234.80.71','normal','',0,0,0,0,0,'[]'),(10832,'68.65.120.203','normal','',0,0,0,0,0,'[]'),(10833,'92.204.220.54','normal','',0,0,0,0,0,'[]'),(10834,'102.222.181.40','normal','',0,0,0,0,0,'[]'),(10835,'148.72.197.134','normal','',0,0,0,0,0,'[]'),(10836,'184.168.96.143','normal','',0,0,0,0,0,'[]'),(10837,'197.245.225.135','normal','',0,0,0,0,1,'{\"nf\":[1641920706]}'),(10838,'45.129.18.80','normal','',0,0,0,0,0,'[]'),(10839,'162.0.232.58','normal','',0,0,0,0,0,'[]'),(10840,'75.15.244.98','normal','',0,0,0,0,0,'[]'),(10841,'185.84.108.16','normal','',0,0,0,0,0,'[]'),(10842,'165.73.103.37','normal','',0,0,0,0,0,'[]'),(10843,'109.234.161.216','normal','',0,0,0,0,0,'[]'),(10844,'68.183.23.69','normal','',0,0,0,1,0,'{\"login\":[1642179904]}'),(10845,'184.168.97.101','normal','',0,0,0,0,0,'[]'),(10846,'184.168.100.57','normal','',0,0,0,1,0,'{\"login\":[1642279847]}'),(10847,'70.32.31.241','normal','',0,0,0,0,0,'[]'),(10848,'207.200.8.180','normal','',0,0,0,0,6,'{\"nf\":[1649874709,1649874716,1649874718,1649874722,1649874734,1657539688]}'),(10849,'185.128.81.45','normal','',0,0,0,0,0,'[]'),(10850,'178.63.26.114','normal','',0,0,0,0,0,'[]'),(10851,'66.249.66.207','normal','',0,0,0,0,0,'[]'),(10852,'173.44.222.219','normal','',0,0,0,0,0,'[]'),(10853,'117.103.158.8','normal','',0,0,0,0,0,'[]'),(10854,'149.255.58.42','normal','',0,0,0,0,0,'[]'),(10855,'37.187.26.195','normal','',0,0,0,0,0,'[]'),(10856,'45.61.185.98','normal','',0,0,0,0,0,'[]'),(10857,'198.71.227.4','normal','',0,0,0,0,0,'[]'),(10858,'132.148.114.71','normal','',0,0,0,0,6,'{\"nf\":[1641974752,1641974755,1642499778,1642499782,1643393280,1643574524]}'),(10859,'186.64.116.10','normal','',0,0,0,0,0,'[]'),(10860,'139.59.71.142','normal','',0,0,0,0,0,'[]'),(10861,'162.254.253.158','normal','',0,0,0,0,0,'[]'),(10862,'34.223.224.34','normal','',0,0,0,0,0,'[]'),(10863,'165.232.190.246','normal','',0,0,0,0,0,'[]'),(10864,'102.132.202.76','normal','',0,0,0,0,3,'{\"nf\":[1641982581,1641982595,1641982595]}'),(10865,'184.168.100.30','normal','',0,0,0,0,0,'[]'),(10866,'108.160.144.48','normal','',0,0,0,0,1,'{\"nf\":[1641987965]}'),(10867,'108.167.150.194','normal','',0,0,0,0,0,'[]'),(10868,'103.137.185.76','normal','',0,0,0,0,1,'{\"nf\":[1641989651]}'),(10869,'54.36.148.111','normal','',0,0,0,0,1,'{\"nf\":[1658814371]}'),(10870,'208.109.23.237','normal','',0,0,0,2,0,'{\"login\":[1642180864,1642193547]}'),(10871,'62.210.28.50','normal','',0,0,0,0,0,'[]'),(10872,'185.189.151.156','normal','',0,0,0,0,0,'[]'),(10873,'59.125.102.142','normal','',0,0,0,0,1,'{\"nf\":[1641998384]}'),(10874,'153.92.213.77','normal','',0,0,0,0,2,'{\"nf\":[1641999950,1641999953]}'),(10875,'103.205.140.180','normal','',0,0,0,0,0,'[]'),(10876,'128.199.208.149','normal','',0,0,0,0,0,'[]'),(10877,'156.235.196.54','normal','',0,0,0,0,9,'{\"nf\":[1642007798,1642007801,1642251171,1642251173,1642914004,1643366856,1643991827,1643998500,1644010521]}'),(10878,'31.13.127.23','normal','',0,0,0,0,0,'[]'),(10879,'45.80.154.88','normal','',0,0,0,0,1,'{\"nf\":[1642010851]}'),(10880,'41.175.79.161','normal','',0,0,0,0,0,'[]'),(10881,'144.217.135.231','normal','',0,0,0,0,2,'{\"nf\":[1642013655,1642013663]}'),(10882,'149.56.150.72','normal','',0,0,0,0,0,'[]'),(10883,'172.107.241.110','normal','',0,0,0,0,0,'[]'),(10884,'81.17.18.59','normal','',0,0,0,0,0,'[]'),(10885,'205.185.126.167','normal','',0,0,0,0,0,'[]'),(10886,'45.129.18.158','normal','',0,0,0,0,0,'[]'),(10887,'45.129.18.69','normal','',0,0,0,0,0,'[]'),(10888,'45.199.93.98','normal','',0,0,0,0,1,'{\"nf\":[1642038431]}'),(10889,'188.240.2.130','normal','',0,0,0,0,0,'[]'),(10890,'92.205.6.124','normal','',0,0,0,0,0,'[]'),(10891,'116.0.21.1','normal','',0,0,0,0,0,'[]'),(10892,'104.244.72.123','normal','',0,0,0,1,0,'{\"login\":[1642058513]}'),(10893,'49.233.121.229','normal','',0,0,0,0,0,'[]'),(10894,'46.161.15.14','normal','',0,0,0,0,0,'[]'),(10895,'184.168.118.234','normal','',0,0,0,0,0,'[]'),(10896,'37.120.183.91','normal','',0,0,0,0,0,'[]'),(10897,'109.70.100.27','normal','',0,0,0,0,1,'{\"nf\":[1653767535]}'),(10898,'107.189.12.148','normal','',0,0,0,0,0,'[]'),(10899,'107.189.31.102','normal','',0,0,0,0,0,'[]'),(10900,'185.220.101.7','normal','',0,0,0,0,0,'[]'),(10901,'193.189.100.206','normal','',0,0,0,0,1,'{\"nf\":[1654908285]}'),(10902,'185.220.102.244','normal','',0,0,0,0,0,'[]'),(10903,'198.54.126.80','normal','',0,0,0,0,0,'[]'),(10904,'41.71.64.101','normal','',0,0,0,0,0,'[]'),(10905,'112.78.1.204','normal','',0,0,0,1,0,'{\"login\":[1650140654]}'),(10906,'101.0.81.254','normal','',0,0,0,0,0,'[]'),(10907,'144.91.73.250','normal','',0,0,0,0,0,'[]'),(10908,'54.36.148.104','normal','',0,0,0,0,0,'[]'),(10909,'121.40.109.29','normal','',0,0,0,0,3,'{\"nf\":[1642080843,1642685193,1642685200]}'),(10910,'164.68.101.167','normal','',0,0,0,0,2,'{\"nf\":[1642086287,1642086309]}'),(10911,'198.54.114.112','normal','',0,0,0,0,0,'[]'),(10912,'184.168.103.68','normal','',0,0,0,0,0,'[]'),(10913,'157.90.130.117','normal','',0,0,0,0,0,'[]'),(10914,'103.51.103.2','normal','',0,0,0,3,0,'{\"login\":[1642227273,1654529744,1661084757]}'),(10915,'50.63.194.154','normal','',0,0,0,0,0,'[]'),(10916,'50.62.147.132','normal','',0,0,0,0,0,'[]'),(10917,'114.119.129.171','normal','',0,0,0,0,0,'[]'),(10918,'47.92.73.121','normal','',0,0,0,0,0,'[]'),(10919,'178.170.113.13','normal','',0,0,0,0,1,'{\"nf\":[1642121703]}'),(10920,'17.121.115.204','normal','',0,0,0,0,0,'[]'),(10921,'116.202.117.116','normal','',0,0,0,0,2,'{\"nf\":[1642616244,1662648476]}'),(10922,'77.223.119.201','normal','',0,0,0,0,1,'{\"nf\":[1642164097]}'),(10923,'103.224.80.3','normal','',0,0,0,0,1,'{\"nf\":[1642164098]}'),(10924,'197.94.20.193','normal','',0,0,0,0,0,'[]'),(10925,'197.89.22.28','normal','',0,0,0,0,0,'[]'),(10926,'45.129.18.170','normal','',0,0,0,0,0,'[]'),(10927,'66.249.73.115','normal','',0,0,0,0,0,'[]'),(10928,'80.150.6.150','normal','',0,0,0,4,0,'{\"login\":[1642182226,1642436366,1654237361,1659292828]}'),(10929,'186.234.80.46','normal','',0,0,0,1,0,'{\"login\":[1642183401]}'),(10930,'68.171.213.154','normal','',0,0,0,0,2,'{\"nf\":[1642183807,1644780377]}'),(10931,'148.72.232.133','normal','',0,0,0,1,0,'{\"login\":[1642185991]}'),(10932,'46.105.120.26','normal','',0,0,0,1,0,'{\"login\":[1642188833]}'),(10933,'89.145.112.48','normal','',0,0,0,1,0,'{\"login\":[1642191159]}'),(10934,'125.227.127.195','normal','',0,0,0,35,0,'{\"login\":[1642192868,1651489922,1652365224,1652531957,1652556882,1652836124,1652990859,1653464028,1653624591,1653893803,1654276592,1654373726,1654557616,1654734459,1655013760,1655186591,1655564287,1655604162,1655733157,1656223350,1656293296,1656730024,1656919721,1657177332,1657229957,1657337322,1657998846,1659376768,1660142196,1660485279,1661017556,1661084904,1661236962,1662920524,1663049489]}'),(10935,'182.50.135.75','normal','',0,0,0,0,1,'{\"nf\":[1642196905]}'),(10936,'51.89.224.158','normal','',0,0,0,0,1,'{\"nf\":[1642206397]}'),(10937,'108.62.9.233','normal','',0,0,0,0,0,'[]'),(10938,'159.223.35.41','normal','',0,0,0,0,0,'[]'),(10939,'79.99.164.42','normal','',0,0,0,0,1,'{\"nf\":[1642215623]}'),(10940,'114.119.150.210','normal','',0,0,0,0,0,'[]'),(10941,'3.68.50.38','normal','',0,0,0,0,0,'[]'),(10942,'34.79.246.243','normal','',0,0,0,0,2,'{\"nf\":[1642228305,1642228319]}'),(10943,'195.133.18.43','normal','',0,0,0,0,11,'{\"nf\":[1642233956,1642233975,1642233976,1642233977,1642233978,1642233979,1642233980,1642233980,1642234003,1642234003,1642234004]}'),(10944,'173.252.79.120','normal','',0,0,0,0,0,'[]'),(10945,'173.252.79.12','normal','',0,0,0,0,0,'[]'),(10946,'23.92.210.182','normal','',0,0,0,0,3,'{\"nf\":[1642238198,1642592109,1644003559]}'),(10947,'92.205.1.205','normal','',0,0,0,0,1,'{\"nf\":[1642239566]}'),(10948,'65.154.226.100','normal','',0,0,0,0,1,'{\"nf\":[1649797267]}'),(10949,'201.149.55.226','normal','',0,0,0,0,6,'{\"nf\":[1642251437,1642251455,1642251497,1647046138,1649961438,1649961453]}'),(10950,'171.33.132.16','normal','',0,0,0,0,0,'[]'),(10951,'197.87.186.253','normal','',0,0,0,0,1,'{\"nf\":[1642261250]}'),(10952,'66.249.77.71','normal','',0,0,0,0,0,'[]'),(10953,'66.249.77.95','normal','',0,0,0,0,0,'[]'),(10954,'66.249.77.64','normal','',0,0,0,0,0,'[]'),(10955,'185.220.102.254','normal','',0,0,0,0,0,'[]'),(10956,'72.167.104.77','normal','',0,0,0,0,0,'[]'),(10957,'114.119.145.237','normal','',0,0,0,0,0,'[]'),(10958,'66.249.77.66','normal','',0,0,0,0,0,'[]'),(10959,'40.77.167.97','normal','',0,0,0,0,0,'[]'),(10960,'186.234.80.75','normal','',0,0,0,0,0,'[]'),(10961,'156.146.34.158','normal','',0,0,0,0,2,'{\"nf\":[1642298892,1644325730]}'),(10962,'162.0.209.95','normal','',0,0,0,0,0,'[]'),(10963,'186.234.80.170','normal','',0,0,0,0,0,'[]'),(10964,'132.148.47.21','normal','',0,0,0,0,0,'[]'),(10965,'162.0.232.205','normal','',0,0,0,0,0,'[]'),(10966,'92.205.10.243','normal','',0,0,0,0,0,'[]'),(10967,'118.25.106.105','normal','',0,0,0,0,0,'[]'),(10968,'217.148.183.49','normal','',0,0,0,0,0,'[]'),(10969,'5.45.207.95','normal','',0,0,0,0,2,'{\"nf\":[1642422846,1643173248]}'),(10970,'45.125.245.141','normal','',0,0,0,0,0,'[]'),(10971,'198.57.247.149','normal','',0,0,0,0,0,'[]'),(10972,'35.83.253.172','normal','',0,0,0,0,0,'[]'),(10973,'44.242.142.123','normal','',0,0,0,0,1,'{\"nf\":[1642348280]}'),(10974,'114.119.129.25','normal','',0,0,0,0,0,'[]'),(10975,'209.95.51.168','normal','',0,0,0,0,1,'{\"nf\":[1642354385]}'),(10976,'184.168.97.212','normal','',0,0,0,0,1,'{\"nf\":[1642366883]}'),(10977,'66.249.64.89','normal','',0,0,0,0,0,'[]'),(10978,'54.36.148.128','normal','',0,0,0,0,0,'[]'),(10979,'43.225.21.178','normal','',0,0,0,0,1,'{\"nf\":[1642373967]}'),(10980,'121.41.1.79','normal','',0,0,0,0,2,'{\"nf\":[1642374304,1644753911]}'),(10981,'143.110.225.41','normal','',0,0,0,0,0,'[]'),(10982,'77.71.115.52','normal','',0,0,0,0,1,'{\"nf\":[1642405546]}'),(10983,'91.210.171.74','normal','',0,0,0,2,0,'{\"login\":[1642410093,1642585049]}'),(10984,'161.35.203.218','normal','',0,0,0,11,0,'{\"login\":[1642411433,1642412792,1643473561,1644730371,1645349448,1645921449,1645943287,1646050170,1646480356,1646648459,1646711066]}'),(10985,'3.137.91.163','normal','',0,0,0,3,0,'{\"login\":[1642412634,1642532335,1642595619]}'),(10986,'31.207.80.43','normal','',0,0,0,1,0,'{\"login\":[1642414150]}'),(10987,'85.85.242.158','normal','',0,0,0,13,0,'{\"login\":[1642415523,1642419685,1642616981,1643052006,1643093287,1643504228,1643530780,1643629298,1644103745,1644196269,1644277109,1644392790,1644440278]}'),(10988,'198.71.236.53','normal','',0,0,0,0,1,'{\"nf\":[1642415959]}'),(10989,'35.185.241.102','normal','',0,0,0,0,0,'[]'),(10990,'197.89.183.71','normal','',0,0,0,0,0,'[]'),(10991,'35.225.82.182','normal','',0,0,0,0,0,'[]'),(10992,'103.18.56.176','normal','',0,0,0,2,0,'{\"login\":[1642418285,1642543861]}'),(10993,'42.192.81.14','normal','',0,0,0,5,0,'{\"login\":[1642419520,1644090673,1644132758,1644583634,1649021524]}'),(10994,'114.119.133.190','normal','',0,0,0,0,0,'[]'),(10995,'197.95.135.69','normal','',0,0,0,0,0,'[]'),(10996,'91.192.135.215','normal','',0,0,0,0,0,'[]'),(10997,'157.55.39.108','normal','',0,0,0,0,0,'[]'),(10998,'5.39.22.113','normal','',0,0,0,10,0,'{\"login\":[1642430041,1642590288,1642596568,1642653083,1642870715,1642999086,1643047913,1643532472,1644135834,1644663983]}'),(10999,'45.56.76.232','normal','',0,0,0,0,2,'{\"nf\":[1642431458,1642431459]}'),(11000,'89.252.130.86','normal','',0,0,0,0,2,'{\"nf\":[1642433021,1642881657]}'),(11001,'109.70.100.31','normal','',0,0,0,0,0,'[]'),(11002,'170.249.205.66','normal','',0,0,0,0,1,'{\"nf\":[1642436604]}'),(11003,'146.59.151.16','normal','',0,0,0,0,1,'{\"nf\":[1642437112]}'),(11004,'51.161.32.31','normal','',0,0,0,3,0,'{\"login\":[1642438111,1642458314,1642882116]}'),(11005,'140.238.249.129','normal','',0,0,0,1,0,'{\"login\":[1642442464]}'),(11006,'143.198.50.229','normal','',0,0,0,3,0,'{\"login\":[1642444214,1642549148,1642654909]}'),(11007,'194.110.169.90','normal','',0,0,0,0,1,'{\"nf\":[1642446073]}'),(11008,'138.201.36.60','normal','',0,0,0,5,0,'{\"login\":[1642447708,1642536879,1644088626,1644336776,1644592015]}'),(11009,'102.39.57.190','normal','',0,0,0,0,0,'[]'),(11010,'107.180.121.4','normal','',0,0,0,0,0,'[]'),(11011,'54.147.152.176','normal','',0,0,0,2,0,'{\"login\":[1642457425,1642471784]}'),(11012,'91.134.137.101','normal','',0,0,0,0,0,'[]'),(11013,'77.247.69.2','normal','',0,0,0,7,0,'{\"login\":[1642459199,1642531463,1642672504,1642686809,1642860283,1642912976,1642976388]}'),(11014,'141.85.241.222','normal','',0,0,0,0,0,'[]'),(11015,'175.36.70.193','normal','',0,0,0,0,0,'[]'),(11016,'162.241.224.110','normal','',0,0,0,0,0,'[]'),(11017,'188.34.199.172','normal','',0,0,0,1,0,'{\"login\":[1642478180]}'),(11018,'173.201.185.124','normal','',0,0,0,0,0,'[]'),(11019,'142.93.43.186','normal','',0,0,0,0,0,'[]'),(11020,'184.168.99.248','normal','',0,0,0,0,0,'[]'),(11021,'156.17.205.137','normal','',0,0,0,3,0,'{\"login\":[1642489159,1642490037,1642637190]}'),(11022,'103.68.251.122','normal','',0,0,0,0,1,'{\"nf\":[1642489186]}'),(11023,'139.59.117.176','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1642491770,0,1642491470,0,20,'{\"nf\":[1642491438,1642491439,1642491441,1642491443,1642491444,1642491445,1642491446,1642491447,1642491449,1642491450,1642491453,1642491454,1642491457,1642491459,1642491460,1642491462,1642491463,1642491464,1642491469,1642491470]}'),(11024,'114.119.149.150','normal','',0,0,0,0,0,'[]'),(11025,'128.199.109.135','normal','',0,0,0,2,0,'{\"login\":[1658155100,1662224298]}'),(11026,'192.185.2.232','normal','',0,0,0,0,1,'{\"nf\":[1642499309]}'),(11027,'138.68.108.246','normal','',0,0,0,4,0,'{\"login\":[1642499774,1643097881,1643607815,1644538513]}'),(11028,'3.64.37.82','normal','',0,0,0,3,0,'{\"login\":[1642501567,1642585913,1642843912]}'),(11029,'45.220.255.48','normal','',0,0,0,0,1,'{\"nf\":[1645424812]}'),(11030,'64.131.64.114','normal','',0,0,0,0,0,'[]'),(11031,'20.121.217.143','normal','',0,0,0,0,1,'{\"nf\":[1642508262]}'),(11032,'62.171.190.186','normal','',0,0,0,0,0,'[]'),(11033,'37.187.78.120','normal','',0,0,0,11,0,'{\"login\":[1642510880,1642628763,1642691105,1642965768,1642969620,1643325291,1643542995,1644266741,1644471036,1644613614,1644803137]}'),(11034,'54.184.66.209','normal','',0,0,0,0,0,'[]'),(11035,'68.178.244.182','normal','',0,0,0,0,0,'[]'),(11036,'58.96.40.33','normal','',0,0,0,9,0,'{\"login\":[1642515902,1642517714,1643001058,1643087867,1643619116,1644250633,1644729404,1645222901,1646033840]}'),(11037,'177.11.48.209','normal','',0,0,0,0,0,'[]'),(11038,'54.36.148.119','normal','',0,0,0,0,0,'[]'),(11039,'92.204.221.14','normal','',0,0,0,0,0,'[]'),(11040,'62.221.194.243','normal','',0,0,0,9,0,'{\"login\":[1642522242,1642526657,1642592501,1643052641,1643055811,1643494374,1644131724,1644375059,1644838543]}'),(11041,'157.90.163.43','normal','',0,0,0,2,0,'{\"login\":[1642524908,1642530580]}'),(11042,'46.182.203.185','normal','',0,0,0,1,0,'{\"login\":[1642527527]}'),(11043,'45.129.18.94','normal','',0,0,0,0,0,'[]'),(11044,'45.129.18.89','normal','',0,0,0,0,0,'[]'),(11045,'162.0.235.205','normal','',0,0,0,0,0,'[]'),(11046,'81.177.174.151','normal','',0,0,0,2,0,'{\"login\":[1642529270,1642534949]}'),(11047,'197.89.40.114','normal','',0,0,0,0,0,'[]'),(11048,'154.13.1.151','normal','',0,0,0,0,0,'[]'),(11049,'212.114.110.166','normal','',0,0,0,0,1,'{\"nf\":[1642533580]}'),(11050,'34.238.54.51','normal','',0,0,0,1,0,'{\"login\":[1642533639]}'),(11051,'167.86.91.247','normal','',0,0,0,11,0,'{\"login\":[1642534515,1642919890,1643319300,1643517573,1644732303,1645223928,1645269145,1646437984,1646519423,1646709626,1646896336]}'),(11052,'102.182.190.214','normal','',0,0,0,0,0,'[]'),(11053,'104.197.144.9','normal','',0,0,0,3,0,'{\"login\":[1642541239,1645940596,1650033093]}'),(11054,'102.39.186.197','normal','',0,0,0,0,3,'{\"nf\":[1642541280,1642541329,1642541331]}'),(11055,'35.220.192.251','normal','',0,0,0,1,0,'{\"login\":[1642542110]}'),(11056,'192.241.129.232','normal','',0,0,0,4,0,'{\"login\":[1642543425,1642549585,1642959956,1642990100]}'),(11057,'54.36.188.153','normal','',0,0,0,5,0,'{\"login\":[1642546044,1642684250,1642868426,1642902738,1643041250]}'),(11058,'52.60.77.201','normal','',0,0,0,3,0,'{\"login\":[1642553138,1642655720,1642853733]}'),(11059,'198.251.81.14','normal','',0,0,0,0,1,'{\"nf\":[1642553345]}'),(11060,'167.172.64.96','normal','',0,0,0,26,0,'{\"login\":[1642554480,1643576487,1645049432,1648734751,1650137104,1650497273,1651092012,1651480002,1651976712,1652373311,1653334418,1654218473,1654304126,1654868205,1655539230,1656863161,1657232045,1657241479,1657287653,1657993609,1658305793,1658758106,1658973014,1661319499,1661694459,1662210684]}'),(11061,'173.212.242.224','normal','',0,0,0,0,0,'[]'),(11062,'104.175.220.13','normal','',0,0,0,0,0,'[]'),(11063,'2.58.149.2','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1648679861,0,1648679561,0,41,'{\"nf\":[1648679484,1648679500,1648679500,1648679520,1648679522,1648679522,1648679522,1648679525,1648679525,1648679526,1648679526,1648679540,1648679540,1648679540,1648679542,1648679542,1648679542,1648679548,1648679555,1648679555,1648679561],\"login\":[]}'),(11064,'8.210.179.91','normal','',0,0,0,5,0,'{\"login\":[1642576705,1642582467,1644373962,1644720365,1644813455]}'),(11065,'3.6.233.134','normal','',0,0,0,1,0,'{\"login\":[1642579853]}'),(11066,'35.195.243.150','normal','',0,0,0,0,0,'[]'),(11067,'80.151.9.246','normal','',0,0,0,3,0,'{\"login\":[1642582034,1642682548,1642876420]}'),(11068,'105.233.79.249','normal','',0,0,0,0,0,'[]'),(11069,'185.142.239.49','normal','',0,0,0,0,0,'[]'),(11070,'3.109.19.17','normal','',0,0,0,1,0,'{\"login\":[1642587655]}'),(11071,'52.70.81.167','normal','',0,0,0,4,0,'{\"login\":[1642592058,1644197279,1644263478,1644336215]}'),(11072,'162.0.232.28','normal','',0,0,0,0,0,'[]'),(11073,'114.119.134.72','normal','',0,0,0,0,0,'[]'),(11074,'95.217.97.180','normal','',0,0,0,0,0,'[]'),(11075,'51.178.136.125','normal','',0,0,0,22,0,'{\"login\":[1642594274,1642660727,1642925750,1643298552,1643509426,1644125219,1644201320,1644206263,1644265652,1644712265,1645069736,1645211662,1646274180,1646871734,1646888152,1646999645,1647750056,1647925096,1648248683,1648418738,1649075610,1649080807]}'),(11076,'85.208.185.141','normal','',0,0,0,0,0,'[]'),(11077,'182.50.132.82','normal','',0,0,0,0,0,'[]'),(11078,'39.103.214.1','normal','',0,0,0,0,0,'[]'),(11079,'185.208.227.228','normal','',0,0,0,0,0,'[]'),(11080,'139.162.91.248','normal','',0,0,0,0,0,'[]'),(11081,'72.167.225.151','normal','',0,0,0,4,0,'{\"login\":[1653985660,1654061767,1661675953,1662237825]}'),(11082,'68.178.223.197','normal','',0,0,0,0,0,'[]'),(11083,'164.160.129.203','normal','',0,0,0,3,1,'{\"nf\":[1642921520],\"login\":[1649025981,1649055211,1649071213]}'),(11084,'92.204.220.57','normal','',0,0,0,0,0,'[]'),(11085,'54.37.171.64','normal','',0,0,0,0,0,'[]'),(11086,'185.103.199.199','normal','',0,0,0,0,2,'{\"nf\":[1642604145,1642941825]}'),(11087,'124.123.104.80','normal','',0,0,0,0,0,'[]'),(11088,'138.68.129.14','normal','',0,0,0,7,0,'{\"login\":[1642604682,1643578805,1643749746,1644154201,1644220066,1645239782,1647220869]}'),(11089,'139.162.112.41','normal','',0,0,0,0,0,'[]'),(11090,'31.7.76.32','normal','',0,0,0,0,0,'[]'),(11091,'51.91.106.38','normal','',0,0,0,0,0,'[]'),(11092,'91.211.220.33','normal','',0,0,0,0,0,'[]'),(11093,'167.172.105.95','normal','',0,0,0,51,0,'{\"login\":[1642606321,1643508271,1643644153,1644254973,1644430191,1644544929,1645716382,1645821076,1646014779,1647075731,1647313258,1647357601,1647487413,1647656917,1647908018,1650464718,1650660637,1651406870,1651524983,1651738489,1651952450,1652276715,1652373979,1652651972,1653452765,1653498610,1653760544,1654213268,1654225406,1656007388,1656542478,1657071516,1657493494,1657656620,1659260776,1660308948,1661228704,1661330385,1661368225,1661377474,1661383825,1661618567,1661627116,1661645471,1661672824,1661689654,1662028352,1662096630,1662175417,1662686045,1663178965]}'),(11094,'190.145.68.131','normal','',0,0,0,0,0,'[]'),(11095,'159.223.103.240','normal','',0,0,0,0,0,'[]'),(11096,'177.52.160.32','normal','',0,0,0,1,0,'{\"login\":[1662264077]}'),(11097,'103.121.91.38','normal','',0,0,0,0,0,'[]'),(11098,'162.241.2.84','normal','',0,0,0,0,1,'{\"nf\":[1648476310]}'),(11099,'157.112.183.64','normal','',0,0,0,0,0,'[]'),(11100,'198.71.236.14','normal','',0,0,0,0,1,'{\"nf\":[1642618192]}'),(11101,'92.53.123.166','normal','',0,0,0,6,0,'{\"login\":[1642621164,1643045378,1643542411,1643741634,1644181199,1644225870]}'),(11102,'81.198.171.171','normal','',0,0,0,9,0,'{\"login\":[1642622851,1642638028,1642917563,1643538918,1644227450,1644232778,1644339563,1644622198,1644703264]}'),(11103,'198.54.114.52','normal','',0,0,0,0,0,'[]'),(11104,'3.213.158.222','normal','',0,0,0,2,0,'{\"login\":[1642630489,1642664120]}'),(11105,'185.224.137.47','normal','',0,0,0,0,1,'{\"nf\":[1642633360]}'),(11106,'45.152.199.202','normal','',0,0,0,0,0,'[]'),(11107,'212.193.30.157','normal','',0,0,0,0,2,'{\"nf\":[1642643207,1642643208]}'),(11108,'34.122.210.151','normal','',0,0,0,14,0,'{\"login\":[1642648104,1644446414,1644548631,1645328382,1646277088,1647501677,1647629092,1648576351,1649072172,1649243669,1650396254,1650434091,1650575691,1650952620]}'),(11109,'13.58.134.185','normal','',0,0,0,0,1,'{\"nf\":[1642651855]}'),(11110,'110.4.40.183','normal','',0,0,0,8,0,'{\"login\":[1642657366,1642841472,1643061235,1643664628,1644278204,1644679270,1644780121,1645212675]}'),(11111,'54.246.89.193','normal','',0,0,0,3,0,'{\"login\":[1642659045,1642960935,1643088177]}'),(11112,'62.210.189.189','normal','',0,0,0,0,0,'[]'),(11113,'147.135.210.69','normal','',0,0,0,4,0,'{\"login\":[1642668335,1642998080,1643058369,1643101488]}'),(11114,'20.77.49.95','normal','',0,0,0,0,1,'{\"nf\":[1642668564]}'),(11115,'66.249.64.194','normal','',0,0,0,0,0,'[]'),(11116,'45.124.84.189','normal','',0,0,0,0,1,'{\"nf\":[1642671128]}'),(11117,'167.71.163.218','normal','',0,0,0,15,0,'{\"login\":[1642674166,1643571873,1644290403,1645900730,1645916704,1646655759,1648071395,1650017736,1650352871,1651162083,1652006131,1652377937,1652614257,1653213754,1653330524]}'),(11118,'41.164.78.70','normal','',0,0,0,0,0,'[]'),(11119,'114.119.143.185','normal','',0,0,0,0,0,'[]'),(11120,'185.51.66.150','normal','',0,0,0,0,1,'{\"nf\":[1643010852]}'),(11121,'84.205.178.134','normal','',0,0,0,52,0,'{\"login\":[1642690247,1643300344,1643679555,1643730029,1644357560,1645985893,1646088948,1646232348,1646820090,1647024217,1647071406,1647112531,1647803913,1647875528,1648125794,1648236958,1648674812,1650442269,1650640085,1650941773,1651018000,1651509954,1652273451,1652417528,1652637300,1653611156,1654141121,1654277425,1654562101,1654727853,1654792443,1654806077,1654880686,1654981211,1655364574,1655556948,1656540608,1656809102,1656815825,1656891208,1657295383,1657320902,1657587872,1657719015,1657994477,1658207645,1658272332,1658277066,1658519549,1658574887,1658976239,1659268161]}'),(11122,'95.179.228.233','normal','',0,0,0,5,0,'{\"login\":[1642811924,1643770333,1644353495,1644464235,1644471238]}'),(11123,'54.36.148.97','normal','',0,0,0,0,0,'[]'),(11124,'34.86.202.232','normal','',0,0,0,0,1,'{\"nf\":[1642704085]}'),(11125,'2.58.149.35','normal','',0,0,0,0,35,'{\"nf\":[1642710052,1642710062,1644053574,1654698641,1654698670,1654698695,1654698720,1654698744,1654698764,1654698794,1654698832,1654698855,1655419725,1655419731,1655419747,1655419780,1655419789,1655419804,1655419820,1655419842,1655419862,1655419869,1655419893,1655419952,1655419981,1655419994,1655420003,1655420038,1655420068,1655420085,1655420113,1655420161,1655420199,1655420270,1655420280]}'),(11126,'81.21.243.222','normal','',0,0,0,0,1,'{\"nf\":[1642710320]}'),(11127,'196.35.11.146','normal','',0,0,0,0,0,'[]'),(11128,'165.227.61.98','normal','',0,0,0,0,2,'{\"nf\":[1642717999,1642718081]}'),(11129,'17.121.113.140','normal','',0,0,0,0,0,'[]'),(11130,'159.65.142.26','normal','',0,0,0,4,0,'{\"login\":[1642721481,1644321193,1644502236,1645565819]}'),(11131,'165.22.97.80','normal','',0,0,0,0,1,'{\"nf\":[1642730438]}'),(11132,'94.16.121.91','normal','',0,0,0,0,0,'[]'),(11133,'34.96.130.11','normal','',0,0,0,0,0,'[]'),(11134,'197.185.118.53','normal','',0,0,0,0,0,'[]'),(11135,'198.54.114.68','normal','',0,0,0,0,0,'[]'),(11136,'213.238.180.19','normal','',0,0,0,0,0,'[]'),(11137,'151.106.98.49','normal','',0,0,0,0,5,'{\"nf\":[1642742057,1643175604,1644414289,1644414293,1644656522]}'),(11138,'150.95.24.78','normal','',0,0,0,4,0,'{\"login\":[1650134278,1650143754,1655131218,1662217473]}'),(11139,'47.104.66.61','normal','',0,0,0,0,0,'[]'),(11140,'87.98.183.129','normal','',0,0,0,0,0,'[]'),(11141,'102.165.86.229','normal','',0,0,0,0,1,'{\"nf\":[1643701723]}'),(11142,'8.214.6.146','normal','',0,0,0,0,0,'[]'),(11143,'93.114.235.167','normal','',0,0,0,26,1,'{\"login\":[1651390393,1651445089,1652209062,1652219141,1652235096,1652242527,1652834744,1652835303,1653592813,1655283941,1655352946,1656747092,1656780611,1656819554,1656832242,1657446209,1657464273,1657501408,1657503981,1657517928,1657725033,1657848937,1659378305,1659414914,1661800782,1661815271],\"nf\":[1653470513]}'),(11144,'103.136.43.116','normal','',0,0,0,0,1,'{\"nf\":[1644199126]}'),(11145,'162.240.15.168','normal','',0,0,0,1,0,'{\"login\":[1650125679]}'),(11146,'109.234.164.204','normal','',0,0,0,0,0,'[]'),(11147,'186.234.80.77','normal','',0,0,0,0,0,'[]'),(11148,'162.0.235.20','normal','',0,0,0,0,0,'[]'),(11149,'104.219.248.116','normal','',0,0,0,0,0,'[]'),(11150,'103.171.180.203','normal','',0,0,0,0,0,'[]'),(11151,'210.246.200.30','normal','',0,0,0,0,0,'[]'),(11152,'45.156.185.97','normal','',0,0,0,0,0,'[]'),(11153,'185.32.189.80','normal','',0,0,0,0,0,'[]'),(11154,'184.168.112.180','normal','',0,0,0,0,0,'[]'),(11155,'92.205.2.188','normal','',0,0,0,0,0,'[]'),(11156,'72.167.124.218','normal','',0,0,0,0,0,'[]'),(11157,'192.169.144.63','normal','',0,0,0,0,0,'[]'),(11158,'51.210.243.124','normal','',0,0,0,0,0,'[]'),(11159,'192.169.165.128','normal','',0,0,0,0,0,'[]'),(11160,'162.214.145.74','normal','',0,0,0,0,0,'[]'),(11161,'217.160.56.29','normal','',0,0,0,0,0,'[]'),(11162,'88.208.209.101','normal','',0,0,0,1,0,'{\"login\":[1650137694]}'),(11163,'148.72.122.94','normal','',0,0,0,0,0,'[]'),(11164,'173.252.79.111','normal','',0,0,0,0,0,'[]'),(11165,'54.215.65.250','normal','',0,0,0,0,0,'[]'),(11166,'108.167.164.192','normal','',0,0,0,0,1,'{\"nf\":[1642766380]}'),(11167,'137.74.93.154','normal','',0,0,0,0,0,'[]'),(11168,'66.249.66.95','normal','',0,0,0,0,0,'[]'),(11169,'107.170.36.82','normal','',0,0,0,17,0,'{\"login\":[1642773123,1643743728,1645575126,1645726712,1645750285,1651553267,1652206881,1652249922,1653551865,1653552253,1653553406,1653558263,1653576752,1653580577,1654496499,1655294605,1655350537]}'),(11170,'2.59.119.246','normal','',0,0,0,3,0,'{\"login\":[1642787160,1643715548,1643730418]}'),(11171,'213.190.4.228','normal','',0,0,0,0,0,'[]'),(11172,'185.15.111.70','normal','',0,0,0,0,0,'[]'),(11173,'185.162.30.183','normal','',0,0,0,0,0,'[]'),(11174,'185.162.30.183','normal','',0,0,0,0,0,'[]'),(11175,'185.28.61.76','normal','',0,0,0,0,0,'[]'),(11176,'72.44.95.204','normal','',0,0,0,0,0,'[]'),(11177,'91.216.107.195','normal','',0,0,0,0,0,'[]'),(11178,'91.216.107.195','normal','',0,0,0,0,0,'[]'),(11179,'45.79.196.157','normal','',0,0,0,0,0,'[]'),(11180,'220.135.184.96','normal','',0,0,0,0,0,'[]'),(11181,'188.166.232.0','normal','',0,0,0,0,0,'[]'),(11182,'195.22.20.186','normal','',0,0,0,0,0,'[]'),(11183,'150.107.31.58','normal','',0,0,0,0,0,'[]'),(11184,'150.107.31.58','normal','',0,0,0,0,0,'[]'),(11185,'89.46.105.196','normal','',0,0,0,0,0,'[]'),(11186,'89.46.107.97','normal','',0,0,0,0,0,'[]'),(11187,'27.254.62.46','normal','',0,0,0,0,0,'[]'),(11188,'72.52.216.63','normal','',0,0,0,0,0,'[]'),(11189,'89.46.109.240','normal','',0,0,0,0,0,'[]'),(11190,'89.46.109.240','normal','',0,0,0,0,0,'[]'),(11191,'64.6.254.94','normal','',0,0,0,0,0,'[]'),(11192,'50.62.177.73','normal','',0,0,0,0,0,'[]'),(11193,'50.62.177.73','normal','',0,0,0,0,0,'[]'),(11194,'193.105.73.203','normal','',0,0,0,0,0,'[]'),(11195,'69.49.99.150','normal','',0,0,0,0,0,'[]'),(11196,'118.123.4.238','normal','',0,0,0,0,0,'[]'),(11197,'210.2.86.129','normal','',0,0,0,0,0,'[]'),(11198,'191.6.208.47','normal','',0,0,0,0,0,'[]'),(11199,'68.183.47.220','normal','',0,0,0,0,0,'[]'),(11200,'166.62.38.222','normal','',0,0,0,0,0,'[]'),(11201,'83.143.133.71','normal','',0,0,0,0,0,'[]'),(11202,'164.68.103.92','normal','',0,0,0,1,0,'{\"login\":[1642800516]}'),(11203,'114.119.128.139','normal','',0,0,0,0,0,'[]'),(11204,'41.13.243.244','normal','',0,0,0,0,0,'[]'),(11205,'182.16.184.100','normal','',0,0,0,0,0,'[]'),(11206,'31.28.171.149','normal','',0,0,0,0,0,'[]'),(11207,'104.144.125.105','normal','',0,0,0,0,0,'[]'),(11208,'87.250.224.192','normal','',0,0,0,0,0,'[]'),(11209,'92.205.15.94','normal','',0,0,0,0,0,'[]'),(11210,'167.114.159.183','normal','',0,0,0,0,0,'[]'),(11211,'139.59.230.137','normal','',0,0,0,0,0,'[]'),(11212,'198.71.235.30','normal','',0,0,0,0,2,'{\"nf\":[1642829926,1643608824]}'),(11213,'89.32.45.46','normal','',0,0,0,0,0,'[]'),(11214,'38.143.66.169','normal','',0,0,0,0,0,'[]'),(11215,'91.98.100.196','normal','',0,0,0,0,0,'[]'),(11216,'159.75.100.193','normal','',0,0,0,0,0,'[]'),(11217,'161.97.120.251','normal','',0,0,0,2,0,'{\"login\":[1642832563,1644385714]}'),(11218,'184.168.116.232','normal','',0,0,0,0,0,'[]'),(11219,'182.50.135.61','normal','',0,0,0,0,0,'[]'),(11220,'65.21.187.68','normal','',0,0,0,0,0,'[]'),(11221,'95.111.235.116','normal','',0,0,0,0,0,'[]'),(11222,'136.144.41.12','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1642838510,0,1642838210,0,26,'{\"nf\":[1642837774,1642837787,1642837800,1642837814,1642837861,1642837883,1642837910,1642837916,1642837920,1642837924,1642837929,1642837954,1642837967,1642837980,1642837990,1642838001,1642838014,1642838033,1642838099,1642838115,1642838127,1642838135,1642838148,1642838175,1642838197,1642838210]}'),(11223,'41.114.227.192','normal','',0,0,0,0,0,'[]'),(11224,'184.168.116.155','normal','',0,0,0,0,0,'[]'),(11225,'198.54.114.36','normal','',0,0,0,0,0,'[]'),(11226,'104.248.12.243','normal','',0,0,0,0,0,'[]'),(11227,'105.187.34.198','normal','',0,0,0,0,0,'[]'),(11228,'144.217.170.27','normal','',0,0,0,0,0,'[]'),(11229,'92.205.7.173','normal','',0,0,0,0,0,'[]'),(11230,'185.151.196.221','normal','',0,0,0,0,0,'[]'),(11231,'151.80.20.26','normal','',0,0,0,1,0,'{\"login\":[1653993784]}'),(11232,'173.201.184.177','normal','',0,0,0,0,0,'[]'),(11233,'148.251.140.149','normal','',0,0,0,17,0,'{\"login\":[1642844520,1642958974,1643057731,1643493807,1643540664,1644128643,1644264021,1644442312,1644480303,1644708245,1644830229,1645208630,1645258680,1646235403,1646464545,1646490864,1646684910]}'),(11234,'68.70.163.36','normal','',0,0,0,0,0,'[]'),(11235,'188.68.61.14','normal','',0,0,0,0,0,'[]'),(11236,'138.197.173.121','normal','',0,0,0,0,0,'[]'),(11237,'168.138.89.37','normal','',0,0,0,0,0,'[]'),(11238,'51.68.141.94','normal','',0,0,0,0,0,'[]'),(11239,'122.114.249.12','normal','',0,0,0,2,0,'{\"login\":[1642864950,1643753206]}'),(11240,'45.125.239.234','normal','',0,0,0,0,0,'[]'),(11241,'85.187.158.113','normal','',0,0,0,5,0,'{\"login\":[1642869570,1643518734,1643534171,1643685352,1644183209]}'),(11242,'91.239.207.33','normal','',0,0,0,0,2,'{\"nf\":[1642874454,1643548922]}'),(11243,'114.119.132.105','normal','',0,0,0,0,0,'[]'),(11244,'94.125.236.250','normal','',0,0,0,2,0,'{\"login\":[1642884387,1643007034]}'),(11245,'17.121.114.164','normal','',0,0,0,0,0,'[]'),(11246,'107.189.4.253','normal','',0,0,0,0,0,'[]'),(11247,'185.191.171.11','normal','',0,0,0,0,0,'[]'),(11248,'66.249.66.217','normal','',0,0,0,0,0,'[]'),(11249,'66.249.66.49','normal','',0,0,0,0,0,'[]'),(11250,'85.128.143.65','normal','',0,0,0,0,1,'{\"nf\":[1642910064]}'),(11251,'34.121.23.185','normal','',0,0,0,11,0,'{\"login\":[1642911833,1646643036,1647762129,1649814776,1650603224,1650881989,1652832422,1654540388,1659251155,1660297220,1662019701]}'),(11252,'197.94.9.235','normal','',0,0,0,0,0,'[]'),(11253,'107.189.31.87','normal','',0,0,0,0,0,'[]'),(11254,'194.163.170.232','normal','',0,0,0,0,0,'[]'),(11255,'44.234.58.127','normal','',0,0,0,0,1,'{\"nf\":[1642946869]}'),(11256,'173.201.178.72','normal','',0,0,0,0,0,'[]'),(11257,'162.213.251.86','normal','',0,0,0,0,0,'[]'),(11258,'185.84.108.11','normal','',0,0,0,0,0,'[]'),(11259,'49.176.154.190','normal','',0,0,0,0,0,'[]'),(11260,'184.168.102.133','normal','',0,0,0,0,0,'[]'),(11261,'173.201.183.100','normal','',0,0,0,0,0,'[]'),(11262,'82.165.252.41','normal','',0,0,0,0,0,'[]'),(11263,'45.129.18.226','normal','',0,0,0,0,0,'[]'),(11264,'45.129.18.182','normal','',0,0,0,0,0,'[]'),(11265,'185.33.54.15','normal','',0,0,0,0,0,'[]'),(11266,'103.159.84.77','normal','',0,0,0,0,0,'[]'),(11267,'139.180.217.210','normal','',0,0,0,0,0,'[]'),(11268,'176.74.192.85','normal','',0,0,0,0,4,'{\"nf\":[1642959531,1642959532,1652734500,1652734504]}'),(11269,'197.245.59.144','normal','',0,0,0,0,0,'[]'),(11270,'185.221.175.44','normal','',0,0,0,0,0,'[]'),(11271,'194.5.175.148','normal','',0,0,0,0,0,'[]'),(11272,'72.167.103.238','normal','',0,0,0,0,0,'[]'),(11273,'162.0.235.8','normal','',0,0,0,0,0,'[]'),(11274,'54.36.148.53','normal','',0,0,0,0,0,'[]'),(11275,'66.249.66.68','normal','',0,0,0,0,0,'[]'),(11276,'92.205.3.54','normal','',0,0,0,0,0,'[]'),(11277,'173.201.183.152','normal','',0,0,0,0,0,'[]'),(11278,'92.205.3.203','normal','',0,0,0,0,0,'[]'),(11279,'144.76.103.36','normal','',0,0,0,2,0,'{\"login\":[1643606691,1643633873]}'),(11280,'52.57.157.10','normal','',0,0,0,0,0,'[]'),(11281,'151.106.112.245','normal','',0,0,0,0,0,'[]'),(11282,'185.101.158.216','normal','',0,0,0,0,0,'[]'),(11283,'50.62.176.216','normal','',0,0,0,0,0,'[]'),(11284,'84.53.225.118','normal','',0,0,0,0,0,'[]'),(11285,'89.163.242.36','normal','',0,0,0,0,0,'[]'),(11286,'62.171.152.171','normal','',0,0,0,0,0,'[]'),(11287,'34.139.209.227','normal','',0,0,0,0,0,'[]'),(11288,'192.99.76.111','normal','',0,0,0,0,0,'[]'),(11289,'139.64.239.183','normal','',0,0,0,0,0,'[]'),(11290,'37.187.93.9','normal','',0,0,0,0,0,'[]'),(11291,'198.54.126.241','normal','',0,0,0,0,0,'[]'),(11292,'95.167.178.158','normal','',0,0,0,0,0,'[]'),(11293,'137.184.148.125','normal','',0,0,0,0,0,'[]'),(11294,'165.232.177.227','normal','',0,0,0,7,0,'{\"login\":[1642993112,1644577130,1644647744,1644683057,1646608652,1647211812,1647388781]}'),(11295,'40.124.124.81','normal','',0,0,0,5,0,'{\"login\":[1642995098,1643485303,1643529651,1644354299,1644419726]}'),(11296,'162.0.232.166','normal','',0,0,0,0,0,'[]'),(11297,'124.123.106.19','normal','',0,0,0,0,0,'[]'),(11298,'139.99.46.226','normal','',0,0,0,0,0,'[]'),(11299,'196.22.242.18','normal','',0,0,0,0,1,'{\"nf\":[1653486032]}'),(11300,'192.64.117.99','normal','',0,0,0,0,0,'[]'),(11301,'172.104.65.137','normal','',0,0,0,0,0,'[]'),(11302,'185.25.20.84','normal','',0,0,0,0,0,'[]'),(11303,'84.20.148.110','normal','',0,0,0,0,0,'[]'),(11304,'52.31.175.155','normal','',0,0,0,0,1,'{\"nf\":[1643010381]}'),(11305,'45.129.18.245','normal','',0,0,0,0,0,'[]'),(11306,'103.90.235.111','normal','',0,0,0,0,0,'[]'),(11307,'41.114.185.219','normal','',0,0,0,0,0,'[]'),(11308,'160.153.216.29','normal','',0,0,0,0,0,'[]'),(11309,'39.100.124.237','normal','',0,0,0,0,0,'[]'),(11310,'68.178.220.171','normal','',0,0,0,0,0,'[]'),(11311,'47.90.96.141','normal','',0,0,0,0,0,'[]'),(11312,'72.167.86.183','normal','',0,0,0,0,0,'[]'),(11313,'92.205.3.60','normal','',0,0,0,0,0,'[]'),(11314,'143.110.253.176','normal','',0,0,0,0,0,'[]'),(11315,'198.46.81.39','normal','',0,0,0,0,0,'[]'),(11316,'92.205.0.94','normal','',0,0,0,0,0,'[]'),(11317,'35.211.94.153','normal','',0,0,0,1,0,'{\"login\":[1662131311]}'),(11318,'156.38.245.2','normal','',0,0,0,0,0,'[]'),(11319,'170.178.196.17','normal','',0,0,0,0,0,'[]'),(11320,'175.24.121.59','normal','',0,0,0,0,0,'[]'),(11321,'184.168.102.191','normal','',0,0,0,0,0,'[]'),(11322,'112.78.34.85','normal','',0,0,0,0,0,'[]'),(11323,'195.201.204.153','normal','',0,0,0,0,0,'[]'),(11324,'63.250.38.190','normal','',0,0,0,0,0,'[]'),(11325,'184.168.119.137','normal','',0,0,0,0,0,'[]'),(11326,'177.55.116.251','normal','',0,0,0,5,0,'{\"login\":[1654583331,1654608357,1654614587,1654628736,1654657037]}'),(11327,'185.255.89.65','normal','',0,0,0,0,0,'[]'),(11328,'103.153.68.244','normal','',0,0,0,0,0,'[]'),(11329,'198.187.31.201','normal','',0,0,0,0,0,'[]'),(11330,'173.209.54.162','normal','',0,0,0,0,0,'[]'),(11331,'209.159.150.110','normal','',0,0,0,0,0,'[]'),(11332,'52.229.74.20','normal','',0,0,0,0,2,'{\"nf\":[1643023420,1643023458]}'),(11333,'157.230.187.104','normal','',0,0,0,0,0,'[]'),(11334,'8.210.57.22','normal','',0,0,0,0,0,'[]'),(11335,'200.73.3.171','normal','',0,0,0,0,2,'{\"nf\":[1651662818,1653492326]}'),(11336,'156.155.136.244','normal','',0,0,0,0,1,'{\"nf\":[1643865754]}'),(11337,'113.165.166.17','normal','',0,0,0,2,0,'{\"login\":[1643029675,1646061618]}'),(11338,'195.242.110.23','normal','',0,0,0,0,0,'[]'),(11339,'192.185.176.178','normal','',0,0,0,0,0,'[]'),(11340,'199.249.230.142','normal','',0,0,0,0,0,'[]'),(11341,'104.244.73.169','normal','',0,0,0,0,0,'[]'),(11342,'41.177.109.219','normal','',0,0,0,0,0,'[]'),(11343,'104.248.138.146','normal','',0,0,0,10,0,'{\"login\":[1643040931,1645961018,1646715421,1647722733,1648188642,1649518098,1649842410,1650707369,1651062673,1651123924]}'),(11344,'168.119.163.86','normal','',0,0,0,0,0,'[]'),(11345,'198.71.225.151','normal','',0,0,0,0,1,'{\"nf\":[1643047134]}'),(11346,'54.162.217.93','normal','',0,0,0,0,1,'{\"nf\":[1643047458]}'),(11347,'35.205.176.17','normal','',0,0,0,1,0,'{\"login\":[1643048864]}'),(11348,'80.66.88.199','blocked','You have been locked out due to too many invalid login attempts.',1644533297,1644532997,0,5,0,'{\"nf\":[],\"login\":[1644532987,1644532989,1644532991,1644532996,1644532997]}'),(11349,'41.216.204.116','normal','',0,0,0,0,0,'[]'),(11350,'185.220.101.170','normal','',0,0,0,0,0,'[]'),(11351,'178.159.39.252','normal','',0,0,0,5,0,'{\"login\":[1643059006,1643104110,1643126636,1643300939,1644129664]}'),(11352,'34.77.162.26','normal','',0,0,0,0,0,'[]'),(11353,'114.119.146.15','normal','',0,0,0,0,0,'[]'),(11354,'118.27.122.247','normal','',0,0,0,3,0,'{\"login\":[1643088494,1648054503,1651727814]}'),(11355,'165.73.124.5','normal','',0,0,0,0,0,'[]'),(11356,'18.197.95.21','normal','',0,0,0,0,1,'{\"nf\":[1643099831]}'),(11357,'34.221.170.217','normal','',0,0,0,0,0,'[]'),(11358,'77.111.247.168','normal','',0,0,0,0,0,'[]'),(11359,'154.28.188.101','normal','',0,0,0,0,0,'[]'),(11360,'51.75.195.157','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1643107906,0,1643107606,0,22,'{\"nf\":[1648811985,1648811988],\"login\":[]}'),(11361,'114.119.132.10','normal','',0,0,0,0,0,'[]'),(11362,'114.119.129.235','normal','',0,0,0,0,0,'[]'),(11363,'162.240.20.73','normal','',0,0,0,0,1,'{\"nf\":[1643119505]}'),(11364,'5.2.72.5','normal','',0,0,0,0,0,'[]'),(11365,'5.135.21.229','normal','',0,0,0,0,1,'{\"nf\":[1643124229]}'),(11366,'2.56.57.93','normal','',0,0,0,0,0,'[]'),(11367,'88.214.28.132','normal','',0,0,0,0,1,'{\"nf\":[1643129998]}'),(11368,'193.39.13.29','normal','',0,0,0,2,0,'{\"login\":[1643130168,1643146667]}'),(11369,'41.216.204.193','normal','',0,0,0,0,0,'[]'),(11370,'45.121.208.166','blocked','You have been locked out due to too many invalid login attempts.',1643132354,1643132054,0,5,0,'{\"login\":[1643132050,1643132051,1643132052,1643132053,1643132054]}'),(11371,'195.210.46.45','normal','',0,0,0,0,0,'[]'),(11372,'107.189.3.110','normal','',0,0,0,0,0,'[]'),(11373,'172.104.206.53','normal','',0,0,0,0,3,'{\"nf\":[1643141318,1643318297,1643438638]}'),(11374,'171.22.26.5','normal','',0,0,0,0,1,'{\"nf\":[1643143838]}'),(11375,'157.7.105.205','normal','',0,0,0,0,1,'{\"nf\":[1643144658]}'),(11376,'154.66.93.7','normal','',0,0,0,0,0,'[]'),(11377,'185.94.230.132','normal','',0,0,0,0,1,'{\"nf\":[1643146728]}'),(11378,'103.26.142.79','normal','',0,0,0,0,0,'[]'),(11379,'102.65.36.76','normal','',0,0,0,0,0,'[]'),(11380,'144.76.117.72','normal','',0,0,0,1,0,'{\"login\":[1643150894]}'),(11381,'196.251.57.60','normal','',0,0,0,0,0,'[]'),(11382,'197.94.22.16','normal','',0,0,0,0,0,'[]'),(11383,'17.121.113.58','normal','',0,0,0,0,0,'[]'),(11384,'185.181.60.189','normal','',0,0,0,0,0,'[]'),(11385,'179.43.183.46','normal','',0,0,0,0,1,'{\"nf\":[1643174177]}'),(11386,'185.197.160.239','normal','',0,0,0,0,0,'[]'),(11387,'165.22.116.165','normal','',0,0,0,13,1,'{\"login\":[1643177126,1643768954,1644367851,1645770169,1646860481,1646887127,1649017509,1649054736,1651455197,1652169854,1652241745,1652249274,1652840666],\"nf\":[1653467057]}'),(11388,'169.0.140.53','normal','',0,0,0,0,0,'[]'),(11389,'109.68.58.200','normal','',0,0,0,0,0,'[]'),(11390,'119.8.125.25','normal','',0,0,0,1,0,'{\"login\":[1643181707]}'),(11391,'167.172.245.137','normal','',0,0,0,0,1,'{\"nf\":[1643182206]}'),(11392,'66.251.172.242','normal','',0,0,0,0,0,'[]'),(11393,'47.96.101.106','normal','',0,0,0,0,1,'{\"nf\":[1643193595]}'),(11394,'13.82.129.79','normal','',0,0,0,4,0,'{\"login\":[1643200091,1643741045,1645658028,1645670906]}'),(11395,'186.202.153.94','normal','',0,0,0,0,1,'{\"nf\":[1643201311]}'),(11396,'54.36.149.107','normal','',0,0,0,0,0,'[]'),(11397,'2.57.122.20','normal','',0,0,0,0,0,'[]'),(11398,'34.219.143.124','normal','',0,0,0,0,0,'[]'),(11399,'196.61.115.70','normal','',0,0,0,0,0,'[]'),(11400,'162.0.229.2','normal','',0,0,0,0,0,'[]'),(11401,'35.88.101.222','normal','',0,0,0,0,0,'[]'),(11402,'198.187.29.147','normal','',0,0,0,0,0,'[]'),(11403,'162.0.209.69','normal','',0,0,0,0,0,'[]'),(11404,'185.61.152.8','normal','',0,0,0,0,0,'[]'),(11405,'208.109.30.132','normal','',0,0,0,0,0,'[]'),(11406,'128.199.166.77','normal','',0,0,0,1,0,'{\"login\":[1654063192]}'),(11407,'81.179.97.72','normal','',0,0,0,0,0,'[]'),(11408,'81.88.52.223','normal','',0,0,0,3,0,'{\"login\":[1650308951,1653987006,1662033503]}'),(11409,'51.15.4.99','normal','',0,0,0,0,0,'[]'),(11410,'1.203.76.74','normal','',0,0,0,0,0,'[]'),(11411,'162.0.217.27','normal','',0,0,0,0,0,'[]'),(11412,'208.109.16.231','normal','',0,0,0,0,0,'[]'),(11413,'103.163.246.134','normal','',0,0,0,0,0,'[]'),(11414,'108.167.139.175','normal','',0,0,0,0,0,'[]'),(11415,'114.119.141.194','normal','',0,0,0,0,0,'[]'),(11416,'169.1.95.193','normal','',0,0,0,0,0,'[]'),(11417,'34.205.95.202','normal','',0,0,0,0,0,'[]'),(11418,'209.97.132.185','normal','',0,0,0,0,0,'[]'),(11419,'72.167.86.209','normal','',0,0,0,0,0,'[]'),(11420,'44.200.69.252','normal','',0,0,0,0,2,'{\"nf\":[1643260416,1643260434]}'),(11421,'199.188.201.67','normal','',0,0,0,0,0,'[]'),(11422,'167.172.79.47','normal','',0,0,0,1,0,'{\"login\":[1662144718]}'),(11423,'92.204.218.98','normal','',0,0,0,0,0,'[]'),(11424,'164.68.125.247','normal','',0,0,0,0,0,'[]'),(11425,'5.253.205.153','normal','',0,0,0,0,0,'[]'),(11426,'92.204.217.252','normal','',0,0,0,0,0,'[]'),(11427,'144.76.203.135','normal','',0,0,0,0,1,'{\"nf\":[1643267864]}'),(11428,'54.200.248.233','normal','',0,0,0,0,0,'[]'),(11429,'72.167.65.82','normal','',0,0,0,0,0,'[]'),(11430,'37.247.97.45','normal','',0,0,0,0,0,'[]'),(11431,'165.232.138.51','normal','',0,0,0,0,0,'[]'),(11432,'186.234.80.140','normal','',0,0,0,0,0,'[]'),(11433,'104.37.187.154','normal','',0,0,0,0,0,'[]'),(11434,'165.22.125.125','normal','',0,0,0,0,19,'{\"nf\":[1643274650,1643274651,1643274652,1643274655,1655483751,1655483753,1655483755,1655483757,1655483759,1655483761,1655483762,1655483764,1655483766,1655483767,1655483768,1655483770,1655483771,1655483773,1655483775]}'),(11435,'50.62.177.168','normal','',0,0,0,0,0,'[]'),(11436,'114.119.150.149','normal','',0,0,0,0,0,'[]'),(11437,'136.243.157.122','normal','',0,0,0,0,0,'[]'),(11438,'23.224.181.157','normal','',0,0,0,0,0,'[]'),(11439,'173.249.32.126','normal','',0,0,0,0,2,'{\"nf\":[1643279632,1643279634]}'),(11440,'148.72.199.192','normal','',0,0,0,0,0,'[]'),(11441,'102.65.62.157','normal','',0,0,0,0,0,'[]'),(11442,'41.13.200.150','normal','',0,0,0,0,0,'[]'),(11443,'165.227.112.116','normal','',0,0,0,0,0,'[]'),(11444,'162.213.251.158','normal','',0,0,0,0,0,'[]'),(11445,'190.103.179.212','normal','',0,0,0,0,0,'[]'),(11446,'157.55.39.109','normal','',0,0,0,0,0,'[]'),(11447,'77.68.16.200','normal','',0,0,0,0,0,'[]'),(11448,'41.147.0.79','normal','',0,0,0,0,0,'[]'),(11449,'213.202.216.189','normal','',0,0,0,0,0,'[]'),(11450,'185.220.101.146','normal','',0,0,0,0,0,'[]'),(11451,'109.70.100.80','normal','',0,0,0,0,0,'[]'),(11452,'107.189.31.227','normal','',0,0,0,0,0,'[]'),(11453,'212.227.10.157','normal','',0,0,0,0,0,'[]'),(11454,'116.66.206.189','normal','',0,0,0,20,0,'{\"login\":[1643305056,1643524528,1643612307,1644441297,1644498392,1644533953,1644603044,1644777977,1644807266,1645904475,1645981198,1646024243,1646503560,1646905960,1647077378,1647514988,1647672445,1647873291,1647951815,1648217724]}'),(11455,'143.110.243.70','normal','',0,0,0,0,0,'[]'),(11456,'34.135.118.195','normal','',0,0,0,3,0,'{\"login\":[1643314536,1644115051,1647458906]}'),(11457,'35.89.12.29','normal','',0,0,0,0,0,'[]'),(11458,'167.71.34.185','normal','',0,0,0,1,0,'{\"login\":[1643315734]}'),(11459,'185.191.171.36','normal','',0,0,0,0,0,'[]'),(11460,'185.191.171.33','normal','',0,0,0,0,0,'[]'),(11461,'211.110.139.214','normal','',0,0,0,16,0,'{\"login\":[1643323492,1643497793,1644769875,1646467901,1646545409,1647140706,1647738725,1647898348,1648461168,1648602343,1649977551,1650288178,1650316072,1650589895,1650992315,1651397742]}'),(11462,'114.119.146.29','normal','',0,0,0,0,0,'[]'),(11463,'177.55.118.235','normal','',0,0,0,0,0,'[]'),(11464,'50.62.177.120','normal','',0,0,0,0,0,'[]'),(11465,'192.185.2.202','normal','',0,0,0,0,1,'{\"nf\":[1643329380]}'),(11466,'68.65.123.83','normal','',0,0,0,0,0,'[]'),(11467,'82.145.33.64','normal','',0,0,0,0,0,'[]'),(11468,'66.29.132.22','normal','',0,0,0,0,0,'[]'),(11469,'213.175.208.121','normal','',0,0,0,1,0,'{\"login\":[1654504253]}'),(11470,'110.42.175.115','normal','',0,0,0,0,0,'[]'),(11471,'45.137.184.31','normal','',0,0,0,0,0,'[]'),(11472,'35.77.43.166','normal','',0,0,0,0,0,'[]'),(11473,'119.238.219.98','normal','',0,0,0,0,0,'[]'),(11474,'185.201.47.14','normal','',0,0,0,0,0,'[]'),(11475,'41.13.196.154','normal','',0,0,0,0,0,'[]'),(11476,'103.49.168.202','normal','',0,0,0,0,0,'[]'),(11477,'41.189.88.173','normal','',0,0,0,0,0,'[]'),(11478,'168.119.36.203','normal','',0,0,0,0,1,'{\"nf\":[1643374602]}'),(11479,'131.72.236.63','normal','',0,0,0,0,0,'[]'),(11480,'41.71.43.222','normal','',0,0,0,0,0,'[]'),(11481,'188.0.240.248','normal','',0,0,0,0,0,'[]'),(11482,'213.190.6.71','normal','',0,0,0,0,2,'{\"nf\":[1645119530,1645119532]}'),(11483,'103.153.136.102','normal','',0,0,0,0,0,'[]'),(11484,'94.130.219.217','normal','',0,0,0,0,0,'[]'),(11485,'178.170.244.102','normal','',0,0,0,0,0,'[]'),(11486,'82.202.160.186','normal','',0,0,0,0,0,'[]'),(11487,'47.240.49.82','normal','',0,0,0,0,2,'{\"nf\":[1643388156,1643397357]}'),(11488,'72.167.190.44','normal','',0,0,0,0,1,'{\"nf\":[1643390176]}'),(11489,'58.3.29.149','normal','',0,0,0,0,0,'[]'),(11490,'43.241.58.11','normal','',0,0,0,0,1,'{\"nf\":[1643394390]}'),(11491,'114.119.142.12','normal','',0,0,0,0,0,'[]'),(11492,'54.202.225.218','normal','',0,0,0,0,0,'[]'),(11493,'209.145.49.40','normal','',0,0,0,0,0,'[]'),(11494,'46.101.103.136','normal','',0,0,0,1,0,'{\"login\":[1654514627]}'),(11495,'92.205.5.106','normal','',0,0,0,0,0,'[]'),(11496,'128.199.252.66','normal','',0,0,0,0,0,'[]'),(11497,'194.233.78.81','normal','',0,0,0,0,0,'[]'),(11498,'45.129.18.29','normal','',0,0,0,0,0,'[]'),(11499,'45.129.18.229','normal','',0,0,0,0,0,'[]'),(11500,'45.129.18.209','normal','',0,0,0,0,0,'[]'),(11501,'103.58.149.168','normal','',0,0,0,0,0,'[]'),(11502,'85.119.122.23','normal','',0,0,0,2,0,'{\"login\":[1653807231,1662096667]}'),(11503,'52.14.41.66','normal','',0,0,0,0,0,'[]'),(11504,'185.220.101.137','normal','',0,0,0,0,0,'[]'),(11505,'162.247.74.202','normal','',0,0,0,0,0,'[]'),(11506,'158.69.245.214','normal','',0,0,0,0,0,'[]'),(11507,'173.252.79.5','normal','',0,0,0,0,0,'[]'),(11508,'51.77.118.119','normal','',0,0,0,0,0,'[]'),(11509,'54.36.149.97','normal','',0,0,0,0,0,'[]'),(11510,'67.209.122.122','normal','',0,0,0,0,0,'[]'),(11511,'198.187.29.38','normal','',0,0,0,0,0,'[]'),(11512,'92.205.12.121','normal','',0,0,0,0,0,'[]'),(11513,'92.205.12.199','normal','',0,0,0,0,0,'[]'),(11514,'177.53.140.99','normal','',0,0,0,0,0,'[]'),(11515,'185.220.100.245','normal','',0,0,0,0,0,'[]'),(11516,'205.169.39.37','normal','',0,0,0,0,0,'[]'),(11517,'51.81.167.146','normal','',0,0,0,0,0,'[]'),(11518,'92.204.239.6','normal','',0,0,0,0,1,'{\"nf\":[1643476885]}'),(11519,'197.94.16.202','normal','',0,0,0,0,1,'{\"nf\":[1643477017]}'),(11520,'108.167.132.75','normal','',0,0,0,0,0,'[]'),(11521,'114.119.134.41','normal','',0,0,0,0,0,'[]'),(11522,'54.36.149.102','normal','',0,0,0,0,0,'[]'),(11523,'35.238.93.129','normal','',0,0,0,0,0,'[]'),(11524,'35.167.123.116','normal','',0,0,0,0,0,'[]'),(11525,'34.222.244.115','normal','',0,0,0,0,0,'[]'),(11526,'34.218.60.206','normal','',0,0,0,0,0,'[]'),(11527,'34.215.222.22','normal','',0,0,0,0,0,'[]'),(11528,'165.73.97.22','normal','',0,0,0,0,1,'{\"nf\":[1643487820]}'),(11529,'34.122.241.73','normal','',0,0,0,2,0,'{\"login\":[1643489840,1644688605]}'),(11530,'113.165.166.18','normal','',0,0,0,4,0,'{\"login\":[1643490978,1643523375,1643570715,1644116061]}'),(11531,'169.57.0.239','normal','',0,0,0,0,0,'[]'),(11532,'165.22.56.159','normal','',0,0,0,12,0,'{\"login\":[1643507696,1643510010,1643627031,1644282076,1644535780,1644694400,1645832145,1646282262,1646442114,1646818269,1647167886,1647455707]}'),(11533,'172.83.53.61','normal','',0,0,0,0,14,'{\"nf\":[1643512676,1643512678,1643512679,1643512680,1643512682,1643512683,1643512684,1643512685,1643512686,1643512687,1643512688,1643512689,1643512693,1643512695]}'),(11534,'197.94.80.103','normal','',0,0,0,0,17,'{\"nf\":[1643512781,1643512915,1643513189,1643513495,1643513500,1643513514,1643513679,1643520646,1643595913,1643596075,1643596345,1643596369,1643596448,1643596530,1643596651,1643596654,1643596656]}'),(11535,'185.112.147.12','normal','',0,0,0,0,0,'[]'),(11536,'179.84.173.90','normal','',0,0,0,0,0,'[]'),(11537,'185.100.87.139','normal','',0,0,0,0,0,'[]'),(11538,'41.93.40.78','normal','',0,0,0,1,0,'{\"login\":[1643520482]}'),(11539,'93.158.90.73','normal','',0,0,0,0,1,'{\"nf\":[1654848157]}'),(11540,'93.158.90.71','normal','',0,0,0,0,0,'[]'),(11541,'93.158.90.72','normal','',0,0,0,0,1,'{\"nf\":[1643531098]}'),(11542,'93.158.90.74','normal','',0,0,0,0,1,'{\"nf\":[1643531099]}'),(11543,'93.158.90.69','normal','',0,0,0,0,0,'[]'),(11544,'51.89.190.204','normal','',0,0,0,0,0,'[]'),(11545,'102.65.63.44','normal','',0,0,0,0,2,'{\"nf\":[1643536127,1643536171]}'),(11546,'167.71.110.54','normal','',0,0,0,0,0,'[]'),(11547,'151.226.205.236','normal','',0,0,0,0,3,'{\"nf\":[1643547381,1643635214,1643635225]}'),(11548,'34.136.47.20','normal','',0,0,0,1,0,'{\"login\":[1643552381]}'),(11549,'51.81.85.168','normal','',0,0,0,0,0,'[]'),(11550,'185.220.101.148','normal','',0,0,0,0,0,'[]'),(11551,'185.220.101.185','normal','',0,0,0,0,0,'[]'),(11552,'50.115.120.213','normal','',0,0,0,2,0,'{\"login\":[1643554678,1644267289]}'),(11553,'114.119.137.220','normal','',0,0,0,0,0,'[]'),(11554,'81.147.11.133','normal','',0,0,0,0,11,'{\"nf\":[1643560183,1643560185,1643560219,1643560219,1643560220,1643560240,1643560241,1643560614,1643560615,1643560624,1643560625]}'),(11555,'102.222.181.30','normal','',0,0,0,0,1,'{\"nf\":[1643565197]}'),(11556,'185.220.101.68','normal','',0,0,0,0,1,'{\"nf\":[1649064526]}'),(11557,'185.14.97.147','normal','',0,0,0,0,0,'[]'),(11558,'185.220.101.1','normal','',0,0,0,0,0,'[]'),(11559,'185.220.101.191','normal','',0,0,0,0,0,'[]'),(11560,'185.220.101.158','normal','',0,0,0,0,0,'[]'),(11561,'185.220.101.24','normal','',0,0,0,0,0,'[]'),(11562,'109.70.100.30','normal','',0,0,0,0,0,'[]'),(11563,'107.189.8.201','normal','',0,0,0,0,0,'[]'),(11564,'89.58.27.84','normal','',0,0,0,0,0,'[]'),(11565,'185.220.101.3','normal','',0,0,0,0,0,'[]'),(11566,'192.42.116.25','normal','',0,0,0,0,0,'[]'),(11567,'204.194.29.4','normal','',0,0,0,0,0,'[]'),(11568,'37.187.196.70','normal','',0,0,0,0,0,'[]'),(11569,'89.248.168.41','normal','',0,0,0,0,0,'[]'),(11570,'193.189.100.200','normal','',0,0,0,0,0,'[]'),(11571,'185.220.101.182','normal','',0,0,0,0,0,'[]'),(11572,'107.189.11.207','normal','',0,0,0,0,0,'[]'),(11573,'185.220.101.86','normal','',0,0,0,0,0,'[]'),(11574,'51.15.7.157','normal','',0,0,0,0,0,'[]'),(11575,'109.70.100.19','normal','',0,0,0,0,0,'[]'),(11576,'185.220.101.155','normal','',0,0,0,0,0,'[]'),(11577,'46.166.139.111','normal','',0,0,0,0,0,'[]'),(11578,'199.249.230.115','normal','',0,0,0,0,0,'[]'),(11579,'45.153.160.139','normal','',0,0,0,0,0,'[]'),(11580,'46.38.247.22','normal','',0,0,0,0,0,'[]'),(11581,'185.220.101.4','normal','',0,0,0,0,0,'[]'),(11582,'185.220.101.59','normal','',0,0,0,0,0,'[]'),(11583,'185.220.101.21','normal','',0,0,0,0,0,'[]'),(11584,'5.2.70.198','normal','',0,0,0,0,0,'[]'),(11585,'199.249.230.89','normal','',0,0,0,0,0,'[]'),(11586,'197.245.59.213','normal','',0,0,0,0,1,'{\"nf\":[1643567651]}'),(11587,'176.53.222.34','normal','',0,0,0,0,0,'[]'),(11588,'85.206.163.152','normal','',0,0,0,1,0,'{\"login\":[1643569727]}'),(11589,'105.226.31.57','normal','',0,0,0,0,1,'{\"nf\":[1643569841]}'),(11590,'50.62.177.61','normal','',0,0,0,0,2,'{\"nf\":[1643572818,1643572821]}'),(11591,'52.38.62.24','normal','',0,0,0,0,0,'[]'),(11592,'35.160.135.100','normal','',0,0,0,0,0,'[]'),(11593,'165.255.122.147','normal','',0,0,0,0,1,'{\"nf\":[1643574923]}'),(11594,'89.104.101.190','normal','',0,0,0,0,0,'[]'),(11595,'41.114.248.71','normal','',0,0,0,0,1,'{\"nf\":[1643579663]}'),(11596,'95.174.66.61','normal','',0,0,0,1,0,'{\"login\":[1643602064]}'),(11597,'54.36.148.44','normal','',0,0,0,0,0,'[]'),(11598,'50.18.141.86','normal','',0,0,0,0,0,'[]'),(11599,'196.23.154.120','normal','',0,0,0,0,2,'{\"nf\":[1643610011,1643610036]}'),(11600,'37.255.149.133','normal','',0,0,0,1,0,'{\"login\":[1643611185]}'),(11601,'105.9.143.106','normal','',0,0,0,0,1,'{\"nf\":[1643614058]}'),(11602,'185.38.175.130','normal','',0,0,0,0,0,'[]'),(11603,'194.32.107.171','normal','',0,0,0,0,0,'[]'),(11604,'51.15.180.36','normal','',0,0,0,0,0,'[]'),(11605,'50.62.177.203','normal','',0,0,0,0,0,'[]'),(11606,'52.70.57.38','normal','',0,0,0,0,4,'{\"nf\":[1643633758,1643633918,1643633935,1643633948]}'),(11607,'185.220.101.153','normal','',0,0,0,0,0,'[]'),(11608,'104.248.1.96','normal','',0,0,0,0,5,'{\"nf\":[1643635390,1646448356,1655287469,1657532788,1660077782]}'),(11609,'104.238.96.101','normal','',0,0,0,0,1,'{\"nf\":[1643636062]}'),(11610,'92.205.7.43','normal','',0,0,0,0,2,'{\"nf\":[1643638670,1644055306]}'),(11611,'104.254.247.129','normal','',0,0,0,3,0,'{\"login\":[1643639619,1644478232,1645348065]}'),(11612,'173.201.181.185','normal','',0,0,0,0,1,'{\"nf\":[1643642452]}'),(11613,'3.6.169.246','normal','',0,0,0,3,1,'{\"nf\":[1643642526],\"login\":[1657432556,1657503027,1657520984]}'),(11614,'197.87.136.149','normal','',0,0,0,0,2,'{\"nf\":[1643651206,1643651299]}'),(11615,'31.220.104.232','normal','',0,0,0,0,2,'{\"nf\":[1643656432,1646038561]}'),(11616,'54.245.55.140','normal','',0,0,0,0,0,'[]'),(11617,'41.147.0.61','normal','',0,0,0,0,1,'{\"nf\":[1643659586]}'),(11618,'197.245.149.180','normal','',0,0,0,0,1,'{\"nf\":[1643661057]}'),(11619,'45.154.168.39','normal','',0,0,0,0,0,'[]'),(11620,'54.36.148.115','normal','',0,0,0,0,0,'[]'),(11621,'114.119.142.124','normal','',0,0,0,0,0,'[]'),(11622,'34.86.35.31','normal','',0,0,0,0,0,'[]'),(11623,'104.244.79.6','normal','',0,0,0,0,0,'[]'),(11624,'199.249.230.100','normal','',0,0,0,0,0,'[]'),(11625,'45.153.160.140','normal','',0,0,0,0,0,'[]'),(11626,'102.39.148.192','normal','',0,0,0,0,8,'{\"nf\":[1643690357,1643690381,1643690534,1643690559,1643690622,1643705183,1643705192,1643705486]}'),(11627,'41.147.1.50','normal','',0,0,0,0,1,'{\"nf\":[1643702082]}'),(11628,'121.196.40.156','normal','',0,0,0,1,0,'{\"login\":[1643708604]}'),(11629,'86.106.74.213','normal','',0,0,0,0,0,'[]'),(11630,'103.10.61.56','normal','',0,0,0,4,0,'{\"login\":[1643709666,1643750502,1643760304,1643766064]}'),(11631,'203.171.20.95','normal','',0,0,0,0,1,'{\"nf\":[1643710494]}'),(11632,'18.218.63.169','normal','',0,0,0,1,0,'{\"login\":[1643710764]}'),(11633,'52.4.4.145','normal','',0,0,0,1,0,'{\"login\":[1643711962]}'),(11634,'103.83.4.94','normal','',0,0,0,6,0,'{\"login\":[1643713158,1643720426,1643773437,1644391563,1645556856,1645634725]}'),(11635,'142.93.218.78','normal','',0,0,0,0,3,'{\"nf\":[1643713973,1643714007,1644981659]}'),(11636,'153.92.6.47','normal','',0,0,0,0,4,'{\"nf\":[1643715199,1645127228,1645982048,1646469647]}'),(11637,'169.0.95.238','normal','',0,0,0,0,5,'{\"nf\":[1643715728,1643726795,1643728768,1643728799,1643735303]}'),(11638,'41.242.175.121','normal','',0,0,0,0,5,'{\"nf\":[1643716553,1643716602,1643716629,1643717560,1643718039]}'),(11639,'178.62.78.78','normal','',0,0,0,6,0,'{\"login\":[1643716642,1644522599,1644560374,1650132571,1654066831,1661169269]}'),(11640,'197.94.89.79','normal','',0,0,0,0,5,'{\"nf\":[1643719426,1643719473,1643719555,1643719571,1643719597]}'),(11641,'163.44.198.57','normal','',0,0,0,1,0,'{\"login\":[1643719733]}'),(11642,'110.168.248.42','normal','',0,0,0,0,1,'{\"nf\":[1643719754]}'),(11643,'41.149.75.103','normal','',0,0,0,0,1,'{\"nf\":[1643720321]}'),(11644,'163.123.142.249','normal','',0,0,0,0,18,'{\"nf\":[1643720905,1643720917,1643720918,1643720931,1643720931,1643720931,1643720932,1643720932,1643720934,1643720976,1643720977,1643720978,1643720978,1643720978,1643720978,1643720979,1643720982,1643721008]}'),(11645,'154.73.184.207','normal','',0,0,0,0,6,'{\"nf\":[1643720782,1643720800,1643720834,1643720863,1643720865,1643721189]}'),(11646,'165.255.69.244','normal','',0,0,0,0,1,'{\"nf\":[1643720807]}'),(11647,'54.38.76.161','normal','',0,0,0,1,0,'{\"login\":[1643722889]}'),(11648,'157.230.253.37','normal','',0,0,0,34,0,'{\"login\":[1643724153,1648124222,1648140780,1648171732,1648604371,1649805627,1649852368,1649854389,1650135287,1650377155,1650573337,1651040860,1651078129,1652085806,1652135926,1652211718,1652220649,1652388490,1652432688,1654091229,1654137614,1654227151,1655022527,1655140775,1655379814,1655452320,1656746526,1656749295,1656808464,1656812586,1656828762,1656834876,1657437547,1657492269]}'),(11649,'69.160.160.57','normal','',0,0,0,0,2,'{\"nf\":[1643726693,1643726702]}'),(11650,'157.55.39.226','normal','',0,0,0,0,0,'[]'),(11651,'34.207.94.31','normal','',0,0,0,1,0,'{\"login\":[1643731712]}'),(11652,'193.164.4.118','normal','',0,0,0,3,0,'{\"login\":[1643732977,1644328718,1644394553]}'),(11653,'91.82.85.177','normal','',0,0,0,6,0,'{\"login\":[1643739651,1643774892,1644543242,1656803699,1659415864,1660816037]}'),(11654,'197.94.219.119','normal','',0,0,0,0,3,'{\"nf\":[1643743357,1643743371,1643780398]}'),(11655,'35.167.242.190','normal','',0,0,0,0,0,'[]'),(11656,'65.2.115.220','normal','',0,0,0,1,0,'{\"login\":[1643751884]}'),(11657,'114.119.135.245','normal','',0,0,0,0,0,'[]'),(11658,'13.235.163.32','normal','',0,0,0,1,0,'{\"login\":[1643755979]}'),(11659,'34.79.69.46','normal','',0,0,0,2,0,'{\"login\":[1643757871,1646305468]}'),(11660,'3.211.49.41','normal','',0,0,0,1,0,'{\"login\":[1643758838]}'),(11661,'171.25.193.25','normal','',0,0,0,0,1,'{\"nf\":[1643766951]}'),(11662,'104.160.20.154','normal','',0,0,0,0,1,'{\"nf\":[1643768519]}'),(11663,'185.255.89.45','normal','',0,0,0,0,11,'{\"nf\":[1643773483,1643773485,1643773488,1643773490,1643773492,1643773495,1643773497,1643773499,1643773502,1643773504,1659022819]}'),(11664,'17.121.114.170','normal','',0,0,0,0,0,'[]'),(11665,'17.121.112.106','normal','',0,0,0,0,1,'{\"nf\":[1643776254]}'),(11666,'72.167.190.41','normal','',0,0,0,0,0,'[]'),(11667,'95.173.161.171','normal','',0,0,0,3,0,'{\"login\":[1643777960,1650171635,1650204470]}'),(11668,'46.182.21.248','normal','',0,0,0,1,0,'{\"login\":[1654312815]}'),(11669,'185.220.103.5','normal','',0,0,0,0,0,'[]'),(11670,'105.255.172.1','normal','',0,0,0,0,2,'{\"nf\":[1643784174,1643972075]}'),(11671,'50.62.208.49','normal','',0,0,0,0,1,'{\"nf\":[1643785906]}'),(11672,'83.110.223.179','normal','',0,0,0,0,1,'{\"nf\":[1643786061]}'),(11673,'197.97.192.154','normal','',0,0,0,0,1,'{\"nf\":[1643788409]}'),(11674,'155.93.249.55','normal','',0,0,0,0,7,'{\"nf\":[1643791174,1643791202,1643791213,1643791227,1643791280,1643791287,1643791928]}'),(11675,'187.179.218.163','normal','',0,0,0,0,0,'[]'),(11676,'102.65.62.126','normal','',0,0,0,0,2,'{\"nf\":[1643805218,1643805242]}'),(11677,'198.71.228.18','normal','',0,0,0,0,1,'{\"nf\":[1643807040]}'),(11678,'41.216.129.198','normal','',0,0,0,0,1,'{\"nf\":[1643810105]}'),(11679,'149.28.176.124','normal','',0,0,0,0,1,'{\"nf\":[1643812394]}'),(11680,'54.188.33.186','normal','',0,0,0,0,0,'[]'),(11681,'41.13.196.124','normal','',0,0,0,0,3,'{\"nf\":[1643817620,1643817694,1643817716]}'),(11682,'197.83.252.196','normal','',0,0,0,0,1,'{\"nf\":[1643818033]}'),(11683,'162.142.125.212','normal','',0,0,0,0,0,'[]'),(11684,'128.199.10.151','normal','',0,0,0,0,1,'{\"nf\":[1643820792]}'),(11685,'91.132.147.168','normal','',0,0,0,0,0,'[]'),(11686,'197.94.93.180','normal','',0,0,0,0,2,'{\"nf\":[1643826263,1643826283]}'),(11687,'193.243.158.114','normal','',0,0,0,0,1,'{\"nf\":[1643826366]}'),(11688,'34.101.219.179','normal','',0,0,0,0,0,'[]'),(11689,'41.13.208.28','normal','',0,0,0,0,1,'{\"nf\":[1643826655]}'),(11690,'198.23.48.156','normal','',0,0,0,0,1,'{\"nf\":[1643830290]}'),(11691,'208.109.76.156','normal','',0,0,0,0,2,'{\"nf\":[1643830547,1643830551]}'),(11692,'102.39.150.86','normal','',0,0,0,0,1,'{\"nf\":[1643830708]}'),(11693,'196.188.108.37','normal','',0,0,0,0,0,'[]'),(11694,'47.253.87.251','normal','',0,0,0,0,0,'[]'),(11695,'162.243.173.166','normal','',0,0,0,0,0,'[]'),(11696,'51.68.79.96','normal','',0,0,0,0,1,'{\"nf\":[1643848268]}'),(11697,'116.203.180.154','normal','',0,0,0,0,0,'[]'),(11698,'143.110.164.166','normal','',0,0,0,0,0,'[]'),(11699,'157.55.39.105','normal','',0,0,0,0,0,'[]'),(11700,'185.14.97.145','normal','',0,0,0,0,2,'{\"nf\":[1643868257,1643868260]}'),(11701,'143.244.166.16','normal','',0,0,0,7,0,'{\"login\":[1645683889,1646681363,1646752785,1646871153,1648127792,1649760980,1650233228]}'),(11702,'188.214.152.230','normal','',0,0,0,1,0,'{\"login\":[1643870411]}'),(11703,'213.136.94.121','normal','',0,0,0,0,0,'[]'),(11704,'105.243.156.115','normal','',0,0,0,0,2,'{\"nf\":[1643872748,1643872911]}'),(11705,'102.39.47.123','normal','',0,0,0,0,1,'{\"nf\":[1643873336]}'),(11706,'52.149.228.230','normal','',0,0,0,0,0,'[]'),(11707,'138.68.105.217','normal','',0,0,0,4,0,'{\"login\":[1644431806,1646739955,1646853044,1646874999]}'),(11708,'114.119.135.207','normal','',0,0,0,0,0,'[]'),(11709,'162.247.74.74','normal','',0,0,0,0,0,'[]'),(11710,'178.63.97.34','normal','',0,0,0,0,0,'[]'),(11711,'197.155.23.212','normal','',0,0,0,0,4,'{\"nf\":[1643877212,1643877284,1643877375,1643877383]}'),(11712,'184.168.117.153','normal','',0,0,0,0,0,'[]'),(11713,'165.255.16.190','normal','',0,0,0,0,2,'{\"nf\":[1643886846,1643918983]}'),(11714,'185.252.234.73','normal','',0,0,0,0,0,'[]'),(11715,'34.124.180.218','normal','',0,0,0,0,1,'{\"nf\":[1643892570]}'),(11716,'41.13.198.124','normal','',0,0,0,0,3,'{\"nf\":[1643892590,1643892590,1643892645]}'),(11717,'102.65.15.188','normal','',0,0,0,0,6,'{\"nf\":[1643893334,1643893334,1643893335,1643893426,1643893426,1643893452]}'),(11718,'95.179.254.246','normal','',0,0,0,3,0,'{\"login\":[1644356289,1644361937,1644563874]}'),(11719,'45.222.24.110','normal','',0,0,0,0,1,'{\"nf\":[1643898183]}'),(11720,'45.222.24.110','normal','',0,0,0,0,1,'{\"nf\":[1643898183]}'),(11721,'66.29.132.72','normal','',0,0,0,0,0,'[]'),(11722,'102.65.63.150','normal','',0,0,0,0,3,'{\"nf\":[1643902596,1643902597,1643902597]}'),(11723,'192.64.117.9','normal','',0,0,0,0,0,'[]'),(11724,'206.189.85.155','normal','',0,0,0,0,2,'{\"nf\":[1643910340,1644129563]}'),(11725,'213.136.93.171','normal','',0,0,0,9,1,'{\"nf\":[1643911517],\"login\":[1650027412,1650878045,1653550032,1653573509,1653584034,1653592356,1653608174,1653615853,1653616196]}'),(11726,'199.195.254.81','normal','',0,0,0,0,0,'[]'),(11727,'109.70.100.84','normal','',0,0,0,0,1,'{\"nf\":[1646192369]}'),(11728,'40.77.189.146','normal','',0,0,0,0,0,'[]'),(11729,'185.94.99.51','normal','',0,0,0,0,2,'{\"nf\":[1643914811,1643914814]}'),(11730,'104.223.95.207','normal','',0,0,0,0,0,'[]'),(11731,'185.191.171.8','normal','',0,0,0,0,0,'[]'),(11732,'185.191.171.17','normal','',0,0,0,0,0,'[]'),(11733,'186.234.80.226','normal','',0,0,0,0,0,'[]'),(11734,'162.0.217.77','normal','',0,0,0,0,0,'[]'),(11735,'220.255.112.219','normal','',0,0,0,0,0,'[]'),(11736,'94.23.118.13','normal','',0,0,0,0,0,'[]'),(11737,'103.7.40.116','normal','',0,0,0,0,0,'[]'),(11738,'161.47.50.245','normal','',0,0,0,0,2,'{\"nf\":[1643924804,1643924806]}'),(11739,'54.36.148.54','normal','',0,0,0,0,0,'[]'),(11740,'147.75.5.39','normal','',0,0,0,0,0,'[]'),(11741,'82.165.88.93','normal','',0,0,0,0,0,'[]'),(11742,'94.23.211.205','normal','',0,0,0,0,2,'{\"nf\":[1644775862,1645018550]}'),(11743,'69.30.229.69','normal','',0,0,0,16,0,'{\"login\":[1643927419,1643941259,1643954188,1643963791,1644014216,1644569469,1644695696,1644704018,1644713971,1644715694,1644741547,1644753914,1644809590,1644838923,1644840129,1645501359]}'),(11744,'202.43.47.135','normal','',0,0,0,0,0,'[]'),(11745,'198.54.120.17','normal','',0,0,0,0,0,'[]'),(11746,'74.91.29.11','normal','',0,0,0,4,0,'{\"login\":[1643935025,1643957875,1644029271,1644915750]}'),(11747,'168.138.186.59','normal','',0,0,0,0,6,'{\"nf\":[1643935570,1643935571,1643935571,1659772767,1659772768,1659772770]}'),(11748,'68.65.120.215','normal','',0,0,0,0,0,'[]'),(11749,'132.148.248.168','normal','',0,0,0,0,1,'{\"nf\":[1643937110]}'),(11750,'72.167.56.38','normal','',0,0,0,0,0,'[]'),(11751,'189.125.37.42','normal','',0,0,0,1,0,'{\"login\":[1650171466]}'),(11752,'69.30.240.30','normal','',0,0,0,26,0,'{\"login\":[1643943203,1643947963,1643975362,1643992747,1644014115,1644072520,1644098686,1644131412,1644134451,1644199675,1644204134,1644229132,1644254285,1644256701,1644277930,1644287031,1644297003,1644343012,1644348353,1644376310,1644382846,1644391346,1644443305,1644538239,1645085935,1645091533]}'),(11753,'45.13.252.20','normal','',0,0,0,0,1,'{\"nf\":[1643945193]}'),(11754,'94.232.43.123','blocked','You have been locked out due to too many invalid login attempts.',1645056160,1645055860,0,5,0,'{\"nf\":[],\"login\":[1645055847,1645055848,1645055851,1645055853,1645055860]}'),(11755,'69.197.160.227','normal','',0,0,0,3,0,'{\"login\":[1643947698,1643996318,1644013348]}'),(11756,'198.12.211.168','normal','',0,0,0,0,0,'[]'),(11757,'31.24.46.47','normal','',0,0,0,0,1,'{\"nf\":[1643951165]}'),(11758,'114.119.142.37','normal','',0,0,0,0,0,'[]'),(11759,'199.249.230.155','normal','',0,0,0,1,0,'{\"login\":[1652385512]}'),(11760,'185.220.102.250','normal','',0,0,0,0,1,'{\"nf\":[1649253579]}'),(11761,'41.147.0.166','normal','',0,0,0,0,1,'{\"nf\":[1643953121]}'),(11762,'41.147.0.218','normal','',0,0,0,0,1,'{\"nf\":[1643953318]}'),(11763,'45.130.228.229','normal','',0,0,0,0,1,'{\"nf\":[1643956792]}'),(11764,'103.130.219.102','normal','',0,0,0,0,0,'[]'),(11765,'103.72.77.25','normal','',0,0,0,0,0,'[]'),(11766,'63.141.251.190','normal','',0,0,0,22,0,'{\"login\":[1643965496,1643966039,1644017691,1644138287,1644160084,1644171781,1644216836,1644255424,1644267012,1644278176,1644280320,1644298279,1644298748,1644323827,1644325204,1644326222,1644349423,1644383827,1644992761,1645030104,1645038761,1645067495]}'),(11767,'105.233.91.214','normal','',0,0,0,0,1,'{\"nf\":[1643965566]}'),(11768,'105.8.0.223','normal','',0,0,0,0,1,'{\"nf\":[1643967511]}'),(11769,'20.127.65.228','normal','',0,0,0,0,1,'{\"nf\":[1643970695]}'),(11770,'156.155.133.215','normal','',0,0,0,0,3,'{\"nf\":[1643971017,1643971049,1643971059]}'),(11771,'69.30.230.58','normal','',0,0,0,15,0,'{\"login\":[1643971449,1644000375,1644004578,1644094863,1644552826,1644560938,1644561086,1644568364,1644596630,1644601757,1644612523,1644613895,1644634285,1645689154,1645700040]}'),(11772,'105.9.171.78','normal','',0,0,0,0,2,'{\"nf\":[1643972578,1643972668]}'),(11773,'178.18.206.19','normal','',0,0,0,0,0,'[]'),(11774,'173.252.79.9','normal','',0,0,0,0,0,'[]'),(11775,'167.86.105.202','normal','',0,0,0,0,0,'[]'),(11776,'88.214.28.136','normal','',0,0,0,0,1,'{\"nf\":[1643982503]}'),(11777,'178.254.0.81','normal','',0,0,0,0,0,'[]'),(11778,'184.168.114.89','normal','',0,0,0,0,0,'[]'),(11779,'17.121.114.41','normal','',0,0,0,0,0,'[]'),(11780,'51.222.253.14','normal','',0,0,0,0,0,'[]'),(11781,'87.253.131.18','normal','',0,0,0,0,0,'[]'),(11782,'5.2.205.186','normal','',0,0,0,0,0,'[]'),(11783,'169.1.248.150','normal','',0,0,0,0,0,'[]'),(11784,'102.182.190.216','normal','',0,0,0,0,0,'[]'),(11785,'185.38.175.132','normal','',0,0,0,0,0,'[]'),(11786,'68.178.245.10','normal','',0,0,0,0,0,'[]'),(11787,'45.84.204.76','normal','',0,0,0,0,1,'{\"nf\":[1644007455]}'),(11788,'93.186.117.3','normal','',0,0,0,0,0,'[]'),(11789,'198.54.126.152','normal','',0,0,0,1,0,'{\"login\":[1650139144]}'),(11790,'92.205.0.132','normal','',0,0,0,0,0,'[]'),(11791,'63.141.252.66','normal','',0,0,0,18,0,'{\"login\":[1644014550,1644078898,1644144682,1644205824,1644219228,1644334001,1644351787,1644382552,1644472078,1644486830,1644510557,1644523186,1644926270,1644941085,1644941764,1644943901,1644983228,1644992998]}'),(11792,'104.248.12.137','normal','',0,0,0,2,0,'{\"login\":[1646191026,1648168739]}'),(11793,'35.232.88.96','normal','',0,0,0,0,0,'[]'),(11794,'184.168.115.25','normal','',0,0,0,0,0,'[]'),(11795,'14.225.254.146','normal','',0,0,0,0,1,'{\"nf\":[1644023640]}'),(11796,'34.243.97.239','normal','',0,0,0,0,0,'[]'),(11797,'195.154.46.31','normal','',0,0,0,1,0,'{\"login\":[1644388591]}'),(11798,'35.86.190.108','normal','',0,0,0,0,0,'[]'),(11799,'65.108.101.14','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1644981785,0,1644981485,0,42,'{\"nf\":[1644981444,1644981470,1644981471,1644981471,1644981472,1644981473,1644981474,1644981475,1644981475,1644981476,1644981477,1644981478,1644981479,1644981480,1644981480,1644981482,1644981483,1644981483,1644981484,1644981485],\"login\":[]}'),(11800,'103.54.126.226','normal','',0,0,0,0,2,'{\"nf\":[1644031695,1644031699]}'),(11801,'167.114.101.65','normal','',0,0,0,0,0,'[]'),(11802,'45.32.100.183','normal','',0,0,0,0,0,'[]'),(11803,'102.65.62.200','normal','',0,0,0,0,0,'[]'),(11804,'135.125.24.173','normal','',0,0,0,0,0,'[]'),(11805,'69.30.229.70','normal','',0,0,0,17,0,'{\"login\":[1644044235,1644084300,1644103996,1644143502,1644199369,1644238943,1644262941,1644272583,1644281067,1644287412,1644314024,1644380191,1644381727,1644940627,1644966198,1645000354,1645098793]}'),(11806,'83.216.185.77','normal','',0,0,0,0,1,'{\"nf\":[1644047903]}'),(11807,'186.234.80.41','normal','',0,0,0,0,0,'[]'),(11808,'27.72.57.169','normal','',0,0,0,0,0,'[]'),(11809,'69.164.196.139','normal','',0,0,0,0,0,'[]'),(11810,'74.91.29.12','normal','',0,0,0,12,0,'{\"login\":[1644055643,1644076270,1644152237,1644160383,1644161558,1644181936,1644204565,1644230418,1644290710,1644296227,1644342023,1644369534]}'),(11811,'205.169.39.168','normal','',0,0,0,0,0,'[]'),(11812,'114.119.145.233','normal','',0,0,0,0,0,'[]'),(11813,'69.197.160.229','normal','',0,0,0,5,0,'{\"login\":[1644065738,1644110025,1644116170,1644159205,1644186621]}'),(11814,'125.192.248.247','normal','',0,0,0,0,0,'[]'),(11815,'184.154.219.138','normal','',0,0,0,0,0,'[]'),(11816,'108.179.253.215','normal','',0,0,0,0,1,'{\"nf\":[1644633629]}'),(11817,'150.109.61.139','normal','',0,0,0,0,0,'[]'),(11818,'185.41.152.40','normal','',0,0,0,0,0,'[]'),(11819,'5.188.62.21','normal','You have been locked out due to too many invalid login attempts.',1652708714,1652708414,0,6,0,'{\"nf\":[],\"login\":[1662821476,1662823182,1662829969,1662832182,1662896097,1662937580]}'),(11820,'185.27.99.134','normal','',0,0,0,0,0,'[]'),(11821,'185.27.99.113','normal','',0,0,0,0,0,'[]'),(11822,'45.227.255.159','blocked','You have been locked out due to too many invalid login attempts.',1644097394,1644097094,0,5,1,'{\"nf\":[1644097087],\"login\":[1644097090,1644097091,1644097092,1644097093,1644097094]}'),(11823,'3.111.16.54','normal','',0,0,0,0,0,'[]'),(11824,'114.119.150.42','normal','',0,0,0,0,0,'[]'),(11825,'159.203.85.60','normal','',0,0,0,0,0,'[]'),(11826,'17.121.114.245','normal','',0,0,0,0,0,'[]'),(11827,'134.209.110.77','normal','',0,0,0,3,0,'{\"login\":[1644110902,1644669698,1644671603]}'),(11828,'162.213.255.2','normal','',0,0,0,0,0,'[]'),(11829,'109.70.100.75','normal','',0,0,0,0,0,'[]'),(11830,'23.236.146.166','normal','',0,0,0,0,0,'[]'),(11831,'118.24.106.172','normal','',0,0,0,11,0,'{\"login\":[1644121171,1645997022,1646301605,1652106449,1652683789,1656230525,1656775405,1658549844,1658674556,1661357787,1661535586]}'),(11832,'185.254.237.119','normal','',0,0,0,0,0,'[]'),(11833,'162.241.248.14','normal','',0,0,0,0,0,'[]'),(11834,'213.202.252.251','normal','',0,0,0,0,0,'[]'),(11835,'193.108.115.84','normal','',0,0,0,0,0,'[]'),(11836,'36.94.142.166','normal','',0,0,0,50,0,'{\"login\":[1646092759,1646297091,1646300091,1646583911,1646737563,1646930340,1647176411,1647184718,1647224516,1647426891,1647494054,1647729678,1647921489,1648543811,1649736742,1650141585,1650141920,1650947903,1652352654,1652379260,1652749262,1652768599,1653345391,1654189127,1654284159,1655059948,1655064531,1655567603,1655900746,1656065081,1656300088,1657221521,1657264498,1657583874,1657609251,1657633581,1658074778,1658439982,1658587335,1658665431,1659113553,1659131245,1659613836,1659831245,1660714382,1661335063,1661399109,1661652494,1661707116,1662375162]}'),(11837,'132.148.199.24','normal','',0,0,0,0,0,'[]'),(11838,'104.248.225.59','normal','',0,0,0,39,0,'{\"login\":[1647027012,1647651787,1648555526,1649030425,1649072739,1649540866,1649755282,1650021450,1650349307,1650503136,1651289783,1651330332,1651367106,1651514404,1652364546,1652535857,1652580121,1652724405,1652737909,1652969858,1653435135,1653509150,1654194213,1654266370,1654279111,1654602143,1655460906,1655562918,1655828439,1656210870,1656566317,1656745312,1656784605,1656811108,1657316560,1657495189,1657682335,1658816067,1659592266]}'),(11839,'204.12.242.178','normal','',0,0,0,0,13,'{\"nf\":[1644148482,1644148485,1644148487,1644148488,1644148491,1644148493,1644148494,1644148497,1644148498,1644148500,1644148502,1644148506,1644148508]}'),(11840,'186.234.80.177','normal','',0,0,0,0,0,'[]'),(11841,'198.54.114.24','normal','',0,0,0,0,0,'[]'),(11842,'105.225.210.41','normal','',0,0,0,0,0,'[]'),(11843,'162.0.232.199','normal','',0,0,0,0,0,'[]'),(11844,'68.183.41.247','normal','',0,0,0,0,0,'[]'),(11845,'184.168.117.94','normal','',0,0,0,0,0,'[]'),(11846,'68.65.123.138','normal','',0,0,0,0,0,'[]'),(11847,'199.188.201.233','normal','',0,0,0,0,0,'[]'),(11848,'198.54.126.74','normal','',0,0,0,0,0,'[]'),(11849,'66.249.66.32','normal','',0,0,0,0,0,'[]'),(11850,'184.154.207.18','normal','',0,0,0,0,0,'[]'),(11851,'3.90.220.251','normal','',0,0,0,0,1,'{\"nf\":[1644164115]}'),(11852,'185.220.101.77','normal','',0,0,0,1,0,'{\"login\":[1653110016]}'),(11853,'100.24.108.51','normal','',0,0,0,0,0,'[]'),(11854,'54.90.104.170','normal','',0,0,0,0,1,'{\"nf\":[1644164241]}'),(11855,'69.30.230.59','normal','',0,0,0,4,0,'{\"login\":[1644166187,1644169804,1644971722,1644988644]}'),(11856,'139.59.136.209','normal','',0,0,0,0,0,'[]'),(11857,'132.248.60.104','normal','',0,0,0,20,0,'{\"login\":[1644190232,1644268909,1644598409,1644815468,1644828134,1645362866,1646478062,1646528773,1646997890,1647116748,1647311149,1647414427,1647524317,1648063525,1648231535,1648469088,1648679175,1649708559,1650318586,1650470932]}'),(11858,'188.166.248.186','normal','',0,0,0,0,0,'[]'),(11859,'137.184.17.117','normal','',0,0,0,1,0,'{\"login\":[1650288872]}'),(11860,'47.96.185.5','normal','',0,0,0,0,0,'[]'),(11861,'178.95.12.163','normal','',0,0,0,0,0,'[]'),(11862,'204.12.198.243','normal','',0,0,0,0,0,'[]'),(11863,'199.188.206.61','normal','',0,0,0,0,0,'[]'),(11864,'51.158.147.221','normal','',0,0,0,0,0,'[]'),(11865,'185.220.101.15','normal','',0,0,0,0,0,'[]'),(11866,'149.255.62.89','normal','',0,0,0,0,0,'[]'),(11867,'185.64.25.189','normal','',0,0,0,0,0,'[]'),(11868,'63.250.38.216','normal','',0,0,0,0,0,'[]'),(11869,'69.197.160.230','normal','',0,0,0,5,0,'{\"login\":[1644215601,1644219275,1644244738,1644245288,1644266282]}'),(11870,'105.249.236.195','normal','',0,0,0,0,0,'[]'),(11871,'198.54.120.4','normal','',0,0,0,0,0,'[]'),(11872,'37.0.11.64','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1645807428,0,1645807128,0,50,'{\"nf\":[1645807075,1645807076,1645807078,1645807079,1645807079,1645807080,1645807083,1645807084,1645807085,1645807087,1645807087,1645807087,1645807092,1645807093,1645807094,1645807094,1645807095,1645807097,1645807098,1645807128],\"login\":[]}'),(11873,'5.189.190.184','normal','',0,0,0,0,13,'{\"nf\":[1644230208,1644230209,1644230210,1644230211,1644230214,1644230217,1644230217,1644230219,1644230219,1644230220,1644230222,1644230223,1644230224]}'),(11874,'171.97.247.139','normal','',0,0,0,0,0,'[]'),(11875,'163.123.142.197','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1644246683,0,1644246383,0,22,'{\"nf\":[1654745146,1654745168],\"login\":[]}'),(11876,'54.241.140.118','normal','',0,0,0,0,2,'{\"nf\":[1644249482,1644261909]}'),(11877,'31.13.127.25','normal','',0,0,0,0,0,'[]'),(11878,'31.13.127.31','normal','',0,0,0,0,0,'[]'),(11879,'66.220.149.22','normal','',0,0,0,0,0,'[]'),(11880,'66.220.149.11','normal','',0,0,0,0,0,'[]'),(11881,'161.97.93.107','normal','',0,0,0,15,0,'{\"login\":[1644252254,1645091676,1645275439,1645723082,1646967045,1647128083,1647694109,1648629852,1650358875,1650545326,1650578353,1650823541,1652416189,1653448376,1653610482]}'),(11882,'45.129.18.154','normal','',0,0,0,0,0,'[]'),(11883,'45.129.18.247','normal','',0,0,0,0,0,'[]'),(11884,'165.90.205.19','normal','',0,0,0,0,0,'[]'),(11885,'35.220.243.24','normal','',0,0,0,0,1,'{\"nf\":[1644257453]}'),(11886,'151.106.116.223','normal','',0,0,0,0,1,'{\"nf\":[1644258549]}'),(11887,'185.220.101.162','normal','',0,0,0,0,0,'[]'),(11888,'104.219.236.119','normal','',0,0,0,0,0,'[]'),(11889,'178.213.3.52','normal','',0,0,0,0,0,'[]'),(11890,'212.102.57.211','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1644273139,0,1644272839,0,20,'{\"nf\":[1644272795,1644272798,1644272802,1644272804,1644272806,1644272815,1644272816,1644272818,1644272827,1644272828,1644272829,1644272830,1644272832,1644272833,1644272834,1644272835,1644272836,1644272837,1644272838,1644272839]}'),(11891,'138.68.247.123','normal','',0,0,0,0,13,'{\"nf\":[1644283607,1644283611,1644283613,1644283615,1644283616,1644283618,1644283624,1644283627,1644283629,1644283632,1644283633,1644283636,1644283638]}'),(11892,'34.86.35.8','normal','',0,0,0,0,0,'[]'),(11893,'198.136.54.91','normal','',0,0,0,0,2,'{\"nf\":[1644300361,1644300365]}'),(11894,'185.191.171.42','normal','',0,0,0,0,2,'{\"nf\":[1644300423,1658033776]}'),(11895,'40.77.167.95','normal','',0,0,0,0,0,'[]'),(11896,'207.46.13.77','normal','',0,0,0,0,0,'[]'),(11897,'17.121.113.89','normal','',0,0,0,0,0,'[]'),(11898,'35.87.205.201','normal','',0,0,0,0,0,'[]'),(11899,'54.36.148.241','normal','',0,0,0,0,0,'[]'),(11900,'193.56.29.227','normal','',0,0,0,0,1,'{\"nf\":[1644324391]}'),(11901,'18.212.43.55','normal','',0,0,0,3,0,'{\"login\":[1644326196,1644364939,1644485466]}'),(11902,'173.212.245.128','normal','',0,0,0,13,0,'{\"login\":[1644333880,1644457473,1645774192,1649044646,1649053506,1649064784,1650207223,1652218340,1652242984,1652823528,1652823957,1653583894,1653586393]}'),(11903,'161.35.224.204','normal','',0,0,0,2,0,'{\"login\":[1650134836,1653982746]}'),(11904,'45.76.138.158','normal','',0,0,0,0,0,'[]'),(11905,'68.183.65.95','normal','',0,0,0,5,0,'{\"login\":[1644336490,1644492273,1644495591,1644536294,1645690437]}'),(11906,'185.66.69.200','normal','',0,0,0,0,1,'{\"nf\":[1644343130]}'),(11907,'162.213.248.48','normal','',0,0,0,0,1,'{\"nf\":[1644343450]}'),(11908,'128.199.178.241','normal','',0,0,0,2,0,'{\"login\":[1644347779,1644370674]}'),(11909,'69.30.230.60','normal','',0,0,0,3,0,'{\"login\":[1644349345,1644357133,1644369012]}'),(11910,'128.65.126.240','normal','',0,0,0,0,0,'[]'),(11911,'128.65.126.240','normal','',0,0,0,0,0,'[]'),(11912,'67.222.109.195','normal','',0,0,0,0,0,'[]'),(11913,'50.62.177.136','normal','',0,0,0,0,0,'[]'),(11914,'89.46.106.186','normal','',0,0,0,0,0,'[]'),(11915,'89.46.106.186','normal','',0,0,0,0,0,'[]'),(11916,'37.247.114.78','normal','',0,0,0,0,0,'[]'),(11917,'37.247.114.78','normal','',0,0,0,0,0,'[]'),(11918,'92.42.38.132','normal','',0,0,0,0,0,'[]'),(11919,'34.122.87.82','normal','',0,0,0,0,0,'[]'),(11920,'51.68.11.227','normal','',0,0,0,0,2,'{\"nf\":[1646247879,1660979101]}'),(11921,'89.46.104.202','normal','',0,0,0,0,0,'[]'),(11922,'20.204.144.150','normal','',0,0,0,0,0,'[]'),(11923,'107.180.121.15','normal','',0,0,0,0,0,'[]'),(11924,'185.24.233.38','normal','',0,0,0,0,0,'[]'),(11925,'114.119.135.98','normal','',0,0,0,0,0,'[]'),(11926,'204.48.26.148','normal','',0,0,0,0,3,'{\"nf\":[1644379374,1658149513,1661456660]}'),(11927,'34.90.111.221','normal','',0,0,0,4,0,'{\"login\":[1644382676,1644447523,1645746310,1646094894]}'),(11928,'197.229.0.242','normal','',0,0,0,0,0,'[]'),(11929,'192.99.18.136','normal','',0,0,0,0,0,'[]'),(11930,'52.200.80.13','normal','',0,0,0,1,0,'{\"login\":[1644400541]}'),(11931,'68.65.122.108','normal','',0,0,0,0,0,'[]'),(11932,'198.71.235.7','normal','',0,0,0,0,1,'{\"nf\":[1644404172]}'),(11933,'69.30.229.67','normal','',0,0,0,5,0,'{\"login\":[1644404472,1644407473,1644416616,1644437310,1644451844]}'),(11934,'198.187.31.117','normal','',0,0,0,0,0,'[]'),(11935,'139.162.121.80','normal','',0,0,0,0,0,'[]'),(11936,'54.215.168.168','normal','',0,0,0,2,0,'{\"login\":[1644413125,1644416117]}'),(11937,'114.119.143.226','normal','',0,0,0,0,0,'[]'),(11938,'186.234.80.50','normal','',0,0,0,0,0,'[]'),(11939,'54.215.191.51','normal','',0,0,0,0,0,'[]'),(11940,'198.54.120.32','normal','',0,0,0,0,0,'[]'),(11941,'185.6.10.17','normal','',0,0,0,2,0,'{\"login\":[1644425510,1644454044]}'),(11942,'69.30.230.62','normal','',0,0,0,5,0,'{\"login\":[1644434139,1644444891,1644471319,1644481730,1644503147]}'),(11943,'74.91.29.14','normal','',0,0,0,3,0,'{\"login\":[1644436422,1644508896,1644511757]}'),(11944,'207.46.13.152','normal','',0,0,0,0,0,'[]'),(11945,'63.141.251.186','normal','',0,0,0,9,0,'{\"login\":[1644452981,1644459186,1644498950,1644515700,1644516308,1644544364,1644569457,1644576604,1644666786]}'),(11946,'34.71.189.56','normal','',0,0,0,3,0,'{\"login\":[1644464971,1644592932,1645080967]}'),(11947,'185.220.101.47','normal','',0,0,0,0,0,'[]'),(11948,'198.54.126.116','normal','',0,0,0,0,0,'[]'),(11949,'77.88.5.38','normal','',0,0,0,0,0,'[]'),(11950,'77.88.5.235','normal','',0,0,0,0,0,'[]'),(11951,'105.245.12.57','normal','',0,0,0,0,0,'[]'),(11952,'66.29.132.37','normal','',0,0,0,0,0,'[]'),(11953,'69.30.229.68','normal','',0,0,0,7,0,'{\"login\":[1644474744,1644509592,1644519154,1644534662,1644535429,1644543680,1644567244]}'),(11954,'78.46.149.254','normal','',0,0,0,0,0,'[]'),(11955,'66.29.141.128','normal','',0,0,0,0,0,'[]'),(11956,'185.220.101.49','normal','',0,0,0,0,0,'[]'),(11957,'50.62.137.54','normal','',0,0,0,0,1,'{\"nf\":[1644487967]}'),(11958,'138.121.170.230','normal','',0,0,0,0,9,'{\"nf\":[1644489335,1644489336,1644489339,1644489339,1644489341,1644489350,1644489352,1649641022,1649641024]}'),(11959,'5.9.98.234','normal','',0,0,0,0,1,'{\"nf\":[1644501781]}'),(11960,'93.188.163.54','normal','',0,0,0,1,0,'{\"login\":[1644509212]}'),(11961,'207.46.13.213','normal','',0,0,0,0,0,'[]'),(11962,'108.179.252.55','normal','',0,0,0,0,0,'[]'),(11963,'208.109.66.54','normal','',0,0,0,0,0,'[]'),(11964,'217.174.148.212','normal','',0,0,0,0,0,'[]'),(11965,'34.86.35.11','normal','',0,0,0,0,0,'[]'),(11966,'69.30.240.27','normal','',0,0,0,9,0,'{\"login\":[1644551143,1644604929,1644742050,1644744251,1644783331,1644817566,1644822857,1644829260,1645131591]}'),(11967,'18.117.168.250','normal','',0,0,0,0,1,'{\"nf\":[1644556015]}'),(11968,'74.91.29.13','normal','',0,0,0,3,0,'{\"login\":[1644557517,1644577509,1644584987]}'),(11969,'173.252.79.3','normal','',0,0,0,0,0,'[]'),(11970,'63.141.252.68','normal','',0,0,0,2,0,'{\"login\":[1644574411,1645342443]}'),(11971,'178.62.74.6','normal','',0,0,0,0,0,'[]'),(11972,'167.248.133.63','normal','',0,0,0,0,0,'[]'),(11973,'64.246.161.190','normal','',0,0,0,0,0,'[]'),(11974,'173.231.200.144','normal','',0,0,0,0,0,'[]'),(11975,'105.243.149.190','normal','',0,0,0,0,0,'[]'),(11976,'54.36.148.227','normal','',0,0,0,0,0,'[]'),(11977,'156.67.222.135','normal','',0,0,0,0,1,'{\"nf\":[1644601653]}'),(11978,'137.184.12.85','normal','',0,0,0,0,0,'[]'),(11979,'182.50.132.2','normal','',0,0,0,0,0,'[]'),(11980,'52.163.243.145','normal','',0,0,0,0,1,'{\"nf\":[1644612624]}'),(11981,'65.21.206.43','normal','',0,0,0,0,0,'[]'),(11982,'109.234.162.36','normal','',0,0,0,0,1,'{\"nf\":[1644619086]}'),(11983,'74.91.29.10','normal','',0,0,0,8,0,'{\"login\":[1644623471,1644700541,1644732040,1644736263,1644809450,1644829530,1644852751,1644869258]}'),(11984,'47.254.69.184','normal','',0,0,0,0,7,'{\"nf\":[1644624972,1644624979,1644624983,1644624986,1644624989,1644624994,1644624999]}'),(11985,'193.218.118.158','normal','',0,0,0,0,0,'[]'),(11986,'69.30.226.234','normal','',0,0,0,0,0,'[]'),(11987,'34.86.35.23','normal','',0,0,0,0,0,'[]'),(11988,'198.187.31.80','normal','',0,0,0,0,0,'[]'),(11989,'192.64.117.135','normal','',0,0,0,0,0,'[]'),(11990,'209.141.36.231','normal','',0,0,0,0,0,'[]'),(11991,'198.54.114.46','normal','',0,0,0,0,0,'[]'),(11992,'66.29.141.50','normal','',0,0,0,0,0,'[]'),(11993,'154.54.249.203','normal','',0,0,0,0,3,'{\"nf\":[1645410872,1646634054,1647515942]}'),(11994,'37.120.203.85','normal','',0,0,0,1,0,'{\"login\":[1644656577]}'),(11995,'17.121.114.28','normal','',0,0,0,0,0,'[]'),(11996,'185.174.28.39','normal','',0,0,0,0,11,'{\"nf\":[1644658999,1646237800,1646237801,1646237801,1646759535,1646759536,1646759536,1648300178,1648300181,1648300181,1648300183]}'),(11997,'65.108.46.72','normal','',0,0,0,0,0,'[]'),(11998,'130.255.166.90','normal','',0,0,0,0,0,'[]'),(11999,'130.255.166.122','normal','',0,0,0,0,0,'[]'),(12000,'130.255.166.69','normal','',0,0,0,0,2,'{\"nf\":[1644659887,1644659888]}'),(12001,'45.13.252.170','normal','',0,0,0,0,1,'{\"nf\":[1644664510]}'),(12002,'217.160.92.186','normal','',0,0,0,0,0,'[]'),(12003,'63.141.252.70','normal','',0,0,0,12,0,'{\"login\":[1644677039,1644686378,1644736325,1644755958,1644847644,1644862300,1644873062,1644885448,1644888857,1644899268,1644910301,1645410654]}'),(12004,'114.119.133.224','normal','',0,0,0,0,0,'[]'),(12005,'149.28.150.203','normal','',0,0,0,0,0,'[]'),(12006,'67.225.186.59','normal','',0,0,0,0,0,'[]'),(12007,'67.225.186.59','normal','',0,0,0,0,0,'[]'),(12008,'144.217.135.188','normal','',0,0,0,0,2,'{\"nf\":[1644692694,1644692705]}'),(12009,'149.56.150.52','normal','',0,0,0,0,0,'[]'),(12010,'139.59.60.160','normal','',0,0,0,1,0,'{\"login\":[1653812373]}'),(12011,'193.231.129.34','normal','',0,0,0,0,0,'[]'),(12012,'193.34.145.203','normal','',0,0,0,0,2,'{\"nf\":[1644704419,1644704422]}'),(12013,'209.141.51.49','normal','',0,0,0,0,0,'[]'),(12014,'209.141.36.112','normal','',0,0,0,0,0,'[]'),(12015,'209.141.35.128','normal','',0,0,0,0,0,'[]'),(12016,'198.54.124.79','normal','',0,0,0,0,3,'{\"nf\":[1644713987,1645030425,1645727208]}'),(12017,'192.99.13.75','normal','',0,0,0,0,0,'[]'),(12018,'143.110.247.7','normal','',0,0,0,0,0,'[]'),(12019,'40.77.167.106','normal','',0,0,0,0,0,'[]'),(12020,'45.129.18.121','normal','',0,0,0,0,0,'[]'),(12021,'17.121.112.111','normal','',0,0,0,0,0,'[]'),(12022,'184.168.125.241','normal','',0,0,0,1,0,'{\"login\":[1650306904]}'),(12023,'114.119.140.13','normal','',0,0,0,0,0,'[]'),(12024,'162.142.125.7','normal','',0,0,0,0,0,'[]'),(12025,'51.222.175.113','normal','',0,0,0,0,2,'{\"nf\":[1644755870,1644755871]}'),(12026,'185.201.10.123','normal','',0,0,0,0,1,'{\"nf\":[1644774464]}'),(12027,'63.141.251.189','normal','',0,0,0,5,0,'{\"login\":[1644775452,1644813234,1644833593,1644844458,1644894258]}'),(12028,'102.65.62.88','normal','',0,0,0,0,0,'[]'),(12029,'74.220.219.222','normal','',0,0,0,0,1,'{\"nf\":[1644783310]}'),(12030,'104.244.72.115','normal','',0,0,0,0,0,'[]'),(12031,'114.119.146.77','normal','',0,0,0,0,0,'[]'),(12032,'107.150.70.57','normal','',0,0,0,0,0,'[]'),(12033,'38.18.52.206','normal','',0,0,0,0,0,'[]'),(12034,'54.36.148.35','normal','',0,0,0,0,0,'[]'),(12035,'157.55.39.227','normal','',0,0,0,0,0,'[]'),(12036,'51.79.250.33','normal','',0,0,0,0,2,'{\"nf\":[1644824686,1644824687]}'),(12037,'199.188.200.106','normal','',0,0,0,0,0,'[]'),(12038,'102.132.214.245','normal','',0,0,0,0,0,'[]'),(12039,'50.117.114.162','normal','',0,0,0,0,2,'{\"nf\":[1644839474,1644839476]}'),(12040,'87.250.224.108','normal','',0,0,0,0,0,'[]'),(12041,'102.182.115.145','normal','',0,0,0,0,0,'[]'),(12042,'34.219.22.183','normal','',0,0,0,0,0,'[]'),(12043,'114.119.151.108','normal','',0,0,0,0,0,'[]'),(12044,'66.251.169.60','normal','',0,0,0,0,1,'{\"nf\":[1644876401]}'),(12045,'193.111.199.251','normal','',0,0,0,0,0,'[]'),(12046,'114.119.147.75','normal','',0,0,0,0,0,'[]'),(12047,'185.224.138.27','normal','',0,0,0,0,1,'{\"nf\":[1644887179]}'),(12048,'74.91.17.82','normal','',0,0,0,3,0,'{\"login\":[1644897064,1644914518,1644921244]}'),(12049,'197.95.146.56','normal','',0,0,0,0,0,'[]'),(12050,'69.197.154.18','normal','',0,0,0,1,0,'{\"login\":[1644912892]}'),(12051,'186.82.171.101','normal','',0,0,0,0,0,'[]'),(12052,'125.235.235.141','normal','',0,0,0,0,0,'[]'),(12053,'5.52.72.211','normal','',0,0,0,0,0,'[]'),(12054,'176.45.79.32','normal','',0,0,0,0,0,'[]'),(12055,'181.53.12.233','normal','',0,0,0,0,0,'[]'),(12056,'105.186.91.240','normal','',0,0,0,0,0,'[]'),(12057,'45.84.191.200','normal','',0,0,0,0,1,'{\"nf\":[1644927084]}'),(12058,'173.208.153.155','normal','',0,0,0,5,0,'{\"login\":[1644930762,1644931656,1644984309,1645006137,1645013923]}'),(12059,'107.180.121.57','normal','',0,0,0,0,1,'{\"nf\":[1644931885]}'),(12060,'108.167.189.19','normal','',0,0,0,0,1,'{\"nf\":[1644934537]}'),(12061,'197.184.174.115','normal','',0,0,0,0,0,'[]'),(12062,'54.188.105.111','normal','',0,0,0,0,0,'[]'),(12063,'107.150.36.75','normal','',0,0,0,9,0,'{\"login\":[1644948441,1644955447,1644992972,1644997280,1645017470,1645060584,1645066216,1645092182,1645100506]}'),(12064,'69.30.240.28','normal','',0,0,0,5,0,'{\"login\":[1644953012,1644997094,1645358381,1645438796,1645501658]}'),(12065,'35.87.79.66','normal','',0,0,0,0,0,'[]'),(12066,'69.197.154.19','normal','',0,0,0,5,0,'{\"login\":[1644968563,1645056660,1645058696,1645058707,1645737201]}'),(12067,'74.91.17.83','normal','',0,0,0,4,0,'{\"login\":[1644971508,1644992237,1645063802,1645101118]}'),(12068,'207.46.13.158','normal','',0,0,0,0,0,'[]'),(12069,'200.147.58.9','normal','',0,0,0,0,0,'[]'),(12070,'105.233.109.181','normal','',0,0,0,0,0,'[]'),(12071,'197.155.5.50','normal','',0,0,0,0,0,'[]'),(12072,'197.245.149.225','normal','',0,0,0,0,4,'{\"nf\":[1645016988,1645016990,1645017065,1645017094]}'),(12073,'203.13.68.160','normal','',0,0,0,0,0,'[]'),(12074,'109.194.141.174','normal','',0,0,0,0,1,'{\"nf\":[1645028385]}'),(12075,'121.4.163.148','normal','',0,0,0,0,0,'[]'),(12076,'35.88.77.128','normal','',0,0,0,0,0,'[]'),(12077,'17.121.112.75','normal','',0,0,0,0,0,'[]'),(12078,'114.119.143.133','normal','',0,0,0,0,0,'[]'),(12079,'114.119.147.74','normal','',0,0,0,0,0,'[]'),(12080,'45.129.18.251','normal','',0,0,0,0,0,'[]'),(12081,'185.225.38.207','normal','',0,0,0,0,3,'{\"nf\":[1645100583,1645100586,1646116042]}'),(12082,'151.106.116.74','normal','',0,0,0,0,0,'[]'),(12083,'151.106.116.98','normal','',0,0,0,0,0,'[]'),(12084,'3.145.212.164','normal','',0,0,0,0,4,'{\"nf\":[1645104122,1645104135,1645104499,1645104503]}'),(12085,'52.53.232.65','normal','',0,0,0,0,0,'[]'),(12086,'41.116.182.107','normal','',0,0,0,0,0,'[]'),(12087,'51.158.103.247','normal','',0,0,0,0,0,'[]'),(12088,'5.248.226.105','normal','',0,0,0,0,1,'{\"nf\":[1645117452]}'),(12089,'216.177.141.15','normal','',0,0,0,0,16,'{\"nf\":[1645122676,1645122678,1645122679,1645122681,1645122682,1645122683,1645122684,1645122686,1645122688,1645122690,1645122691,1645122693,1645122695,1645122696,1645122698,1645122699]}'),(12090,'197.95.147.190','normal','',0,0,0,0,0,'[]'),(12091,'153.92.6.53','normal','',0,0,0,0,1,'{\"nf\":[1645127231]}'),(12092,'34.222.14.35','normal','',0,0,0,0,0,'[]'),(12093,'35.87.178.215','normal','',0,0,0,0,0,'[]'),(12094,'66.249.73.39','normal','',0,0,0,0,0,'[]'),(12095,'157.55.39.32','normal','',0,0,0,0,0,'[]'),(12096,'89.45.201.6','normal','',0,0,0,0,0,'[]'),(12097,'69.171.231.116','normal','',0,0,0,0,0,'[]'),(12098,'69.171.231.117','normal','',0,0,0,0,0,'[]'),(12099,'114.119.148.155','normal','',0,0,0,0,0,'[]'),(12100,'102.165.94.209','normal','',0,0,0,0,0,'[]'),(12101,'131.153.143.50','normal','',0,0,0,0,0,'[]'),(12102,'41.13.216.157','normal','',0,0,0,0,0,'[]'),(12103,'197.94.216.69','normal','',0,0,0,0,2,'{\"nf\":[1645176372,1645176650]}'),(12104,'193.151.130.125','normal','',0,0,0,0,0,'[]'),(12105,'66.249.93.49','normal','',0,0,0,0,19,'{\"nf\":[1645183867,1645526374,1646581165,1646978719,1647110727,1647618131,1647842382,1647966877,1649110840,1649119649,1649675915,1650345230,1650462928,1651582990,1651927257,1652340515,1657355894,1659011509,1661416206]}'),(12106,'154.65.0.16','normal','',0,0,0,0,0,'[]'),(12107,'165.0.101.180','normal','',0,0,0,0,0,'[]'),(12108,'41.87.158.126','normal','',0,0,0,0,0,'[]'),(12109,'54.36.148.138','normal','',0,0,0,0,0,'[]'),(12110,'66.249.70.45','normal','',0,0,0,0,0,'[]'),(12111,'66.249.70.43','normal','',0,0,0,0,0,'[]'),(12112,'103.241.24.110','normal','',0,0,0,2,0,'{\"login\":[1645232327,1645725685]}'),(12113,'42.192.37.168','normal','',0,0,0,0,0,'[]'),(12114,'173.252.79.7','normal','',0,0,0,0,0,'[]'),(12115,'192.99.160.200','normal','',0,0,0,0,0,'[]'),(12116,'173.252.107.7','normal','',0,0,0,0,0,'[]'),(12117,'195.181.172.68','normal','',0,0,0,0,0,'[]'),(12118,'185.87.148.103','normal','',0,0,0,0,0,'[]'),(12119,'197.89.123.169','normal','',0,0,0,0,0,'[]'),(12120,'114.119.131.203','normal','',0,0,0,0,0,'[]'),(12121,'197.94.18.198','normal','',0,0,0,0,0,'[]'),(12122,'209.141.41.193','normal','',0,0,0,0,0,'[]'),(12123,'93.158.91.193','normal','',0,0,0,0,0,'[]'),(12124,'93.158.91.234','normal','',0,0,0,0,1,'{\"nf\":[1660565730]}'),(12125,'93.158.91.208','normal','',0,0,0,0,1,'{\"nf\":[1645281960]}'),(12126,'93.158.91.231','normal','',0,0,0,0,1,'{\"nf\":[1645281964]}'),(12127,'93.158.91.209','normal','',0,0,0,0,1,'{\"nf\":[1660565727]}'),(12128,'109.70.100.83','normal','',0,0,0,0,0,'[]'),(12129,'185.220.100.244','normal','',0,0,0,0,0,'[]'),(12130,'171.25.193.78','normal','',0,0,0,0,0,'[]'),(12131,'178.17.170.23','normal','',0,0,0,0,0,'[]'),(12132,'34.76.54.241','normal','',0,0,0,0,2,'{\"nf\":[1645291968,1645291978]}'),(12133,'213.136.87.230','normal','',0,0,0,0,0,'[]'),(12134,'114.119.147.73','normal','',0,0,0,0,0,'[]'),(12135,'45.152.182.151','blocked','You have been locked out due to too many invalid login attempts.',1645314174,1645313874,0,5,0,'{\"login\":[1645313870,1645313871,1645313872,1645313873,1645313874]}'),(12136,'46.231.200.22','normal','',0,0,0,4,0,'{\"login\":[1645329042,1645988674,1646013826,1646021381]}'),(12137,'18.205.133.9','normal','',0,0,0,1,0,'{\"login\":[1645330357]}'),(12138,'66.249.93.53','normal','',0,0,0,0,17,'{\"nf\":[1645330881,1646581164,1647002855,1647441697,1647952750,1647973132,1648717978,1649692061,1649771599,1651514717,1652181975,1652262461,1656943298,1659022086,1659032558,1659422313,1663079014]}'),(12139,'85.86.90.80','normal','',0,0,0,3,0,'{\"login\":[1645331683,1645443842,1645918611]}'),(12140,'171.33.70.99','normal','',0,0,0,2,0,'{\"login\":[1645334982,1645354192]}'),(12141,'45.77.65.188','normal','',0,0,0,1,0,'{\"login\":[1645337018]}'),(12142,'165.0.4.119','normal','',0,0,0,0,0,'[]'),(12143,'3.224.181.66','normal','',0,0,0,2,0,'{\"login\":[1645338386,1645448198]}'),(12144,'114.119.147.87','normal','',0,0,0,0,0,'[]');
INSERT INTO `wp_defender_lockout` VALUES (12145,'188.127.231.190','normal','',0,0,0,42,0,'{\"login\":[1645340450,1645794402,1645817423,1646085142,1646277836,1646507958,1647317678,1647728678,1647787692,1649105247,1649228602,1651011884,1651384848,1651691628,1652845471,1653245559,1653314391,1653354559,1653410425,1654103929,1654182824,1655076364,1655737301,1656189324,1656565348,1656778044,1657411361,1657539649,1657635570,1658076564,1658257440,1658446747,1658577980,1658598260,1658823829,1659604133,1660493898,1660673369,1661153157,1661341583,1661372253,1662243772]}'),(12146,'3.25.30.128','normal','',0,0,0,1,0,'{\"login\":[1645341841]}'),(12147,'54.180.214.153','normal','',0,0,0,1,0,'{\"login\":[1645345991]}'),(12148,'107.150.36.77','normal','',0,0,0,4,0,'{\"login\":[1645347602,1645349905,1645424050,1645638704]}'),(12149,'45.129.182.235','normal','',0,0,0,1,0,'{\"login\":[1645348757]}'),(12150,'105.185.158.71','normal','',0,0,0,0,0,'[]'),(12151,'51.255.65.124','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1645352506,0,1645352206,0,20,'{\"nf\":[1645352192,1645352192,1645352193,1645352194,1645352195,1645352195,1645352196,1645352197,1645352197,1645352198,1645352199,1645352199,1645352200,1645352201,1645352201,1645352203,1645352204,1645352205,1645352205,1645352206]}'),(12152,'52.9.146.178','normal','',0,0,0,1,0,'{\"login\":[1645352871]}'),(12153,'74.91.17.85','normal','',0,0,0,1,0,'{\"login\":[1645353594]}'),(12154,'8.31.2.45','normal','',0,0,0,0,0,'[]'),(12155,'111.7.96.178','normal','',0,0,0,0,0,'[]'),(12156,'8.31.2.43','normal','',0,0,0,0,0,'[]'),(12157,'35.203.35.18','normal','',0,0,0,1,0,'{\"login\":[1645358806]}'),(12158,'49.12.204.208','normal','',0,0,0,1,0,'{\"login\":[1645360145]}'),(12159,'198.98.60.19','normal','',0,0,0,0,13,'{\"nf\":[1645363357,1645363360,1645363362,1645363366,1645363370,1645363374,1645363376,1645363378,1645363380,1645363384,1645363386,1645363389,1645363392]}'),(12160,'207.46.13.21','normal','',0,0,0,0,0,'[]'),(12161,'85.202.169.250','normal','',0,0,0,0,0,'[]'),(12162,'114.119.140.250','normal','',0,0,0,0,0,'[]'),(12163,'209.141.51.222','normal','',0,0,0,0,0,'[]'),(12164,'102.222.180.9','normal','',0,0,0,0,0,'[]'),(12165,'105.186.95.140','normal','',0,0,0,0,0,'[]'),(12166,'217.138.209.152','normal','',0,0,0,0,0,'[]'),(12167,'173.208.153.157','normal','',0,0,0,1,0,'{\"login\":[1645412675]}'),(12168,'205.185.120.173','normal','',0,0,0,1,1,'{\"nf\":[1645423584],\"login\":[1653293833]}'),(12169,'165.0.78.103','normal','',0,0,0,0,0,'[]'),(12170,'197.94.33.164','normal','',0,0,0,0,1,'{\"nf\":[1645432134]}'),(12171,'50.62.176.56','normal','',0,0,0,0,1,'{\"nf\":[1645436717]}'),(12172,'192.185.129.4','normal','',0,0,0,0,0,'[]'),(12173,'157.245.62.6','normal','',0,0,0,15,0,'{\"login\":[1645444561,1646628214,1646805263,1647764155,1648124583,1649083738,1650247149,1657450914,1657515747,1657697046,1657995353,1657997972,1658255453,1658412512,1658563541]}'),(12174,'18.189.129.232','normal','',0,0,0,1,0,'{\"login\":[1645445283]}'),(12175,'52.23.174.227','normal','',0,0,0,1,0,'{\"login\":[1645448922]}'),(12176,'34.201.146.92','normal','',0,0,0,1,0,'{\"login\":[1645449654]}'),(12177,'52.20.179.125','normal','',0,0,0,1,0,'{\"login\":[1645451132]}'),(12178,'68.183.75.82','normal','',0,0,0,28,0,'{\"login\":[1645453372,1646635418,1647360049,1648089757,1649703900,1652280015,1652286508,1652579378,1652677248,1652805511,1653051866,1654754655,1655144693,1657480557,1658258445,1658615059,1659019402,1659205630,1660517392,1661104917,1661212280,1661651839,1661679172,1661702938,1661724197,1661759407,1662380724,1662429970]}'),(12179,'82.221.105.39','normal','',0,0,0,0,0,'[]'),(12180,'114.119.149.252','normal','',0,0,0,0,0,'[]'),(12181,'92.204.54.126','normal','',0,0,0,0,1,'{\"nf\":[1645471368]}'),(12182,'54.189.101.219','normal','',0,0,0,0,0,'[]'),(12183,'185.220.101.57','normal','',0,0,0,0,1,'{\"nf\":[1645477405]}'),(12184,'77.88.5.55','normal','',0,0,0,0,0,'[]'),(12185,'212.192.241.18','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1645487483,0,1645487183,0,40,'{\"nf\":[1645487134,1645487145,1645487169,1645487170,1645487171,1645487172,1645487172,1645487173,1645487174,1645487174,1645487176,1645487177,1645487178,1645487178,1645487179,1645487180,1645487180,1645487181,1645487182,1645487183],\"login\":[]}'),(12186,'200.107.206.133','blocked','You have been locked out due to too many invalid login attempts.',1645505327,1645505027,0,5,0,'{\"login\":[1645505023,1645505024,1645505025,1645505026,1645505027]}'),(12187,'3.22.79.139','normal','',0,0,0,0,0,'[]'),(12188,'44.234.118.198','normal','',0,0,0,0,1,'{\"nf\":[1645516419]}'),(12189,'162.241.203.167','normal','',0,0,0,0,1,'{\"nf\":[1645516643]}'),(12190,'66.249.93.51','normal','',0,0,0,0,23,'{\"nf\":[1645526374,1645530792,1646146278,1646466988,1646722535,1647110726,1647411930,1647938942,1648288401,1649107218,1649240335,1649675915,1649920816,1649924860,1649943158,1650466858,1651073130,1651434233,1652176875,1652366960,1655875231,1657220037,1661268235]}'),(12191,'45.129.18.168','normal','',0,0,0,0,0,'[]'),(12192,'45.129.18.83','normal','',0,0,0,0,0,'[]'),(12193,'38.242.207.101','normal','',0,0,0,0,9,'{\"nf\":[1645553485,1645553488,1645553490,1645553491,1645553494,1645553496,1645553497,1645553498,1645553500]}'),(12194,'3.109.93.245','normal','',0,0,0,1,0,'{\"login\":[1645561519]}'),(12195,'101.227.1.198','normal','',0,0,0,0,0,'[]'),(12196,'34.237.32.224','normal','',0,0,0,1,0,'{\"login\":[1645570525]}'),(12197,'54.70.209.4','normal','',0,0,0,0,0,'[]'),(12198,'54.189.83.86','normal','',0,0,0,0,0,'[]'),(12199,'18.237.113.130','normal','',0,0,0,0,0,'[]'),(12200,'35.160.148.1','normal','',0,0,0,0,0,'[]'),(12201,'35.88.186.155','normal','',0,0,0,0,0,'[]'),(12202,'45.129.18.23','normal','',0,0,0,0,0,'[]'),(12203,'185.79.156.242','normal','',0,0,0,0,0,'[]'),(12204,'197.94.70.124','normal','',0,0,0,0,0,'[]'),(12205,'196.199.122.116','normal','',0,0,0,0,0,'[]'),(12206,'196.242.10.195','normal','',0,0,0,0,0,'[]'),(12207,'41.13.220.210','normal','',0,0,0,0,1,'{\"nf\":[1645605343]}'),(12208,'197.89.35.172','normal','',0,0,0,0,0,'[]'),(12209,'52.4.28.82','normal','',0,0,0,0,0,'[]'),(12210,'20.108.9.69','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1645628347,0,1645628047,0,33,'{\"nf\":[1645628352,1645628354,1645628357,1645628359,1645628363,1645628365,1645628367,1645628370,1645628373,1645628377,1645628379,1645628382,1645628383],\"login\":[]}'),(12211,'103.218.101.74','normal','',0,0,0,0,0,'[]'),(12212,'173.212.200.219','normal','',0,0,0,3,0,'{\"login\":[1645629644,1645722900,1646086420]}'),(12213,'69.197.154.22','normal','',0,0,0,1,0,'{\"login\":[1645635742]}'),(12214,'78.27.160.32','normal','',0,0,0,0,0,'[]'),(12215,'35.87.39.58','normal','',0,0,0,0,0,'[]'),(12216,'34.213.55.8','normal','',0,0,0,0,0,'[]'),(12217,'52.26.181.21','normal','',0,0,0,0,0,'[]'),(12218,'35.166.229.117','normal','',0,0,0,0,0,'[]'),(12219,'119.28.50.101','normal','',0,0,0,0,0,'[]'),(12220,'148.66.145.145','normal','',0,0,0,0,1,'{\"nf\":[1645667443]}'),(12221,'107.150.48.237','normal','',0,0,0,1,0,'{\"login\":[1645668165]}'),(12222,'77.88.5.30','normal','',0,0,0,0,0,'[]'),(12223,'114.119.151.165','normal','',0,0,0,0,0,'[]'),(12224,'105.225.176.96','normal','',0,0,0,0,0,'[]'),(12225,'41.71.40.23','normal','',0,0,0,0,0,'[]'),(12226,'92.205.3.88','normal','',0,0,0,0,0,'[]'),(12227,'196.26.90.105','normal','',0,0,0,0,1,'{\"nf\":[1645700637]}'),(12228,'45.118.145.52','normal','',0,0,0,1,0,'{\"login\":[1645703414]}'),(12229,'197.89.35.47','normal','',0,0,0,0,0,'[]'),(12230,'159.65.11.151','normal','',0,0,0,0,0,'[]'),(12231,'185.191.171.14','normal','',0,0,0,0,0,'[]'),(12232,'185.191.171.35','normal','',0,0,0,0,0,'[]'),(12233,'65.21.48.204','normal','',0,0,0,0,0,'[]'),(12234,'88.198.7.248','normal','',0,0,0,5,0,'{\"login\":[1645711462,1645738530,1646392712,1646683768,1646850011]}'),(12235,'103.147.92.77','normal','',0,0,0,11,0,'{\"login\":[1645715146,1651388843,1651404763,1652181798,1652224639,1652849512,1653588914,1653594595,1653600889,1653623181,1654494762]}'),(12236,'139.59.150.45','normal','',0,0,0,26,0,'{\"login\":[1645717745,1646303135,1650181711,1650423153,1651689070,1652918759,1653039535,1654733257,1655240612,1655386661,1655686215,1656018187,1656782630,1656795168,1658299079,1660199329,1660280352,1660357315,1660482814,1660514747,1661249284,1661253969,1661378519,1661648884,1661734340,1663059075]}'),(12237,'61.219.43.253','normal','',0,0,0,22,0,'{\"login\":[1645721764,1645970511,1646030961,1646281533,1646521650,1646554730,1654716616,1655883030,1657040193,1657075153,1657673345,1658100164,1659150517,1659278806,1659777432,1660213198,1660451165,1660766240,1661625751,1661708145,1661770503,1662736717]}'),(12238,'198.54.125.172','normal','',0,0,0,0,0,'[]'),(12239,'17.121.113.49','normal','',0,0,0,0,0,'[]'),(12240,'14.241.233.205','normal','',0,0,0,38,0,'{\"login\":[1645728294,1646087045,1648205595,1648573325,1649496502,1649961414,1650056232,1650174685,1650415230,1650463435,1650871482,1652577910,1652707219,1653484628,1653507835,1653588337,1654068234,1654598472,1654614940,1654798623,1655540411,1657047044,1657170641,1657429228,1657842375,1659378772,1659404055,1660139761,1660228176,1660480303,1661008859,1661304915,1661426749,1661662500,1661750934,1662261583,1662377944,1663039985]}'),(12241,'18.237.127.168','normal','',0,0,0,0,0,'[]'),(12242,'3.238.219.255','normal','',0,0,0,4,0,'{\"login\":[1645734805,1645828429,1645991437,1646044433]}'),(12243,'41.157.14.24','normal','',0,0,0,0,0,'[]'),(12244,'207.46.13.15','normal','',0,0,0,0,0,'[]'),(12245,'45.151.248.102','normal','',0,0,0,0,0,'[]'),(12246,'18.200.135.120','normal','',0,0,0,0,0,'[]'),(12247,'185.224.137.84','normal','',0,0,0,0,1,'{\"nf\":[1645744208]}'),(12248,'103.83.81.178','normal','',0,0,0,0,0,'[]'),(12249,'162.144.53.128','normal','',0,0,0,1,0,'{\"login\":[1648179040]}'),(12250,'109.74.196.231','normal','',0,0,0,26,0,'{\"login\":[1645749432,1646255631,1646995232,1647165805,1647182876,1647482889,1647649774,1647831664,1647863185,1647961905,1649021843,1649604821,1650384365,1650632967,1650641843,1651099270,1651120296,1651145405,1651187052,1652055030,1652308285,1652381888,1652564083,1652621955,1652741461,1652779392]}'),(12251,'89.46.109.154','normal','',0,0,0,0,0,'[]'),(12252,'43.241.70.75','normal','',0,0,0,22,0,'{\"login\":[1645750774,1646878514,1647122920,1647344839,1647570590,1647581957,1647784346,1648462586,1649237269,1649497044,1649576089,1649659247,1649787128,1650050296,1650388293,1650619558,1650696491,1651103812,1651251792,1651687791,1651719943,1651729192]}'),(12253,'145.239.19.14','normal','',0,0,0,0,0,'[]'),(12254,'52.40.149.155','normal','',0,0,0,0,2,'{\"nf\":[1645751218,1645800555]}'),(12255,'91.123.18.217','normal','',0,0,0,3,0,'{\"login\":[1661680544,1662242082,1663079633]}'),(12256,'178.170.48.115','normal','',0,0,0,0,0,'[]'),(12257,'139.162.29.46','normal','',0,0,0,0,0,'[]'),(12258,'78.142.47.248','normal','',0,0,0,0,0,'[]'),(12259,'124.126.204.108','normal','',0,0,0,0,0,'[]'),(12260,'54.36.148.92','normal','',0,0,0,0,0,'[]'),(12261,'192.145.239.51','normal','',0,0,0,0,0,'[]'),(12262,'92.60.224.50','normal','',0,0,0,16,0,'{\"login\":[1645761643,1645844306,1646009126,1646524994,1646601568,1646994349,1647683712,1647692014,1647715831,1647815240,1648144751,1648224707,1648627262,1648669504,1648709526,1649557854]}'),(12263,'173.208.153.158','normal','',0,0,0,0,0,'[]'),(12264,'198.54.125.100','normal','',0,0,0,0,0,'[]'),(12265,'45.76.81.26','normal','',0,0,0,6,0,'{\"login\":[1645765669,1645939678,1646972458,1647088933,1648247006,1648473706]}'),(12266,'41.13.196.67','normal','',0,0,0,0,0,'[]'),(12267,'194.233.75.42','normal','',0,0,0,2,0,'{\"login\":[1654067974,1654069490]}'),(12268,'159.89.207.135','normal','',0,0,0,44,0,'{\"login\":[1645770989,1645797199,1646230847,1646548795,1646809238,1646989962,1647315351,1647334193,1648407209,1648548598,1649254524,1649485225,1649580382,1649585558,1649973143,1650845485,1651405942,1651576595,1651721321,1652089393,1652406649,1652608857,1652897916,1652957451,1652972674,1653362497,1653630510,1653919336,1654636894,1655386044,1655398331,1655731783,1656126362,1656928701,1657235178,1657318418,1657647885,1659011751,1659566345,1660222696,1660937157,1662259336,1662345028,1662873460]}'),(12269,'51.124.243.172','normal','',0,0,0,0,0,'[]'),(12270,'198.54.120.31','normal','',0,0,0,0,0,'[]'),(12271,'46.101.225.134','normal','',0,0,0,0,0,'[]'),(12272,'81.169.218.161','normal','',0,0,0,0,0,'[]'),(12273,'34.87.44.101','normal','',0,0,0,0,0,'[]'),(12274,'136.144.236.180','normal','',0,0,0,0,0,'[]'),(12275,'141.94.23.37','normal','',0,0,0,0,0,'[]'),(12276,'114.119.133.192','normal','',0,0,0,0,0,'[]'),(12277,'104.199.7.30','normal','',0,0,0,0,0,'[]'),(12278,'47.104.70.199','normal','',0,0,0,0,0,'[]'),(12279,'8.130.175.77','normal','',0,0,0,1,0,'{\"login\":[1645784652]}'),(12280,'184.168.96.201','normal','',0,0,0,0,0,'[]'),(12281,'152.104.9.12','normal','',0,0,0,0,0,'[]'),(12282,'107.190.135.178','normal','',0,0,0,1,0,'{\"login\":[1650344148]}'),(12283,'205.185.122.184','normal','',0,0,0,0,0,'[]'),(12284,'195.251.213.240','normal','',0,0,0,0,0,'[]'),(12285,'210.122.36.218','normal','',0,0,0,15,0,'{\"login\":[1645801461,1645920507,1646512380,1646524644,1646564879,1646932264,1647300715,1647409715,1650523376,1651522344,1651973722,1652585209,1652854608,1653031943,1654205502]}'),(12286,'108.179.192.15','normal','',0,0,0,0,1,'{\"nf\":[1645805090]}'),(12287,'163.172.181.28','normal','',0,0,0,7,0,'{\"login\":[1645807004,1646513474,1646687813,1647820117,1649495961,1652647852,1653044138]}'),(12288,'17.121.114.149','normal','',0,0,0,0,0,'[]'),(12289,'107.189.13.79','normal','',0,0,0,0,1,'{\"nf\":[1645820960]}'),(12290,'185.220.101.72','normal','',0,0,0,0,1,'{\"nf\":[1645820966]}'),(12291,'93.95.228.205','normal','',0,0,0,0,1,'{\"nf\":[1645820967]}'),(12292,'185.220.101.179','normal','',0,0,0,0,1,'{\"nf\":[1645820971]}'),(12293,'23.128.248.36','normal','',0,0,0,0,1,'{\"nf\":[1645820975]}'),(12294,'18.236.126.162','normal','',0,0,0,0,0,'[]'),(12295,'89.247.144.29','normal','',0,0,0,1,0,'{\"login\":[1645827519]}'),(12296,'157.230.230.140','normal','',0,0,0,0,19,'{\"nf\":[1645827546,1645827556,1645827558,1645827562,1645827564,1645827568,1645827572,1645827575,1645827577,1645827579,1645827582,1645827585,1645827590,1645827597,1645827601,1645827690,1645827693,1645827696,1645827699]}'),(12297,'197.94.23.141','normal','',0,0,0,0,0,'[]'),(12298,'176.98.42.57','normal','',0,0,0,3,0,'{\"login\":[1645838677,1646032887,1646071954]}'),(12299,'192.99.15.33','normal','',0,0,0,0,0,'[]'),(12300,'44.200.127.7','normal','',0,0,0,0,1,'{\"nf\":[1645846577]}'),(12301,'20.204.35.171','normal','',0,0,0,2,0,'{\"login\":[1645847162,1645862563]}'),(12302,'54.37.137.227','normal','',0,0,0,19,0,'{\"login\":[1645852882,1645915749,1646262980,1646271171,1646278584,1646897288,1646902091,1646949454,1646988178,1647000531,1647055646,1647062847,1647168929,1647362175,1647442940,1647497298,1647926296,1648111588,1648486740]}'),(12303,'114.119.147.86','normal','',0,0,0,0,0,'[]'),(12304,'150.109.148.216','normal','',0,0,0,42,0,'{\"login\":[1645855782,1646434633,1646523529,1646534021,1646822024,1647004956,1647058539,1647069972,1647229079,1647919064,1648066866,1648406391,1648478415,1648672598,1649752605,1650043371,1650258080,1650996043,1651090194,1651255249,1651739806,1652815874,1652958137,1653515744,1654770384,1656024699,1656313690,1656770811,1657646036,1657653144,1658054279,1659365859,1660006207,1660302502,1660595497,1661621686,1661672201,1661768469,1662125643,1662260461,1662563868,1663030151]}'),(12305,'134.209.150.124','normal','',0,0,0,1,0,'{\"login\":[1645863545]}'),(12306,'3.137.183.217','normal','',0,0,0,0,0,'[]'),(12307,'102.39.45.221','normal','',0,0,0,0,0,'[]'),(12308,'95.216.187.132','normal','',0,0,0,0,0,'[]'),(12309,'54.36.148.240','normal','',0,0,0,0,0,'[]'),(12310,'81.88.52.210','normal','',0,0,0,37,0,'{\"login\":[1645901661,1645984020,1646927401,1647632722,1648453898,1648466739,1648498267,1648634634,1648737362,1649029890,1649075035,1649099777,1649515351,1649531151,1650314817,1650391883,1650403104,1650465659,1650597099,1650615959,1650706796,1651032720,1651134085,1651299163,1651421762,1651423642,1651486304,1651965764,1651988317,1652735061,1652991120,1653454505,1653755906,1654239947,1654308069,1654928070,1655780116]}'),(12311,'157.245.166.225','normal','',0,0,0,0,2,'{\"nf\":[1645903357,1645903384]}'),(12312,'34.221.25.229','normal','',0,0,0,0,0,'[]'),(12313,'54.191.38.6','normal','',0,0,0,0,0,'[]'),(12314,'54.190.244.45','normal','',0,0,0,0,0,'[]'),(12315,'34.219.232.166','normal','',0,0,0,0,0,'[]'),(12316,'165.22.68.62','normal','',0,0,0,1,0,'{\"login\":[1645908271]}'),(12317,'47.98.152.210','normal','',0,0,0,3,0,'{\"login\":[1648159546,1650225996,1650241949]}'),(12318,'167.99.64.161','normal','',0,0,0,0,0,'[]'),(12319,'47.106.111.232','normal','',0,0,0,6,0,'{\"login\":[1645914806,1646713967,1647355684,1647364012,1647671423,1647802312]}'),(12320,'178.128.248.162','normal','',0,0,0,1,0,'{\"login\":[1653813746]}'),(12321,'77.245.154.222','normal','',0,0,0,0,1,'{\"nf\":[1645918990]}'),(12322,'188.165.22.116','normal','',0,0,0,0,0,'[]'),(12323,'124.150.139.182','normal','',0,0,0,0,0,'[]'),(12324,'157.55.39.202','normal','',0,0,0,0,0,'[]'),(12325,'176.31.116.73','normal','',0,0,0,1,0,'{\"login\":[1653807545]}'),(12326,'155.159.70.201','normal','',0,0,0,0,0,'[]'),(12327,'92.255.108.95','normal','',0,0,0,7,0,'{\"login\":[1645925264,1645935874,1645944172,1646057837,1646917586,1646975064,1647032635]}'),(12328,'103.93.16.222','normal','',0,0,0,0,0,'[]'),(12329,'192.254.152.23','normal','',0,0,0,0,0,'[]'),(12330,'185.187.81.246','normal','',0,0,0,0,0,'[]'),(12331,'138.197.187.231','normal','',0,0,0,0,0,'[]'),(12332,'103.28.114.35','normal','',0,0,0,9,0,'{\"login\":[1645936856,1646276337,1646421461,1646457101,1646569990,1646991721,1647496226,1647799109,1647927498]}'),(12333,'62.182.157.251','normal','',0,0,0,0,0,'[]'),(12334,'184.168.113.14','normal','',0,0,0,0,0,'[]'),(12335,'35.238.54.156','normal','',0,0,0,7,0,'{\"login\":[1645945051,1646889093,1647228167,1647466398,1648304272,1651700674,1652344656]}'),(12336,'159.65.251.222','normal','',0,0,0,1,0,'{\"login\":[1650165668]}'),(12337,'205.164.6.107','normal','',0,0,0,0,1,'{\"nf\":[1645948113]}'),(12338,'178.128.187.183','normal','',0,0,0,35,0,'{\"login\":[1645948578,1647051257,1647141770,1647477320,1648126993,1650421059,1650427506,1651035164,1651265563,1652119540,1652421459,1652660125,1652762782,1653310412,1653357867,1653631182,1654243397,1654307412,1654390656,1654498391,1654554126,1654735655,1655036344,1655473572,1656424133,1657343076,1657585198,1657708330,1658754125,1659986898,1660074553,1660372339,1660697341,1661635334,1662161739]}'),(12339,'51.255.64.58','normal','',0,0,0,1,0,'{\"login\":[1650135444]}'),(12340,'185.81.154.85','normal','',0,0,0,2,0,'{\"login\":[1645953005,1646056882]}'),(12341,'177.52.160.200','normal','',0,0,0,0,0,'[]'),(12342,'159.89.85.183','normal','',0,0,0,1,0,'{\"login\":[1650127970]}'),(12343,'23.111.151.251','normal','',0,0,0,2,0,'{\"login\":[1645959232,1646312485]}'),(12344,'165.73.242.86','normal','',0,0,0,0,0,'[]'),(12345,'81.4.124.140','normal','',0,0,0,0,2,'{\"nf\":[1645960274,1645960278]}'),(12346,'185.27.99.122','normal','',0,0,0,0,1,'{\"nf\":[1645962560]}'),(12347,'185.27.99.138','normal','',0,0,0,0,1,'{\"nf\":[1645962560]}'),(12348,'185.27.99.124','normal','',0,0,0,0,0,'[]'),(12349,'159.138.150.148','normal','',0,0,0,4,0,'{\"login\":[1645963715,1646062556,1646841792,1646982901]}'),(12350,'160.153.178.124','normal','',0,0,0,0,1,'{\"nf\":[1645964824]}'),(12351,'89.247.144.67','normal','',0,0,0,0,0,'[]'),(12352,'103.93.16.133','normal','',0,0,0,0,0,'[]'),(12353,'148.72.203.102','normal','',0,0,0,0,0,'[]'),(12354,'44.201.42.239','normal','',0,0,0,0,1,'{\"nf\":[1645976588]}'),(12355,'64.227.38.55','normal','',0,0,0,4,0,'{\"login\":[1645980256,1646761343,1648158077,1648275605]}'),(12356,'90.84.188.49','normal','',0,0,0,8,0,'{\"login\":[1645982144,1646236153,1646259294,1646307790,1646722742,1647131210,1647471823,1647578184]}'),(12357,'20.205.14.150','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1645994975,0,1645994675,0,20,'{\"nf\":[1645994629,1645994633,1645994636,1645994640,1645994642,1645994644,1645994646,1645994647,1645994651,1645994653,1645994655,1645994659,1645994660,1645994662,1645994664,1645994665,1645994668,1645994669,1645994672,1645994675]}'),(12358,'17.121.113.92','normal','',0,0,0,0,0,'[]'),(12359,'35.87.126.192','normal','',0,0,0,0,0,'[]'),(12360,'5.101.113.58','normal','',0,0,0,5,0,'{\"login\":[1645994226,1646233883,1646237640,1646564035,1646733116]}'),(12361,'209.97.151.249','normal','',0,0,0,31,0,'{\"login\":[1646005380,1646287376,1646433189,1647086002,1647811992,1649767667,1650049379,1650452723,1650557109,1650709659,1650972617,1652589555,1652798398,1652924423,1652967773,1653344746,1654293774,1657253629,1657322159,1657437518,1657577915,1658415896,1658517397,1658657423,1660232161,1660310037,1660682252,1660735014,1661281041,1661322170,1661343454]}'),(12362,'82.223.13.85','normal','',0,0,0,0,1,'{\"nf\":[1646007666]}'),(12363,'193.93.68.240','normal','',0,0,0,2,0,'{\"login\":[1646010068,1646054002]}'),(12364,'89.248.174.178','normal','',0,0,0,0,6,'{\"nf\":[1646011201,1646011203,1649099645,1649099646,1649099650,1649099650]}'),(12365,'111.231.200.129','normal','',0,0,0,20,0,'{\"login\":[1646011949,1646436867,1647216325,1647727684,1648294079,1649474605,1649491122,1649556102,1650434411,1650627137,1650651639,1651325901,1654048646,1654357679,1655779664,1656772109,1656926903,1659076812,1659399929,1662082116]}'),(12366,'185.220.101.166','normal','',0,0,0,0,1,'{\"nf\":[1646014392]}'),(12367,'8.136.214.101','normal','',0,0,0,6,0,'{\"login\":[1646025201,1646107201,1647779472,1647800710,1648221240,1649027237]}'),(12368,'45.76.186.243','normal','',0,0,0,0,0,'[]'),(12369,'3.66.75.129','normal','',0,0,0,0,0,'[]'),(12370,'185.2.5.31','normal','',0,0,0,51,0,'{\"login\":[1646034780,1646291798,1647008546,1647405448,1647574427,1648229863,1648600720,1649760105,1649807439,1650436680,1650543780,1650970210,1651165796,1651196430,1651200578,1651292318,1652558311,1652668362,1652812159,1653049038,1653487381,1653805639,1653915519,1654051004,1654288608,1654726668,1655229049,1655253204,1655401285,1656745977,1656873008,1657251351,1658254447,1658258938,1658265568,1658394748,1658596314,1658639179,1659798583,1659802168,1659838309,1660289872,1660396984,1660677918,1660978144,1661225531,1661412728,1661618900,1662165808,1662198849,1662205361]}'),(12371,'5.189.165.61','normal','',0,0,0,1,0,'{\"login\":[1646035728]}'),(12372,'102.39.60.19','normal','',0,0,0,0,0,'[]'),(12373,'105.184.208.197','normal','',0,0,0,0,0,'[]'),(12374,'172.104.53.84','normal','',0,0,0,0,1,'{\"nf\":[1646436633]}'),(12375,'147.135.255.8','normal','',0,0,0,63,0,'{\"login\":[1646053041,1646310131,1646527020,1646582525,1646797874,1646979389,1647049802,1647219040,1647384590,1647676548,1647704928,1648108074,1649198629,1649756349,1649812319,1649960681,1650460965,1650475491,1650506901,1651029928,1651050045,1651135020,1651382762,1651698097,1652735769,1652777234,1652912484,1653613180,1654173110,1654222800,1654271498,1654301518,1655401872,1655417288,1655424547,1655611607,1655910200,1656829430,1657126754,1657322786,1657445743,1657483485,1657502214,1657559158,1657745003,1657765706,1658088865,1658670464,1658701289,1659978049,1660068594,1660122355,1660420498,1661231321,1661278412,1661539362,1661657292,1661695121,1662379784,1662418772,1662677388,1662902676,1662972103]}'),(12376,'5.134.13.233','normal','',0,0,0,0,1,'{\"nf\":[1646055743]}'),(12377,'35.154.187.72','normal','',0,0,0,1,0,'{\"login\":[1646058793]}'),(12378,'114.119.132.218','normal','',0,0,0,0,0,'[]'),(12379,'211.149.219.47','normal','',0,0,0,20,0,'{\"login\":[1646067266,1646303929,1646946569,1647389037,1649817255,1650482055,1652521955,1652942039,1652994130,1653003136,1653267743,1653268399,1653317094,1653426426,1655896092,1656874527,1658087121,1658463808,1658831655,1659977355]}'),(12380,'188.64.138.30','normal','',0,0,0,10,0,'{\"login\":[1646075688,1646417859,1646514588,1646522417,1646637628,1646655334,1647462100,1647644722,1647767188,1648551097]}'),(12381,'54.188.40.180','normal','',0,0,0,0,0,'[]'),(12382,'188.127.225.100','normal','',0,0,0,0,1,'{\"nf\":[1646091555]}'),(12383,'3.214.8.202','normal','',0,0,0,1,0,'{\"login\":[1646092042]}'),(12384,'176.119.210.235','normal','',0,0,0,2,0,'{\"login\":[1646097662,1646201068]}'),(12385,'102.39.250.153','normal','',0,0,0,0,2,'{\"nf\":[1646099549,1646099649]}'),(12386,'80.179.142.80','normal','',0,0,0,7,0,'{\"login\":[1646102367,1646956242,1647094919,1647348877,1647370146,1647509447,1647807125]}'),(12387,'139.28.38.45','normal','',0,0,0,0,1,'{\"nf\":[1646104146]}'),(12388,'94.26.228.136','normal','',0,0,0,0,4,'{\"nf\":[1646107829,1657196403,1657453260,1657700347]}'),(12389,'17.121.113.61','normal','',0,0,0,0,0,'[]'),(12390,'17.121.112.82','normal','',0,0,0,0,1,'{\"nf\":[1646112317]}'),(12391,'102.65.60.15','normal','',0,0,0,0,1,'{\"nf\":[1646117011]}'),(12392,'20.83.190.39','normal','',0,0,0,0,2,'{\"nf\":[1646120049,1646896317]}'),(12393,'197.89.19.121','normal','',0,0,0,0,2,'{\"nf\":[1646120259,1646120264]}'),(12394,'159.223.30.253','normal','',0,0,0,0,11,'{\"nf\":[1646125253,1646125254,1646125256,1646125256,1646125257,1646125258,1646125258,1646125259,1646125260,1646125260,1646125262]}'),(12395,'85.214.205.77','normal','',0,0,0,1,0,'{\"login\":[1646126151]}'),(12396,'172.107.94.154','normal','',0,0,0,0,2,'{\"nf\":[1646127289,1646127291]}'),(12397,'135.181.113.34','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1646129731,0,1646129431,0,39,'{\"nf\":[1646128626,1646128627,1646128644,1646128672,1646128674,1646128696,1646128719,1646128724,1646128734,1646128738,1646128751,1646128768,1646128785,1646128802,1646128807,1646128814,1646128817,1646128881,1646128896,1646129250,1646129255,1646129260,1646129261,1646129264,1646129278,1646129278,1646129287,1646129294,1646129298,1646129302,1646129351,1646129353,1646129369,1646129371,1646129372,1646129373,1646129389,1646129409,1646129431]}'),(12398,'54.36.148.235','normal','',0,0,0,0,0,'[]'),(12399,'34.76.249.212','normal','',0,0,0,1,0,'{\"login\":[1646135394]}'),(12400,'68.183.95.191','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1646135928,0,1646135628,0,20,'{\"nf\":[1646135585,1646135586,1646135588,1646135589,1646135591,1646135592,1646135604,1646135607,1646135608,1646135610,1646135613,1646135615,1646135618,1646135619,1646135621,1646135622,1646135624,1646135625,1646135627,1646135628]}'),(12401,'40.77.188.153','normal','',0,0,0,0,0,'[]'),(12402,'197.221.188.201','normal','',0,0,0,0,2,'{\"nf\":[1646139426,1646145098]}'),(12403,'128.199.144.234','normal','',0,0,0,1,0,'{\"login\":[1646141605]}'),(12404,'41.169.80.41','normal','',0,0,0,0,2,'{\"nf\":[1646142262,1646142264]}'),(12405,'193.202.110.27','normal','',0,0,0,0,1,'{\"nf\":[1646148279]}'),(12406,'203.151.66.207','normal','',0,0,0,2,0,'{\"login\":[1646154690,1651460172]}'),(12407,'45.122.220.15','normal','',0,0,0,4,0,'{\"login\":[1646843770,1647294543,1648437604,1649064521]}'),(12408,'114.119.147.184','normal','',0,0,0,0,0,'[]'),(12409,'18.237.152.136','normal','',0,0,0,0,0,'[]'),(12410,'44.234.119.24','normal','',0,0,0,0,0,'[]'),(12411,'54.70.109.23','normal','',0,0,0,0,0,'[]'),(12412,'34.73.162.22','normal','',0,0,0,0,0,'[]'),(12413,'192.162.14.37','normal','',0,0,0,0,0,'[]'),(12414,'178.18.140.79','normal','',0,0,0,0,0,'[]'),(12415,'103.72.165.35','normal','',0,0,0,0,0,'[]'),(12416,'82.207.175.52','normal','',0,0,0,0,0,'[]'),(12417,'92.249.44.106','normal','',0,0,0,0,1,'{\"nf\":[1646177619]}'),(12418,'92.249.44.114','normal','',0,0,0,0,1,'{\"nf\":[1646177621]}'),(12419,'43.231.112.119','normal','',0,0,0,0,0,'[]'),(12420,'198.199.76.62','normal','',0,0,0,2,0,'{\"login\":[1646181016,1646694045]}'),(12421,'190.106.130.31','normal','',0,0,0,0,0,'[]'),(12422,'148.72.70.58','normal','',0,0,0,0,0,'[]'),(12423,'157.245.147.254','normal','',0,0,0,0,0,'[]'),(12424,'54.64.41.22','normal','',0,0,0,1,0,'{\"login\":[1646187670]}'),(12425,'72.167.190.83','normal','',0,0,0,0,1,'{\"nf\":[1646190079]}'),(12426,'186.234.80.138','normal','',0,0,0,0,0,'[]'),(12427,'184.168.100.205','normal','',0,0,0,0,0,'[]'),(12428,'109.70.100.79','normal','',0,0,0,0,9,'{\"nf\":[1646192347,1646192349,1646192352,1646192354,1646192356,1646192358,1646192360,1646192362,1646192363]}'),(12429,'199.249.230.166','normal','',0,0,0,0,1,'{\"nf\":[1646192375]}'),(12430,'198.98.57.191','normal','',0,0,0,0,1,'{\"nf\":[1646192377]}'),(12431,'85.195.206.200','normal','',0,0,0,0,10,'{\"nf\":[1646192378,1646192380,1646192382,1646192384,1646192386,1646192388,1646192390,1646192392,1646192394,1646192397]}'),(12432,'192.185.83.71','normal','',0,0,0,0,0,'[]'),(12433,'184.168.115.185','normal','',0,0,0,0,0,'[]'),(12434,'85.214.91.8','normal','',0,0,0,2,0,'{\"login\":[1654524240,1654528350]}'),(12435,'114.119.136.120','normal','',0,0,0,0,0,'[]'),(12436,'162.0.209.35','normal','',0,0,0,0,0,'[]'),(12437,'162.0.217.39','normal','',0,0,0,0,0,'[]'),(12438,'128.199.246.47','normal','',0,0,0,0,0,'[]'),(12439,'192.227.156.26','normal','',0,0,0,0,2,'{\"nf\":[1646204103,1654677636]}'),(12440,'34.176.50.114','normal','',0,0,0,0,0,'[]'),(12441,'129.226.179.94','normal','',0,0,0,0,0,'[]'),(12442,'164.132.56.207','normal','',0,0,0,0,0,'[]'),(12443,'162.0.222.102','normal','',0,0,0,0,0,'[]'),(12444,'185.74.252.12','normal','',0,0,0,0,0,'[]'),(12445,'102.65.160.229','normal','',0,0,0,0,0,'[]'),(12446,'162.0.239.18','normal','',0,0,0,0,0,'[]'),(12447,'79.137.141.196','normal','',0,0,0,0,0,'[]'),(12448,'185.141.133.156','normal','',0,0,0,0,0,'[]'),(12449,'51.81.0.61','normal','',0,0,0,0,0,'[]'),(12450,'103.171.180.165','normal','',0,0,0,0,0,'[]'),(12451,'107.180.108.16','normal','',0,0,0,0,3,'{\"nf\":[1646220294,1646457104,1646457108]}'),(12452,'165.73.124.225','normal','',0,0,0,0,0,'[]'),(12453,'103.130.214.141','normal','',0,0,0,1,0,'{\"login\":[1650137423]}'),(12454,'196.15.243.46','normal','',0,0,0,0,0,'[]'),(12455,'162.144.49.214','normal','',0,0,0,0,0,'[]'),(12456,'113.61.8.84','normal','',0,0,0,0,0,'[]'),(12457,'47.114.32.24','normal','',0,0,0,0,0,'[]'),(12458,'165.232.140.45','normal','',0,0,0,0,0,'[]'),(12459,'178.62.19.232','normal','',0,0,0,8,0,'{\"login\":[1652233053,1652235997,1652833692,1652843391,1653553667,1653573205,1653578212,1653596173]}'),(12460,'50.87.233.200','normal','',0,0,0,0,1,'{\"nf\":[1646236174]}'),(12461,'34.209.125.167','normal','',0,0,0,0,0,'[]'),(12462,'177.153.50.81','normal','',0,0,0,14,0,'{\"login\":[1646239117,1646257084,1646497965,1647296871,1647329969,1647372188,1647489654,1647619399,1648110420,1648134334,1648166469,1649103105,1650442827,1654107566]}'),(12463,'161.35.217.201','normal','',0,0,0,0,11,'{\"nf\":[1646243806,1646243807,1646243807,1646243808,1646243809,1646243809,1646243810,1646243810,1646243811,1646243812,1646243812]}'),(12464,'52.25.190.177','normal','',0,0,0,0,0,'[]'),(12465,'17.121.114.205','normal','',0,0,0,0,0,'[]'),(12466,'173.252.127.16','normal','',0,0,0,0,0,'[]'),(12467,'31.13.127.37','normal','',0,0,0,0,0,'[]'),(12468,'31.13.127.21','normal','',0,0,0,0,0,'[]'),(12469,'185.23.130.9','normal','',0,0,0,23,0,'{\"login\":[1646283707,1646533140,1646873647,1647034037,1647111267,1647194690,1647734681,1647770238,1647855006,1649697096,1649766576,1649810487,1650255712,1650256190,1650393626,1650663436,1650714266,1651003526,1651418049,1652021432,1652030419,1652051731,1652907615]}'),(12470,'41.114.216.77','normal','',0,0,0,0,0,'[]'),(12471,'197.168.147.128','normal','',0,0,0,0,0,'[]'),(12472,'45.13.252.4','normal','',0,0,0,0,1,'{\"nf\":[1646292786]}'),(12473,'64.246.165.190','normal','',0,0,0,0,0,'[]'),(12474,'197.101.120.77','normal','',0,0,0,0,0,'[]'),(12475,'17.121.112.147','normal','',0,0,0,0,0,'[]'),(12476,'82.165.82.153','normal','',0,0,0,0,0,'[]'),(12477,'85.128.143.160','normal','',0,0,0,2,0,'{\"login\":[1646339571,1646361152]}'),(12478,'35.86.151.242','normal','',0,0,0,0,0,'[]'),(12479,'114.119.131.92','normal','',0,0,0,0,0,'[]'),(12480,'173.249.8.176','normal','',0,0,0,2,0,'{\"login\":[1646352426,1646715427]}'),(12481,'128.199.221.125','normal','',0,0,0,32,0,'{\"login\":[1646365555,1648140324,1648152050,1648176625,1651413515,1651440254,1652195444,1652819888,1652824870,1652844215,1652848055,1653547583,1653570969,1653572164,1653577153,1655302999,1655352110,1656745136,1656747707,1656814699,1657433634,1657455106,1657472066,1657512845,1657731012,1657834756,1659402669,1661761311,1661771818,1661779707,1661787990,1661798622]}'),(12482,'173.82.52.26','normal','',0,0,0,6,0,'{\"login\":[1646369797,1646711179,1647303389,1647310521,1649018621,1650197062]}'),(12483,'172.104.44.126','normal','',0,0,0,0,2,'{\"nf\":[1646373765,1646373804]}'),(12484,'190.92.137.177','normal','',0,0,0,0,0,'[]'),(12485,'13.67.90.144','normal','',0,0,0,2,0,'{\"login\":[1646378954,1646855136]}'),(12486,'167.172.67.151','normal','',0,0,0,1,0,'{\"login\":[1662212238]}'),(12487,'92.204.219.117','normal','',0,0,0,0,0,'[]'),(12488,'221.121.145.99','normal','',0,0,0,0,0,'[]'),(12489,'172.104.177.216','normal','',0,0,0,0,0,'[]'),(12490,'50.87.224.250','normal','',0,0,0,0,1,'{\"nf\":[1646383884]}'),(12491,'159.203.28.44','normal','',0,0,0,0,0,'[]'),(12492,'198.54.120.101','normal','',0,0,0,0,0,'[]'),(12493,'47.96.27.235','normal','',0,0,0,1,0,'{\"login\":[1650127496]}'),(12494,'96.125.162.216','normal','',0,0,0,0,0,'[]'),(12495,'208.109.78.180','normal','',0,0,0,0,0,'[]'),(12496,'47.118.60.160','normal','',0,0,0,0,0,'[]'),(12497,'171.244.17.110','normal','',0,0,0,3,0,'{\"login\":[1654007371,1654518957,1662139702]}'),(12498,'171.22.25.70','normal','',0,0,0,0,0,'[]'),(12499,'68.178.222.143','normal','',0,0,0,0,0,'[]'),(12500,'128.199.14.231','normal','',0,0,0,0,0,'[]'),(12501,'45.13.252.51','normal','',0,0,0,0,1,'{\"nf\":[1646396249]}'),(12502,'199.192.22.72','normal','',0,0,0,1,0,'{\"login\":[1657105306]}'),(12503,'217.71.202.243','normal','',0,0,0,0,0,'[]'),(12504,'185.182.56.217','normal','',0,0,0,0,0,'[]'),(12505,'162.0.232.160','normal','',0,0,0,0,0,'[]'),(12506,'213.136.69.132','normal','',0,0,0,0,0,'[]'),(12507,'68.65.122.102','normal','',0,0,0,0,0,'[]'),(12508,'208.109.75.124','normal','',0,0,0,1,0,'{\"login\":[1650164967]}'),(12509,'143.198.93.60','normal','',0,0,0,0,0,'[]'),(12510,'128.199.187.163','normal','',0,0,0,0,0,'[]'),(12511,'51.91.12.144','normal','',0,0,0,0,0,'[]'),(12512,'138.197.195.94','normal','',0,0,0,0,0,'[]'),(12513,'91.214.64.2','normal','',0,0,0,0,0,'[]'),(12514,'137.59.109.212','normal','',0,0,0,0,0,'[]'),(12515,'124.217.226.56','normal','',0,0,0,4,0,'{\"login\":[1650362290,1653996137,1661691182,1662069824]}'),(12516,'108.160.136.225','normal','',0,0,0,0,0,'[]'),(12517,'193.26.13.70','normal','',0,0,0,0,0,'[]'),(12518,'50.28.1.193','normal','',0,0,0,0,0,'[]'),(12519,'198.54.114.125','normal','',0,0,0,0,0,'[]'),(12520,'66.29.132.2','normal','',0,0,0,1,0,'{\"login\":[1650298722]}'),(12521,'107.180.119.177','normal','',0,0,0,0,0,'[]'),(12522,'88.99.56.55','normal','',0,0,0,0,0,'[]'),(12523,'198.54.114.95','normal','',0,0,0,0,0,'[]'),(12524,'35.202.241.36','normal','',0,0,0,3,0,'{\"login\":[1650170437,1657115496,1661084208]}'),(12525,'207.148.121.183','normal','',0,0,0,0,0,'[]'),(12526,'13.65.113.166','normal','',0,0,0,0,1,'{\"nf\":[1646419331]}'),(12527,'185.185.83.240','normal','',0,0,0,0,0,'[]'),(12528,'165.22.89.6','normal','',0,0,0,0,0,'[]'),(12529,'74.208.252.140','normal','',0,0,0,1,0,'{\"login\":[1650302718]}'),(12530,'106.53.82.40','normal','',0,0,0,0,0,'[]'),(12531,'35.161.67.190','normal','',0,0,0,0,0,'[]'),(12532,'34.219.65.193','normal','',0,0,0,0,0,'[]'),(12533,'34.220.203.209','normal','',0,0,0,0,0,'[]'),(12534,'92.205.14.232','normal','',0,0,0,0,0,'[]'),(12535,'65.52.200.48','normal','',0,0,0,34,0,'{\"login\":[1646432078,1646657618,1646992594,1647407573,1647435769,1648252058,1650444029,1650448141,1650621966,1651149195,1651517057,1651706477,1652089103,1652283951,1652285239,1652565527,1652727967,1652915259,1653303222,1653903198,1654343034,1654510631,1654784320,1654862614,1654901878,1656246037,1657226818,1657330972,1657342435,1657748163,1658220713,1658488985,1659589151,1662103011]}'),(12536,'31.172.65.104','normal','',0,0,0,1,0,'{\"login\":[1646435401]}'),(12537,'114.119.144.84','normal','',0,0,0,0,0,'[]'),(12538,'95.173.160.160','normal','',0,0,0,0,5,'{\"nf\":[1646442077,1647038566,1647666688,1648252390,1648890243]}'),(12539,'54.247.12.151','normal','',0,0,0,0,0,'[]'),(12540,'172.241.26.86','blocked','You have been locked out due to too many invalid login attempts.',1646446369,1646446069,0,5,0,'{\"login\":[1646446066,1646446067,1646446068,1646446068,1646446069]}'),(12541,'162.144.87.29','normal','',0,0,0,46,0,'{\"login\":[1646448100,1646520539,1646974199,1647432221,1647666296,1648060159,1648168176,1648202198,1648542072,1648706266,1649478291,1649763328,1650424906,1650951824,1650955395,1651155912,1651267291,1652593813,1652648729,1652770029,1653276232,1653311742,1653500592,1653533158,1653536461,1653632521,1654166061,1654375516,1654388226,1654412359,1654508818,1654517898,1656813123,1656927804,1657142911,1657538254,1657996228,1658339018,1659584853,1660129221,1660174595,1660186494,1660743342,1661007612,1662169908,1663047438]}'),(12542,'147.182.135.171','normal','',0,0,0,0,0,'[]'),(12543,'176.107.179.158','normal','',0,0,0,0,1,'{\"nf\":[1646449496]}'),(12544,'136.243.156.150','normal','',0,0,0,0,0,'[]'),(12545,'68.178.246.186','normal','',0,0,0,0,0,'[]'),(12546,'162.241.156.147','normal','',0,0,0,0,0,'[]'),(12547,'121.89.213.51','normal','',0,0,0,0,0,'[]'),(12548,'151.13.210.2','normal','',0,0,0,0,0,'[]'),(12549,'144.76.40.222','normal','',0,0,0,0,0,'[]'),(12550,'103.212.43.29','normal','',0,0,0,21,0,'{\"login\":[1646457862,1646552185,1646801718,1646858484,1647681672,1647723717,1647769223,1648685762,1649582965,1650434956,1650467098,1651060137,1652439286,1652572046,1652823276,1653042595,1653192064,1653340208,1653404075,1653416679,1653906952]}'),(12551,'41.204.202.51','normal','',0,0,0,0,0,'[]'),(12552,'72.167.67.229','normal','',0,0,0,0,0,'[]'),(12553,'103.101.162.249','normal','',0,0,0,1,0,'{\"login\":[1654527894]}'),(12554,'68.65.121.212','normal','',0,0,0,0,0,'[]'),(12555,'194.59.170.5','normal','',0,0,0,0,0,'[]'),(12556,'44.200.8.162','normal','',0,0,0,0,0,'[]'),(12557,'167.94.138.63','normal','',0,0,0,0,0,'[]'),(12558,'102.65.15.43','normal','',0,0,0,0,0,'[]'),(12559,'162.241.244.16','normal','',0,0,0,0,0,'[]'),(12560,'64.37.52.95','normal','',0,0,0,1,0,'{\"login\":[1650162782]}'),(12561,'51.79.241.19','normal','',0,0,0,2,0,'{\"login\":[1653980830,1654002553]}'),(12562,'34.135.148.51','normal','',0,0,0,0,0,'[]'),(12563,'94.138.200.41','normal','',0,0,0,0,2,'{\"nf\":[1646498069,1646524377]}'),(12564,'36.94.60.251','normal','',0,0,0,1,0,'{\"login\":[1653978329]}'),(12565,'134.208.2.204','normal','',0,0,0,3,0,'{\"login\":[1646500230,1647138584,1647684738]}'),(12566,'173.201.188.91','normal','',0,0,0,0,0,'[]'),(12567,'185.141.134.48','normal','',0,0,0,1,0,'{\"login\":[1646501682]}'),(12568,'162.214.190.255','normal','',0,0,0,0,0,'[]'),(12569,'218.38.137.175','normal','',0,0,0,0,0,'[]'),(12570,'132.148.198.216','normal','',0,0,0,0,0,'[]'),(12571,'77.111.247.30','normal','',0,0,0,0,1,'{\"nf\":[1646509865]}'),(12572,'77.111.247.183','normal','',0,0,0,0,1,'{\"nf\":[1646509865]}'),(12573,'35.88.152.10','normal','',0,0,0,0,0,'[]'),(12574,'114.119.138.205','normal','',0,0,0,0,0,'[]'),(12575,'62.210.113.119','normal','',0,0,0,0,3,'{\"nf\":[1646527456,1646527485,1663119825]}'),(12576,'192.154.230.32','normal','',0,0,0,0,1,'{\"nf\":[1646530480]}'),(12577,'92.205.9.251','normal','',0,0,0,0,0,'[]'),(12578,'162.0.232.211','normal','',0,0,0,0,0,'[]'),(12579,'208.109.72.154','normal','',0,0,0,0,0,'[]'),(12580,'185.146.21.52','normal','',0,0,0,0,0,'[]'),(12581,'185.191.171.19','normal','',0,0,0,0,0,'[]'),(12582,'66.29.141.38','normal','',0,0,0,0,0,'[]'),(12583,'44.192.9.20','normal','',0,0,0,3,0,'{\"login\":[1646558959,1646613968,1646652092]}'),(12584,'13.78.196.99','normal','',0,0,0,0,2,'{\"nf\":[1646559693,1646676744]}'),(12585,'135.148.138.180','normal','',0,0,0,1,0,'{\"login\":[1650128368]}'),(12586,'37.115.144.99','normal','',0,0,0,0,2,'{\"nf\":[1646563365,1646563366]}'),(12587,'109.233.192.83','normal','',0,0,0,3,0,'{\"login\":[1657112718,1662153849,1662237027]}'),(12588,'66.29.132.12','normal','',0,0,0,0,0,'[]'),(12589,'116.62.66.188','normal','',0,0,0,2,0,'{\"login\":[1648157194,1648163952]}'),(12590,'172.104.82.158','normal','',0,0,0,1,0,'{\"login\":[1646576827]}'),(12591,'5.9.116.144','normal','',0,0,0,37,0,'{\"login\":[1646577801,1646635828,1647159553,1647395315,1648118639,1648154749,1648299149,1650056695,1650173358,1650295142,1650439627,1650687421,1650984795,1651008320,1651549921,1652037492,1652337354,1652447960,1652525293,1652680501,1652938529,1653523828,1654368410,1655685550,1656010618,1656013861,1656173595,1656744003,1656755171,1656778707,1656802470,1656880647,1657260120,1658568690,1658693302,1658727851,1658745353]}'),(12592,'197.245.177.186','normal','',0,0,0,0,0,'[]'),(12593,'81.169.136.222','normal','',0,0,0,0,0,'[]'),(12594,'34.211.131.110','normal','',0,0,0,0,0,'[]'),(12595,'114.119.138.239','normal','',0,0,0,0,0,'[]'),(12596,'40.74.253.58','normal','',0,0,0,0,1,'{\"nf\":[1646604927]}'),(12597,'35.195.48.11','normal','',0,0,0,2,0,'{\"login\":[1646606874,1646802123]}'),(12598,'161.97.130.211','normal','',0,0,0,2,0,'{\"login\":[1649750498,1650260949]}'),(12599,'54.39.49.75','normal','',0,0,0,1,0,'{\"login\":[1650307916]}'),(12600,'94.131.29.107','normal','',0,0,0,0,0,'[]'),(12601,'17.121.113.100','normal','',0,0,0,0,0,'[]'),(12602,'111.7.100.16','normal','',0,0,0,0,0,'[]'),(12603,'93.158.91.232','normal','',0,0,0,0,0,'[]'),(12604,'93.158.91.230','normal','',0,0,0,0,0,'[]'),(12605,'93.158.91.189','normal','',0,0,0,0,1,'{\"nf\":[1646636500]}'),(12606,'93.158.91.207','normal','',0,0,0,0,1,'{\"nf\":[1646636501]}'),(12607,'162.0.235.233','normal','',0,0,0,0,0,'[]'),(12608,'199.188.200.198','normal','',0,0,0,3,0,'{\"login\":[1650131154,1650133671,1650133954]}'),(12609,'194.163.142.38','normal','',0,0,0,40,0,'{\"login\":[1646702781,1646725186,1646726593,1646733651,1649054241,1649073382,1649073691,1649767114,1649780542,1650183276,1650194942,1652177281,1652180204,1652193593,1652213021,1652223544,1652234487,1652239814,1652248175,1652253947,1652823083,1652827201,1653546977,1653554825,1653560670,1653566982,1653574998,1653576495,1653581574,1653589157,1653593707,1653604760,1653623475,1655351878,1656749681,1656754114,1656770083,1656788826,1656792001,1657513664]}'),(12610,'185.191.76.228','normal','',0,0,0,0,0,'[]'),(12611,'208.109.75.198','normal','',0,0,0,0,0,'[]'),(12612,'192.169.150.185','normal','',0,0,0,0,0,'[]'),(12613,'197.94.7.88','normal','',0,0,0,0,0,'[]'),(12614,'52.186.74.74','normal','',0,0,0,0,0,'[]'),(12615,'52.186.74.76','normal','',0,0,0,1,0,'{\"login\":[1646649698]}'),(12616,'52.186.74.72','normal','',0,0,0,2,0,'{\"login\":[1646851379,1646884262]}'),(12617,'188.166.248.119','normal','',0,0,0,3,0,'{\"login\":[1646651213,1646844756,1649750157]}'),(12618,'41.114.150.238','normal','',0,0,0,0,0,'[]'),(12619,'85.95.228.145','normal','',0,0,0,5,0,'{\"login\":[1646654177,1646704137,1646716834,1646858355,1647333347]}'),(12620,'13.244.248.173','normal','',0,0,0,0,0,'[]'),(12621,'197.92.135.180','normal','',0,0,0,0,0,'[]'),(12622,'161.97.147.108','normal','',0,0,0,8,0,'{\"login\":[1646661055,1646692663,1646864168,1647287498,1647355271,1648170191,1648174715,1648186192]}'),(12623,'207.244.230.52','normal','',0,0,0,2,0,'{\"login\":[1646662694,1648427383]}'),(12624,'163.44.185.78','normal','',0,0,0,0,1,'{\"nf\":[1646664652]}'),(12625,'52.252.111.102','normal','',0,0,0,0,0,'[]'),(12626,'103.56.157.185','normal','',0,0,0,1,0,'{\"login\":[1646668246]}'),(12627,'82.66.92.137','normal','',0,0,0,3,0,'{\"login\":[1647416655,1648181525,1649753325]}'),(12628,'18.141.45.85','normal','',0,0,0,2,0,'{\"login\":[1646675564,1646735054]}'),(12629,'68.183.200.197','normal','',0,0,0,6,0,'{\"login\":[1646677714,1646843688,1647306947,1650604085,1652251303,1652835818]}'),(12630,'31.177.95.138','normal','',0,0,0,0,0,'[]'),(12631,'139.198.17.69','normal','',0,0,0,1,0,'{\"login\":[1646678458]}'),(12632,'144.91.106.14','normal','',0,0,0,0,0,'[]'),(12633,'41.76.175.156','normal','',0,0,0,1,0,'{\"login\":[1646685273]}'),(12634,'200.35.182.198','normal','',0,0,0,1,0,'{\"login\":[1646686786]}'),(12635,'164.52.217.38','normal','',0,0,0,1,0,'{\"login\":[1646688297]}'),(12636,'13.90.103.22','normal','',0,0,0,2,0,'{\"login\":[1646689731,1647314240]}'),(12637,'213.212.132.47','normal','',0,0,0,0,0,'[]'),(12638,'35.160.144.222','normal','',0,0,0,0,0,'[]'),(12639,'139.59.20.111','normal','',0,0,0,6,0,'{\"login\":[1646691192,1646749199,1650129904,1653988591,1654506500,1654531624]}'),(12640,'114.119.138.183','normal','',0,0,0,0,0,'[]'),(12641,'180.163.220.66','normal','',0,0,0,0,0,'[]'),(12642,'5.161.51.161','normal','',0,0,0,1,0,'{\"login\":[1646698430]}'),(12643,'128.199.193.185','normal','',0,0,0,1,0,'{\"login\":[1646699909]}'),(12644,'167.71.165.29','normal','',0,0,0,0,0,'[]'),(12645,'178.18.249.238','normal','',0,0,0,2,0,'{\"login\":[1646706946,1646880964]}'),(12646,'152.228.222.204','normal','',0,0,0,5,0,'{\"login\":[1646708330,1646712591,1649041517,1649059651,1649788707]}'),(12647,'188.64.138.23','normal','',0,0,0,5,0,'{\"login\":[1646709793,1648442951,1649032151,1649064012,1649071788]}'),(12648,'94.131.30.254','normal','',0,0,0,0,0,'[]'),(12649,'51.107.184.18','normal','',0,0,0,28,0,'{\"login\":[1646712516,1647233637,1647643721,1647869899,1649476185,1649692880,1649833234,1650253359,1651679393,1652848211,1653923194,1654147112,1654640396,1654985688,1655582181,1655884533,1656888196,1657337959,1657649616,1657659804,1657695439,1657865745,1658269199,1658270766,1658982632,1659582662,1661083061,1661094935]}'),(12650,'20.127.122.248','normal','',0,0,0,0,1,'{\"nf\":[1646713114]}'),(12651,'202.182.105.107','normal','',0,0,0,2,0,'{\"login\":[1646714057,1646732152]}'),(12652,'172.245.242.228','normal','',0,0,0,0,0,'[]'),(12653,'44.202.101.66','normal','',0,0,0,1,0,'{\"login\":[1646721033]}'),(12654,'134.122.100.42','normal','',0,0,0,1,0,'{\"login\":[1646723785]}'),(12655,'72.167.58.121','normal','',0,0,0,0,0,'[]'),(12656,'99.79.165.90','normal','',0,0,0,1,0,'{\"login\":[1646727903]}'),(12657,'163.44.193.58','normal','',0,0,0,1,0,'{\"login\":[1646729322]}'),(12658,'92.53.96.31','normal','',0,0,0,1,0,'{\"login\":[1646730712]}'),(12659,'197.221.188.3','normal','',0,0,0,0,0,'[]'),(12660,'150.95.12.102','normal','',0,0,0,3,0,'{\"login\":[1646736557,1646738082,1649785864]}'),(12661,'34.86.35.17','normal','',0,0,0,0,0,'[]'),(12662,'68.183.63.82','normal','',0,0,0,1,0,'{\"login\":[1650143393]}'),(12663,'158.69.226.152','normal','',0,0,0,1,0,'{\"login\":[1646741800]}'),(12664,'91.188.246.215','normal','',0,0,0,0,0,'[]'),(12665,'178.62.35.77','normal','',0,0,0,2,0,'{\"login\":[1646747397,1646872290]}'),(12666,'176.31.216.41','normal','',0,0,0,1,0,'{\"login\":[1646750982]}'),(12667,'178.128.210.29','normal','',0,0,0,0,2,'{\"nf\":[1646755678,1646755679]}'),(12668,'61.244.186.168','normal','',0,0,0,1,0,'{\"login\":[1646756713]}'),(12669,'186.234.80.157','normal','',0,0,0,0,0,'[]'),(12670,'3.129.166.174','normal','',0,0,0,1,0,'{\"login\":[1646758966]}'),(12671,'162.0.235.2','normal','',0,0,0,0,0,'[]'),(12672,'45.124.112.97','normal','',0,0,0,0,1,'{\"nf\":[1646763896]}'),(12673,'194.59.164.58','normal','',0,0,0,0,1,'{\"nf\":[1646765078]}'),(12674,'194.59.164.62','normal','',0,0,0,0,1,'{\"nf\":[1646765082]}'),(12675,'54.190.158.229','normal','',0,0,0,0,0,'[]'),(12676,'45.40.135.135','normal','',0,0,0,0,3,'{\"nf\":[1646783837,1646783856,1646783863]}'),(12677,'114.119.137.237','normal','',0,0,0,0,0,'[]'),(12678,'128.199.147.151','normal','',0,0,0,14,0,'{\"login\":[1646855634,1650178826,1650228201,1651418214,1652830286,1653545873,1653566415,1653597400,1653598337,1653613961,1653614485,1655300859,1655331743,1655348957]}'),(12679,'81.88.52.215','normal','',0,0,0,0,0,'[]'),(12680,'162.241.217.75','normal','',0,0,0,0,1,'{\"nf\":[1646799574]}'),(12681,'217.21.74.240','normal','',0,0,0,1,0,'{\"login\":[1646803895]}'),(12682,'41.114.141.15','normal','',0,0,0,0,0,'[]'),(12683,'2.56.59.95','normal','',0,0,0,0,4,'{\"nf\":[1646808559,1646808568,1646808577,1646808590]}'),(12684,'161.97.119.28','normal','',0,0,0,0,0,'[]'),(12685,'20.122.42.216','blocked','You have been locked out due to too many invalid login attempts.',1646814142,1646813842,0,5,0,'{\"login\":[1646813839,1646813840,1646813841,1646813841,1646813842]}'),(12686,'69.163.224.109','normal','',0,0,0,0,0,'[]'),(12687,'192.64.117.65','normal','',0,0,0,0,0,'[]'),(12688,'186.234.80.69','normal','',0,0,0,0,0,'[]'),(12689,'184.168.112.33','normal','',0,0,0,0,0,'[]'),(12690,'188.166.224.74','normal','',0,0,0,1,0,'{\"login\":[1650129533]}'),(12691,'178.157.15.132','normal','',0,0,0,0,2,'{\"nf\":[1646832602,1646832604]}'),(12692,'61.244.147.134','normal','',0,0,0,0,0,'[]'),(12693,'64.227.169.212','normal','',0,0,0,3,0,'{\"login\":[1646839318,1646873883,1647289174]}'),(12694,'103.1.239.209','normal','',0,0,0,6,0,'{\"login\":[1646839833,1647364842,1648177627,1648195952,1648197998,1649036528]}'),(12695,'54.200.82.178','normal','',0,0,0,1,0,'{\"login\":[1646840262]}'),(12696,'222.255.46.24','normal','',0,0,0,1,1,'{\"nf\":[1646840435],\"login\":[1646869573]}'),(12697,'91.201.55.189','normal','',0,0,0,2,0,'{\"login\":[1646840794,1646867402]}'),(12698,'13.88.221.138','normal','',0,0,0,2,0,'{\"login\":[1646841340,1646844194]}'),(12699,'108.179.220.235','normal','',0,0,0,1,0,'{\"login\":[1646842341]}'),(12700,'78.46.161.219','normal','',0,0,0,2,0,'{\"login\":[1646843240,1646888705]}'),(12701,'3.109.174.78','normal','',0,0,0,1,0,'{\"login\":[1646845322]}'),(12702,'122.248.255.124','normal','',0,0,0,1,0,'{\"login\":[1646845706]}'),(12703,'34.126.71.184','normal','',0,0,0,1,0,'{\"login\":[1646846265]}'),(12704,'177.55.116.249','normal','',0,0,0,1,0,'{\"login\":[1646846797]}'),(12705,'68.183.81.28','normal','',0,0,0,7,0,'{\"login\":[1646847314,1649752725,1649761704,1652828287,1652829421,1654535963,1655320056]}'),(12706,'54.232.229.103','normal','',0,0,0,2,0,'{\"login\":[1646848836,1646869070]}'),(12707,'34.221.176.80','normal','',0,0,0,0,0,'[]'),(12708,'3.108.232.107','normal','',0,0,0,1,0,'{\"login\":[1646850380]}'),(12709,'49.12.100.113','normal','',0,0,0,2,0,'{\"login\":[1646850869,1646856119]}'),(12710,'52.186.74.75','normal','',0,0,0,0,0,'[]'),(12711,'162.0.232.136','normal','',0,0,0,0,0,'[]'),(12712,'194.233.82.208','normal','',0,0,0,3,0,'{\"login\":[1646853533,1647299894,1648185692]}'),(12713,'207.154.244.14','normal','',0,0,0,1,0,'{\"login\":[1646853979]}'),(12714,'45.76.180.118','normal','',0,0,0,0,2,'{\"nf\":[1646853991,1662213681]}'),(12715,'52.172.231.22','normal','',0,0,0,1,0,'{\"login\":[1646854598]}'),(12716,'134.209.166.75','normal','',0,0,0,5,0,'{\"login\":[1646856615,1646861511,1646878808,1648123767,1648408638]}'),(12717,'165.227.154.150','normal','',0,0,0,1,0,'{\"login\":[1654062442]}'),(12718,'13.245.156.167','normal','',0,0,0,1,0,'{\"login\":[1646857239]}'),(12719,'52.42.135.100','normal','',0,0,0,0,0,'[]'),(12720,'35.89.53.15','normal','',0,0,0,0,0,'[]'),(12721,'85.128.143.28','normal','',0,0,0,2,0,'{\"login\":[1646859376,1655307040]}'),(12722,'87.98.232.20','normal','',0,0,0,3,0,'{\"login\":[1646859896,1646883751,1647372598]}'),(12723,'68.183.107.102','normal','',0,0,0,2,0,'{\"login\":[1646861053,1646887590]}'),(12724,'80.179.139.13','normal','',0,0,0,0,1,'{\"nf\":[1646861293]}'),(12725,'80.179.139.13','normal','',0,0,0,0,1,'{\"nf\":[1646861293]}'),(12726,'80.179.139.13','normal','',0,0,0,0,1,'{\"nf\":[1646861292]}'),(12727,'159.89.23.231','normal','',0,0,0,18,0,'{\"login\":[1651546156,1652171232,1652172433,1652172716,1652183943,1652184350,1652196247,1652196573,1652253411,1652845213,1652847458,1653589950,1653604055,1654559681,1654566154,1654573612,1654631045,1654669295]}'),(12728,'149.28.146.104','normal','',0,0,0,1,0,'{\"login\":[1646862022]}'),(12729,'188.213.66.188','normal','',0,0,0,1,0,'{\"login\":[1646864667]}'),(12730,'84.22.116.166','normal','',0,0,0,1,0,'{\"login\":[1646865207]}'),(12731,'74.208.94.248','normal','',0,0,0,2,0,'{\"login\":[1646866838,1646870124]}'),(12732,'40.77.167.102','normal','',0,0,0,0,0,'[]'),(12733,'47.242.248.94','normal','',0,0,0,14,0,'{\"login\":[1646867943,1649777070,1650190827,1650220920,1652819532,1652838468,1652846868,1653600044,1653615632,1656787964,1657439108,1657469840,1657495259,1660019278]}'),(12734,'154.85.50.83','normal','',0,0,0,1,0,'{\"login\":[1646868414]}'),(12735,'151.80.67.229','normal','',0,0,0,0,13,'{\"nf\":[1646870568,1660172265,1660172310,1660172343,1660172348,1660172403,1660172415,1660172611,1660172613,1660172735,1660172762,1660172772,1661278140]}'),(12736,'121.42.173.104','normal','',0,0,0,2,0,'{\"login\":[1646870686,1646876113]}'),(12737,'51.15.179.29','normal','',0,0,0,1,0,'{\"login\":[1646871796]}'),(12738,'185.170.8.60','normal','',0,0,0,5,0,'{\"login\":[1646872819,1649052926,1650127595,1650498718,1650648222]}'),(12739,'143.110.241.250','normal','',0,0,0,20,0,'{\"login\":[1646873304,1648130612,1649793971,1650188904,1650264552,1652190552,1652217674,1653548480,1653567611,1655313274,1656755490,1656757066,1656763605,1656783077,1656789342,1657693812,1657752119,1659387649,1661780289,1661781296]}'),(12740,'161.35.113.245','normal','',0,0,0,0,0,'[]'),(12741,'188.166.88.224','normal','',0,0,0,1,0,'{\"login\":[1646874451]}'),(12742,'172.105.153.213','normal','',0,0,0,0,0,'[]'),(12743,'81.169.207.7','normal','',0,0,0,1,0,'{\"login\":[1646876710]}'),(12744,'114.119.129.4','normal','',0,0,0,0,0,'[]'),(12745,'185.82.85.211','normal','',0,0,0,1,0,'{\"login\":[1646877252]}'),(12746,'165.232.64.68','normal','',0,0,0,11,0,'{\"login\":[1648147708,1649040704,1649053959,1650203485,1650249585,1650250517,1650263185,1650263697,1652189486,1652209280,1652252558]}'),(12747,'154.61.75.248','normal','',0,0,0,9,0,'{\"login\":[1646878287,1646881570,1648152518,1649033327,1655277572,1655345245,1656750893,1656765977,1657478326]}'),(12748,'128.199.81.104','normal','',0,0,0,1,0,'{\"login\":[1646879327]}'),(12749,'65.1.190.21','normal','',0,0,0,1,0,'{\"login\":[1646880391]}'),(12750,'92.205.12.69','normal','',0,0,0,0,0,'[]'),(12751,'119.29.17.199','normal','',0,0,0,0,1,'{\"nf\":[1646881669]}'),(12752,'95.111.231.31','normal','',0,0,0,1,0,'{\"login\":[1646882566]}'),(12753,'103.140.38.20','normal','',0,0,0,2,0,'{\"login\":[1646884870,1647351613]}'),(12754,'202.9.90.156','normal','',0,0,0,1,0,'{\"login\":[1646885280]}'),(12755,'185.61.152.32','normal','',0,0,0,0,0,'[]'),(12756,'165.227.212.213','normal','',0,0,0,0,0,'[]'),(12757,'103.77.160.73','normal','',0,0,0,2,0,'{\"login\":[1646889309,1649041166]}'),(12758,'158.247.226.240','normal','',0,0,0,1,0,'{\"login\":[1646889803]}'),(12759,'185.55.225.90','normal','',0,0,0,0,0,'[]'),(12760,'185.61.152.44','normal','',0,0,0,0,0,'[]'),(12761,'45.129.18.237','normal','',0,0,0,0,0,'[]'),(12762,'45.129.18.90','normal','',0,0,0,0,0,'[]'),(12763,'147.139.37.149','normal','',0,0,0,0,0,'[]'),(12764,'199.188.201.3','normal','',0,0,0,0,0,'[]'),(12765,'38.18.39.28','normal','',0,0,0,0,0,'[]'),(12766,'66.29.146.23','normal','',0,0,0,0,0,'[]'),(12767,'216.158.239.30','normal','',0,0,0,0,2,'{\"nf\":[1646913097,1646913101]}'),(12768,'91.151.18.27','normal','',0,0,0,0,0,'[]'),(12769,'54.75.38.214','normal','',0,0,0,0,0,'[]'),(12770,'218.227.36.30','normal','',0,0,0,0,0,'[]'),(12771,'115.171.37.60','normal','',0,0,0,1,0,'{\"login\":[1646918570]}'),(12772,'185.2.4.105','normal','',0,0,0,0,0,'[]'),(12773,'34.209.219.239','normal','',0,0,0,0,0,'[]'),(12774,'3.129.88.25','normal','',0,0,0,0,0,'[]'),(12775,'114.119.146.114','normal','',0,0,0,0,0,'[]'),(12776,'157.7.174.49','normal','',0,0,0,20,0,'{\"login\":[1646962542,1647041171,1647357877,1649952544,1651150143,1651391246,1652506906,1652511448,1652690438,1653813882,1654073724,1654078461,1654174871,1657158655,1657547181,1660299327,1660730068,1660744602,1662268518,1662290008]}'),(12777,'192.99.5.48','normal','',0,0,0,0,0,'[]'),(12778,'103.224.23.197','normal','',0,0,0,2,0,'{\"login\":[1646970684,1647239071]}'),(12779,'173.201.184.88','normal','',0,0,0,0,0,'[]'),(12780,'169.239.209.133','normal','',0,0,0,0,0,'[]'),(12781,'118.101.36.231','normal','',0,0,0,0,0,'[]'),(12782,'68.183.139.84','normal','',0,0,0,7,0,'{\"login\":[1647003172,1647690967,1649210276,1649238042,1649759034,1649793640,1651975712]}'),(12783,'52.77.29.124','normal','',0,0,0,0,0,'[]'),(12784,'208.109.25.227','normal','',0,0,0,0,0,'[]'),(12785,'185.22.235.145','normal','',0,0,0,0,1,'{\"nf\":[1647020792]}'),(12786,'13.233.113.36','normal','',0,0,0,0,0,'[]'),(12787,'54.212.85.175','normal','',0,0,0,0,0,'[]'),(12788,'54.244.63.180','normal','',0,0,0,0,0,'[]'),(12789,'34.216.95.128','normal','',0,0,0,0,0,'[]'),(12790,'54.38.197.19','normal','',0,0,0,0,0,'[]'),(12791,'158.69.192.143','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1654527321,0,1654527021,0,42,'{\"nf\":[1657408744],\"login\":[]}'),(12792,'44.193.72.212','normal','',0,0,0,3,0,'{\"login\":[1647046921,1647067099,1647736693]}'),(12793,'157.245.111.100','normal','',0,0,0,0,0,'[]'),(12794,'173.212.215.43','normal','',0,0,0,0,0,'[]'),(12795,'83.171.248.58','normal','',0,0,0,0,0,'[]'),(12796,'92.205.0.110','normal','',0,0,0,0,0,'[]'),(12797,'14.144.163.107','normal','',0,0,0,0,0,'[]'),(12798,'137.184.78.118','normal','',0,0,0,0,0,'[]'),(12799,'184.168.112.214','normal','',0,0,0,0,0,'[]'),(12800,'162.241.218.196','normal','',0,0,0,0,0,'[]'),(12801,'124.123.106.64','normal','',0,0,0,0,0,'[]'),(12802,'102.39.239.213','normal','',0,0,0,0,0,'[]'),(12803,'162.241.253.21','normal','',0,0,0,0,1,'{\"nf\":[1647087626]}'),(12804,'135.181.197.16','normal','',0,0,0,0,0,'[]'),(12805,'206.81.18.112','normal','',0,0,0,0,0,'[]'),(12806,'17.121.113.20','normal','',0,0,0,0,0,'[]'),(12807,'95.216.22.226','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1647109405,0,1647109105,0,20,'{\"nf\":[1647109086,1647109089,1647109089,1647109091,1647109092,1647109093,1647109094,1647109095,1647109096,1647109096,1647109097,1647109098,1647109099,1647109100,1647109100,1647109101,1647109102,1647109102,1647109104,1647109105]}'),(12808,'198.54.125.10','normal','',0,0,0,0,0,'[]'),(12809,'34.140.211.231','normal','',0,0,0,0,0,'[]'),(12810,'54.214.216.78','normal','',0,0,0,0,0,'[]'),(12811,'34.209.36.135','normal','',0,0,0,0,0,'[]'),(12812,'52.42.175.150','normal','',0,0,0,0,0,'[]'),(12813,'54.200.194.83','normal','',0,0,0,0,0,'[]'),(12814,'89.145.65.235','normal','',0,0,0,1,0,'{\"login\":[1647119843]}'),(12815,'198.54.114.43','normal','',0,0,0,0,0,'[]'),(12816,'63.250.38.246','normal','',0,0,0,0,0,'[]'),(12817,'3.110.113.78','normal','',0,0,0,0,0,'[]'),(12818,'114.119.156.31','normal','',0,0,0,0,0,'[]'),(12819,'161.97.74.158','normal','',0,0,0,1,0,'{\"login\":[1662088522]}'),(12820,'161.35.68.167','normal','',0,0,0,1,0,'{\"login\":[1653992636]}'),(12821,'34.76.138.140','normal','',0,0,0,1,0,'{\"login\":[1647179175]}'),(12822,'68.65.122.143','normal','',0,0,0,0,0,'[]'),(12823,'52.189.215.54','normal','',0,0,0,1,0,'{\"login\":[1653812699]}'),(12824,'17.121.114.183','normal','',0,0,0,0,0,'[]'),(12825,'34.219.188.76','normal','',0,0,0,0,0,'[]'),(12826,'50.62.177.147','normal','',0,0,0,0,0,'[]'),(12827,'65.108.69.251','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1647222517,0,1647222217,0,36,'{\"nf\":[1647221310,1647221310,1647221322,1647221323,1647221329,1647221343,1647221358,1647221390,1647221424,1647221431,1647221460,1647221487,1647221526,1647221540,1647221814,1647221897,1647221941,1647221981,1647222021,1647222032,1647222041,1647222043,1647222043,1647222049,1647222077,1647222077,1647222087,1647222095,1647222117,1647222134,1647222145,1647222190,1647222192,1647222205,1647222205,1647222217]}'),(12828,'159.65.56.30','normal','',0,0,0,3,0,'{\"login\":[1652190784,1653597557,1653619131]}'),(12829,'136.243.163.115','normal','',0,0,0,0,0,'[]'),(12830,'188.128.239.39','normal','',0,0,0,0,1,'{\"nf\":[1647234079]}'),(12831,'198.54.114.72','normal','',0,0,0,0,0,'[]'),(12832,'114.119.146.206','normal','',0,0,0,0,0,'[]'),(12833,'184.169.211.193','normal','',0,0,0,0,0,'[]'),(12834,'167.99.228.184','normal','',0,0,0,0,0,'[]'),(12835,'110.42.210.173','normal','',0,0,0,3,0,'{\"login\":[1647269790,1648184630,1648193390]}'),(12836,'195.242.103.203','normal','',0,0,0,1,0,'{\"login\":[1647271493]}'),(12837,'185.191.171.6','normal','',0,0,0,0,1,'{\"nf\":[1661892265]}'),(12838,'137.184.31.14','normal','',0,0,0,1,0,'{\"login\":[1647273269]}'),(12839,'161.97.133.150','normal','',0,0,0,8,0,'{\"login\":[1647275025,1648188786,1649023762,1652211338,1652225313,1652251075,1652839118,1652844781]}'),(12840,'94.237.66.160','normal','',0,0,0,2,0,'{\"login\":[1647276809,1647282189]}'),(12841,'103.149.170.212','normal','',0,0,0,1,0,'{\"login\":[1647278593]}'),(12842,'185.44.8.205','normal','',0,0,0,1,0,'{\"login\":[1647280393]}'),(12843,'47.105.124.217','normal','',0,0,0,0,0,'[]'),(12844,'8.26.182.92','normal','',0,0,0,0,0,'[]'),(12845,'167.172.98.152','normal','',0,0,0,1,0,'{\"login\":[1647292766]}'),(12846,'54.201.220.14','normal','',0,0,0,0,0,'[]'),(12847,'80.80.228.6','normal','',0,0,0,2,0,'{\"login\":[1647296348,1648194943]}'),(12848,'61.77.106.99','normal','',0,0,0,20,0,'{\"login\":[1647298090,1648413717,1651425579,1652189683,1652209217,1654540134,1655284439,1655319381,1656774664,1656815705,1657501293,1657773756,1657831984,1659357355,1659373583,1660161417,1660599355,1661777040,1661785057,1661787676]}'),(12849,'124.123.104.89','normal','',0,0,0,0,0,'[]'),(12850,'147.139.172.47','normal','',0,0,0,1,0,'{\"login\":[1647305155]}'),(12851,'85.128.143.178','normal','',0,0,0,1,0,'{\"login\":[1647306921]}'),(12852,'185.27.99.132','normal','',0,0,0,0,0,'[]'),(12853,'185.27.99.125','normal','',0,0,0,0,2,'{\"nf\":[1648658010,1649334006]}'),(12854,'185.27.99.146','normal','',0,0,0,0,1,'{\"nf\":[1647310971]}'),(12855,'185.27.99.123','normal','',0,0,0,0,1,'{\"nf\":[1647310971]}'),(12856,'103.31.207.110','normal','',0,0,0,5,0,'{\"login\":[1647317403,1648182115,1648195442,1648396678,1649044209]}'),(12857,'17.121.115.175','normal','',0,0,0,0,0,'[]'),(12858,'72.167.127.63','normal','',0,0,0,0,0,'[]'),(12859,'207.180.240.167','normal','',0,0,0,3,0,'{\"login\":[1647321166,1648180572,1649031389]}'),(12860,'77.68.6.111','normal','',0,0,0,5,0,'{\"login\":[1647325099,1648125173,1648138979,1650174611,1650242346]}'),(12861,'135.181.176.112','normal','',0,0,0,0,0,'[]'),(12862,'197.229.0.125','normal','',0,0,0,0,1,'{\"nf\":[1647335521]}'),(12863,'197.229.0.121','normal','',0,0,0,0,1,'{\"nf\":[1647335521]}'),(12864,'142.93.46.63','normal','',0,0,0,1,0,'{\"login\":[1647337517]}'),(12865,'178.159.37.40','normal','',0,0,0,0,8,'{\"nf\":[1647339050,1647339051,1647339052,1647339053,1651694302,1651694303,1651694304,1651694305]}'),(12866,'114.119.140.237','normal','',0,0,0,0,0,'[]'),(12867,'173.212.207.46','normal','',0,0,0,5,0,'{\"login\":[1647344358,1649059949,1649069188,1653805359,1653823322]}'),(12868,'5.101.157.10','normal','',0,0,0,2,0,'{\"login\":[1647346112,1647403962]}'),(12869,'51.222.108.216','normal','',0,0,0,5,0,'{\"login\":[1647347983,1648170705,1648178099,1648196995,1652825625]}'),(12870,'65.21.134.164','normal','',0,0,0,1,0,'{\"login\":[1647349758]}'),(12871,'206.189.161.86','normal','',0,0,0,3,0,'{\"login\":[1647353409,1648149127,1648179469]}'),(12872,'34.106.142.226','normal','',0,0,0,2,0,'{\"login\":[1647357142,1648199012]}'),(12873,'20.25.109.57','normal','',0,0,0,0,0,'[]'),(12874,'202.28.34.99','normal','',0,0,0,11,0,'{\"login\":[1647359067,1647360881,1648180118,1649023383,1649061464,1649789264,1649790765,1650198440,1650256772,1656744078,1656759914]}'),(12875,'51.75.147.211','normal','',0,0,0,1,0,'{\"login\":[1647362760]}'),(12876,'176.126.165.66','normal','',0,0,0,2,0,'{\"login\":[1647368658,1651525110]}'),(12877,'143.110.184.46','normal','',0,0,0,4,0,'{\"login\":[1647370597,1649030166,1655297555,1655304590]}'),(12878,'197.94.32.93','normal','',0,0,0,0,0,'[]'),(12879,'8.208.90.222','normal','',0,0,0,0,0,'[]'),(12880,'147.135.136.156','normal','',0,0,0,2,0,'{\"login\":[1647375395,1648417188]}'),(12881,'52.34.32.161','normal','',0,0,0,0,0,'[]'),(12882,'203.75.213.3','normal','',0,0,0,0,0,'[]'),(12883,'103.226.250.27','normal','',0,0,0,4,0,'{\"login\":[1647387095,1648146394,1648160575,1648165390]}'),(12884,'46.101.63.152','normal','',0,0,0,0,0,'[]'),(12885,'20.36.33.166','normal','',0,0,0,0,1,'{\"nf\":[1647393342]}'),(12886,'34.86.35.0','normal','',0,0,0,0,0,'[]'),(12887,'151.252.57.165','normal','',0,0,0,2,0,'{\"login\":[1647395360,1647399617]}'),(12888,'139.59.27.57','normal','',0,0,0,0,0,'[]'),(12889,'137.74.206.64','normal','',0,0,0,0,2,'{\"nf\":[1647424660,1658188984]}'),(12890,'207.46.13.228','normal','',0,0,0,0,0,'[]'),(12891,'114.119.148.252','normal','',0,0,0,0,0,'[]'),(12892,'72.13.46.2','normal','',0,0,0,0,0,'[]'),(12893,'167.94.138.117','normal','',0,0,0,0,0,'[]'),(12894,'207.241.233.138','normal','',0,0,0,0,0,'[]'),(12895,'54.191.2.27','normal','',0,0,0,0,0,'[]'),(12896,'41.157.136.6','normal','',0,0,0,0,0,'[]'),(12897,'154.70.155.155','normal','',0,0,0,0,0,'[]'),(12898,'74.208.207.55','normal','',0,0,0,1,0,'{\"login\":[1647458447]}'),(12899,'115.171.37.30','normal','',0,0,0,2,0,'{\"login\":[1647461028,1648267283]}'),(12900,'54.189.177.228','normal','',0,0,0,0,0,'[]'),(12901,'35.165.163.4','normal','',0,0,0,0,0,'[]'),(12902,'18.237.156.55','normal','',0,0,0,0,0,'[]'),(12903,'157.55.39.95','normal','',0,0,0,0,0,'[]'),(12904,'20.70.40.17','normal','',0,0,0,0,1,'{\"nf\":[1647473163]}'),(12905,'3.135.204.176','normal','',0,0,0,0,0,'[]'),(12906,'213.205.38.23','normal','',0,0,0,0,0,'[]'),(12907,'103.10.105.156','normal','',0,0,0,33,0,'{\"login\":[1649046658,1650181478,1650259550,1651548034,1651558562,1652191434,1652231086,1652249621,1653560934,1653582133,1653590882,1653594303,1653611630,1656782867,1656784389,1656800181,1657499202,1657507470,1657515526,1657518725,1657865563,1659380124,1659388849,1659390562,1659392581,1659985737,1660367952,1660413953,1661762019,1661796704,1661799581,1661806302,1661816526]}'),(12908,'163.116.136.254','normal','',0,0,0,0,0,'[]'),(12909,'41.71.88.90','normal','',0,0,0,0,1,'{\"nf\":[1647502142]}'),(12910,'20.62.65.55','normal','',0,0,0,0,0,'[]'),(12911,'31.177.95.116','normal','',0,0,0,0,0,'[]'),(12912,'51.158.118.231','normal','',0,0,0,0,0,'[]'),(12913,'41.71.85.116','normal','',0,0,0,0,0,'[]'),(12914,'213.239.193.124','normal','',0,0,0,0,0,'[]'),(12915,'114.119.150.86','normal','',0,0,0,0,0,'[]'),(12916,'162.241.217.198','normal','',0,0,0,0,0,'[]'),(12917,'51.254.199.11','normal','',0,0,0,0,0,'[]'),(12918,'102.135.243.116','normal','',0,0,0,0,3,'{\"nf\":[1647534469,1647804746,1647869753]}'),(12919,'70.39.126.165','normal','',0,0,0,0,1,'{\"nf\":[1647536818]}'),(12920,'157.55.39.211','normal','',0,0,0,0,0,'[]'),(12921,'188.64.138.5','normal','',0,0,0,0,0,'[]'),(12922,'20.203.198.169','normal','',0,0,0,0,1,'{\"nf\":[1647542409]}'),(12923,'20.75.128.100','normal','',0,0,0,0,0,'[]'),(12924,'74.125.208.149','normal','',0,0,0,0,14,'{\"nf\":[1647548087,1653154346,1653234134,1653303541,1653765068,1654076312,1654503709,1654631918,1655292686,1655331507,1655375024,1655450824,1655547966,1655708393]}'),(12925,'34.208.182.139','normal','',0,0,0,0,0,'[]'),(12926,'68.178.244.158','normal','',0,0,0,0,0,'[]'),(12927,'66.249.64.167','normal','',0,0,0,0,0,'[]'),(12928,'173.201.184.58','normal','',0,0,0,0,0,'[]'),(12929,'186.234.80.63','normal','',0,0,0,0,0,'[]'),(12930,'197.184.179.243','normal','',0,0,0,0,0,'[]'),(12931,'65.154.226.167','normal','',0,0,0,0,0,'[]'),(12932,'65.154.226.220','normal','',0,0,0,0,0,'[]'),(12933,'54.36.148.192','normal','',0,0,0,0,0,'[]'),(12934,'108.7.194.147','normal','',0,0,0,0,0,'[]'),(12935,'204.12.202.94','normal','',0,0,0,3,0,'{\"login\":[1647571380,1647571454,1647571497]}'),(12936,'47.104.245.219','normal','',0,0,0,0,0,'[]'),(12937,'171.96.159.64','normal','',0,0,0,0,0,'[]'),(12938,'197.89.111.56','normal','',0,0,0,0,0,'[]'),(12939,'220.144.246.191','normal','',0,0,0,0,0,'[]'),(12940,'197.94.95.69','normal','',0,0,0,0,0,'[]'),(12941,'35.189.244.63','normal','',0,0,0,0,0,'[]'),(12942,'114.119.130.57','normal','',0,0,0,0,0,'[]'),(12943,'46.101.11.222','normal','',0,0,0,3,0,'{\"login\":[1649056637,1649063020,1650264186]}'),(12944,'41.13.212.248','normal','',0,0,0,0,0,'[]'),(12945,'103.133.160.239','normal','',0,0,0,1,0,'{\"login\":[1648406933]}'),(12946,'13.233.175.203','normal','',0,0,0,0,0,'[]'),(12947,'103.1.239.126','normal','',0,0,0,0,0,'[]'),(12948,'209.126.10.44','normal','',0,0,0,0,0,'[]'),(12949,'105.0.7.185','normal','',0,0,0,0,0,'[]'),(12950,'208.109.41.243','normal','',0,0,0,0,0,'[]'),(12951,'177.55.111.12','normal','',0,0,0,1,0,'{\"login\":[1648126999]}'),(12952,'46.41.141.49','normal','',0,0,0,1,0,'{\"login\":[1648132526]}'),(12953,'185.149.40.222','normal','',0,0,0,3,0,'{\"login\":[1648126030,1648192880,1649069703]}'),(12954,'35.234.53.191','normal','',0,0,0,0,0,'[]'),(12955,'35.88.219.81','normal','',0,0,0,0,0,'[]'),(12956,'68.65.123.202','normal','',0,0,0,1,0,'{\"login\":[1650302060]}'),(12957,'157.245.106.233','normal','',0,0,0,3,0,'{\"login\":[1648185050,1650199913,1650214244]}'),(12958,'189.90.138.114','normal','',0,0,0,1,0,'{\"login\":[1648133442]}'),(12959,'82.223.222.117','normal','',0,0,0,0,0,'[]'),(12960,'106.12.147.12','normal','',0,0,0,1,0,'{\"login\":[1648162923]}'),(12961,'146.148.33.129','normal','',0,0,0,0,0,'[]'),(12962,'167.172.96.13','normal','',0,0,0,3,0,'{\"login\":[1648155685,1648175520,1650245007]}'),(12963,'34.221.187.97','normal','',0,0,0,0,0,'[]'),(12964,'3.38.13.14','normal','',0,0,0,0,0,'[]'),(12965,'78.46.85.236','normal','',0,0,0,0,0,'[]'),(12966,'164.68.127.180','normal','',0,0,0,0,0,'[]'),(12967,'85.128.143.75','normal','',0,0,0,0,0,'[]'),(12968,'212.129.40.13','normal','',0,0,0,0,0,'[]'),(12969,'104.168.36.11','normal','',0,0,0,82,0,'{\"login\":[1648191842,1648476672,1648633747,1648635065,1648678304,1649066502,1649068766,1649538148,1649847039,1650009627,1650132899,1650169237,1650246193,1650270847,1650299016,1650305391,1650355432,1650370656,1650507665,1650509967,1650538379,1650582761,1650592284,1650607586,1650684000,1650866242,1650994754,1651076275,1651105637,1651143512,1651165161,1651188213,1651276757,1651278483,1651568905,1651571777,1651594049,1651742442,1651745096,1651935488,1651950485,1651992432,1651994392,1652030132,1652090905,1652292229,1652299229,1652305042,1652315427,1652336695,1652524628,1652551178,1652553315,1652586311,1652634794,1652641348,1652646223,1652654359,1652667481,1652670773,1652692993,1652773639,1652777953,1652813097,1652878559,1652900676,1652923009,1652927271,1652986343,1653013827,1653024121,1653194037,1653230400,1653231380,1653241679,1653249451,1653256603,1653269707,1653305838,1653331819,1653349957,1653353899]}'),(12970,'194.59.249.21','normal','',0,0,0,0,0,'[]'),(12971,'45.77.243.67','normal','',0,0,0,0,0,'[]'),(12972,'52.21.0.38','normal','',0,0,0,2,0,'{\"login\":[1648131601,1650250913]}'),(12973,'31.177.95.137','normal','',0,0,0,0,0,'[]'),(12974,'94.23.248.26','normal','',0,0,0,0,0,'[]'),(12975,'93.90.193.101','normal','',0,0,0,0,0,'[]'),(12976,'173.254.104.177','normal','',0,0,0,0,1,'{\"nf\":[1647687739]}'),(12977,'198.37.120.19','normal','',0,0,0,3,0,'{\"login\":[1648122426,1648193899,1648403485]}'),(12978,'192.185.4.64','normal','',0,0,0,0,0,'[]'),(12979,'139.196.165.192','normal','',0,0,0,1,0,'{\"login\":[1650169042]}'),(12980,'148.251.181.32','normal','',0,0,0,0,0,'[]'),(12981,'212.237.3.173','normal','',0,0,0,0,0,'[]'),(12982,'151.80.34.137','normal','',0,0,0,0,0,'[]'),(12983,'82.97.10.157','normal','',0,0,0,0,0,'[]'),(12984,'134.122.29.199','normal','',0,0,0,0,0,'[]'),(12985,'34.213.233.53','normal','',0,0,0,0,0,'[]'),(12986,'156.155.226.20','normal','',0,0,0,0,0,'[]'),(12987,'185.3.233.46','normal','',0,0,0,1,0,'{\"login\":[1648131085]}'),(12988,'64.227.182.210','normal','',0,0,0,0,0,'[]'),(12989,'45.119.212.6','normal','',0,0,0,0,0,'[]'),(12990,'75.119.147.106','normal','',0,0,0,3,0,'{\"login\":[1648142626,1648157669,1649058856]}'),(12991,'66.249.65.5','normal','',0,0,0,0,0,'[]'),(12992,'121.50.43.205','normal','',0,0,0,0,0,'[]'),(12993,'209.97.181.131','normal','',0,0,0,3,0,'{\"login\":[1648156643,1648165738,1649047341]}'),(12994,'115.133.219.244','normal','',0,0,0,0,0,'[]'),(12995,'207.244.244.122','normal','',0,0,0,0,0,'[]'),(12996,'162.0.235.196','normal','',0,0,0,0,0,'[]'),(12997,'194.61.28.220','normal','',0,0,0,0,9,'{\"nf\":[1647756686,1647756688,1647756689,1647756690,1647756691,1647756691,1647756692,1647756693,1647756695]}'),(12998,'51.140.219.88','normal','',0,0,0,0,1,'{\"nf\":[1647760957]}'),(12999,'74.125.208.147','normal','',0,0,0,0,12,'{\"nf\":[1647766775,1653654739,1654069975,1654104078,1654917478,1655268946,1655335180,1655357437,1655357437,1655456639,1655657929,1655716848]}'),(13000,'45.224.105.215','normal','',0,0,0,0,0,'[]'),(13001,'3.101.68.35','normal','',0,0,0,0,0,'[]'),(13002,'103.174.115.103','normal','',0,0,0,0,0,'[]'),(13003,'110.42.175.75','normal','',0,0,0,0,0,'[]'),(13004,'47.94.136.206','normal','',0,0,0,7,0,'{\"login\":[1649786935,1650179363,1653553094,1653555442,1656809081,1656814608,1656816840]}'),(13005,'85.128.143.43','normal','',0,0,0,1,0,'{\"login\":[1655329542]}'),(13006,'209.151.152.215','normal','',0,0,0,0,0,'[]'),(13007,'106.252.225.196','normal','',0,0,0,0,1,'{\"nf\":[1647788085]}'),(13008,'195.204.187.15','normal','',0,0,0,0,0,'[]'),(13009,'139.59.43.111','normal','',0,0,0,2,0,'{\"login\":[1648144931,1648418795]}'),(13010,'108.167.133.25','normal','',0,0,0,0,1,'{\"nf\":[1647814879]}'),(13011,'66.94.119.125','normal','',0,0,0,0,0,'[]'),(13012,'152.104.9.45','normal','',0,0,0,4,0,'{\"login\":[1648134806,1648394932,1650175395,1650218762]}'),(13013,'35.184.137.174','normal','',0,0,0,20,0,'{\"login\":[1649060234,1651380855,1652208308,1652211494,1652229660,1655309257,1656751281,1656756639,1656760387,1656762362,1656772311,1656796949,1656809903,1656813430,1657440667,1657453088,1657458133,1657509821,1657517163,1657842156]}'),(13014,'124.123.106.132','normal','',0,0,0,0,0,'[]'),(13015,'162.55.131.89','normal','',0,0,0,0,0,'[]'),(13016,'34.78.48.176','normal','',0,0,0,3,0,'{\"login\":[1647848529,1648305978,1648561971]}'),(13017,'104.248.23.214','normal','',0,0,0,0,0,'[]'),(13018,'197.101.118.185','normal','',0,0,0,0,0,'[]'),(13019,'20.113.154.13','normal','',0,0,0,0,2,'{\"nf\":[1647867191,1647867207]}'),(13020,'192.64.117.71','normal','',0,0,0,0,0,'[]'),(13021,'3.236.155.224','normal','',0,0,0,2,0,'{\"login\":[1647876788,1648193704]}'),(13022,'211.95.50.7','normal','',0,0,0,0,0,'[]'),(13023,'8.26.182.37','normal','',0,0,0,0,0,'[]'),(13024,'89.46.223.134','normal','',0,0,0,0,0,'[]'),(13025,'157.245.233.151','normal','',0,0,0,0,1,'{\"nf\":[1647882985]}'),(13026,'119.245.142.2','normal','',0,0,0,3,0,'{\"login\":[1647887716,1650902200,1657334136]}'),(13027,'114.119.146.88','normal','',0,0,0,0,0,'[]'),(13028,'102.65.140.235','normal','',0,0,0,0,0,'[]'),(13029,'34.208.197.93','normal','',0,0,0,0,0,'[]'),(13030,'38.242.225.116','normal','',0,0,0,0,0,'[]'),(13031,'45.129.18.20','normal','',0,0,0,0,0,'[]'),(13032,'45.129.18.134','normal','',0,0,0,0,0,'[]'),(13033,'45.129.18.195','normal','',0,0,0,0,0,'[]'),(13034,'197.89.156.69','normal','',0,0,0,0,0,'[]'),(13035,'162.241.2.240','normal','',0,0,0,0,1,'{\"nf\":[1647945839]}'),(13036,'163.172.173.73','normal','',0,0,0,0,0,'[]'),(13037,'162.241.225.183','normal','',0,0,0,0,0,'[]'),(13038,'198.244.142.178','normal','',0,0,0,0,3,'{\"nf\":[1647964550,1654245706,1660554333]}'),(13039,'198.71.228.56','normal','',0,0,0,0,1,'{\"nf\":[1647965082]}'),(13040,'5.45.207.118','normal','',0,0,0,0,1,'{\"nf\":[1649327033]}'),(13041,'62.171.150.48','normal','',0,0,0,0,1,'{\"nf\":[1647969007]}'),(13042,'156.67.222.5','normal','',0,0,0,0,1,'{\"nf\":[1647971427]}'),(13043,'45.133.238.189','normal','',0,0,0,0,1,'{\"nf\":[1647971890]}'),(13044,'109.70.148.152','normal','',0,0,0,0,1,'{\"nf\":[1647973422]}'),(13045,'54.187.114.81','normal','',0,0,0,0,0,'[]'),(13046,'114.119.143.158','normal','',0,0,0,0,0,'[]'),(13047,'51.158.73.30','normal','',0,0,0,0,0,'[]'),(13048,'163.172.179.55','normal','',0,0,0,0,0,'[]'),(13049,'51.15.207.110','normal','',0,0,0,0,0,'[]'),(13050,'51.158.104.141','normal','',0,0,0,0,0,'[]'),(13051,'212.47.251.216','normal','',0,0,0,0,1,'{\"nf\":[1647980520]}'),(13052,'163.172.157.95','normal','',0,0,0,0,0,'[]'),(13053,'51.158.64.154','normal','',0,0,0,0,1,'{\"nf\":[1647980643]}'),(13054,'34.220.75.204','normal','',0,0,0,0,0,'[]'),(13055,'23.235.193.24','normal','',0,0,0,0,0,'[]'),(13056,'130.255.166.225','normal','',0,0,0,0,0,'[]'),(13057,'130.255.166.158','normal','',0,0,0,0,0,'[]'),(13058,'130.255.166.221','normal','',0,0,0,0,2,'{\"nf\":[1647983225,1661878825]}'),(13059,'37.19.210.89','normal','',0,0,0,0,1,'{\"nf\":[1647986191]}'),(13060,'206.189.176.94','normal','',0,0,0,0,2,'{\"nf\":[1647990907,1647990912]}'),(13061,'102.182.255.183','normal','',0,0,0,0,0,'[]'),(13062,'65.108.128.54','normal','',0,0,0,0,0,'[]'),(13063,'162.0.229.109','normal','',0,0,0,0,0,'[]'),(13064,'193.106.191.112','normal','',0,0,0,0,35,'{\"nf\":[1648014015,1648036392,1648051491,1648062561,1648224070,1648248833,1648322803,1648331474,1648345564,1648380658,1648419723,1648556166,1648562091,1648562114,1648562377,1648562722,1648563337,1648563598,1648566153,1648566426,1648567170,1648567708,1648567914,1648567930,1648568895,1648569320,1648569923,1648570083,1648570918,1648570934,1648571054,1648573440,1648573756,1648586765,1648588847]}'),(13065,'77.77.150.95','normal','',0,0,0,2,0,'{\"login\":[1650132875,1650144060]}'),(13066,'52.170.232.210','normal','',0,0,0,0,0,'[]'),(13067,'162.0.232.212','normal','',0,0,0,0,0,'[]'),(13068,'78.137.164.82','normal','',0,0,0,0,0,'[]'),(13069,'114.119.135.65','normal','',0,0,0,0,0,'[]'),(13070,'54.191.177.100','normal','',0,0,0,0,0,'[]'),(13071,'41.114.177.253','normal','',0,0,0,0,0,'[]'),(13072,'199.188.201.234','normal','',0,0,0,0,0,'[]'),(13073,'196.61.104.35','normal','',0,0,0,0,0,'[]'),(13074,'197.94.221.20','normal','',0,0,0,0,0,'[]'),(13075,'156.155.128.162','normal','',0,0,0,0,0,'[]'),(13076,'31.170.167.79','normal','',0,0,0,0,1,'{\"nf\":[1648036565]}'),(13077,'31.170.167.76','normal','',0,0,0,0,1,'{\"nf\":[1648036568]}'),(13078,'82.221.131.116','normal','',0,0,0,0,0,'[]'),(13079,'8.31.2.108','normal','',0,0,0,0,0,'[]'),(13080,'165.0.105.117','normal','',0,0,0,0,0,'[]'),(13081,'197.245.59.199','normal','',0,0,0,0,0,'[]'),(13082,'118.110.157.200','normal','',0,0,0,0,0,'[]'),(13083,'161.97.141.165','normal','',0,0,0,0,1,'{\"nf\":[1648053421]}'),(13084,'198.12.210.13','normal','',0,0,0,0,2,'{\"nf\":[1648061746,1648061747]}'),(13085,'47.243.239.12','normal','',0,0,0,0,2,'{\"nf\":[1648064614,1648064617]}'),(13086,'54.201.100.195','normal','',0,0,0,0,0,'[]'),(13087,'195.133.18.109','normal','',0,0,0,0,1,'{\"nf\":[1648070367]}'),(13088,'103.219.60.130','normal','',0,0,0,6,0,'{\"login\":[1648072511,1648500488,1650311067,1650348652,1650460044,1651001930]}'),(13089,'40.77.167.37','normal','',0,0,0,0,0,'[]'),(13090,'162.241.203.22','normal','',0,0,0,0,1,'{\"nf\":[1648079947]}'),(13091,'216.145.5.42','normal','',0,0,0,0,0,'[]'),(13092,'149.56.150.15','normal','',0,0,0,0,2,'{\"nf\":[1648088262,1648088281]}'),(13093,'151.106.116.39','normal','',0,0,0,0,1,'{\"nf\":[1648088329]}'),(13094,'144.217.135.194','normal','',0,0,0,0,0,'[]'),(13095,'199.204.248.117','normal','',0,0,0,0,0,'[]'),(13096,'212.129.38.51','normal','',0,0,0,0,1,'{\"nf\":[1648093090]}'),(13097,'85.24.206.250','normal','',0,0,0,0,3,'{\"nf\":[1648093721,1650609592,1650609669]}'),(13098,'102.65.62.227','normal','',0,0,0,0,0,'[]'),(13099,'211.14.175.57','normal','',0,0,0,0,1,'{\"nf\":[1648096212]}'),(13100,'85.10.56.138','blocked','You have been locked out due to too many invalid login attempts.',1648100056,1648099756,0,5,0,'{\"login\":[1648099753,1648099753,1648099754,1648099755,1648099756]}'),(13101,'35.175.136.149','normal','',0,0,0,0,0,'[]'),(13102,'129.205.137.92','normal','',0,0,0,0,0,'[]'),(13103,'169.0.95.160','normal','',0,0,0,0,0,'[]'),(13104,'124.123.105.106','normal','',0,0,0,0,0,'[]'),(13105,'41.13.208.21','normal','',0,0,0,0,0,'[]'),(13106,'54.145.95.28','normal','',0,0,0,0,2,'{\"nf\":[1648119007,1648119008]}'),(13107,'54.145.95.28','normal','',0,0,0,0,0,'[]'),(13108,'196.211.120.110','normal','',0,0,0,0,0,'[]'),(13109,'193.111.199.113','normal','',0,0,0,0,0,'[]'),(13110,'212.72.182.235','normal','',0,0,0,2,0,'{\"login\":[1648122005,1648122790]}'),(13111,'47.242.188.124','normal','',0,0,0,4,0,'{\"login\":[1648123314,1649019642,1649058163,1649063780]}'),(13112,'152.32.142.123','normal','',0,0,0,2,0,'{\"login\":[1648125463,1648192323]}'),(13113,'46.161.39.76','normal','',0,0,0,1,0,'{\"login\":[1648126539]}'),(13114,'178.172.235.87','normal','',0,0,0,2,0,'{\"login\":[1648127436,1648171213]}'),(13115,'197.185.111.132','normal','',0,0,0,0,0,'[]'),(13116,'147.182.229.61','normal','',0,0,0,26,0,'{\"login\":[1648128693,1648150058,1649772801,1649776667,1650195289,1650208647,1651463514,1652195228,1652216919,1652232891,1652240837,1652242131,1652247195,1652252173,1652818480,1652822117,1652834045,1652848109,1653625098,1655303326,1655313008,1655325890,1656798693,1656822830,1657441125,1657507289]}'),(13117,'165.232.71.87','normal','',0,0,0,4,0,'{\"login\":[1648129226,1648133771,1650173681,1650265517]}'),(13118,'212.64.64.223','normal','',0,0,0,3,0,'{\"login\":[1648129830,1648167302,1649027155]}'),(13119,'167.94.138.119','normal','',0,0,0,0,0,'[]'),(13120,'91.151.89.74','normal','',0,0,0,1,0,'{\"login\":[1648132046]}'),(13121,'217.112.89.55','normal','',0,0,0,1,0,'{\"login\":[1648135276]}'),(13122,'54.194.73.206','normal','',0,0,0,1,0,'{\"login\":[1648136644]}'),(13123,'35.239.45.237','normal','',0,0,0,1,0,'{\"login\":[1648137064]}'),(13124,'64.111.104.91','normal','',0,0,0,1,0,'{\"login\":[1648137521]}'),(13125,'108.61.222.180','normal','',0,0,0,2,0,'{\"login\":[1648137995,1648154816]}'),(13126,'213.187.11.137','normal','',0,0,0,1,0,'{\"login\":[1648139306]}'),(13127,'130.185.77.84','normal','',0,0,0,1,0,'{\"login\":[1648139865]}'),(13128,'45.221.212.121','normal','',0,0,0,0,1,'{\"nf\":[1648140414]}'),(13129,'147.182.203.28','normal','',0,0,0,2,0,'{\"login\":[1648141213,1649048173]}'),(13130,'200.2.116.250','normal','',0,0,0,21,0,'{\"login\":[1648143126,1656746974,1656758438,1656822705,1657505078,1657515669,1657784940,1657790056,1659370560,1659413658,1659801450,1659968494,1661755749,1661763189,1661771358,1661784234,1661784345,1661793032,1661812095,1661813633,1661817658]}'),(13131,'66.172.34.20','normal','',0,0,0,1,0,'{\"login\":[1648144054]}'),(13132,'103.142.25.224','normal','',0,0,0,3,0,'{\"login\":[1648144552,1648190244,1648450116]}'),(13133,'197.89.156.156','normal','',0,0,0,0,0,'[]'),(13134,'34.76.147.42','normal','',0,0,0,2,0,'{\"login\":[1648145933,1649786224]}'),(13135,'68.183.46.105','normal','',0,0,0,8,0,'{\"login\":[1648146803,1653577790,1653594835,1656775296,1656809717,1657431472,1657457852,1657502154]}'),(13136,'65.21.96.37','normal','',0,0,0,1,0,'{\"login\":[1648147313]}'),(13137,'144.202.47.21','normal','',0,0,0,2,0,'{\"login\":[1648148252,1648175154]}'),(13138,'159.65.244.245','normal','',0,0,0,2,0,'{\"login\":[1648148634,1648153810]}'),(13139,'197.221.14.84','normal','',0,0,0,0,0,'[]'),(13140,'91.241.51.98','normal','',0,0,0,2,0,'{\"login\":[1648151564,1648446483]}'),(13141,'103.3.247.65','normal','',0,0,0,1,0,'{\"login\":[1648154356]}'),(13142,'63.149.136.70','normal','',0,0,0,1,0,'{\"login\":[1648158119]}'),(13143,'46.101.46.77','normal','',0,0,0,1,0,'{\"login\":[1648159035]}'),(13144,'205.185.116.89','normal','',0,0,0,0,0,'[]'),(13145,'185.7.212.50','normal','',0,0,0,5,0,'{\"login\":[1648160030,1648168262,1649066654,1649763759,1651357138]}'),(13146,'34.90.91.235','normal','',0,0,0,1,0,'{\"login\":[1648161014]}'),(13147,'85.128.143.163','normal','',0,0,0,1,0,'{\"login\":[1648161442]}'),(13148,'39.106.224.35','normal','',0,0,0,1,0,'{\"login\":[1648162407]}'),(13149,'144.76.107.165','normal','',0,0,0,1,0,'{\"login\":[1648163409]}'),(13150,'34.91.150.112','normal','',0,0,0,1,0,'{\"login\":[1648164831]}'),(13151,'43.154.60.80','normal','',0,0,0,2,0,'{\"login\":[1648167754,1648184129]}'),(13152,'128.199.158.35','normal','',0,0,0,1,0,'{\"login\":[1648169746]}'),(13153,'202.61.224.184','normal','',0,0,0,1,0,'{\"login\":[1648172178]}'),(13154,'157.245.209.247','normal','',0,0,0,1,0,'{\"login\":[1648172612]}'),(13155,'207.246.107.10','normal','',0,0,0,1,0,'{\"login\":[1648173125]}'),(13156,'54.147.197.195','normal','',0,0,0,1,0,'{\"login\":[1648174147]}'),(13157,'128.199.227.32','normal','',0,0,0,3,0,'{\"login\":[1648176006,1650186722,1650234114]}'),(13158,'3.6.85.217','normal','',0,0,0,2,0,'{\"login\":[1648177120,1649029869]}'),(13159,'5.101.157.231','normal','',0,0,0,1,0,'{\"login\":[1648181057]}'),(13160,'188.225.40.227','normal','',0,0,0,1,0,'{\"login\":[1648183058]}'),(13161,'188.214.104.146','normal','',0,0,0,0,5,'{\"nf\":[1648183637,1648183642,1648183643,1648183644,1648183646]}'),(13162,'107.189.8.65','normal','',0,0,0,0,2,'{\"nf\":[1648183647,1663086276]}'),(13163,'185.220.101.75','normal','',0,0,0,0,1,'{\"nf\":[1648183649]}'),(13164,'103.251.167.10','normal','',0,0,0,0,1,'{\"nf\":[1648183652]}'),(13165,'109.70.100.29','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1648183976,0,1648183676,0,20,'{\"nf\":[1648183653,1648183654,1648183655,1648183656,1648183657,1648183658,1648183659,1648183661,1648183662,1648183663,1648183664,1648183666,1648183667,1648183668,1648183669,1648183671,1648183672,1648183673,1648183674,1648183675]}'),(13166,'78.47.178.135','normal','',0,0,0,1,0,'{\"login\":[1648187642]}'),(13167,'34.132.46.219','normal','',0,0,0,1,0,'{\"login\":[1648188208]}'),(13168,'120.55.169.254','normal','',0,0,0,9,0,'{\"login\":[1648189805,1649041976,1651400139,1651563929,1652173734,1652178859,1652199906,1652213697,1652840034]}'),(13169,'54.157.146.236','normal','',0,0,0,1,0,'{\"login\":[1648190717]}'),(13170,'105.0.7.108','normal','',0,0,0,0,0,'[]'),(13171,'139.162.121.226','normal','',0,0,0,1,0,'{\"login\":[1648194435]}'),(13172,'194.87.183.189','normal','',0,0,0,0,0,'[]'),(13173,'116.193.190.84','normal','',0,0,0,2,0,'{\"login\":[1648198500,1649773634]}'),(13174,'66.249.66.201','normal','',0,0,0,0,0,'[]'),(13175,'54.36.148.88','normal','',0,0,0,0,0,'[]'),(13176,'54.36.149.38','normal','',0,0,0,0,0,'[]'),(13177,'37.115.216.247','normal','',0,0,0,0,0,'[]'),(13178,'197.245.19.190','normal','',0,0,0,0,0,'[]'),(13179,'197.95.130.11','normal','',0,0,0,0,0,'[]'),(13180,'44.192.56.39','normal','',0,0,0,0,1,'{\"nf\":[1648216209]}'),(13181,'162.213.251.153','normal','',0,0,0,0,1,'{\"nf\":[1648218157]}'),(13182,'17.121.112.109','normal','',0,0,0,0,0,'[]'),(13183,'162.213.251.113','normal','',0,0,0,0,0,'[]'),(13184,'105.184.208.237','normal','',0,0,0,0,0,'[]'),(13185,'41.13.250.4','normal','',0,0,0,0,0,'[]'),(13186,'167.99.127.252','normal','',0,0,0,0,0,'[]'),(13187,'65.108.134.142','normal','',0,0,0,0,0,'[]'),(13188,'34.96.130.27','normal','',0,0,0,0,0,'[]'),(13189,'40.76.207.72','normal','',0,0,0,0,1,'{\"nf\":[1648271620]}'),(13190,'34.71.127.77','normal','',0,0,0,6,0,'{\"login\":[1648272266,1650126137,1650395940,1650400513,1652025078,1652094505]}'),(13191,'109.248.175.57','normal','',0,0,0,0,2,'{\"nf\":[1648273406,1648285084]}'),(13192,'78.135.80.226','normal','',0,0,0,0,1,'{\"nf\":[1648281660]}'),(13193,'41.114.148.123','normal','',0,0,0,0,0,'[]'),(13194,'54.36.148.154','normal','',0,0,0,0,0,'[]'),(13195,'147.78.47.230','normal','',0,0,0,0,17,'{\"nf\":[1648294123,1649705499,1650199785,1651380999,1652555367,1652555374,1652555375,1656027944,1656027946,1656027947,1656027948,1656027949,1656027951,1656027952,1656027953,1656027954,1656027955]}'),(13196,'167.114.100.72','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1652754274,0,1652753974,0,34,'{\"nf\":[1648306834,1648306838,1648306839,1648306841,1648306842,1648306843,1648306844,1648306845,1648306859,1648306860,1648306862,1648306863,1648306864,1650604844,1652753938,1652753942,1652753944,1652753945,1652753946,1652753948,1652753949,1652753951,1652753953,1652753954,1652753958,1652753960,1652753962,1652753964,1652753966,1652753968,1652753970,1652753972,1652753973,1652753974]}'),(13197,'114.119.137.184','normal','',0,0,0,0,0,'[]'),(13198,'66.249.66.203','normal','',0,0,0,0,0,'[]'),(13199,'20.106.131.188','normal','',0,0,0,0,7,'{\"nf\":[1648372587,1648372588,1648372591,1648372593,1648372594,1648372595,1648372596]}'),(13200,'40.117.88.125','normal','',0,0,0,0,0,'[]'),(13201,'91.227.16.16','normal','',0,0,0,0,0,'[]'),(13202,'18.130.191.2','normal','',0,0,0,0,0,'[]'),(13203,'184.168.108.46','normal','',0,0,0,0,0,'[]'),(13204,'54.39.215.222','normal','',0,0,0,0,0,'[]'),(13205,'159.89.165.49','normal','',0,0,0,48,0,'{\"login\":[1650245518,1651383929,1651549695,1652187034,1652212623,1652213278,1652221190,1652247036,1652840150,1653595748,1654515216,1654544560,1654563197,1654616075,1655284711,1655307819,1656754734,1656769542,1656775766,1656776374,1656793411,1656807722,1656811682,1656821805,1657513921,1657515369,1657708904,1657781234,1657787462,1659348375,1659348433,1659418819,1659707887,1659920089,1659933492,1659961357,1660013501,1660098786,1660272193,1660932471,1661755572,1661766324,1661772475,1661779765,1661796887,1661825164,1661831943,1661837854]}'),(13206,'17.121.112.102','normal','',0,0,0,0,0,'[]'),(13207,'197.94.222.180','normal','',0,0,0,0,0,'[]'),(13208,'85.233.160.31','normal','',0,0,0,0,1,'{\"nf\":[1648345501]}'),(13209,'94.26.245.40','normal','',0,0,0,2,0,'{\"login\":[1650163684,1650295941]}'),(13210,'192.185.2.32','normal','',0,0,0,0,0,'[]'),(13211,'120.55.160.158','normal','',0,0,0,0,0,'[]'),(13212,'51.79.16.44','normal','',0,0,0,0,0,'[]'),(13213,'34.101.57.219','normal','',0,0,0,1,0,'{\"login\":[1648377651]}'),(13214,'51.195.91.114','normal','',0,0,0,1,0,'{\"login\":[1648379343]}'),(13215,'31.44.0.77','normal','',0,0,0,0,3,'{\"nf\":[1648379488,1648753222,1648769584]}'),(13216,'194.163.133.199','normal','',0,0,0,1,0,'{\"login\":[1648381150]}'),(13217,'128.199.114.84','normal','',0,0,0,4,0,'{\"login\":[1648382789,1649019988,1649042632,1651419757]}'),(13218,'65.108.126.251','normal','',0,0,0,1,0,'{\"login\":[1648384550]}'),(13219,'94.247.172.123','normal','',0,0,0,3,0,'{\"login\":[1648386314,1650209569,1650259112]}'),(13220,'51.91.123.91','normal','',0,0,0,1,0,'{\"login\":[1648389744]}'),(13221,'167.99.142.91','normal','',0,0,0,1,0,'{\"login\":[1648391433]}'),(13222,'194.90.234.21','normal','',0,0,0,136,0,'{\"login\":[1648392525,1648399827,1648620136,1648650493,1648680908,1649004494,1649076757,1649090091,1649104709,1649557194,1649574381,1649605719,1649650269,1649662880,1649679736,1649685490,1649691299,1649707526,1649819105,1649841090,1649965829,1650029806,1650047534,1650129060,1650179520,1650321713,1650346675,1650453625,1650459121,1650557891,1650586315,1650593798,1650616267,1650623172,1650818306,1650942959,1650951437,1650990214,1651151097,1651160258,1651317938,1651328563,1651354433,1651394939,1651492626,1652015966,1652069419,1652082245,1652188324,1652287779,1652303768,1652359779,1652363859,1652375954,1652710621,1652721777,1652745707,1652758549,1652759262,1652787318,1652920875,1652976188,1653004363,1653012272,1653228432,1653274277,1653299320,1653350610,1653351925,1653379942,1653381285,1653423778,1653431668,1653435989,1653494678,1654051793,1654102351,1654252025,1654339178,1654341101,1654370760,1654430183,1654448303,1654495483,1654517279,1654528726,1654777455,1654783500,1654784719,1654876914,1654885149,1654970484,1655050165,1655231954,1655255155,1655405989,1655471546,1655554737,1655557106,1655563461,1655669037,1655683556,1655733846,1655740759,1655785107,1655796964,1655798776,1656005231,1656033556,1656759089,1656823470,1656876053,1656885181,1656908259,1656914410,1656920612,1656930515,1657064285,1657102069,1657190411,1657238296,1657266664,1657321531,1657480169,1657531236,1657557771,1657573238,1657607946,1657615921,1657671612,1657712449,1657729055,1657732334,1657981285,1658086248,1658191163]}'),(13223,'8.42.149.21','normal','',0,0,0,3,0,'{\"login\":[1648392969,1648593899,1648605192]}'),(13224,'142.93.2.210','normal','',0,0,0,2,0,'{\"login\":[1648393102,1650215579]}'),(13225,'65.1.203.59','normal','',0,0,0,2,0,'{\"login\":[1648393903,1648550473]}'),(13226,'217.160.64.174','normal','',0,0,0,3,0,'{\"login\":[1648394361,1649579520,1650171071]}'),(13227,'104.194.248.86','normal','',0,0,0,1,0,'{\"login\":[1648394813]}'),(13228,'159.89.228.214','normal','',0,0,0,38,0,'{\"login\":[1648395263,1648631599,1649528986,1650426324,1650428050,1651247470,1652359108,1652662520,1652901371,1653042862,1653505867,1654176639,1654430786,1655184660,1655792309,1656062660,1656282110,1656741357,1656799159,1656934167,1657224690,1657234126,1657472045,1658064909,1658156570,1658349416,1658455853,1659123014,1659366953,1659590207,1660351433,1660702958,1661181989,1661628792,1661679495,1662218718,1662348716,1663000069]}'),(13229,'188.34.183.162','normal','',0,0,0,28,0,'{\"login\":[1648395723,1648735254,1648736330,1649505666,1649792453,1649797213,1650704514,1650879365,1651108405,1651176435,1651177596,1652332183,1652426783,1652918052,1653261841,1653327915,1653590976,1654215874,1654244262,1655193366,1656222172,1656531172,1657563943,1657565953,1657641641,1658699276,1658732449,1658840805]}'),(13230,'173.249.45.176','normal','',0,0,0,1,0,'{\"login\":[1648397103]}'),(13231,'187.32.211.193','normal','',0,0,0,21,0,'{\"login\":[1648397580,1648465827,1648484383,1649749940,1650269406,1650839105,1651020119,1651711078,1652540999,1652564804,1652839873,1653916473,1654183721,1654381508,1654896632,1655454951,1658639840,1660124436,1660148590,1662021125,1662237207]}'),(13232,'52.36.51.188','normal','',0,0,0,1,0,'{\"login\":[1648398317]}'),(13233,'46.105.229.167','normal','',0,0,0,10,0,'{\"login\":[1648398914,1648402059,1648415900,1648421975,1648467202,1648499943,1648568416,1648585491,1648600317,1648653411]}'),(13234,'35.224.115.127','normal','',0,0,0,1,0,'{\"login\":[1648400273]}'),(13235,'52.234.178.100','normal','',0,0,0,26,0,'{\"login\":[1648401170,1649246938,1649498123,1649603926,1649690777,1649790703,1649814159,1649984173,1650306028,1650459702,1650548437,1650945529,1651169961,1651678749,1651980717,1652333457,1652401856,1652529955,1652530623,1652729384,1652751409,1652790991,1652904150,1653199923,1653339004,1653766951]}'),(13236,'114.119.143.152','normal','',0,0,0,0,0,'[]'),(13237,'158.69.125.189','normal','',0,0,0,2,0,'{\"login\":[1648401615,1648732240]}'),(13238,'13.125.17.211','normal','',0,0,0,1,0,'{\"login\":[1648401737]}'),(13239,'128.199.20.153','normal','',0,0,0,21,0,'{\"login\":[1648402504,1648696912,1650134813,1650140500,1650342049,1650887234,1651056294,1651495343,1651985737,1652708120,1652714057,1652816789,1652892384,1653033717,1653204833,1653250098,1653756827,1654291839,1654324416,1655164061,1655450365]}'),(13240,'62.141.42.14','normal','',0,0,0,3,0,'{\"login\":[1648402938,1648622596,1648666809]}'),(13241,'20.187.97.66','normal','',0,0,0,1,0,'{\"login\":[1648404253]}'),(13242,'194.233.90.4','normal','',0,0,0,5,0,'{\"login\":[1648405210,1649056889,1649785117,1650212827,1650237304]}'),(13243,'66.29.132.71','normal','',0,0,0,0,0,'[]'),(13244,'36.99.136.136','normal','',0,0,0,0,0,'[]'),(13245,'54.36.149.78','normal','',0,0,0,0,0,'[]'),(13246,'221.170.17.243','normal','',0,0,0,0,0,'[]'),(13247,'198.211.110.178','normal','',0,0,0,10,0,'{\"login\":[1648408895,1652346630,1654411183,1654424196,1658002344,1658026210,1660473165,1660504382,1661074645,1661638749]}'),(13248,'188.166.183.39','normal','',0,0,0,61,0,'{\"login\":[1648409320,1648599913,1649107411,1649696575,1649816631,1650362313,1650443151,1650864953,1651037614,1651687142,1651703892,1652339344,1652656860,1652694667,1652954024,1652971966,1653371120,1653510466,1653527874,1653914568,1654129087,1654152339,1654292485,1654343673,1654372522,1654443586,1654514253,1654549179,1654595393,1654881105,1654899857,1655034710,1655908625,1656031320,1656541539,1656785930,1656853567,1657196933,1657419007,1657550552,1657755271,1657862917,1658173088,1658219878,1658830354,1658832964,1659082073,1659837127,1660173535,1660224061,1660236190,1660242748,1660247756,1660424138,1660500559,1661323070,1661371231,1661509542,1661638652,1661739503,1662063704]}'),(13249,'104.197.232.134','normal','',0,0,0,1,0,'{\"login\":[1648410141]}'),(13250,'103.55.39.107','normal','',0,0,0,1,0,'{\"login\":[1648410347]}'),(13251,'188.166.226.196','normal','',0,0,0,22,0,'{\"login\":[1648410963,1648663156,1649206385,1649596856,1649698680,1650254295,1650698203,1651184144,1651743769,1651941439,1651944588,1652369968,1652424096,1652512091,1652536587,1652817706,1653034972,1653255303,1653436853,1654081626,1654143716,1654230573]}'),(13252,'69.39.239.34','normal','',0,0,0,13,0,'{\"login\":[1648411376,1649022895,1649742506,1650004476,1650142876,1650438753,1650647068,1650685714,1650848040,1650944149,1652383210,1652664170,1652665824]}'),(13253,'34.69.38.15','normal','',0,0,0,2,0,'{\"login\":[1648411812,1650041962]}'),(13254,'3.123.36.205','normal','',0,0,0,1,0,'{\"login\":[1648412228]}'),(13255,'83.149.99.23','normal','',0,0,0,2,0,'{\"login\":[1648412641,1648417519]}'),(13256,'167.71.117.225','normal','',0,0,0,33,0,'{\"login\":[1648413056,1648625560,1649962887,1650041022,1650357499,1650374961,1650378612,1650437547,1650449131,1650536075,1651022555,1651560227,1652919468,1653250747,1653323944,1653777993,1654188229,1654298921,1654640836,1654707229,1655555766,1655603334,1655661808,1657087781,1657288731,1657745773,1658317175,1658426903,1658532846,1658980536,1659395161,1660094044,1662735440]}'),(13257,'209.182.235.24','normal','',0,0,0,4,0,'{\"login\":[1648413877,1648599517,1648663660,1648683998]}'),(13258,'209.58.165.79','normal','',0,0,0,1,0,'{\"login\":[1648415089]}'),(13259,'109.70.148.39','normal','',0,0,0,1,0,'{\"login\":[1648415491]}'),(13260,'144.91.88.151','normal','',0,0,0,1,0,'{\"login\":[1648416306]}'),(13261,'175.45.125.65','normal','',0,0,0,24,0,'{\"login\":[1648416715,1648496601,1649762795,1649996020,1650272771,1650346009,1650574514,1650666250,1650950254,1651052558,1651141631,1652075079,1652454140,1652528622,1652987844,1653004630,1653022894,1653055238,1653497957,1654602671,1654635147,1654849600,1654925730,1655365783]}'),(13262,'198.54.114.89','normal','',0,0,0,0,0,'[]'),(13263,'168.119.165.104','normal','',0,0,0,2,0,'{\"login\":[1648417917,1648481995]}'),(13264,'217.148.3.101','normal','',0,0,0,1,0,'{\"login\":[1648418318]}'),(13265,'208.113.180.18','normal','',0,0,0,34,0,'{\"login\":[1648419147,1650267501,1650486379,1650628343,1650644765,1651048723,1651201169,1651398653,1652263853,1652623059,1652655228,1653242979,1654885946,1655537021,1656172317,1656177435,1656242457,1656785272,1656869237,1657621970,1657647494,1657729874,1657851671,1658302107,1658724317,1659601841,1659793861,1660216458,1660509510,1661393578,1661672512,1661700837,1661981274,1662716711]}'),(13266,'172.104.177.135','normal','',0,0,0,4,0,'{\"login\":[1648419962,1649734120,1650664004,1651068769]}'),(13267,'78.141.209.179','normal','',0,0,0,37,0,'{\"login\":[1648420361,1648536704,1648540325,1648556791,1648608497,1648704938,1649005078,1649576945,1649699194,1650147646,1650265127,1650429776,1650540692,1650681088,1655356220,1655394155,1655541584,1655663788,1655732468,1655746406,1656029096,1656046266,1656279880,1656544367,1656551988,1656728698,1656732031,1656813798,1656858273,1656870736,1657148861,1657259030,1657382432,1657517495,1657522516,1657527351,1657589197]}'),(13268,'207.154.195.143','normal','',0,0,0,16,0,'{\"login\":[1648420492,1652175882,1652204273,1652217258,1652849582,1653556768,1653562933,1653569913,1653586008,1653589720,1653606059,1654507703,1654513750,1655276602,1655278555,1655284819]}'),(13269,'74.208.228.35','normal','',0,0,0,4,0,'{\"login\":[1648422396,1648477847,1648654369,1649091780]}'),(13270,'142.132.232.14','normal','',0,0,0,1,0,'{\"login\":[1648423949]}'),(13271,'135.181.3.114','normal','',0,0,0,2,0,'{\"login\":[1648429082,1649062458]}'),(13272,'165.22.38.217','normal','',0,0,0,1,0,'{\"login\":[1648430791]}'),(13273,'146.59.214.226','normal','',0,0,0,1,0,'{\"login\":[1648434274]}'),(13274,'51.210.53.165','normal','',0,0,0,1,0,'{\"login\":[1648435919]}'),(13275,'213.226.118.13','normal','',0,0,0,1,0,'{\"login\":[1648439394]}'),(13276,'177.55.205.68','normal','',0,0,0,0,0,'[]'),(13277,'147.182.198.30','normal','',0,0,0,1,0,'{\"login\":[1648441077]}'),(13278,'124.123.106.231','normal','',0,0,0,0,0,'[]'),(13279,'82.223.70.124','normal','',0,0,0,0,0,'[]'),(13280,'134.195.196.53','normal','',0,0,0,11,0,'{\"login\":[1648446174,1648573952,1649089536,1649525157,1649533309,1649541945,1649743032,1650269885,1650608769,1650638910,1651180533]}'),(13281,'46.29.23.162','normal','',0,0,0,19,0,'{\"login\":[1648446587,1648601525,1648656227,1649009656,1649101433,1649547891,1649683381,1650031205,1650144778,1650301570,1650667375,1650688564,1650943560,1651160860,1651201767,1651356243,1652062543,1652370645,1652508844]}'),(13282,'105.251.214.100','normal','',0,0,0,0,0,'[]'),(13283,'151.106.41.64','normal','',0,0,0,42,0,'{\"login\":[1648447002,1649687076,1649766035,1650302836,1650625607,1650987258,1651104724,1652060742,1652441265,1652736488,1653383778,1653406575,1653530521,1654209808,1654431388,1654513044,1654584367,1654590367,1654632956,1654721915,1654807317,1655028610,1655154307,1656730686,1657714064,1658271295,1659010676,1659201442,1659211941,1659973109,1659999905,1660241460,1660311126,1660443671,1660675670,1661143355,1661286367,1661614725,1661693062,1661742791,1661758377,1662907193]}'),(13284,'167.172.231.148','normal','',0,0,0,3,0,'{\"login\":[1648447870,1649843721,1650260427]}'),(13285,'63.34.93.18','normal','',0,0,0,2,0,'{\"login\":[1648449995,1648499380]}'),(13286,'194.233.67.249','normal','',0,0,0,24,0,'{\"login\":[1648450839,1648613951,1649227808,1649249419,1650258551,1650403957,1650532258,1651198207,1651707773,1652436649,1652961542,1652975490,1653355886,1654173992,1654289250,1654888678,1655033896,1655219122,1655230989,1655585409,1656848882,1657236215,1657549101,1657559866]}'),(13287,'41.193.235.133','normal','',0,0,0,0,0,'[]'),(13288,'54.91.11.178','normal','',0,0,0,1,0,'{\"login\":[1648451298]}'),(13289,'103.150.60.152','normal','',0,0,0,1,0,'{\"login\":[1648451837]}'),(13290,'45.79.142.200','normal','',0,0,0,1,0,'{\"login\":[1648452171]}'),(13291,'82.166.39.15','normal','',0,0,0,43,0,'{\"login\":[1648453033,1648463503,1648491998,1648575760,1648700066,1650268445,1650321085,1650358188,1651058458,1652549038,1652814023,1653338351,1653429935,1654106742,1654295711,1654339814,1654529681,1654530129,1655024146,1655143712,1655605817,1655775561,1655826558,1655892219,1656724735,1656763006,1656795842,1656858948,1657213908,1657713251,1658178207,1658221534,1658393572,1658726717,1658738276,1658808569,1658938159,1659009603,1659771579,1660295115,1661420272,1661661041,1662720401]}'),(13292,'185.240.103.93','normal','',0,0,0,3,0,'{\"login\":[1648453463,1648491435,1648701827]}'),(13293,'195.201.186.6','normal','',0,0,0,1,0,'{\"login\":[1648455686]}'),(13294,'186.234.80.210','normal','',0,0,0,0,0,'[]'),(13295,'150.95.113.178','normal','',0,0,0,13,0,'{\"login\":[1648456577,1649535459,1650005940,1650008892,1650527035,1650725716,1651494435,1651592097,1652021134,1652450004,1652532623,1652650352,1652781542]}'),(13296,'17.121.115.69','normal','',0,0,0,0,0,'[]'),(13297,'92.204.138.28','normal','',0,0,0,35,0,'{\"login\":[1648457906,1648467655,1648723998,1649100881,1649674050,1649788319,1649967289,1650146209,1650351332,1650484198,1650718904,1650846755,1651009120,1651010428,1651183438,1651565982,1652096292,1652575704,1652684668,1652850024,1653494020,1653594914,1653615197,1653766039,1653889125,1654290537,1654505229,1654546252,1654615497,1654783094,1654897438,1654966037,1655223143,1655569247,1655587023]}'),(13298,'34.121.162.110','normal','',0,0,0,1,0,'{\"login\":[1648458398]}'),(13299,'195.158.24.186','normal','',0,0,0,1,0,'{\"login\":[1648458874]}'),(13300,'103.157.97.146','normal','',0,0,0,10,0,'{\"login\":[1648459796,1648535537,1648669069,1648685322,1649027773,1649526806,1649947038,1650016247,1650314185,1652443257]}'),(13301,'198.244.167.101','normal','',0,0,0,43,0,'{\"login\":[1648460250,1648647168,1649655640,1649676886,1650177337,1651194660,1651272446,1651321422,1651727114,1652334741,1652426092,1652582325,1653298673,1653342787,1653627207,1653814796,1654185522,1654207237,1654233963,1654607586,1654983121,1655370611,1655464873,1656856248,1656863924,1656929606,1657422995,1658164609,1658222365,1658838178,1658945370,1659280646,1659319340,1659732424,1660342100,1660629182,1660661826,1661521286,1661618668,1661658672,1662277118,1662659437,1662905688]}'),(13302,'118.27.125.16','normal','',0,0,0,0,1,'{\"nf\":[1648460468]}'),(13303,'202.131.107.130','normal','',0,0,0,33,0,'{\"login\":[1648461619,1649227015,1649612832,1649680688,1650166545,1650253825,1650618669,1651969733,1652382552,1652792465,1653415797,1653587673,1654170480,1654204649,1654251168,1654274055,1654621837,1654891045,1655548836,1655895309,1656162041,1656543422,1656753862,1656851557,1657607281,1657735590,1658205146,1658241906,1658319861,1658513080,1658820579,1659110220,1659993674]}'),(13304,'18.159.200.176','normal','',0,0,0,1,0,'{\"login\":[1648464418]}'),(13305,'81.169.209.125','normal','',0,0,0,2,0,'{\"login\":[1648466275,1648616025]}'),(13306,'185.210.145.63','normal','',0,0,0,0,2,'{\"nf\":[1648467037,1648467040]}'),(13307,'106.53.136.24','normal','',0,0,0,10,0,'{\"login\":[1648468593,1650392432,1650819604,1651074427,1651747096,1653382530,1653527206,1654325065,1654502544,1655664444]}'),(13308,'92.118.36.208','normal','',0,0,0,0,5,'{\"nf\":[1648468875,1648468877,1648468880,1648803709,1650519162]}'),(13309,'195.128.150.25','normal','',0,0,0,3,0,'{\"login\":[1648470526,1648565855,1648708115]}'),(13310,'65.21.53.89','normal','',0,0,0,3,0,'{\"login\":[1648475475,1648483178,1648659465]}'),(13311,'185.28.21.225','normal','',0,0,0,0,1,'{\"nf\":[1648476200]}'),(13312,'134.122.56.129','normal','',0,0,0,1,0,'{\"login\":[1648479584]}'),(13313,'213.152.183.66','normal','',0,0,0,0,0,'[]'),(13314,'184.168.125.72','normal','',0,0,0,12,0,'{\"login\":[1648482586,1648691066,1648731203,1649983430,1650729910,1651434644,1651500836,1652386513,1652733643,1654306092,1654631201,1654949078]}'),(13315,'213.175.66.138','normal','',0,0,0,14,0,'{\"login\":[1648483806,1649092341,1651521467,1652385191,1652537326,1652636432,1653447488,1654516069,1654961552,1655189496,1655425768,1655672996,1656826771,1657840528]}'),(13316,'54.36.148.255','normal','',0,0,0,0,0,'[]'),(13317,'54.36.148.123','normal','',0,0,0,0,0,'[]'),(13318,'54.36.148.65','normal','',0,0,0,0,0,'[]'),(13319,'35.203.66.166','normal','',0,0,0,12,0,'{\"login\":[1648485574,1648632020,1649681794,1649747281,1649752070,1650044757,1650326110,1650371362,1651096544,1651478198,1651949504,1652259772]}'),(13320,'65.21.181.164','normal','',0,0,0,11,0,'{\"login\":[1648488509,1649006249,1649017449,1649486297,1649554455,1649830034,1651424578,1652405956,1652801360,1653013557,1653327254]}'),(13321,'185.80.130.75','normal','',0,0,0,4,0,'{\"login\":[1648489096,1648505445,1648549840,1649006836]}'),(13322,'35.180.135.41','normal','',0,0,0,6,0,'{\"login\":[1648490858,1648534382,1648589067,1648589864,1648617679,1648628560]}'),(13323,'45.32.106.130','normal','',0,0,0,0,1,'{\"nf\":[1648492304]}'),(13324,'91.219.194.21','normal','',0,0,0,7,0,'{\"login\":[1648492567,1649224655,1649786523,1650003745,1650407421,1650986860,1651043729]}'),(13325,'69.163.163.214','normal','',0,0,0,15,0,'{\"login\":[1648493134,1648658552,1650600914,1650639498,1651131271,1651344553,1651396814,1651995375,1652098108,1652160866,1652428074,1653008946,1653070889,1653208818,1653212767]}'),(13326,'35.170.29.112','normal','',0,0,0,3,0,'{\"login\":[1648493697,1649077336,1649976081]}'),(13327,'52.42.156.111','normal','',0,0,0,8,0,'{\"login\":[1648494896,1648558098,1648606846,1649013002,1649015221,1650138140,1650549220,1650963867]}'),(13328,'92.42.110.25','normal','',0,0,0,1,0,'{\"login\":[1648495462]}'),(13329,'188.166.250.149','normal','',0,0,0,4,0,'{\"login\":[1648497137,1649096398,1649957755,1650039636]}'),(13330,'185.31.40.13','normal','',0,0,0,1,0,'{\"login\":[1648497695]}'),(13331,'162.241.226.193','normal','',0,0,0,0,0,'[]'),(13332,'162.215.209.69','normal','',0,0,0,29,0,'{\"login\":[1648501035,1648653892,1648726530,1648728081,1648729643,1649098100,1649102546,1649242840,1649593361,1649666567,1649697620,1649711667,1649803818,1649955512,1650039173,1650248101,1650363004,1650536843,1650605241,1650692515,1650830199,1650988482,1651171139,1651280210,1651734571,1652001262,1652044306,1652083732,1652108911]}'),(13333,'34.95.229.153','normal','',0,0,0,4,0,'{\"login\":[1648501606,1648539146,1648588676,1648615615]}'),(13334,'184.72.27.211','normal','',0,0,0,1,0,'{\"login\":[1648502151]}'),(13335,'194.163.130.196','normal','',0,0,0,0,1,'{\"nf\":[1648502875]}'),(13336,'47.90.246.252','normal','',0,0,0,21,0,'{\"login\":[1648503794,1648566506,1649589879,1649590747,1650611467,1651958324,1652287140,1652341318,1652544707,1652655990,1652730090,1653196979,1653211780,1654079250,1654113299,1654181930,1654202969,1654304779,1654557115,1654597437,1656792519]}'),(13337,'217.61.54.110','normal','',0,0,0,41,0,'{\"login\":[1648504889,1649754211,1649761173,1650491500,1650654477,1650661192,1651032407,1651101990,1651163288,1651172925,1651524113,1651694865,1652562633,1652772194,1653254004,1653326589,1654159094,1654245994,1655449716,1655742883,1655825612,1656536835,1657681952,1657894611,1659088482,1659114852,1659146639,1659257533,1659325672,1659364763,1659398551,1659403362,1659832418,1660119199,1660679031,1660953808,1661015070,1661314086,1661323965,1661537105,1662387340]}'),(13338,'136.144.250.63','normal','',0,0,0,10,0,'{\"login\":[1648505989,1648691948,1649598603,1649800194,1649945469,1650014034,1650022933,1650162977,1651047539,1651248347]}'),(13339,'51.83.41.140','normal','',0,0,0,15,0,'{\"login\":[1648506534,1651038419,1651341865,1651749112,1652015672,1652087306,1652297311,1652431369,1652945980,1652956764,1653202884,1653419342,1653511121,1653589004,1653787247]}'),(13340,'69.163.196.200','normal','',0,0,0,42,0,'{\"login\":[1648507081,1649483083,1650467861,1650468626,1650508432,1650552363,1650568604,1650624702,1650844205,1651275896,1651548094,1653047219,1653443027,1653605737,1653782617,1654058052,1654065883,1654112483,1654132459,1654164289,1654217612,1654242530,1654877431,1655368194,1655380437,1655458261,1655731088,1656918831,1657060685,1657239349,1657327806,1657418209,1657828595,1658091463,1660143257,1660984191,1661209130,1662029822,1662109565,1662426205,1662869184,1663077858]}'),(13341,'216.117.188.6','normal','',0,0,0,12,0,'{\"login\":[1648507623,1649245291,1649484155,1649558975,1650047995,1650436138,1650501657,1650566536,1650950637,1650964688,1650982341,1651054893]}'),(13342,'186.234.80.90','normal','',0,0,0,1,0,'{\"login\":[1650142812]}'),(13343,'35.211.10.21','normal','',0,0,0,0,0,'[]'),(13344,'3.236.55.119','normal','',0,0,0,0,2,'{\"nf\":[1648509194,1648509194]}'),(13345,'143.110.190.49','normal','',0,0,0,1,0,'{\"login\":[1650307576]}'),(13346,'162.0.217.15','normal','',0,0,0,0,0,'[]'),(13347,'185.27.128.57','normal','',0,0,0,1,0,'{\"login\":[1648536117]}'),(13348,'72.167.190.53','normal','',0,0,0,0,0,'[]'),(13349,'51.255.81.60','normal','',0,0,0,44,0,'{\"login\":[1648537962,1648603555,1649084310,1649477240,1649499735,1649770386,1650165652,1650248577,1650578048,1651035978,1651154944,1651510857,1652290329,1652802103,1653024380,1653048767,1653600392,1654133311,1654228878,1654240802,1654254588,1654420018,1654626350,1654974910,1655061248,1656030208,1656038086,1656427039,1656862389,1657146477,1657727396,1657831332,1658063115,1658259937,1658544131,1658740247,1658805395,1658984725,1659313074,1659972409,1660554815,1661540120,1661650474,1661682640]}'),(13350,'89.58.11.2','normal','',0,0,0,12,0,'{\"login\":[1648538555,1648593099,1648603961,1649541402,1649566710,1649753674,1650410548,1651473777,1651991450,1652396475,1652452073,1652578643]}'),(13351,'103.142.25.17','normal','',0,0,0,9,0,'{\"login\":[1648541504,1648614791,1649768212,1650150514,1650171991,1650178212,1650288631,1650729583,1652856472]}'),(13352,'121.37.149.3','normal','',0,0,0,15,0,'{\"login\":[1648543228,1648586681,1648669943,1649491666,1649542485,1649979754,1650148124,1650340123,1650431830,1651438258,1651735870,1652007115,1652698796,1655661150,1657107326]}'),(13353,'34.75.65.218','normal','',0,0,0,31,0,'{\"login\":[1648544384,1649010756,1649216710,1651945571,1652306986,1652583055,1653387543,1653475616,1654083217,1654738655,1654765308,1654943090,1655420903,1656286584,1656569198,1656900987,1657218381,1657693795,1657701856,1657702667,1657852607,1658583165,1658952283,1659394474,1659607278,1659724312,1660400484,1661999162,1662401557,1662694797,1662963618]}'),(13354,'195.4.173.50','normal','',0,0,0,19,0,'{\"login\":[1648547348,1648587883,1648726018,1649706483,1649958479,1650387018,1650412280,1650471697,1650520471,1650700503,1650870172,1650893943,1651014297,1651033882,1651198799,1651566952,1652028355,1652039248,1652109549]}'),(13355,'82.165.118.34','normal','',0,0,0,1,0,'{\"login\":[1648549216]}'),(13356,'185.230.138.4','normal','',0,0,0,2,0,'{\"login\":[1648551718,1649223882]}'),(13357,'103.208.24.86','normal','',0,0,0,3,0,'{\"login\":[1648553027,1648592684,1650052123]}'),(13358,'159.89.175.24','normal','',0,0,0,8,0,'{\"login\":[1648553661,1649069890,1649081408,1649809900,1650030740,1650430100,1650621066,1652510802]}'),(13359,'107.150.124.98','normal','',0,0,0,1,0,'{\"login\":[1648554886]}'),(13360,'185.209.230.33','normal','',0,0,0,18,0,'{\"login\":[1648556162,1649238838,1649806230,1650570106,1651038767,1651181698,1651682638,1652103107,1652542496,1652754278,1652782984,1652784427,1653584330,1654220207,1654738057,1654854075,1654897842,1654934375]}'),(13361,'103.122.246.123','normal','',0,0,0,0,1,'{\"nf\":[1648556963]}'),(13362,'35.165.123.108','normal','',0,0,0,0,0,'[]'),(13363,'185.224.137.109','normal','',0,0,0,0,1,'{\"nf\":[1648559210]}'),(13364,'194.233.80.204','normal','',0,0,0,14,0,'{\"login\":[1648559403,1649085513,1649673110,1650612663,1650861084,1651195252,1652393797,1652447287,1652788777,1653198940,1653430803,1653614527,1653899437,1653905073]}'),(13365,'159.203.120.246','normal','',0,0,0,51,0,'{\"login\":[1648560686,1649504585,1649652957,1649745148,1650290567,1650382941,1650454536,1650993954,1651055928,1651063514,1651095642,1651508167,1651553645,1651951463,1652344004,1652393127,1652786593,1653365145,1653381187,1654221930,1654317282,1654539403,1654897036,1655168015,1655430031,1655452973,1655578154,1656048665,1656840214,1657111115,1657139329,1657182698,1657246894,1657698642,1658160976,1658348369,1658357957,1658757273,1659418634,1659735829,1659846637,1659971696,1660478139,1660710939,1660740164,1660783212,1661016314,1661123266,1661442072,1662122936,1663088393]}'),(13366,'144.202.96.144','normal','',0,0,0,1,0,'{\"login\":[1648563293]}'),(13367,'161.97.180.233','normal','',0,0,0,5,0,'{\"login\":[1648563942,1649030986,1649225446,1649492734,1649553358]}'),(13368,'151.106.124.85','normal','',0,0,0,0,0,'[]'),(13369,'198.46.160.118','normal','',0,0,0,24,0,'{\"login\":[1648565228,1648626839,1649201708,1649232553,1649485760,1649767121,1650680506,1651179350,1652439946,1653459650,1654119076,1654525228,1654548202,1654558605,1654605893,1654887892,1654946286,1655688872,1656167176,1656204499,1656552947,1656762356,1656844211,1657090006]}'),(13370,'176.223.138.125','normal','',0,0,0,0,0,'[]'),(13371,'194.59.164.45','normal','',0,0,0,0,1,'{\"nf\":[1648567097]}'),(13372,'172.105.239.173','normal','',0,0,0,3,0,'{\"login\":[1648567144,1648570296,1648613544]}'),(13373,'66.33.212.117','normal','',0,0,0,23,0,'{\"login\":[1648569038,1649987129,1650958631,1651256970,1651563083,1652835189,1652944672,1653778913,1653891927,1654338536,1654889071,1654939511,1655466865,1655551030,1655772390,1656017096,1656923306,1657151238,1657153662,1657869538,1658003223,1658059560,1658687369]}'),(13374,'94.103.185.10','normal','',0,0,0,0,0,'[]'),(13375,'153.92.208.11','normal','',0,0,0,0,0,'[]'),(13376,'162.0.215.249','normal','',0,0,0,0,0,'[]'),(13377,'213.32.76.237','normal','',0,0,0,3,0,'{\"login\":[1648571512,1648697364,1648707190]}'),(13378,'144.91.117.193','normal','',0,0,0,8,0,'{\"login\":[1648572721,1649487375,1649950176,1650347335,1650413481,1652780102,1654268084,1654993424]}'),(13379,'84.87.22.231','normal','',0,0,0,0,0,'[]'),(13380,'13.79.17.158','normal','',0,0,0,41,0,'{\"login\":[1648575162,1649106346,1649595098,1649825673,1649973877,1650428369,1650693638,1650953013,1651153022,1652135323,1652526629,1653025611,1653210790,1653225492,1653315742,1653401463,1653603720,1654206376,1654960908,1655032675,1656325140,1657131997,1657174649,1657896041,1658319319,1658438896,1658579020,1658643838,1658974083,1659147292,1659254322,1659401989,1660185401,1660503117,1661526839,1661696539,1661749951,1662269621,1662293300,1662827620,1663041080]}'),(13381,'103.106.78.178','normal','',0,0,0,19,0,'{\"login\":[1648576954,1648724495,1648739469,1649064846,1649074467,1649978282,1650020707,1650390109,1650554729,1650647646,1650669066,1651022866,1651591123,1652446609,1652506254,1652515358,1652550463,1652728681,1652732934]}'),(13382,'162.0.232.248','normal','',0,0,0,0,0,'[]'),(13383,'45.92.156.212','normal','',0,0,0,1,0,'{\"login\":[1648580182]}'),(13384,'81.88.52.222','normal','',0,0,0,24,0,'{\"login\":[1648581401,1648630291,1649591614,1650032158,1650551576,1650998737,1651710406,1652958817,1653359857,1653398913,1654229730,1654360094,1654360694,1654754044,1654886734,1655241575,1655437986,1655591889,1657093009,1657270715,1657427166,1657689838,1657690636,1657733145]}'),(13385,'192.169.152.218','normal','',0,0,0,7,0,'{\"login\":[1648581794,1649794239,1650480620,1650531507,1650662876,1650724782,1651360727]}'),(13386,'195.201.27.74','normal','',0,0,0,13,0,'{\"login\":[1648582195,1649062005,1649203263,1650184779,1650317324,1650530767,1650587813,1651081835,1651107482,1651359840,1651686511,1651753166,1652587404]}'),(13387,'167.99.226.252','normal','',0,0,0,1,0,'{\"login\":[1648582613]}'),(13388,'46.161.15.38','normal','',0,0,0,0,18,'{\"nf\":[1649402477,1649402480,1649402484,1649402485,1649402488,1649402491,1649986654,1649986659,1649986664,1649986669,1649986672,1649986680,1650442826,1650442832,1650442836,1650442845,1650442850,1650442853]}'),(13389,'64.227.184.66','normal','',0,0,0,16,0,'{\"login\":[1648583015,1650139082,1650168779,1650518341,1650678188,1651098360,1651383358,1651978710,1652395804,1652619738,1652663405,1652897222,1653480116,1653888192,1654792855,1655174873]}'),(13390,'165.227.145.176','normal','',0,0,0,3,0,'{\"login\":[1648584265,1648584690,1648705823]}'),(13391,'138.201.225.66','normal','',0,0,0,0,1,'{\"nf\":[1648585239]}'),(13392,'34.82.72.187','normal','',0,0,0,1,0,'{\"login\":[1648585887]}'),(13393,'95.111.197.132','normal','',0,0,0,1,0,'{\"login\":[1648587474]}'),(13394,'35.195.252.29','normal','',0,0,0,27,0,'{\"login\":[1648588277,1648674374,1649246108,1650579225,1650658956,1650972224,1651420832,1651972724,1652191489,1652357340,1652451379,1652625283,1652658486,1652705526,1652842678,1652948643,1653765140,1654085601,1654545274,1656016012,1656737998,1657093747,1657325927,1657476834,1657552799,1658158851,1659004251]}'),(13395,'144.126.129.19','normal','',0,0,0,2,0,'{\"login\":[1648590664,1648672157]}'),(13396,'3.108.241.226','normal','',0,0,0,1,0,'{\"login\":[1648591060]}'),(13397,'106.52.145.59','normal','',0,0,0,15,0,'{\"login\":[1648591462,1649014669,1649031514,1649490583,1650431511,1650954203,1650959833,1651001138,1651087433,1651989292,1652392456,1652645465,1652821438,1652889318,1653053418]}'),(13398,'3.36.53.204','normal','',0,0,0,2,0,'{\"login\":[1648591869,1649784094]}'),(13399,'81.70.248.169','normal','',0,0,0,21,0,'{\"login\":[1648592269,1649214305,1649793046,1650132423,1650270367,1650367854,1650441053,1650456373,1651720635,1651750459,1652085516,1652305684,1652843614,1652945324,1654604799,1655455609,1656077338,1657863857,1658328712,1659335815,1660316847]}'),(13400,'151.80.91.175','normal','',0,0,0,5,0,'{\"login\":[1648594299,1648673032,1649095109,1649739368,1650450023]}'),(13401,'207.148.66.152','normal','',0,0,0,8,0,'{\"login\":[1648594694,1648703607,1649548982,1649561528,1650360942,1650585433,1651250077,1651335607]}'),(13402,'205.147.109.158','normal','',0,0,0,5,0,'{\"login\":[1648595506,1648661760,1649783482,1650490786,1650591398]}'),(13403,'66.42.52.221','normal','',0,0,0,3,0,'{\"login\":[1648595903,1649051334,1649223097]}'),(13404,'65.0.145.55','normal','',0,0,0,3,0,'{\"login\":[1648596704,1649497586,1649703369]}'),(13405,'78.135.83.195','normal','',0,0,0,6,0,'{\"login\":[1648597102,1649494338,1650053949,1650169703,1650561862,1651027459]}'),(13406,'92.205.14.152','normal','',0,0,0,0,1,'{\"nf\":[1648601599]}'),(13407,'156.146.49.134','normal','',0,0,0,0,0,'[]'),(13408,'81.88.52.221','normal','',0,0,0,28,0,'{\"login\":[1648603150,1649073891,1649594229,1650045217,1650256662,1650454194,1650484915,1651526745,1651938492,1652427416,1653812963,1654755275,1655395943,1656039251,1656886692,1657684260,1658594368,1659141512,1659316194,1659609468,1660457272,1660525323,1661219950,1661642094,1661710210,1662721639,1662953187,1662960692]}'),(13409,'88.198.19.200','normal','',0,0,0,14,0,'{\"login\":[1648605593,1648704488,1649600363,1649966557,1650031684,1650140969,1651094736,1651190549,1651755902,1653265775,1653815724,1654072150,1654191857,1654589871]}'),(13410,'35.166.11.197','normal','',0,0,0,0,0,'[]'),(13411,'34.219.16.128','normal','',0,0,0,0,0,'[]'),(13412,'94.130.123.117','normal','',0,0,0,4,0,'{\"login\":[1648606428,1648652414,1649226221,1649483615]}'),(13413,'35.87.10.22','normal','',0,0,0,0,0,'[]'),(13414,'157.55.39.130','normal','',0,0,0,0,0,'[]'),(13415,'194.163.137.31','normal','',0,0,0,13,0,'{\"login\":[1648607671,1649069325,1649088391,1649514806,1650469394,1650618357,1650665127,1650691391,1650899466,1651133132,1651977710,1652308929,1653774293]}'),(13416,'173.212.201.226','normal','',0,0,0,26,0,'{\"login\":[1648608088,1649080222,1649096955,1649521450,1649565855,1649664716,1649705457,1650005215,1650562633,1651117613,1651386691,1651558341,1651685246,1651700040,1652187692,1652385852,1652389270,1652534624,1652726548,1654620459,1654757768,1655657817,1655684224,1655786459,1655809331,1656742018]}'),(13417,'46.31.77.42','normal','',0,0,0,2,0,'{\"login\":[1648608913,1648737877]}'),(13418,'114.119.147.81','normal','',0,0,0,0,0,'[]'),(13419,'217.182.175.39','normal','',0,0,0,32,0,'{\"login\":[1648614366,1649023432,1649032572,1650465309,1650831476,1651286321,1652057131,1652336042,1652574239,1652590615,1652976885,1653263143,1653375003,1653388700,1653585003,1653901315,1654199529,1654730850,1654905945,1654995357,1655550009,1655798320,1656040419,1656736669,1657052729,1657067171,1657523914,1657748934,1657867640,1658502775,1658667428,1658679485]}'),(13420,'213.246.45.100','normal','',0,0,0,0,0,'[]'),(13421,'45.33.96.238','normal','',0,0,0,2,0,'{\"login\":[1648615201,1648673467]}'),(13422,'81.88.52.8','normal','',0,0,0,43,0,'{\"login\":[1648616432,1648692844,1650041488,1650325484,1650500914,1650573638,1650876727,1650978275,1651006707,1651089269,1651273311,1652397821,1652738627,1652826024,1653007409,1653039806,1653400084,1653503224,1653522473,1653768760,1653790963,1654491934,1654619914,1655411929,1655456935,1655608304,1655911780,1656558665,1656882919,1657611237,1658990877,1659384781,1659806991,1660087768,1660492543,1661389211,1661410662,1662209336,1662241570,1662343186,1662801678,1662929028,1663044301]}'),(13423,'146.255.171.177','normal','',0,0,0,1,0,'{\"login\":[1648616856]}'),(13424,'65.21.232.254','normal','',0,0,0,0,0,'[]'),(13425,'185.50.25.24','normal','',0,0,0,0,0,'[]'),(13426,'194.163.138.60','normal','',0,0,0,1,0,'{\"login\":[1648619317]}'),(13427,'196.213.105.46','normal','',0,0,0,0,0,'[]'),(13428,'103.152.255.30','normal','',0,0,0,0,0,'[]'),(13429,'141.94.16.41','normal','',0,0,0,6,0,'{\"login\":[1648620954,1648632446,1648650959,1649009089,1649691825,1649701798]}'),(13430,'95.111.196.70','normal','',0,0,0,1,0,'{\"login\":[1648621361]}'),(13431,'161.97.175.221','normal','',0,0,0,14,0,'{\"login\":[1648622183,1649823380,1650034485,1650533018,1650711956,1650904891,1651355333,1651437352,1652178298,1652178929,1652395132,1654160786,1655069104,1655453630]}'),(13432,'46.101.159.72','normal','',0,0,0,8,0,'{\"login\":[1648623006,1649005685,1649250283,1649603028,1650492935,1651281950,1651293181,1652281980]}'),(13433,'103.101.161.220','normal','',0,0,0,27,0,'{\"login\":[1648624289,1649588150,1649620738,1649734638,1650447580,1650473225,1651242129,1652143865,1652256586,1652389811,1652581595,1652808403,1652885386,1653258565,1653405281,1653589662,1654385136,1654501348,1654529211,1655033078,1655777830,1657468567,1657619948,1657707521,1657991856,1659779776,1659827740]}'),(13434,'67.205.43.116','normal','',0,0,0,19,0,'{\"login\":[1648625138,1649012440,1649034696,1649582106,1650581887,1650652780,1651137827,1651300920,1653300612,1653311076,1653363151,1653440332,1653786350,1654022642,1654066667,1654313987,1654316619,1654794507,1656137748]}'),(13435,'114.119.146.185','normal','',0,0,0,0,0,'[]'),(13436,'3.108.156.75','normal','',0,0,0,1,0,'{\"login\":[1648626415]}'),(13437,'162.241.219.212','normal','',0,0,0,0,1,'{\"nf\":[1650406648]}'),(13438,'66.29.141.137','normal','',0,0,0,2,0,'{\"login\":[1650138283,1650165328]}'),(13439,'161.97.112.17','normal','',0,0,0,13,0,'{\"login\":[1648628977,1648691510,1648697830,1649834535,1650164308,1650316697,1650553148,1650985632,1653271013,1654154870,1654216749,1654247729,1654427787]}'),(13440,'45.79.80.184','normal','',0,0,0,1,0,'{\"login\":[1648632876]}'),(13441,'15.236.47.51','normal','',0,0,0,1,0,'{\"login\":[1648637234]}'),(13442,'167.94.138.45','normal','',0,0,0,0,0,'[]'),(13443,'213.152.184.86','normal','',0,0,0,0,0,'[]'),(13444,'143.110.177.29','normal','',0,0,0,2,0,'{\"login\":[1648651932,1649835189]}'),(13445,'186.234.80.105','normal','',0,0,0,0,0,'[]'),(13446,'103.129.222.91','normal','',0,0,0,32,0,'{\"login\":[1648657166,1649686019,1649818487,1649975349,1650380061,1650525583,1650953811,1651264710,1652312169,1652819548,1652956082,1653022639,1654279965,1654508217,1654796976,1655676942,1655691533,1655779203,1657250259,1658498130,1658660424,1659406136,1660067595,1660370082,1660770443,1660772142,1661161810,1661192877,1661354712,1661520503,1661727228,1662224283]}'),(13447,'185.27.99.145','normal','',0,0,0,0,1,'{\"nf\":[1648658005]}'),(13448,'46.183.119.232','normal','',0,0,0,31,0,'{\"login\":[1648658079,1648696009,1649709589,1649799003,1650356122,1650382221,1651031062,1651156883,1652704739,1653396384,1653481025,1653513096,1653609126,1654197778,1654442399,1654881522,1654947082,1655576551,1655587842,1655776922,1655791859,1656071136,1656576943,1656732693,1656759740,1656931427,1657167991,1657267796,1657410573,1657658426,1657716531]}'),(13449,'80.74.147.43','normal','',0,0,0,8,0,'{\"login\":[1648659955,1649570105,1649951750,1650022190,1650271810,1651260414,1651723395,1651748431]}'),(13450,'148.72.208.193','normal','',0,0,0,26,0,'{\"login\":[1648665915,1648676113,1649230190,1650474744,1650606709,1650622278,1651346358,1651550844,1651564047,1651580455,1652824185,1652876629,1653885416,1654076083,1654489556,1654883970,1654887502,1655422728,1655885286,1656891964,1656898726,1657049175,1657129902,1660012584,1660137649,1661214660]}'),(13451,'105.73.85.148','normal','',0,0,0,5,0,'{\"login\":[1648667731,1648739965,1649032038,1649606610,1649616366]}'),(13452,'64.225.65.31','normal','',0,0,0,33,0,'{\"login\":[1648668188,1649826924,1650695916,1650836554,1651073479,1651693579,1652594884,1652906923,1653616546,1653783540,1654763405,1654900668,1655041624,1655399513,1655441289,1655899977,1656796511,1658669448,1658829704,1659122392,1659587022,1660207697,1660367821,1660469469,1660513435,1660604766,1660721611,1661219141,1661315925,1662544560,1662812486,1662823482,1662962156]}'),(13453,'34.247.56.43','normal','',0,0,0,0,0,'[]'),(13454,'144.126.135.139','normal','',0,0,0,0,4,'{\"nf\":[1648671053,1648671078,1648671095,1649168162]}'),(13455,'35.88.168.156','normal','',0,0,0,0,0,'[]'),(13456,'142.93.52.31','normal','',0,0,0,4,0,'{\"login\":[1648671278,1648695534,1649536533,1649550068]}'),(13457,'46.183.118.252','normal','',0,0,0,1,0,'{\"login\":[1648673905]}'),(13458,'2.59.133.156','normal','',0,0,0,2,0,'{\"login\":[1648675244,1649493265]}'),(13459,'172.105.14.32','normal','',0,0,0,2,0,'{\"login\":[1648675677,1648694190]}'),(13460,'195.179.202.215','normal','',0,0,0,4,0,'{\"login\":[1648676549,1649252835,1651047222,1651197022]}'),(13461,'159.203.121.12','normal','',0,0,0,28,0,'{\"login\":[1648676982,1649765492,1651016724,1651334732,1651399562,1651731234,1652304400,1652571311,1652999912,1653486468,1654498982,1654642592,1655039015,1655359191,1655886050,1656054146,1656879879,1657098975,1657145289,1657173307,1658202602,1660238856,1660572980,1660686429,1661179828,1662697244,1662913210,1663116500]}'),(13462,'80.13.9.197','normal','',0,0,0,0,2,'{\"nf\":[1648677269,1648852137]}'),(13463,'188.166.212.133','normal','',0,0,0,16,0,'{\"login\":[1648677867,1649836515,1650324230,1650415784,1650657846,1651692281,1651936495,1652362490,1652693783,1652927993,1653056813,1653271677,1653346047,1653501914,1653595582,1654122402]}'),(13464,'185.133.205.241','normal','',0,0,0,0,2,'{\"nf\":[1648678268,1648678271]}'),(13465,'220.119.162.36','normal','',0,0,0,0,1,'{\"nf\":[1648678481]}'),(13466,'165.227.165.151','normal','',0,0,0,1,0,'{\"login\":[1648680479]}'),(13467,'106.54.20.135','normal','',0,0,0,7,0,'{\"login\":[1648681800,1648740467,1649710621,1651735223,1652404584,1654111660,1654380907]}'),(13468,'202.47.95.38','normal','',0,0,0,1,0,'{\"login\":[1648684436]}'),(13469,'165.232.185.66','normal','',0,0,0,20,0,'{\"login\":[1648684879,1650168325,1650354752,1650360258,1650693082,1650944740,1651086514,1652284591,1652939952,1652974081,1653769694,1654359493,1654379714,1654622751,1654643036,1654643479,1654716033,1654902287,1655160112,1655212388]}'),(13470,'139.59.80.50','normal','',0,0,0,22,0,'{\"login\":[1648686646,1649950965,1650317956,1650470161,1651003220,1653195996,1653444816,1653796529,1654287329,1654526462,1654869230,1654900267,1655360378,1655456270,1657384975,1657597312,1657603313,1657711568,1657856349,1658071193,1658180787,1658235840]}'),(13471,'13.51.26.29','normal','',0,0,0,1,0,'{\"login\":[1648687084]}'),(13472,'51.178.76.51','normal','',0,0,0,42,0,'{\"login\":[1648687966,1649521995,1649537067,1649543564,1649564139,1649668430,1649820937,1650148600,1650250961,1650711383,1650971020,1651177017,1652046380,1652600268,1652643843,1652888331,1653045674,1653788172,1653818489,1654178398,1654297635,1654759010,1654785528,1655044247,1655795595,1656255758,1656740032,1657490513,1658025302,1658094941,1658646462,1658814178,1659397875,1659410313,1659824254,1660598141,1661163059,1661725194,1661997663,1662026891,1662057381,1662079480]}'),(13473,'117.120.13.52','normal','',0,0,0,23,0,'{\"login\":[1648688860,1650394177,1650597409,1650599751,1650832752,1652377275,1652629725,1652644592,1653009213,1653497315,1654131608,1654270647,1654357069,1654391258,1654852577,1655724253,1655827030,1657088528,1657561903,1658552125,1659331809,1660008331,1661239252]}'),(13474,'81.22.184.19','normal','',0,0,0,2,0,'{\"login\":[1648689739,1648710500]}'),(13475,'65.154.226.166','normal','',0,0,0,0,0,'[]'),(13476,'185.59.221.226','normal','',0,0,0,0,0,'[]'),(13477,'17.121.115.56','normal','',0,0,0,0,1,'{\"nf\":[1649767985]}'),(13478,'178.62.101.121','normal','',0,0,0,13,0,'{\"login\":[1648693740,1649804420,1650416976,1651178187,1651275035,1651342757,1651586274,1652433350,1652529284,1652686347,1653455364,1653902261,1654296997]}'),(13479,'159.89.160.120','normal','',0,0,0,17,0,'{\"login\":[1648698721,1650144306,1650452382,1650689687,1650903547,1651697455,1651967745,1652280672,1652902063,1653619922,1654055726,1654093662,1654434405,1654542828,1654560601,1654790813,1655447127]}'),(13480,'91.122.105.95','normal','',0,0,0,6,0,'{\"login\":[1648709054,1649575230,1649740925,1649964370,1651163906,1651252647]}'),(13481,'65.21.186.126','normal','',0,0,0,1,0,'{\"login\":[1648709999]}'),(13482,'13.230.170.122','normal','',0,0,0,2,0,'{\"login\":[1648723022,1648725007]}'),(13483,'72.167.190.40','normal','',0,0,0,0,1,'{\"nf\":[1648724595]}'),(13484,'52.202.237.94','normal','',0,0,0,0,0,'[]'),(13485,'173.214.200.204','normal','',0,0,0,0,0,'[]'),(13486,'34.230.62.129','normal','',0,0,0,0,0,'[]'),(13487,'54.198.46.51','normal','',0,0,0,0,0,'[]'),(13488,'162.250.219.147','normal','',0,0,0,0,0,'[]'),(13489,'132.148.165.154','normal','',0,0,0,2,0,'{\"login\":[1648727047,1649844389]}'),(13490,'66.97.35.153','normal','',0,0,0,2,0,'{\"login\":[1648733230,1649067639]}'),(13491,'82.80.249.211','normal','',0,0,0,0,0,'[]'),(13492,'82.80.230.228','normal','',0,0,0,0,1,'{\"nf\":[1648736366]}'),(13493,'13.232.3.216','normal','',0,0,0,0,2,'{\"nf\":[1648741093,1648741095]}'),(13494,'66.249.64.192','normal','',0,0,0,0,0,'[]'),(13495,'197.94.244.80','normal','',0,0,0,0,0,'[]'),(13496,'176.53.221.214','normal','',0,0,0,0,0,'[]'),(13497,'148.72.59.203','normal','',0,0,0,0,0,'[]'),(13498,'34.221.230.48','normal','',0,0,0,0,0,'[]'),(13499,'176.53.218.168','normal','',0,0,0,0,0,'[]'),(13500,'89.104.101.137','normal','',0,0,0,0,0,'[]'),(13501,'114.119.135.64','normal','',0,0,0,0,0,'[]'),(13502,'162.55.85.217','normal','',0,0,0,0,0,'[]'),(13503,'211.55.181.203','normal','',0,0,0,0,1,'{\"nf\":[1648762175]}'),(13504,'77.38.125.83','normal','',0,0,0,0,2,'{\"nf\":[1648762959,1648762961]}'),(13505,'85.13.128.23','normal','',0,0,0,0,0,'[]'),(13506,'185.30.32.179','normal','',0,0,0,0,0,'[]'),(13507,'66.249.64.199','normal','',0,0,0,0,0,'[]'),(13508,'66.249.64.197','normal','',0,0,0,0,0,'[]'),(13509,'68.183.56.87','normal','',0,0,0,0,0,'[]'),(13510,'114.119.140.206','normal','',0,0,0,0,0,'[]'),(13511,'34.96.130.6','normal','',0,0,0,0,0,'[]'),(13512,'44.201.141.142','normal','',0,0,0,0,0,'[]'),(13513,'193.56.29.159','normal','',0,0,0,0,0,'[]'),(13514,'23.129.64.214','normal','',0,0,0,0,0,'[]'),(13515,'20.219.78.101','normal','',0,0,0,0,6,'{\"nf\":[1648833092,1650391249,1650391251,1650391258,1650391260,1650391268]}'),(13516,'136.243.74.100','normal','',0,0,0,0,3,'{\"nf\":[1648837605,1648837606,1648837606]}'),(13517,'89.104.110.130','normal','',0,0,0,0,0,'[]'),(13518,'34.221.104.110','normal','',0,0,0,0,0,'[]'),(13519,'176.53.222.46','normal','',0,0,0,0,0,'[]'),(13520,'45.90.63.219','normal','',0,0,0,0,0,'[]'),(13521,'108.167.136.36','normal','',0,0,0,0,1,'{\"nf\":[1648850495]}'),(13522,'139.59.43.196','normal','',0,0,0,0,2,'{\"nf\":[1648851177,1648851283]}'),(13523,'139.59.72.187','normal','',0,0,0,0,2,'{\"nf\":[1648852776,1652363471]}'),(13524,'46.14.11.241','normal','',0,0,0,0,2,'{\"nf\":[1648854554,1649669197]}'),(13525,'124.123.106.157','normal','',0,0,0,0,0,'[]'),(13526,'212.115.42.245','normal','',0,0,0,0,0,'[]'),(13527,'65.108.126.133','normal','',0,0,0,0,0,'[]'),(13528,'74.208.59.224','normal','',0,0,0,0,0,'[]'),(13529,'85.214.155.94','normal','',0,0,0,0,0,'[]'),(13530,'70.32.23.59','normal','',0,0,0,0,0,'[]'),(13531,'91.234.195.181','normal','',0,0,0,0,0,'[]'),(13532,'157.7.174.48','normal','',0,0,0,0,0,'[]'),(13533,'34.150.147.184','normal','',0,0,0,0,0,'[]'),(13534,'209.120.227.2','normal','',0,0,0,0,0,'[]'),(13535,'35.245.82.188','normal','',0,0,0,0,0,'[]'),(13536,'50.87.144.90','normal','',0,0,0,0,0,'[]'),(13537,'173.254.29.247','normal','',0,0,0,0,0,'[]'),(13538,'141.8.192.169','normal','',0,0,0,0,0,'[]'),(13539,'91.234.194.198','normal','',0,0,0,0,0,'[]'),(13540,'45.129.18.33','normal','',0,0,0,0,0,'[]'),(13541,'45.129.18.103','normal','',0,0,0,0,0,'[]'),(13542,'64.31.14.78','normal','',0,0,0,0,0,'[]'),(13543,'51.68.57.93','normal','',0,0,0,0,0,'[]'),(13544,'95.179.242.73','normal','',0,0,0,0,0,'[]'),(13545,'143.198.213.129','normal','',0,0,0,1,0,'{\"login\":[1650222771]}'),(13546,'184.168.99.49','normal','',0,0,0,0,0,'[]'),(13547,'95.216.92.59','normal','',0,0,0,0,0,'[]'),(13548,'167.99.53.70','normal','',0,0,0,0,0,'[]'),(13549,'91.234.195.40','normal','',0,0,0,0,0,'[]'),(13550,'173.252.79.116','normal','',0,0,0,0,0,'[]'),(13551,'67.227.213.124','normal','',0,0,0,0,0,'[]'),(13552,'103.9.171.245','normal','',0,0,0,0,0,'[]'),(13553,'104.219.248.86','normal','',0,0,0,0,0,'[]'),(13554,'103.117.156.133','normal','',0,0,0,0,0,'[]'),(13555,'46.252.152.20','normal','',0,0,0,0,0,'[]'),(13556,'185.2.4.38','normal','',0,0,0,0,0,'[]'),(13557,'157.245.200.155','normal','',0,0,0,0,0,'[]'),(13558,'141.8.192.74','normal','',0,0,0,0,0,'[]'),(13559,'113.60.245.99','normal','',0,0,0,0,1,'{\"nf\":[1648961062]}'),(13560,'89.252.183.111','normal','',0,0,0,0,0,'[]'),(13561,'31.24.128.49','normal','',0,0,0,0,0,'[]'),(13562,'85.128.143.140','normal','',0,0,0,0,0,'[]'),(13563,'68.65.120.245','normal','',0,0,0,0,0,'[]'),(13564,'92.205.12.137','normal','',0,0,0,0,0,'[]'),(13565,'167.114.1.72','normal','',0,0,0,0,0,'[]'),(13566,'45.79.46.130','normal','',0,0,0,0,0,'[]'),(13567,'45.147.77.144','normal','',0,0,0,0,0,'[]'),(13568,'82.165.88.43','normal','',0,0,0,0,0,'[]'),(13569,'184.168.113.18','normal','',0,0,0,0,0,'[]'),(13570,'207.180.207.240','normal','',0,0,0,9,0,'{\"login\":[1649007953,1649016898,1650539923,1650723154,1651109331,1652187059,1654323769,1654350100,1654865155]}'),(13571,'209.205.209.34','normal','',0,0,0,0,0,'[]'),(13572,'92.42.110.29','normal','',0,0,0,1,0,'{\"login\":[1649008511]}'),(13573,'100.24.115.102','normal','',0,0,0,0,0,'[]'),(13574,'85.128.143.110','normal','',0,0,0,1,0,'{\"login\":[1649032910]}'),(13575,'31.172.80.144','normal','',0,0,0,16,0,'{\"login\":[1649011884,1649539766,1650571272,1650612351,1650641252,1650650493,1652275082,1653407975,1653763305,1653764222,1653775215,1654319244,1654548692,1654594377,1654803986,1654941895]}'),(13576,'207.180.205.52','normal','',0,0,0,5,0,'{\"login\":[1649013548,1649821553,1650399647,1652017485,1652797762]}'),(13577,'199.188.200.178','normal','',0,0,0,0,0,'[]'),(13578,'74.208.59.214','normal','',0,0,0,0,0,'[]'),(13579,'188.241.177.234','normal','',0,0,0,1,0,'{\"login\":[1650789120]}'),(13580,'194.126.177.54','normal','',0,0,0,7,0,'{\"login\":[1649017059,1649819123,1650606936,1651353286,1652126828,1652931983,1653738551]}'),(13581,'139.59.239.145','normal','',0,0,0,4,0,'{\"login\":[1649018179,1649021814,1649790048,1649791134]}'),(13582,'109.68.215.82','normal','',0,0,0,2,0,'{\"login\":[1649018562,1649515896]}'),(13583,'185.254.29.8','normal','',0,0,0,3,0,'{\"login\":[1649018924,1649051716,1649060460]}'),(13584,'34.66.74.132','normal','',0,0,0,2,0,'{\"login\":[1649019278,1649022228]}'),(13585,'137.184.89.163','normal','',0,0,0,29,0,'{\"login\":[1649020328,1649795042,1650192137,1651406022,1651451702,1651458483,1651526839,1652190940,1652232559,1652238331,1653566069,1653608608,1653617050,1655286542,1655293244,1655297880,1656743902,1656747276,1656761486,1656764949,1656793239,1656807587,1656814455,1656824165,1656827994,1656832036,1657461712,1657468763,1657510607]}'),(13586,'203.99.60.206','normal','',0,0,0,1,0,'{\"login\":[1649020774]}'),(13587,'109.70.100.88','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1649022447,0,1649022147,0,20,'{\"nf\":[1649022104,1649022108,1649022109,1649022111,1649022113,1649022115,1649022117,1649022118,1649022120,1649022123,1649022125,1649022127,1649022130,1649022132,1649022135,1649022138,1649022141,1649022143,1649022145,1649022147]}'),(13588,'146.148.44.185','normal','',0,0,0,31,0,'{\"login\":[1649022368,1649534922,1649599483,1649736215,1650542234,1650550003,1650898081,1651123012,1651279345,1651297435,1651744434,1651968738,1652266978,1652383871,1653304527,1653332469,1653441224,1654371929,1655444542,1655657144,1655811619,1657664837,1657705089,1658000601,1658295888,1658396921,1659295769,1660376874,1661687716,1661701888,1662934747]}'),(13589,'185.136.206.6','normal','',0,0,0,3,0,'{\"login\":[1649022579,1649066855,1649069405]}'),(13590,'159.223.170.181','normal','',0,0,0,40,0,'{\"login\":[1649023978,1649486842,1649709077,1650140026,1650853234,1650995100,1651269867,1652066171,1652196618,1652264583,1652294129,1652744999,1652925848,1652960173,1652997155,1653016638,1653019924,1653339700,1654060396,1654140242,1654789997,1654984406,1655711447,1656052933,1656861628,1657162522,1657379925,1658062225,1658960429,1658997942,1659121147,1659591273,1660600775,1661684327,1661687621,1661737418,1662308175,1662398788,1662800332,1663075630]}'),(13591,'85.128.143.78','normal','',0,0,0,1,0,'{\"login\":[1649024119]}'),(13592,'35.247.78.132','normal','',0,0,0,1,0,'{\"login\":[1649024495]}'),(13593,'137.184.89.104','normal','',0,0,0,2,0,'{\"login\":[1649024797,1649036808]}'),(13594,'103.75.186.14','normal','',0,0,0,1,0,'{\"login\":[1649026317]}'),(13595,'45.239.40.159','normal','',0,0,0,3,0,'{\"login\":[1649026665,1650166102,1650254767]}'),(13596,'52.77.82.143','normal','',0,0,0,1,0,'{\"login\":[1649027517]}'),(13597,'111.92.189.48','normal','',0,0,0,2,0,'{\"login\":[1649027909,1649037234]}'),(13598,'3.108.52.20','normal','',0,0,0,2,0,'{\"login\":[1649028321,1649052098]}'),(13599,'159.69.56.203','normal','',0,0,0,3,0,'{\"login\":[1649029083,1649030584,1649757788]}'),(13600,'185.74.252.15','normal','',0,0,0,1,0,'{\"login\":[1649029479]}'),(13601,'189.90.138.212','normal','',0,0,0,19,0,'{\"login\":[1649056129,1649756298,1652188703,1652824557,1652836568,1653620255,1653627102,1654504091,1654636376,1654645629,1655315264,1655324875,1656763499,1656792470,1656796862,1656799932,1656807220,1656817069,1656830601]}'),(13602,'189.90.138.212','normal','',0,0,0,1,0,'{\"login\":[1649032777]}'),(13603,'94.98.64.15','normal','',0,0,0,3,0,'{\"login\":[1649034075,1649059385,1649773282]}'),(13604,'125.212.225.138','normal','',0,0,0,2,0,'{\"login\":[1649034514,1650181080]}'),(13605,'35.210.238.207','normal','',0,0,0,3,0,'{\"login\":[1649035260,1649755195,1650225554]}'),(13606,'35.226.137.116','normal','',0,0,0,1,0,'{\"login\":[1649036053]}'),(13607,'91.189.176.172','normal','',0,0,0,1,0,'{\"login\":[1649037663]}'),(13608,'43.240.113.89','normal','',0,0,0,26,0,'{\"login\":[1649039192,1649764073,1649782061,1650234496,1652186691,1652200152,1652245037,1653556104,1653590291,1653599298,1653624394,1653625649,1654535273,1654581150,1655316013,1655331205,1655331550,1655347286,1656743875,1656780874,1656798370,1656825997,1657487496,1657699694,1657844133,1659374530]}'),(13609,'167.114.100.201','normal','',0,0,0,0,0,'[]'),(13610,'139.59.83.27','normal','',0,0,0,8,0,'{\"login\":[1649039522,1649784355,1650176721,1651432342,1652234946,1653571883,1653578118,1653595047]}'),(13611,'13.250.13.157','normal','',0,0,0,1,0,'{\"login\":[1649040341]}'),(13612,'34.65.197.49','normal','',0,0,0,1,0,'{\"login\":[1649042315]}'),(13613,'34.122.26.122','normal','',0,0,0,1,0,'{\"login\":[1649043503]}'),(13614,'85.128.143.177','normal','',0,0,0,2,0,'{\"login\":[1649045016,1649058369]}'),(13615,'212.84.174.62','normal','',0,0,0,1,0,'{\"login\":[1649045814]}'),(13616,'211.43.13.28','normal','',0,0,0,1,0,'{\"login\":[1649046261]}'),(13617,'212.115.42.7','normal','',0,0,0,26,0,'{\"login\":[1649047010,1649751232,1649780918,1651396971,1652231325,1652830171,1653557976,1653600724,1653624742,1654514868,1654527529,1654567950,1654588133,1654663754,1655293931,1655300453,1656742851,1656751715,1656763189,1656791012,1656808937,1656835421,1657429934,1657433042,1657451575,1657463571]}'),(13618,'212.71.249.53','normal','',0,0,0,1,0,'{\"login\":[1649047753]}'),(13619,'128.199.225.245','normal','',0,0,0,1,0,'{\"login\":[1649048522]}'),(13620,'23.88.51.81','normal','',0,0,0,3,0,'{\"login\":[1649048989,1649765201,1650242741]}'),(13621,'3.110.77.123','normal','',0,0,0,1,0,'{\"login\":[1649049385]}'),(13622,'198.251.68.143','normal','',0,0,0,2,0,'{\"login\":[1649049717,1649050507]}'),(13623,'34.123.68.180','normal','',0,0,0,1,0,'{\"login\":[1649050944]}'),(13624,'104.248.235.74','normal','',0,0,0,2,0,'{\"login\":[1649052401,1650197537]}'),(13625,'217.138.193.104','normal','',0,0,0,1,0,'{\"login\":[1649052704]}'),(13626,'161.35.96.34','normal','',0,0,0,1,0,'{\"login\":[1649052707]}'),(13627,'185.182.57.120','normal','',0,0,0,1,0,'{\"login\":[1649053052]}'),(13628,'34.150.157.56','normal','',0,0,0,1,0,'{\"login\":[1649053262]}'),(13629,'37.218.252.24','normal','',0,0,0,5,0,'{\"login\":[1649053721,1649055380,1649055844,1649062698,1649067697]}'),(13630,'104.211.93.59','normal','',0,0,0,2,0,'{\"login\":[1649054490,1649059174]}'),(13631,'3.109.149.191','normal','',0,0,0,1,0,'{\"login\":[1649054957]}'),(13632,'109.70.148.33','normal','',0,0,0,2,0,'{\"login\":[1649055658,1649057403]}'),(13633,'18.159.25.169','normal','',0,0,0,2,0,'{\"login\":[1649056358,1649061179]}'),(13634,'13.124.143.124','normal','',0,0,0,1,0,'{\"login\":[1649057123]}'),(13635,'185.56.171.92','normal','',0,0,0,1,0,'{\"login\":[1649057666]}'),(13636,'85.120.32.10','normal','',0,0,0,1,0,'{\"login\":[1649058636]}'),(13637,'159.89.86.185','normal','',0,0,0,11,0,'{\"login\":[1649059216,1649481485,1650014772,1650439303,1650458210,1650503885,1650991512,1651130344,1651250935,1651489017,1651743104]}'),(13638,'89.22.115.242','normal','',0,0,0,1,0,'{\"login\":[1649060642]}'),(13639,'91.149.192.90','normal','',0,0,0,17,0,'{\"login\":[1649060872,1649652067,1649839777,1650364390,1650388871,1650446353,1650961437,1650963468,1651025003,1651146351,1651400468,1651431935,1651480895,1651701957,1652294760,1652367930,1652946641]}'),(13640,'206.189.207.145','normal','',0,0,0,1,0,'{\"login\":[1649060917]}'),(13641,'45.252.251.4','normal','',0,0,0,1,0,'{\"login\":[1649061596]}'),(13642,'85.128.143.76','normal','',0,0,0,1,0,'{\"login\":[1649061913]}'),(13643,'18.203.33.92','normal','',0,0,0,1,0,'{\"login\":[1649062183]}'),(13644,'91.219.194.6','normal','',0,0,0,1,0,'{\"login\":[1649063552]}'),(13645,'193.189.100.196','normal','',0,0,0,0,1,'{\"nf\":[1649064520]}'),(13646,'211.208.31.24','normal','',0,0,0,0,1,'{\"nf\":[1649064530]}'),(13647,'143.198.112.66','normal','',0,0,0,1,0,'{\"login\":[1649065060]}'),(13648,'54.227.76.237','normal','',0,0,0,1,0,'{\"login\":[1649065417]}'),(13649,'5.23.50.101','normal','',0,0,0,1,0,'{\"login\":[1649066060]}'),(13650,'5.202.189.212','normal','',0,0,0,3,0,'{\"login\":[1649066414,1650180640,1654008211]}'),(13651,'148.72.214.194','normal','',0,0,0,32,0,'{\"login\":[1649067078,1650019962,1650422822,1650585130,1652289055,1652371975,1652557596,1652989616,1653346691,1653369761,1653519104,1653526529,1654067451,1654374315,1654510029,1655162045,1655568425,1655714819,1655738684,1656882171,1657070790,1657485173,1657593228,1657829509,1658072086,1660158953,1660943150,1661080615,1661511082,1662076846,1662149757,1662926145]}'),(13652,'47.254.87.56','normal','',0,0,0,7,0,'{\"login\":[1649067113,1649756962,1649764375,1649775456,1650211434,1650220061,1652847899]}'),(13653,'159.89.202.88','normal','',0,0,0,1,0,'{\"login\":[1649067375]}'),(13654,'91.89.80.172','normal','',0,0,0,0,1,'{\"nf\":[1649067691]}'),(13655,'84.247.50.180','normal','',0,0,0,4,0,'{\"login\":[1649067810,1649819221,1653719228,1654488669]}'),(13656,'114.119.148.169','normal','',0,0,0,0,0,'[]'),(13657,'51.11.233.104','normal','',0,0,0,1,0,'{\"login\":[1649068311]}'),(13658,'34.148.106.204','normal','',0,0,0,1,0,'{\"login\":[1649068605]}'),(13659,'54.165.100.24','normal','',0,0,0,1,0,'{\"login\":[1649068923]}'),(13660,'80.241.141.97','normal','',0,0,0,1,0,'{\"login\":[1649069908]}'),(13661,'102.22.203.102','normal','',0,0,0,0,0,'[]'),(13662,'154.119.36.49','normal','',0,0,0,3,0,'{\"login\":[1649070864,1649072828,1649754432]}'),(13663,'194.249.0.145','normal','',0,0,0,1,0,'{\"login\":[1649071474]}'),(13664,'13.65.208.195','normal','',0,0,0,2,0,'{\"login\":[1649072060,1649779022]}'),(13665,'54.251.150.149','normal','',0,0,0,2,0,'{\"login\":[1649073131,1649749492]}'),(13666,'54.76.225.68','normal','',0,0,0,1,0,'{\"login\":[1649074062]}'),(13667,'94.23.252.163','normal','',0,0,0,12,0,'{\"login\":[1649076185,1649651166,1649988612,1650174244,1650324856,1650350651,1650478472,1650709087,1651064896,1651084649,1651124835,1651253509]}'),(13668,'173.236.169.238','normal','',0,0,0,15,0,'{\"login\":[1649078483,1649501344,1650019219,1650135765,1650272290,1650710233,1651358043,1652126827,1652665056,1652881474,1653215721,1653261190,1653397650,1653623933,1653627863]}'),(13669,'164.46.122.50','normal','',0,0,0,28,0,'{\"login\":[1649079649,1649502422,1649700761,1649735689,1650656714,1650889872,1651181121,1652274270,1653378940,1653525185,1654364878,1654376116,1655153360,1655672338,1656821486,1657315943,1657554572,1657637587,1658161965,1658295393,1659315148,1659357215,1659404747,1660626436,1661261045,1661523651,1661681181,1663006499]}'),(13670,'105.186.64.49','normal','',0,0,0,0,0,'[]'),(13671,'81.186.225.108','normal','',0,0,0,6,0,'{\"login\":[1649086094,1649688670,1649825056,1650543014,1650720942,1653420234]}'),(13672,'136.243.124.150','normal','',0,0,0,4,0,'{\"login\":[1649087234,1649087805,1649569267,1650006680]}'),(13673,'72.167.222.172','normal','',0,0,0,25,0,'{\"login\":[1649090653,1649560669,1650405353,1650450917,1651488118,1652152903,1653308417,1653351269,1653754981,1654711917,1654856074,1654894622,1655475595,1655747108,1656787896,1656857598,1657103549,1657688249,1658006731,1658022611,1658335690,1658436671,1658947343,1660224741,1660676798]}'),(13674,'13.244.102.45','normal','',0,0,0,1,0,'{\"login\":[1649092891]}'),(13675,'69.163.186.158','normal','',0,0,0,31,0,'{\"login\":[1649093442,1649519226,1649523105,1650149554,1650613859,1652391131,1652877591,1653243627,1653907893,1654076877,1654236507,1654624566,1654860585,1654935164,1655403643,1655472894,1655678265,1656228135,1657077388,1658004094,1658966671,1659077854,1659992989,1661189081,1661210719,1662192044,1662349642,1662384488,1662826249,1663013824,1663067969]}'),(13676,'148.72.232.31','normal','',0,0,0,0,1,'{\"nf\":[1649099993]}'),(13677,'185.243.214.28','normal','',0,0,0,2,0,'{\"login\":[1649103639,1649548432]}'),(13678,'54.36.149.80','normal','',0,0,0,0,0,'[]'),(13679,'94.74.96.42','normal','',0,0,0,16,0,'{\"login\":[1649105777,1649551710,1649602139,1650681674,1654138490,1654757144,1654781310,1655373050,1655389205,1656014936,1656522658,1656755821,1657163871,1657414535,1657430272,1657440590]}'),(13680,'93.86.255.38','normal','',0,0,0,22,0,'{\"login\":[1649106870,1649239645,1649968753,1650367158,1650374230,1651939476,1652042520,1654774248,1654895826,1655057999,1655422122,1656752555,1656865450,1657084093,1657199548,1657393992,1657534750,1657714889,1657833158,1658424630,1658741405,1658806034]}'),(13681,'185.16.38.110','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1649107448,0,1649107148,0,20,'{\"nf\":[1649107124,1649107127,1649107128,1649107129,1649107130,1649107132,1649107133,1649107134,1649107135,1649107136,1649107137,1649107138,1649107139,1649107141,1649107142,1649107143,1649107145,1649107146,1649107147,1649107148]}'),(13682,'17.121.115.237','normal','',0,0,0,0,0,'[]'),(13683,'54.36.148.204','normal','',0,0,0,0,0,'[]'),(13684,'47.104.98.38','normal','',0,0,0,0,0,'[]'),(13685,'138.199.63.80','normal','',0,0,0,0,0,'[]'),(13686,'77.22.158.197','normal','',0,0,0,0,0,'[]'),(13687,'3.250.234.32','normal','',0,0,0,0,0,'[]'),(13688,'50.87.220.24','normal','',0,0,0,0,0,'[]'),(13689,'207.46.13.159','normal','',0,0,0,0,0,'[]'),(13690,'20.77.16.39','normal','',0,0,0,0,0,'[]'),(13691,'54.155.129.165','normal','',0,0,0,0,0,'[]'),(13692,'14.215.46.116','normal','',0,0,0,0,0,'[]'),(13693,'66.29.132.42','normal','',0,0,0,0,0,'[]'),(13694,'186.234.80.107','normal','',0,0,0,0,0,'[]'),(13695,'81.88.52.88','normal','',0,0,0,0,0,'[]'),(13696,'92.204.212.36','normal','',0,0,0,0,0,'[]'),(13697,'114.119.139.103','normal','',0,0,0,0,0,'[]'),(13698,'63.250.38.185','normal','',0,0,0,0,0,'[]'),(13699,'105.12.1.49','normal','',0,0,0,0,0,'[]'),(13700,'123.56.133.63','normal','',0,0,0,1,0,'{\"login\":[1653976894]}'),(13701,'165.22.105.146','normal','',0,0,0,4,0,'{\"login\":[1649234494,1649235463,1649243987,1649244973]}'),(13702,'144.139.231.64','normal','',0,0,0,0,1,'{\"nf\":[1649184341]}'),(13703,'161.35.184.188','normal','',0,0,0,0,0,'[]'),(13704,'34.223.220.106','normal','',0,0,0,0,0,'[]'),(13705,'35.86.136.190','normal','',0,0,0,0,0,'[]'),(13706,'34.222.115.234','normal','',0,0,0,0,0,'[]'),(13707,'52.26.46.158','normal','',0,0,0,0,0,'[]'),(13708,'138.91.105.220','normal','',0,0,0,0,1,'{\"nf\":[1649192233]}'),(13709,'172.116.209.255','normal','',0,0,0,0,1,'{\"nf\":[1649193105]}'),(13710,'197.229.1.147','normal','',0,0,0,0,0,'[]'),(13711,'35.224.250.64','normal','',0,0,0,21,0,'{\"login\":[1649199384,1650429235,1650665698,1650717163,1650849327,1651197612,1652069710,1652374639,1652574973,1652603466,1652853680,1652858345,1652962920,1654394909,1654411770,1654428384,1656086072,1656107625,1656825459,1656941530,1657074424]}'),(13712,'103.57.220.186','normal','',0,0,0,31,0,'{\"login\":[1649200935,1649247769,1649795425,1650580707,1651561177,1652002251,1652349985,1652372640,1652523300,1652692091,1652761384,1652803598,1652916648,1652983388,1653343439,1653478316,1653593598,1653619250,1653767846,1654127409,1654302828,1654319904,1654774890,1654989543,1655139787,1655428194,1655778747,1656573073,1656871493,1657150049,1657571925]}'),(13713,'167.172.168.111','normal','',0,0,0,63,0,'{\"login\":[1649209495,1649524756,1649656537,1649689195,1650868864,1651168775,1651350857,1651708419,1652012017,1652161478,1652895840,1652995374,1653021152,1653509806,1653797451,1654059609,1654069796,1654296353,1654361289,1654446540,1654939907,1655013363,1655427584,1655600861,1656729359,1656917056,1657204760,1657216203,1657380758,1657496843,1657520494,1657609919,1657719848,1657870486,1657988341,1658167970,1658184220,1658199985,1658381872,1658501610,1658585263,1658706360,1659583737,1659624989,1660234843,1660704099,1660763767,1660794163,1661630105,1661643784,1661648779,1661680527,1662078162,1662361462,1662367722,1662650757,1662703102,1662726619,1662796321,1663005448,1663025766,1663032351,1663092639]}'),(13714,'123.60.59.154','normal','',0,0,0,17,0,'{\"login\":[1649211099,1650274339,1650564135,1650999530,1652311522,1653241034,1653361837,1654413543,1654520334,1654733856,1654752829,1655586218,1656141596,1656534951,1657417416,1657617945,1657751313]}'),(13715,'45.9.20.103','normal','',0,0,0,0,12,'{\"nf\":[1649211275,1649222097,1649223422,1650578518,1650588791,1650596782,1650641155,1650710365,1650752448,1650801763,1650911897,1650914385]}'),(13716,'23.94.204.139','normal','',0,0,0,0,0,'[]'),(13717,'45.55.44.23','normal','',0,0,0,34,0,'{\"login\":[1649215120,1649476709,1649550617,1649823824,1650187400,1650589004,1651680038,1652642972,1653010477,1653262497,1653376971,1653808387,1654252884,1654303478,1654496635,1654609274,1654772956,1654902687,1654938325,1655012969,1655185927,1655560526,1656817182,1658157750,1658367639,1658560459,1659744051,1660099331,1660132369,1661221547,1661382751,1661514180,1661686246,1662547109]}'),(13718,'119.8.47.20','normal','',0,0,0,2,0,'{\"login\":[1649220729,1649244471]}'),(13719,'74.207.246.161','normal','',0,0,0,2,0,'{\"login\":[1649222316,1652507548]}'),(13720,'153.92.0.2','normal','',0,0,0,0,1,'{\"nf\":[1649223678]}'),(13721,'32.99.211.41','normal','',0,0,0,0,0,'[]'),(13722,'47.93.49.198','normal','',0,0,0,3,0,'{\"login\":[1649235713,1650260899,1650558686]}'),(13723,'193.151.131.151','normal','',0,0,0,7,0,'{\"login\":[1649236504,1649943899,1650025921,1650981940,1651285445,1651932488,1652160263]}'),(13724,'121.42.231.47','normal','',0,0,0,31,0,'{\"login\":[1649242035,1649733591,1650028917,1650259022,1650695346,1651436449,1652067663,1652698016,1652964324,1653035235,1653047490,1655029829,1655177862,1655377340,1655578958,1656049330,1656553903,1656575975,1656726718,1657408206,1657615246,1657625939,1657693009,1658011988,1658651000,1659204582,1659799769,1662225376,1662344111,1662427135,1662789799]}'),(13725,'114.119.145.188','normal','',0,0,0,0,0,'[]'),(13726,'34.133.95.23','normal','',0,0,0,1,0,'{\"login\":[1649251990]}'),(13727,'192.42.116.23','normal','',0,0,0,0,3,'{\"nf\":[1649253511,1649253515,1649253518]}'),(13728,'95.214.54.102','normal','',0,0,0,0,6,'{\"nf\":[1649253520,1649253521,1649253523,1649253525,1649253526,1649253528]}'),(13729,'109.70.100.93','normal','',0,0,0,0,7,'{\"nf\":[1649253529,1649253530,1649253532,1649253533,1649253534,1649253536,1649253539]}'),(13730,'185.220.101.32','normal','',0,0,0,0,4,'{\"nf\":[1649253551,1649253553,1649253556,1649253558]}'),(13731,'199.249.230.69','normal','',0,0,0,0,4,'{\"nf\":[1649253560,1649253562,1649253565,1649253568]}'),(13732,'185.220.101.61','normal','',0,0,0,0,7,'{\"nf\":[1649253581,1649253582,1649253583,1649253584,1649253585,1649253587,1649253588]}'),(13733,'185.34.33.2','normal','',0,0,0,0,3,'{\"nf\":[1649253590,1649253591,1649253593]}'),(13734,'20.64.155.18','normal','',0,0,0,16,0,'{\"login\":[1649253670,1649573521,1650048916,1650146692,1650660077,1650888550,1651324105,1651485403,1652725829,1653001395,1653257259,1653407874,1653921255,1654094472,1654859085,1655389829]}'),(13735,'54.36.148.216','normal','',0,0,0,0,0,'[]'),(13736,'105.233.39.86','normal','',0,0,0,0,0,'[]'),(13737,'54.36.149.101','normal','',0,0,0,0,0,'[]'),(13738,'54.36.148.131','normal','',0,0,0,0,0,'[]'),(13739,'54.191.138.166','normal','',0,0,0,0,0,'[]'),(13740,'54.36.148.24','normal','',0,0,0,0,0,'[]'),(13741,'212.192.241.173','normal','',0,0,0,0,0,'[]'),(13742,'139.59.23.209','normal','',0,0,0,0,1,'{\"nf\":[1649262759]}'),(13743,'94.247.172.129','normal','',0,0,0,0,0,'[]'),(13744,'17.121.115.186','normal','',0,0,0,0,0,'[]'),(13745,'192.185.176.167','normal','',0,0,0,0,0,'[]'),(13746,'185.77.221.198','normal','',0,0,0,0,0,'[]'),(13747,'54.212.236.189','normal','',0,0,0,0,0,'[]'),(13748,'54.202.160.175','normal','',0,0,0,0,0,'[]'),(13749,'35.89.83.152','normal','',0,0,0,0,0,'[]'),(13750,'65.154.226.171','normal','',0,0,0,0,0,'[]'),(13751,'1.34.134.46','normal','',0,0,0,0,1,'{\"nf\":[1649298764]}'),(13752,'185.191.171.22','normal','',0,0,0,0,0,'[]'),(13753,'185.191.171.2','normal','',0,0,0,0,0,'[]'),(13754,'185.191.171.21','normal','',0,0,0,0,0,'[]'),(13755,'13.51.70.221','normal','',0,0,0,0,0,'[]'),(13756,'185.181.60.39','normal','',0,0,0,0,0,'[]'),(13757,'175.136.197.41','normal','',0,0,0,0,1,'{\"nf\":[1649309859]}'),(13758,'185.27.99.143','normal','',0,0,0,0,1,'{\"nf\":[1649334005]}'),(13759,'148.251.129.183','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1649335767,0,1649335467,0,20,'{\"nf\":[1649335359,1649335366,1649335373,1649335379,1649335386,1649335391,1649335398,1649335403,1649335409,1649335415,1649335422,1649335427,1649335433,1649335436,1649335442,1649335449,1649335455,1649335460,1649335464,1649335467]}'),(13760,'114.119.145.3','normal','',0,0,0,0,0,'[]'),(13761,'54.36.149.56','normal','',0,0,0,0,0,'[]'),(13762,'197.92.142.201','normal','',0,0,0,0,0,'[]'),(13763,'54.36.148.143','normal','',0,0,0,0,0,'[]'),(13764,'34.216.83.220','normal','',0,0,0,0,0,'[]'),(13765,'100.21.18.9','normal','',0,0,0,0,1,'{\"nf\":[1649374751]}'),(13766,'38.18.40.62','normal','',0,0,0,0,0,'[]'),(13767,'50.87.253.29','normal','',0,0,0,0,0,'[]'),(13768,'198.57.247.140','normal','',0,0,0,0,0,'[]'),(13769,'50.87.144.160','normal','',0,0,0,0,0,'[]'),(13770,'192.185.176.180','normal','',0,0,0,1,0,'{\"login\":[1654508154]}'),(13771,'92.63.100.132','normal','',0,0,0,0,6,'{\"nf\":[1649395383,1649395384,1649395386,1649395386,1649395387,1649395388]}'),(13772,'194.213.3.176','normal','',0,0,0,0,2,'{\"nf\":[1649398528,1649398528]}'),(13773,'66.29.132.47','normal','',0,0,0,0,0,'[]'),(13774,'194.31.59.88','normal','',0,0,0,1,0,'{\"login\":[1652170406]}'),(13775,'68.65.122.155','normal','',0,0,0,0,0,'[]'),(13776,'50.87.222.231','normal','',0,0,0,0,0,'[]'),(13777,'197.155.11.105','normal','',0,0,0,0,0,'[]'),(13778,'41.114.208.181','normal','',0,0,0,0,0,'[]'),(13779,'78.135.80.223','normal','',0,0,0,0,3,'{\"nf\":[1649413771,1651559441,1651559444]}'),(13780,'131.153.240.162','normal','',0,0,0,0,0,'[]'),(13781,'50.87.144.134','normal','',0,0,0,0,0,'[]'),(13782,'50.87.144.26','normal','',0,0,0,0,0,'[]'),(13783,'34.220.191.231','normal','',0,0,0,0,0,'[]'),(13784,'18.236.163.52','normal','',0,0,0,0,0,'[]'),(13785,'54.202.176.101','normal','',0,0,0,0,0,'[]'),(13786,'76.72.172.164','normal','',0,0,0,0,0,'[]'),(13787,'198.187.29.141','normal','',0,0,0,0,0,'[]'),(13788,'35.164.183.93','normal','',0,0,0,0,0,'[]'),(13789,'195.2.76.246','normal','',0,0,0,0,6,'{\"nf\":[1649454809,1649454812,1649454813,1649454814,1649454815,1649454817]}'),(13790,'20.211.189.13','normal','',0,0,0,0,0,'[]'),(13791,'34.77.162.23','normal','',0,0,0,0,0,'[]'),(13792,'45.90.163.251','normal','',0,0,0,19,0,'{\"login\":[1649475658,1649647588,1649750472,1649770936,1649788917,1649822771,1650184343,1650572161,1651505458,1651971729,1652432030,1652669128,1653490692,1654345615,1654365471,1654630766,1654855076,1654959624,1655066477]}'),(13793,'34.77.162.21','normal','',0,0,0,0,0,'[]'),(13794,'164.68.111.45','normal','',0,0,0,0,0,'[]'),(13795,'34.77.162.9','normal','',0,0,0,0,0,'[]'),(13796,'50.62.143.77','normal','',0,0,0,0,1,'{\"nf\":[1649482471]}'),(13797,'51.178.93.87','normal','',0,0,0,21,0,'{\"login\":[1649482545,1649502962,1649806834,1650011099,1650971413,1650999884,1651136886,1651148248,1651298292,1651702605,1651724088,1652345968,1653378284,1653442122,1653601717,1654108377,1654312684,1655391699,1655590264,1655609959,1655655872]}'),(13798,'211.57.201.88','normal','',0,0,0,0,7,'{\"nf\":[1649488481,1651413272,1651413352,1651413445,1651413451,1651413513,1660169890]}'),(13799,'82.145.43.73','normal','',0,0,0,0,2,'{\"nf\":[1649488416,1649488471]}'),(13800,'109.248.175.162','normal','',0,0,0,0,1,'{\"nf\":[1649489511]}'),(13801,'95.217.179.54','normal','',0,0,0,28,0,'{\"login\":[1649489513,1649587284,1649740404,1650450584,1650598285,1650885916,1651002269,1651294038,1651681336,1651713766,1651751805,1651961285,1652035729,1652104616,1652338016,1652351310,1652399829,1652513377,1652943362,1653218669,1658019939,1658365462,1660986623,1661332268,1661346259,1662067593,1662405199,1662939076]}'),(13802,'120.25.104.120','normal','',0,0,0,22,0,'{\"login\":[1649499201,1649794833,1650583067,1651101083,1651681990,1652314121,1652559033,1652701374,1654190038,1654414717,1654625907,1654643923,1655390454,1655607473,1656200702,1656428515,1656771460,1656830297,1657492129,1658702304,1660102520,1662531789]}'),(13803,'173.212.194.225','normal','',0,0,0,5,0,'{\"login\":[1649504043,1649704412,1649744094,1650015518,1650257610]}'),(13804,'207.55.244.15','normal','',0,0,0,0,1,'{\"nf\":[1659782135]}'),(13805,'66.115.182.141','blocked','You have been locked out due to too many invalid login attempts.',1649505739,1649505439,0,5,0,'{\"login\":[1649505436,1649505437,1649505437,1649505438,1649505439]}'),(13806,'5.101.157.8','normal','',0,0,0,0,0,'[]'),(13807,'89.248.168.47','normal','',0,0,0,2,0,'{\"login\":[1650166661,1655134791]}'),(13808,'39.108.148.88','normal','',0,0,0,33,0,'{\"login\":[1649513728,1650541471,1650820919,1651020428,1654062745,1654065095,1654092038,1654119909,1654776814,1655049511,1655209393,1655393548,1655419092,1655750584,1655810248,1656243648,1656743348,1656817863,1656904754,1657222572,1657233091,1657683455,1657758446,1657848868,1658021720,1660089840,1660096158,1660166187,1660991478,1661705042,1662312702,1662951695,1663050536]}'),(13809,'192.53.120.124','normal','',0,0,0,1,0,'{\"login\":[1650122739]}'),(13810,'50.87.144.93','normal','',0,0,0,0,0,'[]'),(13811,'66.29.132.73','normal','',0,0,0,0,0,'[]'),(13812,'216.139.241.148','normal','',0,0,0,27,0,'{\"login\":[1649520327,1649686547,1650018478,1650957817,1651169374,1652301813,1652332817,1652711542,1652716699,1652820517,1652849121,1653010742,1653451897,1653482818,1654088816,1654535449,1654985047,1655065164,1655668376,1655688208,1655907050,1656894239,1657491847,1657613924,1657753685,1658521744,1659142148]}'),(13813,'192.119.111.172','normal','',0,0,0,0,0,'[]'),(13814,'103.11.188.106','normal','',0,0,0,0,0,'[]'),(13815,'5.101.157.187','normal','',0,0,0,0,0,'[]'),(13816,'3.69.132.84','normal','',0,0,0,0,0,'[]'),(13817,'103.57.222.104','normal','',0,0,0,0,0,'[]'),(13818,'199.188.205.87','normal','',0,0,0,1,0,'{\"login\":[1650130528]}'),(13819,'87.236.20.170','normal','',0,0,0,0,0,'[]'),(13820,'163.172.96.20','normal','',0,0,0,3,0,'{\"login\":[1649525707,1649695004,1650304761]}'),(13821,'162.214.186.253','normal','',0,0,0,0,0,'[]'),(13822,'91.205.16.131','normal','',0,0,0,0,0,'[]'),(13823,'74.208.212.235','normal','',0,0,0,0,0,'[]'),(13824,'104.36.149.6','normal','',0,0,0,0,0,'[]'),(13825,'78.135.80.219','normal','',0,0,0,0,3,'{\"nf\":[1649528722,1650437338,1650437339]}'),(13826,'103.50.163.22','normal','',0,0,0,0,0,'[]'),(13827,'159.65.251.251','normal','',0,0,0,1,0,'{\"login\":[1650139461]}'),(13828,'54.237.45.105','normal','',0,0,0,0,0,'[]'),(13829,'108.179.210.76','normal','',0,0,0,0,0,'[]'),(13830,'109.248.175.244','normal','',0,0,0,0,2,'{\"nf\":[1649532283,1649535794]}'),(13831,'88.150.159.20','normal','',0,0,0,0,0,'[]'),(13832,'52.224.56.209','normal','',0,0,0,1,0,'{\"login\":[1650166010]}'),(13833,'51.107.84.216','blocked','You have been locked out due to too many invalid login attempts.',1649533192,1649532892,0,5,0,'{\"login\":[1649532890,1649532891,1649532891,1649532892,1649532892]}'),(13834,'82.79.58.176','normal','',0,0,0,0,0,'[]'),(13835,'64.111.116.168','normal','',0,0,0,20,0,'{\"login\":[1649534383,1649687615,1649738841,1650136241,1650481338,1650707932,1651057303,1651332982,1651956357,1652042806,1652118320,1652177669,1652441927,1653247499,1653604391,1654202103,1654269789,1654298281,1654760252,1655017335]}'),(13836,'5.101.157.158','normal','',0,0,0,0,0,'[]'),(13837,'5.101.157.121','normal','',0,0,0,0,0,'[]'),(13838,'173.201.185.141','normal','',0,0,0,0,0,'[]'),(13839,'54.70.158.125','normal','',0,0,0,0,0,'[]'),(13840,'119.238.211.62','normal','',0,0,0,0,0,'[]'),(13841,'5.101.156.245','normal','',0,0,0,0,0,'[]'),(13842,'67.222.147.67','normal','',0,0,0,0,0,'[]'),(13843,'172.105.219.26','normal','',0,0,0,0,0,'[]'),(13844,'52.221.46.96','normal','',0,0,0,0,0,'[]'),(13845,'72.29.64.190','normal','',0,0,0,0,0,'[]'),(13846,'152.165.111.126','normal','',0,0,0,0,1,'{\"nf\":[1649539864]}'),(13847,'5.101.157.25','normal','',0,0,0,1,0,'{\"login\":[1662126986]}'),(13848,'50.87.170.46','normal','',0,0,0,0,0,'[]'),(13849,'194.163.156.168','normal','',0,0,0,0,0,'[]'),(13850,'5.101.157.220','normal','',0,0,0,0,0,'[]'),(13851,'134.209.184.76','normal','',0,0,0,34,0,'{\"login\":[1649545186,1651507275,1651570821,1651997345,1652110200,1652605608,1652941355,1653335712,1653357207,1653382432,1653529203,1653621262,1653792822,1654367241,1654631644,1654903091,1655548677,1655714149,1656051738,1656256975,1656842209,1657121288,1658318772,1659975241,1660286754,1660306782,1660738190,1661261837,1661279293,1661510315,1662105603,1662266277,1663022498,1663136948]}'),(13852,'5.101.157.82','normal','',0,0,0,0,0,'[]'),(13853,'185.200.243.16','normal','',0,0,0,10,0,'{\"login\":[1649546266,1649671234,1649701280,1650461552,1650584256,1651093853,1651475551,1652434009,1652438629,1652443919]}'),(13854,'180.92.196.23','normal','',0,0,0,0,0,'[]'),(13855,'91.103.219.225','normal','',0,0,0,0,0,'[]'),(13856,'51.142.250.208','normal','You have been locked out due to too many invalid login attempts.',1649587306,1649587006,0,0,0,'{\"nf\":[],\"login\":[]}'),(13857,'109.203.102.82','normal','',0,0,0,3,0,'{\"login\":[1650296866,1653997770,1661172810]}'),(13858,'103.148.157.173','normal','',0,0,0,0,0,'[]'),(13859,'64.91.226.33','normal','',0,0,0,0,0,'[]'),(13860,'199.188.205.51','normal','',0,0,0,1,0,'{\"login\":[1650170745]}'),(13861,'141.138.139.104','normal','',0,0,0,0,0,'[]'),(13862,'107.180.107.103','normal','',0,0,0,0,0,'[]'),(13863,'188.42.97.7','normal','',0,0,0,0,0,'[]'),(13864,'77.221.130.84','normal','',0,0,0,11,0,'{\"login\":[1649835843,1650444899,1650859795,1650961044,1651085580,1652397152,1652418197,1652448642,1652740753,1653201890,1653253351]}'),(13865,'148.72.244.254','normal','',0,0,0,1,0,'{\"login\":[1660477948]}'),(13866,'208.97.176.172','normal','',0,0,0,0,0,'[]'),(13867,'5.101.157.32','normal','',0,0,0,0,0,'[]'),(13868,'109.206.252.198','normal','',0,0,0,1,0,'{\"login\":[1653998754]}'),(13869,'123.25.21.16','normal','',0,0,0,19,0,'{\"login\":[1649559820,1649753143,1650034970,1650307298,1653757754,1654780666,1655546334,1655903862,1656116331,1657108078,1657467537,1657501946,1657595277,1658341172,1660228841,1660394676,1662018315,1662038608,1663100541]}'),(13870,'75.119.200.134','normal','',0,0,0,12,0,'{\"login\":[1649564997,1649989355,1650257137,1650359569,1651368002,1651425518,1652387168,1652525960,1652859286,1653205817,1653402764,1654561099]}'),(13871,'3.137.139.148','normal','',0,0,0,0,1,'{\"nf\":[1649565888]}'),(13872,'37.46.140.2','normal','',0,0,0,0,0,'[]'),(13873,'45.118.145.96','normal','',0,0,0,0,0,'[]'),(13874,'209.87.159.243','normal','',0,0,0,0,0,'[]'),(13875,'148.163.80.135','normal','',0,0,0,6,0,'{\"login\":[1655663132,1655680907,1655724926,1655824662,1658264534,1658437777]}'),(13876,'65.21.150.215','normal','',0,0,0,0,0,'[]'),(13877,'208.109.41.113','normal','',0,0,0,0,0,'[]'),(13878,'188.40.224.241','normal','',0,0,0,0,0,'[]'),(13879,'47.107.130.19','normal','',0,0,0,1,0,'{\"login\":[1650163355]}'),(13880,'212.79.163.163','normal','',0,0,0,0,0,'[]'),(13881,'51.38.239.56','normal','',0,0,0,1,0,'{\"login\":[1650171102]}'),(13882,'74.208.151.215','normal','',0,0,0,0,0,'[]'),(13883,'66.29.154.216','normal','',0,0,0,1,0,'{\"login\":[1650308265]}'),(13884,'167.86.78.234','normal','',0,0,0,0,2,'{\"nf\":[1649581476,1649581477]}'),(13885,'39.98.224.201','normal','',0,0,0,2,0,'{\"login\":[1650358337,1650360304]}'),(13886,'45.77.246.163','normal','',0,0,0,0,0,'[]'),(13887,'54.36.148.93','normal','',0,0,0,0,0,'[]'),(13888,'87.118.118.89','normal','',0,0,0,0,0,'[]'),(13889,'187.84.233.39','normal','',0,0,0,19,0,'{\"login\":[1649583828,1649584687,1649843062,1650728641,1651166416,1651319664,1651517936,1652038985,1652071506,1652538781,1653025868,1653239733,1653347347,1653373034,1653629849,1654115772,1655024554,1655561879,1655713459]}'),(13890,'138.201.59.54','normal','',0,0,0,0,0,'[]'),(13891,'198.187.31.250','normal','',0,0,0,0,0,'[]'),(13892,'31.177.95.121','normal','',0,0,0,0,0,'[]'),(13893,'3.6.254.235','normal','',0,0,0,0,0,'[]'),(13894,'184.174.74.211','normal','',0,0,0,0,0,'[]'),(13895,'185.108.105.106','normal','',0,0,0,0,0,'[]'),(13896,'164.52.217.250','normal','',0,0,0,0,0,'[]'),(13897,'47.91.87.213','normal','',0,0,0,0,0,'[]'),(13898,'51.210.251.22','normal','',0,0,0,3,0,'{\"login\":[1650169757,1653824009,1662223361]}'),(13899,'5.101.157.87','normal','',0,0,0,0,0,'[]'),(13900,'185.252.31.180','normal','',0,0,0,1,0,'{\"login\":[1650296402]}'),(13901,'13.233.78.43','normal','',0,0,0,0,0,'[]'),(13902,'31.177.95.110','normal','',0,0,0,0,0,'[]'),(13903,'78.142.63.59','normal','',0,0,0,0,0,'[]'),(13904,'200.110.145.21','normal','',0,0,0,0,0,'[]'),(13905,'121.40.238.50','normal','',0,0,0,0,0,'[]'),(13906,'103.30.145.132','normal','',0,0,0,0,0,'[]'),(13907,'67.225.202.225','normal','',0,0,0,0,0,'[]'),(13908,'34.76.155.134','normal','',0,0,0,0,0,'[]'),(13909,'23.226.141.211','blocked','You have been locked out due to too many invalid login attempts.',1649604500,1649604200,0,5,0,'{\"login\":[1649604197,1649604198,1649604199,1649604199,1649604200]}'),(13910,'89.40.72.194','normal','',0,0,0,1,0,'{\"login\":[1650305258]}'),(13911,'5.101.157.149','normal','',0,0,0,0,0,'[]'),(13912,'114.119.138.13','normal','',0,0,0,0,0,'[]'),(13913,'185.182.57.60','normal','',0,0,0,0,0,'[]'),(13914,'116.255.178.218','normal','',0,0,0,0,0,'[]'),(13915,'131.72.236.163','normal','',0,0,0,0,0,'[]'),(13916,'39.101.164.205','normal','',0,0,0,0,0,'[]'),(13917,'103.122.244.192','normal','',0,0,0,0,0,'[]'),(13918,'103.159.36.154','normal','',0,0,0,1,0,'{\"login\":[1650167639]}'),(13919,'164.68.111.72','normal','',0,0,0,20,0,'{\"login\":[1649608399,1650425782,1651000833,1651112975,1651683297,1651725022,1652195974,1652788049,1653798372,1653803809,1654507616,1654551640,1654968583,1655677605,1656731364,1657286571,1657854478,1658692305,1658979480,1659778605]}'),(13920,'66.94.114.17','normal','',0,0,0,1,0,'{\"login\":[1650170094]}'),(13921,'185.161.18.33','normal','',0,0,0,0,0,'[]'),(13922,'178.238.38.94','normal','',0,0,0,0,0,'[]'),(13923,'103.174.87.138','normal','',0,0,0,1,0,'{\"login\":[1650357396]}'),(13924,'91.134.16.2','normal','',0,0,0,0,0,'[]'),(13925,'5.101.156.104','normal','',0,0,0,0,0,'[]'),(13926,'143.198.173.67','normal','',0,0,0,0,0,'[]'),(13927,'110.42.217.8','normal','',0,0,0,0,0,'[]'),(13928,'5.101.157.135','normal','',0,0,0,1,0,'{\"login\":[1662900763]}'),(13929,'185.19.251.131','normal','',0,0,0,1,0,'{\"login\":[1649617248]}'),(13930,'176.98.40.88','normal','',0,0,0,30,0,'{\"login\":[1649618995,1649702846,1650143827,1650365085,1650457291,1650494379,1650960230,1651045853,1652067946,1652288419,1652450686,1652454817,1653585676,1654214136,1654354008,1654870250,1655052777,1655167041,1655384182,1655532305,1655535838,1655773748,1655904694,1657308494,1657326558,1657510766,1658049274,1658354756,1659429554,1660121324]}'),(13931,'151.106.35.235','normal','',0,0,0,1,0,'{\"login\":[1662156832]}'),(13932,'18.219.157.32','normal','',0,0,0,0,1,'{\"nf\":[1649620324]}'),(13933,'85.198.184.211','normal','',0,0,0,0,0,'[]'),(13934,'162.214.197.206','normal','',0,0,0,2,0,'{\"login\":[1650299776,1653979583]}'),(13935,'34.218.48.153','normal','',0,0,0,0,0,'[]'),(13936,'198.187.31.98','normal','',0,0,0,0,0,'[]'),(13937,'77.235.58.41','normal','',0,0,0,0,0,'[]'),(13938,'103.173.204.25','normal','',0,0,0,1,0,'{\"login\":[1650140350]}'),(13939,'87.236.20.98','normal','',0,0,0,0,0,'[]'),(13940,'73.39.80.231','normal','',0,0,0,0,0,'[]'),(13941,'217.116.197.45','normal','',0,0,0,0,0,'[]'),(13942,'82.165.240.145','normal','',0,0,0,0,0,'[]'),(13943,'5.101.156.249','normal','',0,0,0,0,0,'[]'),(13944,'54.248.96.241','normal','',0,0,0,0,0,'[]'),(13945,'87.236.20.143','normal','',0,0,0,0,0,'[]'),(13946,'182.92.65.39','normal','',0,0,0,1,0,'{\"login\":[1654515904]}'),(13947,'190.107.177.252','normal','',0,0,0,0,0,'[]'),(13948,'103.148.192.11','normal','',0,0,0,0,0,'[]'),(13949,'23.88.7.241','normal','',0,0,0,0,0,'[]'),(13950,'96.81.43.5','normal','',0,0,0,0,0,'[]'),(13951,'213.5.71.211','normal','',0,0,0,0,0,'[]'),(13952,'106.14.203.226','normal','',0,0,0,1,0,'{\"login\":[1650305915]}'),(13953,'159.65.149.229','normal','',0,0,0,0,0,'[]'),(13954,'162.219.250.15','normal','',0,0,0,1,0,'{\"login\":[1650136556]}'),(13955,'34.73.59.7','normal','',0,0,0,0,0,'[]'),(13956,'8.210.144.239','normal','',0,0,0,0,0,'[]'),(13957,'167.114.116.38','normal','',0,0,0,0,0,'[]'),(13958,'184.168.102.208','normal','',0,0,0,0,0,'[]'),(13959,'104.248.57.165','normal','',0,0,0,3,0,'{\"login\":[1649645816,1650049837,1650054865]}'),(13960,'1.203.77.186','normal','',0,0,0,3,0,'{\"login\":[1649646700,1650679339,1650863680]}'),(13961,'66.249.66.195','normal','',0,0,0,0,0,'[]'),(13962,'92.204.220.51','normal','',0,0,0,0,0,'[]'),(13963,'209.222.101.138','normal','',0,0,0,0,0,'[]'),(13964,'5.101.157.45','normal','',0,0,0,2,0,'{\"login\":[1662960736,1662960737]}'),(13965,'87.236.20.88','normal','',0,0,0,0,0,'[]'),(13966,'194.59.170.210','normal','',0,0,0,0,0,'[]'),(13967,'35.178.238.163','normal','',0,0,0,0,0,'[]'),(13968,'185.131.50.99','normal','',0,0,0,0,0,'[]'),(13969,'197.94.217.162','normal','',0,0,0,0,0,'[]'),(13970,'184.95.38.138','normal','',0,0,0,0,0,'[]'),(13971,'43.250.140.5','normal','',0,0,0,0,0,'[]'),(13972,'35.176.89.51','normal','',0,0,0,0,0,'[]'),(13973,'5.101.157.248','normal','',0,0,0,0,0,'[]'),(13974,'177.221.140.73','normal','',0,0,0,1,0,'{\"login\":[1650132057]}'),(13975,'184.164.79.226','normal','',0,0,0,0,0,'[]'),(13976,'113.219.238.111','normal','',0,0,0,0,0,'[]'),(13977,'72.167.85.63','normal','',0,0,0,0,0,'[]'),(13978,'198.54.114.104','normal','',0,0,0,0,0,'[]'),(13979,'196.251.57.51','normal','',0,0,0,0,0,'[]'),(13980,'167.248.133.47','normal','',0,0,0,0,0,'[]'),(13981,'20.216.39.255','normal','',0,0,0,0,0,'[]'),(13982,'143.198.78.62','normal','',0,0,0,27,0,'{\"login\":[1649682324,1650176458,1650433547,1650547659,1651138765,1651484500,1651959312,1652342666,1652607780,1652618625,1652695453,1652993868,1653373688,1653488302,1653772435,1654223673,1654410593,1655023335,1655148547,1655362165,1655595958,1655736605,1656252098,1656546266,1656864688,1656866967,1656921507]}'),(13983,'51.142.105.91','normal','',0,0,0,0,1,'{\"nf\":[1649682647]}'),(13984,'82.165.83.240','normal','',0,0,0,0,0,'[]'),(13985,'103.174.115.211','normal','',0,0,0,1,0,'{\"login\":[1649684442]}'),(13986,'159.203.187.104','normal','',0,0,0,1,0,'{\"login\":[1649688144]}'),(13987,'67.227.191.12','normal','',0,0,0,0,0,'[]'),(13988,'164.68.97.208','normal','',0,0,0,11,0,'{\"login\":[1649693413,1649760640,1649801404,1650176899,1650188717,1651070651,1652706428,1652893777,1653036747,1653360565,1653443921]}'),(13989,'114.119.128.39','normal','',0,0,0,0,0,'[]'),(13990,'67.205.42.26','normal','',0,0,0,0,0,'[]'),(13991,'81.88.52.54','normal','',0,0,0,0,0,'[]'),(13992,'185.20.205.43','normal','',0,0,0,0,0,'[]'),(13993,'165.0.105.211','normal','',0,0,0,0,0,'[]'),(13994,'54.244.42.67','normal','',0,0,0,0,0,'[]'),(13995,'5.101.157.14','normal','',0,0,0,0,0,'[]'),(13996,'103.28.36.122','normal','',0,0,0,0,0,'[]'),(13997,'87.250.224.189','normal','',0,0,0,0,0,'[]'),(13998,'5.255.253.172','normal','',0,0,0,0,0,'[]'),(13999,'216.219.81.50','normal','',0,0,0,0,0,'[]'),(14000,'138.128.180.106','normal','',0,0,0,0,0,'[]'),(14001,'159.223.84.131','normal','',0,0,0,0,1,'{\"nf\":[1649722850]}'),(14002,'74.208.59.184','normal','',0,0,0,0,0,'[]'),(14003,'62.171.136.23','normal','',0,0,0,0,0,'[]'),(14004,'118.27.39.161','normal','',0,0,0,0,0,'[]'),(14005,'82.165.111.158','normal','',0,0,0,4,0,'{\"login\":[1649737268,1649830657,1650048456,1650263239]}'),(14006,'162.240.28.177','normal','',0,0,0,25,0,'{\"login\":[1649737786,1649831931,1650273555,1650461901,1650850621,1651106558,1652889603,1652928707,1654366656,1654543804,1654596931,1654626794,1654641275,1654714860,1655050817,1655671019,1656926005,1657062122,1657304158,1658250842,1659396530,1660414631,1662035670,1662765712,1663053720]}'),(14007,'162.241.71.202','normal','',0,0,0,21,0,'{\"login\":[1649738314,1650034024,1650125641,1650182149,1650420169,1650949076,1650989859,1651045028,1651383956,1651404102,1652058940,1652270192,1653246848,1653457070,1653490014,1653514417,1653913578,1654724276,1654764674,1654861594,1655426367]}'),(14008,'103.74.54.48','normal','',0,0,0,0,0,'[]'),(14009,'185.67.101.150','normal','',0,0,0,0,0,'[]'),(14010,'169.0.95.39','normal','',0,0,0,0,0,'[]'),(14011,'185.104.44.58','normal','',0,0,0,3,0,'{\"login\":[1650306239,1654521554,1662098356]}'),(14012,'211.238.13.155','normal','',0,0,0,6,0,'{\"login\":[1649749196,1652213931,1652229833,1654521280,1654553161,1654597971]}'),(14013,'103.152.254.243','normal','',0,0,0,0,0,'[]'),(14014,'185.2.5.88','normal','',0,0,0,0,1,'{\"nf\":[1649747089]}'),(14015,'3.105.166.245','normal','',0,0,0,0,0,'[]'),(14016,'88.214.43.118','normal','',0,0,0,0,17,'{\"nf\":[1650771020,1651987619,1652728007,1653737854,1654681395,1655471268,1656224255,1656850379,1657440954,1658049633,1658680587,1659328510,1660014982,1660796840,1661435516,1662116883,1662754978]}'),(14017,'88.214.43.118','normal','',0,0,0,0,0,'[]'),(14018,'157.90.165.4','normal','',0,0,0,37,0,'{\"login\":[1649748344,1649796012,1650011833,1650304129,1650424577,1650451815,1650602927,1650634160,1651364347,1651504538,1652712338,1653232361,1653446597,1653451030,1653925118,1654072935,1654203801,1654235653,1654358886,1654528214,1654905534,1654929648,1654933981,1655039661,1655358007,1655358600,1655394760,1655462884,1655583799,1656772763,1656836242,1657125198,1657307262,1658841467,1659203538,1659210815,1659389651]}'),(14019,'5.101.157.36','normal','',0,0,0,3,0,'{\"login\":[1662926566,1662955998,1662955999]}'),(14020,'213.136.93.169','normal','',0,0,0,15,0,'{\"login\":[1653556647,1653604264,1653625822,1654518895,1654561483,1655311028,1655326122,1659345270,1659371044,1659402434,1660106636,1660576625,1660794368,1661680239,1663100561]}'),(14021,'139.180.138.228','normal','',0,0,0,1,0,'{\"login\":[1649749845]}'),(14022,'18.142.97.126','normal','',0,0,0,1,0,'{\"login\":[1649750850]}'),(14023,'154.215.31.129','normal','',0,0,0,0,0,'[]'),(14024,'143.244.143.195','normal','',0,0,0,28,0,'{\"login\":[1649751006,1650613548,1651161466,1651325004,1651684600,1651981717,1652675638,1654150457,1654527073,1654712502,1655063206,1655416689,1656750582,1656860866,1657432339,1657651073,1657764073,1658325342,1658366550,1658496982,1658588367,1660115138,1660123394,1660196248,1660437465,1660715318,1660952599,1661374332]}'),(14025,'143.198.188.115','normal','',0,0,0,1,0,'{\"login\":[1649751480]}'),(14026,'185.119.90.34','normal','',0,0,0,0,0,'[]'),(14027,'115.146.127.55','normal','',0,0,0,1,0,'{\"login\":[1649751967]}'),(14028,'95.173.180.21','normal','',0,0,0,2,0,'{\"login\":[1649752319,1649765971]}'),(14029,'51.83.66.220','normal','',0,0,0,0,0,'[]'),(14030,'34.65.234.0','normal','',0,0,0,23,0,'{\"login\":[1649753006,1649759926,1654555126,1654600037,1654731450,1654782594,1655819953,1655880788,1656320526,1656574037,1657439554,1657987445,1659133161,1659298793,1659391725,1660175650,1660951388,1661293720,1661363090,1661417032,1662342272,1662729139,1663138325]}'),(14031,'46.101.9.216','normal','',0,0,0,0,0,'[]'),(14032,'172.104.165.170','normal','',0,0,0,3,0,'{\"login\":[1649753722,1649770678,1649792143]}'),(14033,'5.101.157.235','normal','',0,0,0,1,0,'{\"login\":[1659414077]}'),(14034,'34.124.217.54','normal','',0,0,0,1,0,'{\"login\":[1649754820]}'),(14035,'184.171.244.219','normal','',0,0,0,0,0,'[]'),(14036,'38.242.242.224','normal','',0,0,0,8,0,'{\"login\":[1649755607,1649767615,1649777866,1649788374,1650199388,1650200746,1650254070,1650255436]}'),(14037,'51.91.151.60','normal','',0,0,0,30,0,'{\"login\":[1649755815,1650047072,1650437002,1650495100,1650840385,1651042530,1651736524,1653450157,1654281641,1654285836,1654312018,1654537919,1654865653,1654937139,1655555922,1655570063,1655781944,1656901736,1657305417,1657518831,1657529122,1657660085,1658522843,1660097216,1660153883,1661092417,1661129506,1662756663,1662936187,1663130158]}'),(14038,'144.91.125.155','normal','',0,0,0,7,0,'{\"login\":[1649755948,1649759610,1649778636,1649782509,1649794660,1650221878,1650226349]}'),(14039,'177.55.111.10','normal','',0,0,0,1,0,'{\"login\":[1649756683]}'),(14040,'103.147.246.226','normal','',0,0,0,1,0,'{\"login\":[1649757398]}'),(14041,'138.197.161.222','normal','',0,0,0,0,0,'[]'),(14042,'116.203.239.28','normal','',0,0,0,1,0,'{\"login\":[1649758117]}'),(14043,'151.248.4.59','normal','',0,0,0,1,0,'{\"login\":[1649758489]}'),(14044,'167.86.79.77','normal','',0,0,0,5,0,'{\"login\":[1649758845,1649773971,1650201630,1650223207,1650223644]}'),(14045,'173.249.20.17','normal','',0,0,0,0,0,'[]'),(14046,'45.236.130.240','normal','',0,0,0,18,0,'{\"login\":[1649759223,1649779417,1651562245,1652190259,1652224308,1652241577,1652245183,1652250667,1653565433,1653618151,1654508057,1657449134,1657449281,1657462963,1657466487,1657472485,1657506687,1657520346]}'),(14047,'132.148.178.206','normal','',0,0,0,0,0,'[]'),(14048,'5.23.51.100','normal','',0,0,0,2,0,'{\"login\":[1649761339,1650236816]}'),(14049,'159.223.119.11','normal','',0,0,0,3,0,'{\"login\":[1649762087,1650252276,1651411919]}'),(14050,'185.244.214.40','blocked','You have been locked out due to too many invalid login attempts.',1649763220,1649762920,0,5,0,'{\"login\":[1649762918,1649762918,1649762919,1649762919,1649762920]}'),(14051,'135.125.93.0','normal','',0,0,0,1,0,'{\"login\":[1649763272]}'),(14052,'185.56.11.123','normal','',0,0,0,1,0,'{\"login\":[1650293199]}'),(14053,'192.248.145.78','normal','',0,0,0,3,0,'{\"login\":[1649764781,1649771362,1650176242]}'),(14054,'173.249.15.242','normal','',0,0,0,1,0,'{\"login\":[1649765588]}'),(14055,'34.134.138.49','normal','',0,0,0,5,0,'{\"login\":[1649766314,1649770998,1651443525,1652210753,1652825179]}'),(14056,'17.121.115.235','normal','',0,0,0,0,0,'[]'),(14057,'13.234.214.198','normal','',0,0,0,2,0,'{\"login\":[1649766720,1649776312]}'),(14058,'87.236.20.180','normal','',0,0,0,2,0,'{\"login\":[1662953165,1662953166]}'),(14059,'17.121.115.205','normal','',0,0,0,0,1,'{\"nf\":[1649767986]}'),(14060,'17.121.113.204','normal','',0,0,0,0,1,'{\"nf\":[1649767987]}'),(14061,'45.159.113.111','normal','',0,0,0,21,0,'{\"login\":[1649768363,1649769885,1652170782,1652180318,1652208460,1652250797,1652819331,1653580948,1654500335,1655290432,1656780414,1656780499,1656802388,1657469266,1657484622,1657495753,1657513789,1659353950,1659374359,1659384486,1659398018]}'),(14062,'3.0.21.222','normal','',0,0,0,1,0,'{\"login\":[1649768902]}'),(14063,'62.173.164.165','normal','',0,0,0,2,0,'{\"login\":[1649769537,1649787246]}'),(14064,'35.180.215.2','normal','',0,0,0,0,0,'[]'),(14065,'16.170.192.10','normal','',0,0,0,4,0,'{\"login\":[1649769839,1650043831,1650129543,1650176017]}'),(14066,'105.185.185.41','normal','',0,0,0,0,1,'{\"nf\":[1649770298]}'),(14067,'198.199.89.213','normal','',0,0,0,1,0,'{\"login\":[1649770309]}'),(14068,'34.86.35.13','normal','',0,0,0,0,0,'[]'),(14069,'191.96.106.55','normal','',0,0,0,0,0,'[]'),(14070,'185.181.230.127','normal','',0,0,0,2,0,'{\"login\":[1649771742,1650251771]}'),(14071,'3.213.230.191','normal','',0,0,0,0,0,'[]'),(14072,'37.18.90.72','normal','',0,0,0,5,0,'{\"login\":[1649774445,1652170922,1652180587,1652187402,1652202348]}'),(14073,'101.35.201.122','normal','',0,0,0,1,0,'{\"login\":[1649774817]}'),(14074,'5.161.49.80','normal','',0,0,0,3,0,'{\"login\":[1649775129,1649793567,1650191364]}'),(14075,'192.169.151.16','normal','',0,0,0,0,0,'[]'),(14076,'157.245.185.172','normal','',0,0,0,6,0,'{\"login\":[1649777496,1651472050,1651539206,1652198801,1652201444,1652220714]}'),(14077,'195.74.38.127','normal','',0,0,0,0,0,'[]'),(14078,'103.117.212.88','normal','',0,0,0,0,0,'[]'),(14079,'153.127.13.70','normal','',0,0,0,1,0,'{\"login\":[1649779746]}'),(14080,'139.59.248.21','normal','',0,0,0,1,0,'{\"login\":[1649780140]}'),(14081,'185.62.136.55','normal','',0,0,0,1,0,'{\"login\":[1653991105]}'),(14082,'45.200.120.185','normal','',0,0,0,1,0,'{\"login\":[1649781273]}'),(14083,'88.99.58.132','normal','',0,0,0,3,0,'{\"login\":[1649782853,1649785483,1650262281]}'),(14084,'162.0.229.95','normal','',0,0,0,0,0,'[]'),(14085,'144.76.162.205','normal','',0,0,0,1,0,'{\"login\":[1649783678]}'),(14086,'185.239.40.68','normal','',0,0,0,1,0,'{\"login\":[1649784020]}'),(14087,'175.44.42.13','normal','',0,0,0,0,0,'[]'),(14088,'217.160.75.121','normal','',0,0,0,16,0,'{\"login\":[1649784704,1649802006,1650032630,1650186529,1650342708,1650493656,1651034853,1651329454,1651418980,1651962268,1652886367,1652962227,1654063531,1654284997,1654708407,1654718962]}'),(14089,'103.226.174.221','normal','',0,0,0,1,0,'{\"login\":[1649784789]}'),(14090,'52.3.173.88','normal','',0,0,0,1,0,'{\"login\":[1649786545]}'),(14091,'139.59.19.34','normal','',0,0,0,2,0,'{\"login\":[1649787545,1650192638]}'),(14092,'23.88.114.41','normal','',0,0,0,1,0,'{\"login\":[1649787946]}'),(14093,'188.166.173.181','normal','',0,0,0,1,0,'{\"login\":[1649789510]}'),(14094,'109.70.148.44','normal','',0,0,0,1,0,'{\"login\":[1649789711]}'),(14095,'165.232.94.255','normal','',0,0,0,9,0,'{\"login\":[1649791284,1650249531,1652278049,1652883431,1654421808,1654964114,1654979948,1655420303,1655565957]}'),(14096,'114.119.134.159','normal','',0,0,0,0,0,'[]'),(14097,'34.68.4.41','normal','',0,0,0,13,0,'{\"login\":[1649791436,1656744438,1656773281,1656784977,1656801464,1656805130,1656805213,1656818388,1656824794,1656835290,1657447913,1657508038,1657662041]}'),(14098,'159.223.51.182','normal','',0,0,0,14,0,'{\"login\":[1649791763,1651433858,1653559279,1653627265,1654503500,1654634463,1654651993,1654655532,1654657563,1655285091,1655288938,1655302055,1655302402,1655305170]}'),(14099,'197.89.38.77','normal','',0,0,0,0,1,'{\"nf\":[1649793225]}'),(14100,'159.89.199.237','normal','',0,0,0,35,0,'{\"login\":[1649800797,1649817870,1650175572,1650385496,1650462842,1652024782,1652303113,1652522627,1653005885,1653601060,1654391865,1654736854,1654788775,1654976167,1654994712,1655047541,1655684892,1655821372,1656215965,1656847549,1656942452,1657312205,1657332876,1657820376,1658082758,1658274429,1658442225,1658642503,1659731219,1659765048,1659983559,1660371209,1661183541,1661622113,1662217479]}'),(14101,'167.114.101.80','normal','',0,0,0,0,0,'[]'),(14102,'157.245.48.104','normal','',0,0,0,16,0,'{\"login\":[1649813542,1650255239,1650716581,1650827674,1651257828,1651695515,1651737176,1652022958,1652033969,1652435334,1652685441,1652874738,1653220620,1654156560,1654157402,1654322481]}'),(14103,'162.241.253.12','normal','',0,0,0,0,0,'[]'),(14104,'143.244.140.199','normal','',0,0,0,23,0,'{\"login\":[1649820328,1650319835,1650349978,1650379336,1650701083,1651557396,1652657619,1652778668,1653521801,1654417657,1654425402,1654848115,1657047756,1657157389,1657384131,1658098420,1658753292,1659274532,1659848990,1660966023,1661751926,1662156351,1662400628]}'),(14105,'178.128.100.218','normal','',0,0,0,3,0,'{\"login\":[1649822156,1650298371,1650824829]}'),(14106,'37.143.8.76','normal','',0,0,0,4,0,'{\"login\":[1649824442,1650265604,1650266080,1650559483]}'),(14107,'142.93.54.10','normal','',0,0,0,30,0,'{\"login\":[1649829412,1650417855,1651246586,1651262134,1651585308,1652435988,1653021411,1653518433,1654350731,1654937925,1655035936,1655410143,1655419695,1655790510,1656840878,1657397932,1657400302,1657503590,1657552388,1657680225,1657764890,1659120523,1660194116,1660471924,1660571616,1661240771,1662044508,1663014903,1663078983,1663115151]}'),(14108,'109.248.175.62','normal','',0,0,0,0,4,'{\"nf\":[1649831498,1649915573,1649932254,1650008827]}'),(14109,'185.182.204.90','normal','',0,0,0,0,1,'{\"nf\":[1649833020]}'),(14110,'167.71.234.124','normal','',0,0,0,20,0,'{\"login\":[1649837155,1650610265,1650942368,1651349062,1651491728,1652026873,1652799875,1652841748,1654725476,1654781951,1654886344,1655551189,1656059013,1656791852,1657643930,1658330407,1659361486,1661635429,1662392136,1663010632]}'),(14111,'223.27.104.26','normal','',0,0,0,0,1,'{\"nf\":[1649838555]}'),(14112,'95.216.203.62','normal','',0,0,0,4,0,'{\"login\":[1649839124,1649847700,1649948604,1650655035]}'),(14113,'102.65.62.252','normal','',0,0,0,0,0,'[]'),(14114,'142.93.109.72','normal','',0,0,0,5,0,'{\"login\":[1649845716,1651520605,1652023251,1652094794,1652418864]}'),(14115,'185.128.26.218','normal','',0,0,0,3,0,'{\"login\":[1649845908,1650680611,1651508540]}'),(14116,'212.193.30.178','normal','',0,0,0,0,4,'{\"nf\":[1649848477,1649848478,1649902642,1649902646]}'),(14117,'188.166.225.235','normal','',0,0,0,26,0,'{\"login\":[1649851694,1650166990,1650607894,1651474668,1652341993,1652387832,1652591689,1652642216,1652930882,1653483717,1653904134,1654139365,1654511843,1654764040,1654967948,1657247987,1657741867,1658303155,1660011164,1660740793,1661517369,1661625427,1662071541,1662294400,1662327700,1662374224]}'),(14118,'196.209.217.34','normal','',0,0,0,0,0,'[]'),(14119,'157.245.106.187','normal','',0,0,0,1,0,'{\"login\":[1649853716]}'),(14120,'173.212.246.2','normal','',0,0,0,0,1,'{\"nf\":[1649875117]}'),(14121,'165.0.74.166','normal','',0,0,0,0,0,'[]'),(14122,'54.36.148.185','normal','',0,0,0,0,0,'[]'),(14123,'192.64.117.159','normal','',0,0,0,0,1,'{\"nf\":[1649880842]}'),(14124,'54.202.189.255','normal','',0,0,0,0,0,'[]'),(14125,'54.202.74.120','normal','',0,0,0,0,0,'[]'),(14126,'35.88.137.84','normal','',0,0,0,0,0,'[]'),(14127,'35.88.137.84','normal','',0,0,0,0,0,'[]'),(14128,'5.101.157.171','normal','',0,0,0,5,0,'{\"login\":[1659345641,1659372713,1659416333,1659427638,1659975055]}'),(14129,'160.251.40.160','normal','',0,0,0,0,0,'[]'),(14130,'51.210.156.16','normal','',0,0,0,0,0,'[]'),(14131,'192.145.239.208','normal','',0,0,0,0,0,'[]'),(14132,'171.244.201.17','normal','',0,0,0,2,0,'{\"login\":[1650305593,1661951950]}'),(14133,'34.135.49.103','normal','',0,0,0,1,0,'{\"login\":[1650166357]}'),(14134,'185.83.146.154','normal','',0,0,0,0,15,'{\"nf\":[1649898039,1649898039,1649898040,1650859791,1651779241,1652822895,1653833524,1654774667,1656316689,1656316689,1658019821,1658785361,1660075700,1661298825,1661682052]}'),(14135,'54.227.153.31','normal','',0,0,0,0,0,'[]'),(14136,'72.167.127.41','normal','',0,0,0,0,0,'[]'),(14137,'85.214.38.127','normal','',0,0,0,0,0,'[]'),(14138,'200.147.58.13','normal','',0,0,0,0,0,'[]'),(14139,'198.46.81.27','normal','',0,0,0,0,0,'[]'),(14140,'143.198.190.98','normal','',0,0,0,0,0,'[]'),(14141,'162.55.92.17','normal','',0,0,0,0,0,'[]'),(14142,'66.249.66.205','normal','',0,0,0,0,0,'[]'),(14143,'34.139.126.149','normal','',0,0,0,0,0,'[]'),(14144,'82.165.83.114','normal','',0,0,0,0,0,'[]'),(14145,'197.94.73.5','normal','',0,0,0,0,0,'[]'),(14146,'159.65.112.31','normal','',0,0,0,0,0,'[]'),(14147,'82.223.121.160','normal','',0,0,0,0,0,'[]'),(14148,'197.95.147.153','normal','',0,0,0,0,0,'[]'),(14149,'75.119.130.151','normal','',0,0,0,1,0,'{\"login\":[1650141260]}'),(14150,'87.236.20.90','normal','',0,0,0,0,0,'[]'),(14151,'174.138.27.180','normal','',0,0,0,0,0,'[]'),(14152,'45.77.89.78','normal','',0,0,0,0,0,'[]'),(14153,'188.166.104.64','normal','',0,0,0,0,0,'[]'),(14154,'82.165.87.215','normal','',0,0,0,0,0,'[]'),(14155,'168.119.8.237','normal','',0,0,0,0,0,'[]'),(14156,'51.107.81.132','normal','',0,0,0,0,0,'[]'),(14157,'149.210.234.70','normal','',0,0,0,0,0,'[]'),(14158,'54.86.219.186','normal','',0,0,0,0,0,'[]'),(14159,'85.208.48.85','normal','',0,0,0,0,0,'[]'),(14160,'103.204.130.160','normal','',0,0,0,3,0,'{\"login\":[1650142206,1653808165,1654512544]}'),(14161,'5.101.156.56','normal','',0,0,0,0,0,'[]'),(14162,'165.232.185.213','normal','',0,0,0,0,0,'[]'),(14163,'178.197.224.94','normal','',0,0,0,0,0,'[]'),(14164,'62.197.136.52','normal','',0,0,0,0,0,'[]'),(14165,'185.111.89.170','normal','',0,0,0,0,0,'[]'),(14166,'209.203.42.146','normal','',0,0,0,0,0,'[]'),(14167,'5.101.157.102','normal','',0,0,0,0,0,'[]'),(14168,'192.99.18.108','normal','',0,0,0,0,0,'[]'),(14169,'188.34.191.243','normal','',0,0,0,0,0,'[]'),(14170,'3.129.22.206','normal','',0,0,0,0,0,'[]'),(14171,'194.135.82.233','normal','',0,0,0,3,0,'{\"login\":[1649954766,1649980482,1650035431]}'),(14172,'103.173.227.126','normal','',0,0,0,0,0,'[]'),(14173,'5.101.157.230','normal','',0,0,0,0,0,'[]'),(14174,'143.110.208.83','normal','',0,0,0,1,0,'{\"login\":[1650299429]}'),(14175,'172.104.120.112','normal','',0,0,0,2,0,'{\"login\":[1649963636,1650473983]}'),(14176,'107.190.129.90','normal','',0,0,0,0,0,'[]'),(14177,'34.218.244.229','normal','',0,0,0,0,0,'[]'),(14178,'52.27.97.254','normal','',0,0,0,0,0,'[]'),(14179,'35.89.40.72','normal','',0,0,0,0,0,'[]'),(14180,'64.227.183.25','normal','',0,0,0,31,0,'{\"login\":[1649968020,1650380782,1650623490,1652078662,1652262985,1652965007,1653064663,1653072162,1653406680,1653599066,1654190948,1654195117,1654542336,1656073596,1656529278,1656774086,1656846885,1657857289,1658411327,1658459289,1659262918,1660586245,1661091156,1661257107,1661300251,1661301185,1661367217,1661664423,1662730383,1662943475,1663024674]}'),(14181,'185.61.152.14','normal','',0,0,0,0,0,'[]'),(14182,'35.162.162.178','normal','',0,0,0,0,0,'[]'),(14183,'5.101.156.221','normal','',0,0,0,0,0,'[]'),(14184,'114.119.136.215','normal','',0,0,0,0,0,'[]'),(14185,'91.243.34.182','normal','',0,0,0,0,2,'{\"nf\":[1649972351,1649972365]}'),(14186,'196.240.254.8','normal','',0,0,0,0,0,'[]'),(14187,'196.242.114.174','normal','',0,0,0,0,0,'[]'),(14188,'185.206.225.141','blocked','You have been locked out due to too many invalid login attempts.',1649972902,1649972602,0,5,0,'{\"login\":[1649972599,1649972599,1649972600,1649972601,1649972602]}'),(14189,'148.72.232.163','normal','',0,0,0,0,0,'[]'),(14190,'139.59.96.126','normal','',0,0,0,28,0,'{\"login\":[1649974615,1650983166,1652598120,1652785877,1652811227,1652992362,1653307124,1654061178,1655718861,1655789614,1655822780,1657042477,1657752117,1658182604,1658828407,1659620479,1659847828,1660229497,1660785793,1660787497,1660789218,1661151970,1661290164,1661653543,1661696882,1662193462,1662276100,1663002263]}'),(14191,'128.199.1.70','normal','',0,0,0,3,0,'{\"login\":[1649976818,1650128574,1650310438]}'),(14192,'161.35.155.212','normal','',0,0,0,0,0,'[]'),(14193,'198.235.24.14','normal','',0,0,0,0,0,'[]'),(14194,'82.165.83.82','normal','',0,0,0,0,0,'[]'),(14195,'205.210.31.27','normal','',0,0,0,0,0,'[]'),(14196,'75.119.155.88','normal','',0,0,0,5,0,'{\"login\":[1649986390,1650045679,1650293191,1650583948,1651025319]}'),(14197,'107.152.234.218','normal','',0,0,0,0,0,'[]'),(14198,'210.5.50.149','normal','',0,0,0,3,0,'{\"login\":[1650300774,1650303001,1658754687]}'),(14199,'37.228.140.149','normal','',0,0,0,0,1,'{\"nf\":[1649990054]}'),(14200,'62.221.252.191','normal','',0,0,0,0,0,'[]'),(14201,'198.54.114.64','normal','',0,0,0,0,0,'[]'),(14202,'199.188.201.172','normal','',0,0,0,0,0,'[]'),(14203,'199.188.201.7','normal','',0,0,0,0,0,'[]'),(14204,'89.39.208.250','normal','',0,0,0,1,0,'{\"login\":[1650303344]}'),(14205,'103.211.218.142','normal','',0,0,0,1,0,'{\"login\":[1650136846]}'),(14206,'162.213.255.20','normal','',0,0,0,0,0,'[]'),(14207,'139.180.209.101','normal','',0,0,0,0,0,'[]'),(14208,'5.101.156.190','normal','',0,0,0,0,0,'[]'),(14209,'128.199.21.138','normal','',0,0,0,0,0,'[]'),(14210,'182.50.132.88','normal','',0,0,0,1,0,'{\"login\":[1650164635]}'),(14211,'162.0.209.128','normal','',0,0,0,0,0,'[]'),(14212,'148.66.147.18','normal','',0,0,0,0,0,'[]'),(14213,'104.248.167.244','normal','',0,0,0,5,0,'{\"login\":[1650007413,1652517320,1652833345,1653001651,1653239081]}'),(14214,'5.9.70.113','normal','',0,0,0,0,0,'[]'),(14215,'185.27.99.137','normal','',0,0,0,0,2,'{\"nf\":[1650009869,1655559625]}'),(14216,'185.27.99.141','normal','',0,0,0,0,0,'[]'),(14217,'54.37.106.90','normal','',0,0,0,0,1,'{\"nf\":[1650011545]}'),(14218,'89.245.15.254','normal','',0,0,0,1,0,'{\"login\":[1650013299]}'),(14219,'159.223.4.84','normal','',0,0,0,0,0,'[]'),(14220,'60.43.240.175','normal','',0,0,0,1,0,'{\"login\":[1654014171]}'),(14221,'198.211.116.247','normal','',0,0,0,0,0,'[]'),(14222,'54.164.253.138','normal','',0,0,0,1,0,'{\"login\":[1650363313]}'),(14223,'105.187.25.109','normal','',0,0,0,0,0,'[]'),(14224,'69.167.171.138','normal','',0,0,0,0,0,'[]'),(14225,'167.94.138.118','normal','',0,0,0,0,0,'[]'),(14226,'178.63.79.232','normal','',0,0,0,0,0,'[]'),(14227,'205.210.31.149','normal','',0,0,0,0,0,'[]'),(14228,'51.255.80.97','normal','',0,0,0,0,3,'{\"nf\":[1650030441,1650030441,1650030442]}'),(14229,'188.126.73.219','normal','',0,0,0,0,0,'[]'),(14230,'54.36.148.12','normal','',0,0,0,0,0,'[]'),(14231,'54.36.148.25','normal','',0,0,0,0,0,'[]'),(14232,'38.242.249.246','normal','',0,0,0,0,0,'[]'),(14233,'194.195.119.22','normal','',0,0,0,5,0,'{\"login\":[1650037775,1650679922,1650682252,1650694778,1651027773]}'),(14234,'49.234.226.197','normal','',0,0,0,0,0,'[]'),(14235,'136.144.182.213','normal','',0,0,0,0,0,'[]'),(14236,'35.156.9.244','normal','',0,0,0,0,1,'{\"nf\":[1650040141]}'),(14237,'54.36.149.87','normal','',0,0,0,0,0,'[]'),(14238,'197.229.3.178','normal','',0,0,0,0,0,'[]'),(14239,'208.109.28.20','normal','',0,0,0,0,0,'[]'),(14240,'143.244.155.35','normal','',0,0,0,26,0,'{\"login\":[1650046148,1650721880,1651509058,1651593074,1651595006,1652073300,1652516005,1652674016,1653066235,1653491365,1653512434,1654090427,1654167819,1655430642,1656873768,1657202117,1658825138,1659109106,1659299754,1659574980,1659725441,1659987563,1661280173,1661360989,1662226467,1662358801]}'),(14241,'137.184.106.223','normal','',0,0,0,4,0,'{\"login\":[1650046612,1650594687,1651362524,1651722008]}'),(14242,'102.132.242.254','normal','',0,0,0,0,0,'[]'),(14243,'198.71.236.20','normal','',0,0,0,0,0,'[]'),(14244,'103.139.103.157','normal','',0,0,0,2,0,'{\"login\":[1650051666,1650661761]}'),(14245,'137.74.194.43','normal','',0,0,0,5,0,'{\"login\":[1650052576,1650054403,1650150031,1650524107,1650699930]}'),(14246,'69.160.160.60','normal','',0,0,0,0,1,'{\"nf\":[1650055156]}'),(14247,'34.213.40.91','normal','',0,0,0,0,0,'[]'),(14248,'17.121.115.103','normal','',0,0,0,0,0,'[]'),(14249,'109.248.175.103','normal','',0,0,0,0,4,'{\"nf\":[1650059497,1650134777,1650294063,1650315605]}'),(14250,'198.71.236.15','normal','',0,0,0,0,0,'[]'),(14251,'114.119.146.98','normal','',0,0,0,0,0,'[]'),(14252,'185.145.13.108','normal','',0,0,0,0,0,'[]'),(14253,'54.39.45.92','normal','',0,0,0,1,0,'{\"login\":[1662251090]}'),(14254,'45.129.18.141','normal','',0,0,0,0,0,'[]'),(14255,'45.129.18.70','normal','',0,0,0,0,0,'[]'),(14256,'198.71.228.55','normal','',0,0,0,0,0,'[]'),(14257,'74.208.59.6','normal','',0,0,0,0,0,'[]'),(14258,'68.65.121.177','normal','',0,0,0,0,0,'[]'),(14259,'182.50.151.11','normal','',0,0,0,0,0,'[]'),(14260,'74.208.59.207','normal','',0,0,0,0,0,'[]'),(14261,'60.248.22.5','normal','',0,0,0,0,1,'{\"nf\":[1650086642]}'),(14262,'5.9.66.153','normal','',0,0,0,0,0,'[]'),(14263,'67.205.125.34','normal','',0,0,0,0,0,'[]'),(14264,'82.223.27.166','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1650090546,0,1650090246,0,20,'{\"nf\":[1650090231,1650090232,1650090233,1650090233,1650090234,1650090235,1650090236,1650090237,1650090237,1650090238,1650090239,1650090240,1650090240,1650090242,1650090243,1650090243,1650090244,1650090245,1650090246,1650090246]}'),(14265,'103.138.188.139','normal','',0,0,0,0,0,'[]'),(14266,'93.191.156.238','normal','',0,0,0,0,0,'[]'),(14267,'220.144.246.145','normal','',0,0,0,0,0,'[]'),(14268,'192.185.4.163','normal','',0,0,0,0,0,'[]'),(14269,'62.138.143.186','normal','',0,0,0,0,0,'[]'),(14270,'141.95.160.87','normal','',0,0,0,0,0,'[]'),(14271,'74.208.34.233','normal','',0,0,0,0,0,'[]'),(14272,'5.39.67.131','normal','',0,0,0,0,0,'[]'),(14273,'31.177.95.238','normal','',0,0,0,0,0,'[]'),(14274,'20.90.52.154','normal','',0,0,0,0,0,'[]'),(14275,'82.165.81.220','normal','',0,0,0,0,0,'[]'),(14276,'109.106.246.97','normal','',0,0,0,0,0,'[]'),(14277,'78.46.33.24','normal','',0,0,0,0,0,'[]'),(14278,'157.55.39.20','normal','',0,0,0,0,0,'[]'),(14279,'5.145.171.20','normal','',0,0,0,0,0,'[]'),(14280,'148.72.232.64','normal','',0,0,0,0,0,'[]'),(14281,'198.71.236.43','normal','',0,0,0,0,0,'[]'),(14282,'103.166.183.192','normal','',0,0,0,37,0,'{\"login\":[1650124637,1650185215,1650464371,1650533786,1650867553,1651026481,1651110243,1651388498,1652298590,1652445937,1652519959,1652588483,1652911080,1653325269,1654061964,1654524000,1654872809,1655375496,1655595146,1657278064,1657704284,1658198242,1658554517,1659610564,1660111006,1660293018,1660430172,1661315011,1661345326,1661530104,1661640648,1661669197,1662135405,1662354262,1662740524,1663099256,1663156486]}'),(14283,'194.67.212.113','normal','',0,0,0,2,0,'{\"login\":[1650124863,1650352564]}'),(14284,'107.189.13.143','normal','',0,0,0,0,0,'[]'),(14285,'85.25.185.238','normal','',0,0,0,0,1,'{\"nf\":[1650127051]}'),(14286,'208.109.26.112','normal','',0,0,0,0,0,'[]'),(14287,'162.0.232.11','normal','',0,0,0,1,0,'{\"login\":[1650129169]}'),(14288,'217.21.74.226','normal','',0,0,0,5,0,'{\"login\":[1650130028,1651290624,1652764183,1658294415,1659123636]}'),(14289,'101.0.80.218','normal','',0,0,0,23,0,'{\"login\":[1650130510,1650365775,1650395394,1651164533,1651493532,1651740463,1652261375,1652334100,1652533957,1652795414,1652971265,1653012043,1653015099,1653259876,1653615866,1654286681,1654433200,1654488380,1654497210,1654506422,1654603722,1654958985,1654967312]}'),(14290,'162.0.209.186','normal','',0,0,0,1,0,'{\"login\":[1650133419]}'),(14291,'207.46.13.232','normal','',0,0,0,0,0,'[]'),(14292,'17.121.114.11','normal','',0,0,0,0,0,'[]'),(14293,'93.177.103.249','normal','',0,0,0,1,0,'{\"login\":[1650138567]}'),(14294,'17.121.112.144','normal','',0,0,0,0,0,'[]'),(14295,'35.88.189.109','normal','',0,0,0,0,0,'[]'),(14296,'34.212.219.183','normal','',0,0,0,0,0,'[]'),(14297,'54.218.88.103','normal','',0,0,0,0,0,'[]'),(14298,'18.237.148.163','normal','',0,0,0,0,0,'[]'),(14299,'67.222.39.68','normal','',0,0,0,0,1,'{\"nf\":[1650148525]}'),(14300,'114.119.134.161','normal','',0,0,0,0,0,'[]'),(14301,'46.161.11.37','normal','',0,0,0,0,0,'[]'),(14302,'148.72.232.58','normal','',0,0,0,1,0,'{\"login\":[1650163057]}'),(14303,'162.213.255.78','normal','',0,0,0,1,0,'{\"login\":[1650164299]}'),(14304,'45.132.227.183','normal','',0,0,0,0,0,'[]'),(14305,'159.223.35.16','normal','',0,0,0,1,0,'{\"login\":[1650167316]}'),(14306,'67.222.142.146','normal','',0,0,0,3,0,'{\"login\":[1650168327,1653995703,1660047407]}'),(14307,'5.253.181.177','normal','',0,0,0,5,0,'{\"login\":[1650170158,1651523233,1652405267,1652551893,1653622607]}'),(14308,'159.89.149.74','normal','',0,0,0,1,0,'{\"login\":[1650172776]}'),(14309,'185.239.40.69','normal','',0,0,0,1,0,'{\"login\":[1650173232]}'),(14310,'52.78.28.41','normal','',0,0,0,2,0,'{\"login\":[1650174122,1650177185]}'),(14311,'91.240.85.137','normal','',0,0,0,4,0,'{\"login\":[1650175014,1650189894,1650239130,1650240527]}'),(14312,'89.245.9.109','normal','',0,0,0,1,0,'{\"login\":[1650175126]}'),(14313,'159.89.175.178','normal','',0,0,0,1,0,'{\"login\":[1650175758]}'),(14314,'89.238.73.48','normal','',0,0,0,3,0,'{\"login\":[1650178427,1650243672,1650245926]}'),(14315,'78.12.18.253','normal','',0,0,0,2,0,'{\"login\":[1650179796,1650184546]}'),(14316,'37.97.195.187','normal','',0,0,0,3,0,'{\"login\":[1650180233,1650235994,1650261785]}'),(14317,'198.23.174.115','normal','',0,0,0,0,0,'[]'),(14318,'208.113.240.124','normal','',0,0,0,2,0,'{\"login\":[1650181909,1650241454]}'),(14319,'176.9.102.181','normal','',0,0,0,6,0,'{\"login\":[1650182362,1650232275,1651461830,1652237432,1652829532,1652839060]}'),(14320,'34.135.121.218','normal','',0,0,0,5,0,'{\"login\":[1650182879,1650183628,1650188545,1651473655,1652244112]}'),(14321,'51.178.137.175','normal','',0,0,0,2,0,'{\"login\":[1650183031,1650407098]}'),(14322,'144.91.110.91','normal','',0,0,0,2,0,'{\"login\":[1650184030,1650236389]}'),(14323,'118.27.103.110','normal','',0,0,0,1,0,'{\"login\":[1650185469]}'),(14324,'156.67.221.52','normal','',0,0,0,2,0,'{\"login\":[1650185922,1650265984]}'),(14325,'95.111.199.114','normal','',0,0,0,1,0,'{\"login\":[1650186310]}'),(14326,'102.219.178.121','normal','',0,0,0,13,0,'{\"login\":[1650187597,1650216956,1650240976,1652176458,1652200265,1652208615,1652216669,1652245784,1653555678,1653573927,1653595646,1653615181,1654542353]}'),(14327,'137.184.117.52','normal','',0,0,0,43,0,'{\"login\":[1650187848,1650432691,1650874090,1651028950,1651476436,1651963255,1652053233,1652283300,1652437312,1652914563,1653305190,1653597082,1653804725,1654346256,1654380308,1654387605,1654493707,1655751274,1656799823,1657140519,1657381598,1657390775,1657709939,1657983037,1658324785,1659612746,1659747587,1660116128,1660231502,1660582387,1661098716,1661298392,1661522870,1661982748,1662062407,1662208000,1662236118,1662394047,1662553492,1662813864,1662927592,1662966457,1663045354]}'),(14328,'185.19.190.26','normal','',0,0,0,19,0,'{\"login\":[1650188278,1650418734,1650691956,1650705659,1652271002,1652543977,1652640583,1653248149,1653272320,1653474719,1653532503,1653611832,1654120736,1654200386,1654246862,1654721325,1654867183,1655727656,1656422675]}'),(14329,'139.162.131.233','normal','',0,0,0,6,0,'{\"login\":[1650190356,1650194035,1650202654,1650224647,1659971704,1660058750]}'),(14330,'185.65.245.106','normal','',0,0,0,0,0,'[]'),(14331,'188.166.246.107','normal','',0,0,0,1,0,'{\"login\":[1650193055]}'),(14332,'159.89.110.95','normal','',0,0,0,20,0,'{\"login\":[1650193533,1650219233,1650227836,1650231805,1651518077,1652184713,1652197337,1652244415,1652822566,1652829762,1654533872,1655292667,1655305422,1655309389,1655314392,1655317561,1655330359,1661762955,1661769512,1661770478]}'),(14333,'64.227.50.139','normal','',0,0,0,1,0,'{\"login\":[1650194501]}'),(14334,'34.75.123.143','normal','',0,0,0,4,0,'{\"login\":[1650195817,1650248197,1652198638,1652203671]}'),(14335,'137.184.138.182','normal','',0,0,0,21,0,'{\"login\":[1650197926,1650257661,1651448305,1652193073,1652202168,1652218942,1652221391,1652238868,1652243572,1652250398,1652252958,1652254501,1652826955,1653564299,1653577423,1653581855,1653584775,1654497824,1654529453,1654586423,1654607854]}'),(14336,'10.55.6.219','normal','',0,0,0,0,0,'[]'),(14337,'162.0.239.73','normal','',0,0,0,3,0,'{\"login\":[1650200274,1650210999,1650216469]}'),(14338,'185.106.209.113','normal','',0,0,0,1,0,'{\"login\":[1650202177]}'),(14339,'160.16.242.201','normal','',0,0,0,2,0,'{\"login\":[1650203108,1650228697]}'),(14340,'135.181.107.162','normal','',0,0,0,2,0,'{\"login\":[1650205895,1650258185]}'),(14341,'128.199.25.247','normal','',0,0,0,10,0,'{\"login\":[1650208209,1650260413,1651392034,1651416570,1652235693,1652849239,1653609921,1653618631,1654520968,1655303784]}'),(14342,'165.232.190.163','normal','',0,0,0,3,0,'{\"login\":[1650210014,1652229342,1652825257]}'),(14343,'185.197.195.173','normal','',0,0,0,4,0,'{\"login\":[1653823010,1653996653,1654013987,1657287727]}'),(14344,'138.197.76.11','normal','',0,0,0,2,0,'{\"login\":[1650212285,1650256279]}'),(14345,'116.203.102.65','normal','',0,0,0,3,0,'{\"login\":[1650213343,1650231356,1650237757]}'),(14346,'162.0.229.157','normal','',0,0,0,0,0,'[]'),(14347,'162.212.131.232','normal','',0,0,0,0,0,'[]'),(14348,'91.195.155.23','normal','',0,0,0,1,0,'{\"login\":[1650214656]}'),(14349,'128.134.187.112','normal','',0,0,0,19,0,'{\"login\":[1650215171,1652196018,1652230765,1652827469,1652830892,1652836902,1653560266,1653582427,1653598252,1653629462,1654509495,1654524561,1654530130,1654586849,1654593457,1654641222,1656758912,1656767309,1656786172]}'),(14350,'68.171.212.2','normal','',0,0,0,1,0,'{\"login\":[1650215977]}'),(14351,'102.222.180.185','normal','',0,0,0,0,0,'[]'),(14352,'35.180.71.204','normal','',0,0,0,1,0,'{\"login\":[1650218284]}'),(14353,'185.104.44.128','normal','',0,0,0,0,0,'[]'),(14354,'161.35.51.40','normal','',0,0,0,1,0,'{\"login\":[1650219644]}'),(14355,'206.81.18.4','normal','',0,0,0,1,0,'{\"login\":[1650221400]}'),(14356,'178.87.195.34','normal','',0,0,0,1,0,'{\"login\":[1650222399]}'),(14357,'3.90.161.161','normal','',0,0,0,1,0,'{\"login\":[1650224180]}'),(14358,'92.61.37.76','normal','',0,0,0,1,0,'{\"login\":[1650225098]}'),(14359,'35.87.125.189','normal','',0,0,0,0,0,'[]'),(14360,'168.119.228.166','normal','',0,0,0,2,0,'{\"login\":[1650226904,1650233711]}'),(14361,'89.163.206.159','normal','',0,0,0,1,0,'{\"login\":[1650227376]}'),(14362,'197.94.85.173','normal','',0,0,0,0,0,'[]'),(14363,'137.184.73.37','normal','',0,0,0,1,0,'{\"login\":[1650230942]}'),(14364,'207.244.255.247','normal','',0,0,0,0,0,'[]'),(14365,'141.164.48.6','normal','',0,0,0,1,0,'{\"login\":[1650235011]}'),(14366,'47.241.124.182','normal','',0,0,0,7,0,'{\"login\":[1650238234,1651357858,1651410469,1652239648,1652829154,1652845681,1652847366]}'),(14367,'192.185.179.164','normal','',0,0,0,0,0,'[]'),(14368,'23.99.129.212','normal','',0,0,0,1,0,'{\"login\":[1650240026]}'),(14369,'185.15.244.216','normal','',0,0,0,2,0,'{\"login\":[1650243167,1650249114]}'),(14370,'198.58.96.138','normal','',0,0,0,1,0,'{\"login\":[1650244170]}'),(14371,'35.206.240.19','normal','',0,0,0,1,0,'{\"login\":[1650246409]}'),(14372,'119.196.149.154','normal','',0,0,0,7,0,'{\"login\":[1650246924,1652825099,1652833529,1653544578,1653570859,1654553964,1654625469]}'),(14373,'68.65.120.121','normal','',0,0,0,0,0,'[]'),(14374,'157.119.188.31','normal','',0,0,0,19,0,'{\"login\":[1650247624,1650602071,1650837825,1650949455,1651013948,1651049724,1651496255,1651707123,1651933481,1652292862,1652703053,1653341493,1653414000,1653785394,1654973647,1655747807,1656081078,1656311400,1656836904]}'),(14375,'103.133.56.42','normal','',0,0,0,1,0,'{\"login\":[1650247805]}'),(14376,'31.172.80.147','normal','',0,0,0,2,0,'{\"login\":[1650250066,1661674709]}'),(14377,'3.84.49.120','normal','',0,0,0,0,0,'[]'),(14378,'139.59.96.76','normal','',0,0,0,19,0,'{\"login\":[1650251921,1650381500,1651009468,1651565018,1651583364,1652062260,1652266178,1652424767,1652959491,1653422899,1653427306,1653535798,1654392476,1654588861,1654802743,1655141760,1656577899,1657181380,1657738736]}'),(14379,'95.216.45.183','normal','',0,0,0,2,0,'{\"login\":[1650252744,1652192140]}'),(14380,'114.119.133.108','normal','',0,0,0,0,0,'[]'),(14381,'78.12.16.168','normal','',0,0,0,1,0,'{\"login\":[1650254935]}'),(14382,'178.159.42.76','normal','',0,0,0,2,0,'{\"login\":[1650257236,1651453413]}'),(14383,'39.108.134.146','normal','',0,0,0,0,0,'[]'),(14384,'178.128.104.173','normal','',0,0,0,3,0,'{\"login\":[1650258687,1653820881,1654522882]}'),(14385,'164.68.124.29','normal','',0,0,0,1,0,'{\"login\":[1650259930]}'),(14386,'66.23.235.231','normal','',0,0,0,1,0,'{\"login\":[1650261425]}'),(14387,'162.0.209.88','normal','',0,0,0,0,0,'[]'),(14388,'122.100.141.177','normal','',0,0,0,1,0,'{\"login\":[1650265042]}'),(14389,'185.241.5.213','normal','',0,0,0,0,0,'[]'),(14390,'128.199.68.99','normal','',0,0,0,1,0,'{\"login\":[1663080426]}'),(14391,'61.239.15.60','normal','',0,0,0,0,1,'{\"nf\":[1650283765]}'),(14392,'217.160.225.43','normal','',0,0,0,0,1,'{\"nf\":[1650348649]}'),(14393,'17.121.115.96','normal','',0,0,0,0,0,'[]'),(14394,'159.203.143.36','normal','',0,0,0,41,0,'{\"login\":[1650291880,1650702797,1650726046,1650872783,1651004664,1652531289,1652755695,1652831504,1653056529,1653303872,1653886320,1653895672,1654058830,1654135875,1654598994,1654769103,1654863115,1654903906,1655014157,1655022931,1655379198,1655570879,1657339890,1657524290,1658027093,1658027990,1658269724,1658589397,1658962494,1659115498,1659310999,1659830071,1660002000,1660135529,1660170374,1660760458,1661114584,1661662743,1661671194,1662052240,1662748130]}'),(14395,'87.247.174.250','normal','',0,0,0,0,14,'{\"nf\":[1650292738,1650292739,1650292740,1650292745,1650292746,1650292756,1650292760,1650292761,1650292762,1650292766,1650292768,1650292769,1650292771,1650292772]}'),(14396,'128.199.62.78','normal','',0,0,0,4,0,'{\"login\":[1650294492,1651274176,1651431021,1651588211]}'),(14397,'162.241.218.133','normal','',0,0,0,1,0,'{\"login\":[1650297335]}'),(14398,'5.45.207.90','normal','',0,0,0,0,0,'[]'),(14399,'185.94.189.14','normal','',0,0,0,0,1,'{\"nf\":[1650299999]}'),(14400,'122.155.3.106','normal','',0,0,0,0,0,'[]'),(14401,'95.217.204.224','normal','',0,0,0,1,0,'{\"login\":[1650306564]}'),(14402,'54.184.52.126','normal','',0,0,0,0,0,'[]'),(14403,'51.142.77.143','normal','',0,0,0,8,0,'{\"login\":[1650417899,1650457716,1650498657,1650539730,1650581003,1650622072,1650663386,1650705169]}'),(14404,'23.82.137.79','blocked','You have been locked out due to too many invalid login attempts.',1650326732,1650326432,0,5,0,'{\"login\":[1650326429,1650326430,1650326431,1650326432,1650326432]}'),(14405,'45.84.205.85','normal','',0,0,0,0,0,'[]'),(14406,'118.69.173.205','normal','',0,0,0,2,0,'{\"login\":[1650340672,1650364327]}'),(14407,'195.161.68.104','normal','',0,0,0,0,0,'[]'),(14408,'121.4.34.106','normal','',0,0,0,0,0,'[]'),(14409,'184.168.113.205','normal','',0,0,0,0,0,'[]'),(14410,'82.156.185.91','normal','',0,0,0,0,0,'[]'),(14411,'82.165.87.248','normal','',0,0,0,0,0,'[]'),(14412,'114.119.142.15','normal','',0,0,0,0,0,'[]'),(14413,'94.101.95.36','normal','',0,0,0,0,0,'[]'),(14414,'54.36.148.16','normal','',0,0,0,0,1,'{\"nf\":[1657383423]}'),(14415,'207.46.13.195','normal','',0,0,0,0,0,'[]'),(14416,'198.71.228.9','normal','',0,0,0,0,0,'[]'),(14417,'142.132.251.120','normal','',0,0,0,2,0,'{\"login\":[1650353384,1650509199]}'),(14418,'67.220.184.242','normal','',0,0,0,0,0,'[]'),(14419,'203.136.153.251','normal','',0,0,0,1,0,'{\"login\":[1650361322]}'),(14420,'94.130.90.123','normal','',0,0,0,0,0,'[]'),(14421,'52.226.64.215','normal','',0,0,0,4,0,'{\"login\":[1650366476,1651075358,1651245718,1652774368]}'),(14422,'35.158.94.189','normal','',0,0,0,0,0,'[]'),(14423,'3.144.248.18','normal','',0,0,0,0,0,'[]'),(14424,'74.125.208.145','normal','',0,0,0,0,10,'{\"nf\":[1650369409,1652778500,1653594397,1653894884,1655225581,1655321973,1655321973,1655460482,1655708392,1657196944]}'),(14425,'91.64.109.215','normal','',0,0,0,0,0,'[]'),(14426,'91.230.111.60','normal','',0,0,0,0,0,'[]'),(14427,'148.66.147.32','normal','',0,0,0,0,0,'[]'),(14428,'161.97.118.255','normal','',0,0,0,16,0,'{\"login\":[1650376421,1650397622,1651719243,1651964240,1652064071,1652527296,1652638075,1653224514,1653259227,1654109193,1654168707,1654344327,1654890252,1655158187,1655897645,1657056345]}'),(14429,'110.232.143.13','normal','',0,0,0,0,0,'[]'),(14430,'68.178.220.248','normal','',0,0,0,0,0,'[]'),(14431,'178.62.35.35','normal','',0,0,0,37,0,'{\"login\":[1650392754,1650519043,1650534545,1650631711,1651114786,1651191141,1651490821,1651581421,1652520617,1652566967,1652647094,1652763488,1652775797,1652789511,1653059667,1653313060,1653340847,1653386191,1653591629,1654187323,1654231415,1654295067,1654507020,1654550663,1655075044,1656026886,1656793845,1656855582,1657737166,1658270249,1658404624,1658475419,1659124874,1660365633,1661220747,1661242307,1661691035]}'),(14432,'185.111.89.131','normal','',0,0,0,0,0,'[]'),(14433,'92.205.4.141','normal','',0,0,0,0,0,'[]'),(14434,'198.54.114.56','normal','',0,0,0,0,0,'[]'),(14435,'82.165.83.215','normal','',0,0,0,0,0,'[]'),(14436,'62.197.136.40','normal','',0,0,0,0,3,'{\"nf\":[1650415150,1653786351,1654312174]}'),(14437,'82.165.84.237','normal','',0,0,0,0,0,'[]'),(14438,'202.145.0.86','normal','',0,0,0,0,0,'[]'),(14439,'189.112.125.44','normal','',0,0,0,0,0,'[]'),(14440,'107.189.7.175','normal','',0,0,0,0,1,'{\"nf\":[1650427070]}'),(14441,'23.128.248.50','normal','',0,0,0,0,3,'{\"nf\":[1650427086,1650427088,1650427090]}'),(14442,'199.249.230.171','normal','',0,0,0,0,3,'{\"nf\":[1650427092,1650427096,1650427099]}'),(14443,'144.172.118.4','normal','',0,0,0,0,5,'{\"nf\":[1650427101,1650427103,1650427105,1650427107,1650427115]}'),(14444,'45.12.134.107','normal','',0,0,0,0,5,'{\"nf\":[1650427123,1650427125,1650427126,1650427128,1650427130]}'),(14445,'5.134.119.131','normal','',0,0,0,0,0,'[]'),(14446,'198.54.126.164','normal','',0,0,0,0,0,'[]'),(14447,'49.51.248.141','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1650430909,0,1650430609,0,27,'{\"nf\":[1650430912,1650430988,1650430991,1650431000,1650431006,1650431008,1650431012],\"login\":[]}'),(14448,'198.235.24.139','normal','',0,0,0,0,0,'[]'),(14449,'35.85.221.101','normal','',0,0,0,0,0,'[]'),(14450,'18.188.234.54','normal','',0,0,0,0,0,'[]'),(14451,'80.88.87.200','normal','',0,0,0,0,0,'[]'),(14452,'17.121.113.117','normal','',0,0,0,0,0,'[]'),(14453,'68.66.241.186','normal','',0,0,0,0,0,'[]'),(14454,'211.55.181.47','normal','',0,0,0,0,2,'{\"nf\":[1650438023,1650761416]}'),(14455,'143.198.11.159','normal','',0,0,0,0,0,'[]'),(14456,'91.234.195.123','normal','',0,0,0,0,0,'[]'),(14457,'167.71.141.164','normal','',0,0,0,31,0,'{\"login\":[1650444577,1650620752,1650652207,1650979489,1651178763,1651479092,1652186430,1653374348,1653492031,1653508500,1654114129,1655046882,1655149508,1656067483,1656261890,1656725394,1656866209,1657212733,1657330334,1657617271,1658708399,1660150754,1660210610,1660406354,1660408586,1660501845,1661118411,1661518139,1661534817,1662061144,1662285639]}'),(14458,'198.54.114.3','normal','',0,0,0,0,0,'[]'),(14459,'161.35.15.73','normal','',0,0,0,20,0,'{\"login\":[1654510945,1654516764,1654525144,1655279010,1655320634,1655333578,1655350312,1656754509,1656763087,1656765645,1656782996,1656804302,1656813264,1657515053,1657520499,1661756354,1661792537,1661793214,1661797994,1661802320]}'),(14460,'5.23.50.61','normal','',0,0,0,0,0,'[]'),(14461,'185.45.66.22','normal','',0,0,0,0,0,'[]'),(14462,'157.55.39.217','normal','',0,0,0,0,0,'[]'),(14463,'43.250.142.126','normal','',0,0,0,0,0,'[]'),(14464,'114.119.143.250','normal','',0,0,0,0,0,'[]'),(14465,'35.241.208.68','normal','',0,0,0,0,3,'{\"nf\":[1650474106,1650474111,1650474111]}'),(14466,'196.242.131.68','normal','',0,0,0,0,0,'[]'),(14467,'103.72.76.17','normal','',0,0,0,1,0,'{\"login\":[1653986110]}'),(14468,'62.255.126.88','normal','',0,0,0,0,0,'[]'),(14469,'45.125.239.179','normal','',0,0,0,2,0,'{\"login\":[1657288622,1661080575]}'),(14470,'8.129.212.255','normal','',0,0,0,3,0,'{\"login\":[1650487846,1650980710,1651053825]}'),(14471,'157.55.39.181','normal','',0,0,0,0,0,'[]'),(14472,'208.109.41.230','normal','',0,0,0,0,1,'{\"nf\":[1650496261]}'),(14473,'87.250.224.96','normal','',0,0,0,0,0,'[]'),(14474,'68.183.47.242','normal','',0,0,0,11,0,'{\"login\":[1650500180,1651189381,1652080465,1652437966,1653235303,1654123225,1654415298,1655408954,1655423334,1655563080,1657091514]}'),(14475,'148.251.181.165','normal','',0,0,0,0,0,'[]'),(14476,'139.59.22.81','normal','',0,0,0,11,0,'{\"login\":[1650505388,1650651065,1651019158,1651370717,1651477316,1651519706,1652128037,1652262179,1652285876,1652715790,1653367126]}'),(14477,'198.187.31.44','normal','',0,0,0,0,0,'[]'),(14478,'155.133.138.66','normal','',0,0,0,5,0,'{\"login\":[1650506142,1650521919,1650599453,1652843632,1659350683]}'),(14479,'65.108.126.123','normal','',0,0,0,0,2,'{\"nf\":[1650668233,1650875471]}'),(14480,'162.144.21.93','normal','',0,0,0,0,0,'[]'),(14481,'182.162.90.116','normal','',0,0,0,0,2,'{\"nf\":[1650516953,1662578324]}'),(14482,'147.161.163.18','normal','',0,0,0,0,0,'[]'),(14483,'173.254.28.32','normal','',0,0,0,0,1,'{\"nf\":[1650531020]}'),(14484,'49.37.41.96','normal','',0,0,0,0,0,'[]'),(14485,'167.172.110.170','normal','',0,0,0,0,0,'[]'),(14486,'207.241.234.64','normal','',0,0,0,0,0,'[]'),(14487,'45.232.3.105','normal','',0,0,0,0,0,'[]'),(14488,'182.75.107.70','normal','',0,0,0,1,0,'{\"login\":[1650555532]}'),(14489,'37.120.203.87','normal','',0,0,0,2,0,'{\"login\":[1650568590,1651323840]}'),(14490,'124.222.116.35','normal','',0,0,0,0,0,'[]'),(14491,'205.210.31.17','normal','',0,0,0,0,0,'[]'),(14492,'207.180.221.167','normal','',0,0,0,0,0,'[]'),(14493,'89.245.3.177','normal','',0,0,0,1,0,'{\"login\":[1650591092]}'),(14494,'198.235.24.129','normal','',0,0,0,0,0,'[]'),(14495,'8.29.155.200','normal','',0,0,0,0,0,'[]'),(14496,'37.115.211.95','normal','',0,0,0,0,0,'[]'),(14497,'123.203.196.80','normal','',0,0,0,0,1,'{\"nf\":[1650610081]}'),(14498,'65.21.96.9','normal','',0,0,0,0,0,'[]'),(14499,'103.28.114.94','normal','',0,0,0,8,0,'{\"login\":[1650629257,1650895325,1652087597,1652096591,1653324607,1653363819,1654369587,1655187566]}'),(14500,'41.10.14.65','normal','',0,0,0,0,0,'[]'),(14501,'205.210.31.15','normal','',0,0,0,0,0,'[]'),(14502,'162.241.61.20','normal','',0,0,0,0,0,'[]'),(14503,'159.89.237.49','normal','',0,0,0,11,0,'{\"login\":[1650640671,1650722206,1650967526,1652271820,1652440607,1653246206,1654264662,1654308730,1654320556,1654515464,1655363977]}'),(14504,'69.171.231.5','normal','',0,0,0,0,0,'[]'),(14505,'69.171.231.119','normal','',0,0,0,0,0,'[]'),(14506,'35.197.204.193','normal','',0,0,0,23,0,'{\"login\":[1650649923,1651008014,1651061340,1651195841,1651747758,1652351981,1652683016,1652846394,1653207815,1653602380,1654309388,1654494295,1654514859,1654719568,1655022121,1655028202,1655208401,1655690209,1656275388,1657067901,1657387481,1657404270,1658641186]}'),(14507,'202.29.233.166','normal','',0,0,0,0,1,'{\"nf\":[1650652947]}'),(14508,'162.241.148.253','normal','',0,0,0,0,1,'{\"nf\":[1650656288]}'),(14509,'35.160.212.103','normal','',0,0,0,0,0,'[]'),(14510,'54.186.12.34','normal','',0,0,0,0,0,'[]'),(14511,'89.245.12.108','normal','',0,0,0,1,0,'{\"login\":[1650669629]}'),(14512,'156.155.177.182','normal','',0,0,0,0,0,'[]'),(14513,'93.158.91.243','normal','',0,0,0,0,2,'{\"nf\":[1650687498,1656984332]}'),(14514,'93.158.91.250','normal','',0,0,0,0,0,'[]'),(14515,'93.158.91.254','normal','',0,0,0,0,1,'{\"nf\":[1650687499]}'),(14516,'65.21.205.120','normal','',0,0,0,0,0,'[]'),(14517,'47.98.207.210','normal','',0,0,0,14,0,'{\"login\":[1650697058,1650720621,1651282835,1654635580,1655790066,1655819020,1657105052,1657505310,1658192918,1660325131,1660526667,1660680126,1660742070,1663023590]}'),(14518,'198.235.24.134','normal','',0,0,0,0,0,'[]'),(14519,'155.133.142.67','normal','',0,0,0,5,0,'{\"login\":[1652295396,1652428734,1652720094,1652949309,1653367779]}'),(14520,'165.255.16.215','normal','',0,0,0,0,0,'[]'),(14521,'93.158.161.30','normal','',0,0,0,0,0,'[]'),(14522,'102.65.162.185','normal','',0,0,0,0,0,'[]'),(14523,'54.149.73.42','normal','',0,0,0,0,0,'[]'),(14524,'20.197.180.8','normal','',0,0,0,0,1,'{\"nf\":[1650745712]}'),(14525,'198.187.29.15','normal','',0,0,0,0,0,'[]'),(14526,'106.52.123.215','normal','',0,0,0,0,0,'[]'),(14527,'40.77.64.179','normal','',0,0,0,0,0,'[]'),(14528,'162.241.253.240','normal','',0,0,0,0,1,'{\"nf\":[1650785034]}'),(14529,'20.219.104.22','normal','',0,0,0,3,0,'{\"login\":[1650872118,1650981927,1651092597]}'),(14530,'162.214.81.26','normal','',0,0,0,0,0,'[]'),(14531,'162.0.235.68','normal','',0,0,0,0,0,'[]'),(14532,'84.17.51.16','normal','',0,0,0,0,0,'[]'),(14533,'157.90.5.227','normal','',0,0,0,0,0,'[]'),(14534,'192.245.157.71','normal','',0,0,0,0,0,'[]'),(14535,'15.206.195.183','normal','',0,0,0,0,0,'[]'),(14536,'198.235.24.8','normal','',0,0,0,0,0,'[]'),(14537,'45.129.18.129','normal','',0,0,0,0,0,'[]'),(14538,'45.129.18.85','normal','',0,0,0,0,0,'[]'),(14539,'35.160.145.186','normal','',0,0,0,0,0,'[]'),(14540,'114.119.146.246','normal','',0,0,0,0,0,'[]'),(14541,'54.185.0.185','normal','',0,0,0,0,0,'[]'),(14542,'17.121.114.166','normal','',0,0,0,0,0,'[]'),(14543,'81.70.55.87','normal','',0,0,0,0,0,'[]'),(14544,'109.248.175.219','normal','',0,0,0,0,2,'{\"nf\":[1650835855,1651126928]}'),(14545,'209.126.87.204','normal','',0,0,0,0,1,'{\"nf\":[1650838678]}'),(14546,'104.152.108.253','normal','',0,0,0,0,0,'[]'),(14547,'23.254.184.154','normal','',0,0,0,3,0,'{\"login\":[1650854549,1651688429,1652010060]}'),(14548,'107.180.109.39','normal','',0,0,0,0,0,'[]'),(14549,'218.188.41.122','normal','',0,0,0,0,0,'[]'),(14550,'187.85.19.0','normal','',0,0,0,0,0,'[]'),(14551,'162.241.225.117','normal','',0,0,0,0,0,'[]'),(14552,'70.69.200.190','normal','',0,0,0,0,0,'[]'),(14553,'162.214.211.226','normal','',0,0,0,0,0,'[]'),(14554,'91.219.194.5','normal','',0,0,0,0,0,'[]'),(14555,'173.201.191.220','normal','',0,0,0,0,0,'[]'),(14556,'207.241.231.147','normal','',0,0,0,0,0,'[]'),(14557,'82.165.83.123','normal','',0,0,0,0,0,'[]'),(14558,'35.233.3.163','normal','',0,0,0,0,0,'[]'),(14559,'104.248.241.28','normal','',0,0,0,2,0,'{\"login\":[1654525571,1661683585]}'),(14560,'50.62.176.61','normal','',0,0,0,0,0,'[]'),(14561,'45.204.1.174','normal','',0,0,0,0,0,'[]'),(14562,'130.51.180.81','normal','',0,0,0,0,0,'[]'),(14563,'65.60.5.204','normal','',0,0,0,0,0,'[]'),(14564,'159.69.181.35','normal','',0,0,0,0,0,'[]'),(14565,'34.106.61.138','normal','',0,0,0,0,0,'[]'),(14566,'198.54.120.148','normal','',0,0,0,0,0,'[]'),(14567,'95.111.248.111','normal','',0,0,0,0,0,'[]'),(14568,'23.227.134.218','normal','',0,0,0,0,0,'[]'),(14569,'162.241.80.6','normal','',0,0,0,0,1,'{\"nf\":[1650913291]}'),(14570,'196.61.108.5','normal','',0,0,0,0,0,'[]'),(14571,'54.36.148.205','normal','',0,0,0,0,0,'[]'),(14572,'35.87.110.208','normal','',0,0,0,0,0,'[]'),(14573,'144.168.228.124','normal','',0,0,0,0,0,'[]'),(14574,'162.241.2.46','normal','',0,0,0,0,0,'[]'),(14575,'198.54.120.174','normal','',0,0,0,0,0,'[]'),(14576,'44.201.175.121','normal','',0,0,0,0,1,'{\"nf\":[1650926287]}'),(14577,'198.71.225.147','normal','',0,0,0,0,0,'[]'),(14578,'77.243.183.147','normal','',0,0,0,0,0,'[]'),(14579,'145.239.35.10','normal','',0,0,0,0,1,'{\"nf\":[1650934740]}'),(14580,'144.76.159.62','normal','',0,0,0,0,0,'[]'),(14581,'121.142.171.122','normal','',0,0,0,0,1,'{\"nf\":[1650936173]}'),(14582,'185.221.181.208','normal','',0,0,0,0,0,'[]'),(14583,'184.168.115.164','normal','',0,0,0,0,0,'[]'),(14584,'78.135.80.218','normal','',0,0,0,0,5,'{\"nf\":[1650951603,1650951605,1652966075,1652966076,1653473574]}'),(14585,'66.29.132.112','normal','',0,0,0,0,0,'[]'),(14586,'162.241.218.205','normal','',0,0,0,0,0,'[]'),(14587,'162.213.251.225','normal','',0,0,0,0,0,'[]'),(14588,'82.165.88.200','normal','',0,0,0,0,0,'[]'),(14589,'116.193.191.152','normal','',0,0,0,12,0,'{\"login\":[1650973433,1651118506,1654228020,1654249446,1654945488,1655138808,1655665098,1656834919,1657325300,1657483859,1658218219,1658238436]}'),(14590,'181.215.178.254','normal','',0,0,0,0,0,'[]'),(14591,'128.199.215.194','normal','',0,0,0,0,3,'{\"nf\":[1650981893,1650981896,1650981897]}'),(14592,'54.36.149.29','normal','',0,0,0,0,0,'[]'),(14593,'54.36.148.246','normal','',0,0,0,0,0,'[]'),(14594,'198.71.228.28','normal','',0,0,0,0,0,'[]'),(14595,'82.165.88.6','normal','',0,0,0,0,0,'[]'),(14596,'54.36.148.141','normal','',0,0,0,0,1,'{\"nf\":[1659599042]}'),(14597,'149.202.82.84','normal','',0,0,0,1,0,'{\"login\":[1650997481]}'),(14598,'82.165.80.58','normal','',0,0,0,0,0,'[]'),(14599,'198.71.236.28','normal','',0,0,0,0,0,'[]'),(14600,'52.13.54.100','normal','',0,0,0,0,0,'[]'),(14601,'52.38.197.225','normal','',0,0,0,0,0,'[]'),(14602,'18.237.151.193','normal','',0,0,0,0,0,'[]'),(14603,'54.185.175.154','normal','',0,0,0,0,0,'[]'),(14604,'162.213.251.119','normal','',0,0,0,0,0,'[]'),(14605,'62.182.157.250','normal','',0,0,0,0,0,'[]'),(14606,'208.109.23.119','normal','',0,0,0,0,0,'[]'),(14607,'3.133.110.106','normal','',0,0,0,0,0,'[]'),(14608,'198.71.228.53','normal','',0,0,0,0,0,'[]'),(14609,'139.59.232.163','normal','',0,0,0,0,11,'{\"nf\":[1651033165,1651033189,1651033296,1651033423,1651033473,1651033493,1651033504,1651033520,1651033538,1651033558,1651033572]}'),(14610,'36.72.60.14','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1651039909,0,1651039609,0,20,'{\"nf\":[1651039549,1651039552,1651039553,1651039555,1651039557,1651039563,1651039565,1651039567,1651039569,1651039571,1651039573,1651039577,1651039579,1651039585,1651039587,1651039588,1651039592,1651039594,1651039596,1651039609]}'),(14611,'77.22.36.21','normal','',0,0,0,0,0,'[]'),(14612,'198.187.29.192','normal','',0,0,0,0,1,'{\"nf\":[1651043895]}'),(14613,'16.170.194.255','normal','',0,0,0,5,0,'{\"login\":[1651044712,1651365257,1651717851,1652306339,1652347296]}'),(14614,'162.241.85.252','normal','',0,0,0,0,0,'[]'),(14615,'92.62.131.15','normal','',0,0,0,0,0,'[]'),(14616,'103.221.222.242','normal','',0,0,0,0,0,'[]'),(14617,'31.210.20.114','normal','',0,0,0,0,0,'[]'),(14618,'31.47.253.143','normal','',0,0,0,0,0,'[]'),(14619,'198.235.24.15','normal','',0,0,0,0,0,'[]'),(14620,'159.223.177.31','normal','',0,0,0,0,8,'{\"nf\":[1651061982,1651061983,1651061985,1651061986,1651117487,1651117489,1651117491,1651117493]}'),(14621,'52.5.40.206','normal','',0,0,0,2,0,'{\"login\":[1653991919,1654013356]}'),(14622,'54.191.103.207','normal','',0,0,0,0,0,'[]'),(14623,'54.218.31.40','normal','',0,0,0,0,0,'[]'),(14624,'118.174.196.250','normal','',0,0,0,0,1,'{\"nf\":[1651100525]}'),(14625,'207.46.13.27','normal','',0,0,0,0,0,'[]'),(14626,'127.0.0.1','normal','',0,0,0,0,0,'[]'),(14627,'34.75.185.138','normal','',0,0,0,0,0,'[]'),(14628,'78.142.63.31','normal','',0,0,0,0,0,'[]'),(14629,'146.70.72.171','normal','',0,0,0,0,1,'{\"nf\":[1651123774]}'),(14630,'72.167.66.116','normal','',0,0,0,0,0,'[]'),(14631,'105.248.212.49','normal','',0,0,0,0,0,'[]'),(14632,'102.165.41.23','normal','',0,0,0,0,0,'[]'),(14633,'173.242.115.83','normal','',0,0,0,0,0,'[]'),(14634,'41.147.0.180','normal','',0,0,0,0,0,'[]'),(14635,'97.74.89.166','normal','',0,0,0,20,0,'{\"login\":[1651140660,1651754535,1652822358,1652902759,1652989378,1653342141,1653495983,1654409403,1655355618,1655655057,1656837565,1658016400,1658095815,1659435576,1659851365,1660246512,1660379160,1660409812,1660481552,1661650150]}'),(14636,'5.188.211.33','normal','',0,0,0,0,0,'[]'),(14637,'41.147.0.192','normal','',0,0,0,0,0,'[]'),(14638,'120.24.195.68','normal','',0,0,0,0,0,'[]'),(14639,'83.137.158.6','normal','',0,0,0,0,0,'[]'),(14640,'34.220.254.63','normal','',0,0,0,0,0,'[]'),(14641,'105.244.130.15','normal','',0,0,0,0,1,'{\"nf\":[1651181592]}'),(14642,'94.199.193.98','normal','',0,0,0,0,1,'{\"nf\":[1651195016]}'),(14643,'185.220.101.64','normal','',0,0,0,0,0,'[]'),(14644,'109.70.100.82','normal','',0,0,0,0,0,'[]'),(14645,'167.86.70.160','normal','',0,0,0,0,0,'[]'),(14646,'84.17.48.167','normal','',0,0,0,0,0,'[]'),(14647,'50.62.176.252','normal','',0,0,0,0,1,'{\"nf\":[1651202907]}'),(14648,'103.3.246.97','normal','',0,0,0,0,0,'[]'),(14649,'192.99.14.130','normal','',0,0,0,0,0,'[]'),(14650,'196.11.158.167','normal','',0,0,0,0,0,'[]'),(14651,'197.89.111.170','normal','',0,0,0,0,0,'[]'),(14652,'17.121.114.223','normal','',0,0,0,0,0,'[]'),(14653,'20.213.55.146','normal','',0,0,0,0,1,'{\"nf\":[1651243780]}'),(14654,'110.78.148.42','normal','',0,0,0,0,0,'[]'),(14655,'45.129.18.93','normal','',0,0,0,0,0,'[]'),(14656,'35.166.16.101','normal','',0,0,0,0,0,'[]'),(14657,'18.237.142.203','normal','',0,0,0,0,0,'[]'),(14658,'35.87.82.195','normal','',0,0,0,0,0,'[]'),(14659,'35.86.169.252','normal','',0,0,0,0,0,'[]'),(14660,'34.221.58.134','normal','',0,0,0,0,0,'[]'),(14661,'34.222.225.232','normal','',0,0,0,0,0,'[]'),(14662,'52.10.247.60','normal','',0,0,0,0,0,'[]'),(14663,'198.235.24.141','normal','',0,0,0,0,0,'[]'),(14664,'173.252.79.10','normal','',0,0,0,0,0,'[]'),(14665,'65.21.96.11','normal','',0,0,0,0,0,'[]'),(14666,'114.119.137.45','normal','',0,0,0,0,0,'[]'),(14667,'37.75.131.172','normal','',0,0,0,0,0,'[]'),(14668,'37.75.131.172','normal','',0,0,0,0,1,'{\"nf\":[1651296768]}'),(14669,'185.56.11.161','normal','',0,0,0,0,0,'[]'),(14670,'173.213.84.244','normal','',0,0,0,0,0,'[]'),(14671,'185.191.171.1','normal','',0,0,0,0,0,'[]'),(14672,'185.191.171.23','normal','',0,0,0,0,0,'[]'),(14673,'43.250.142.25','normal','',0,0,0,0,0,'[]'),(14674,'195.78.67.15','normal','',0,0,0,0,0,'[]'),(14675,'196.61.114.9','normal','',0,0,0,0,0,'[]'),(14676,'3.110.137.6','normal','',0,0,0,0,0,'[]'),(14677,'124.106.71.219','normal','',0,0,0,5,0,'{\"login\":[1651333863,1653274935,1654184625,1657065011,1661069929]}'),(14678,'167.248.133.60','normal','',0,0,0,0,0,'[]'),(14679,'34.219.71.136','normal','',0,0,0,0,0,'[]'),(14680,'54.202.70.233','normal','',0,0,0,0,0,'[]'),(14681,'3.0.54.57','normal','',0,0,0,1,0,'{\"login\":[1651359500]}'),(14682,'93.158.91.228','normal','',0,0,0,0,1,'{\"nf\":[1659847162]}'),(14683,'93.158.91.183','normal','',0,0,0,0,0,'[]'),(14684,'93.158.91.224','normal','',0,0,0,0,2,'{\"nf\":[1651363373,1659847156]}'),(14685,'93.158.91.205','normal','',0,0,0,0,1,'{\"nf\":[1651363374]}'),(14686,'93.158.91.203','normal','',0,0,0,0,1,'{\"nf\":[1657695692]}'),(14687,'64.227.178.13','normal','',0,0,0,6,0,'{\"login\":[1651364266,1656755149,1656764424,1656797399,1656798779,1656828284]}'),(14688,'78.128.43.107','normal','',0,0,0,2,0,'{\"login\":[1651366024,1651465128]}'),(14689,'94.209.23.65','normal','',0,0,0,1,0,'{\"login\":[1651366183]}'),(14690,'74.208.59.181','normal','',0,0,0,0,0,'[]'),(14691,'3.136.101.163','normal','',0,0,0,1,0,'{\"login\":[1651367566]}'),(14692,'65.108.0.71','normal','',0,0,0,0,0,'[]'),(14693,'161.97.153.19','normal','',0,0,0,13,0,'{\"login\":[1651370892,1655305260,1655320768,1655341476,1655346614,1656748525,1656751627,1656753810,1656791918,1656792128,1656804622,1656806989,1656810042]}'),(14694,'34.126.91.166','normal','',0,0,0,3,0,'{\"login\":[1651375783,1652199697,1652220082]}'),(14695,'35.246.197.88','normal','',0,0,0,1,0,'{\"login\":[1651377525]}'),(14696,'185.191.171.45','normal','',0,0,0,0,0,'[]'),(14697,'50.87.230.228','normal','',0,0,0,1,0,'{\"login\":[1662092873]}'),(14698,'198.71.236.56','normal','',0,0,0,0,0,'[]'),(14699,'13.126.99.93','normal','',0,0,0,3,0,'{\"login\":[1651401670,1652231936,1652846115]}'),(14700,'50.62.176.39','normal','',0,0,0,0,0,'[]'),(14701,'54.36.149.58','normal','',0,0,0,0,0,'[]'),(14702,'3.97.144.85','normal','',0,0,0,1,0,'{\"login\":[1651407507]}'),(14703,'165.22.223.117','normal','',0,0,0,0,4,'{\"nf\":[1651413335,1651413379,1651413409,1651413430]}'),(14704,'81.3.23.50','normal','',0,0,0,0,5,'{\"nf\":[1651413249,1651413252,1651413255,1651413393,1651413413]}'),(14705,'51.254.201.247','normal','',0,0,0,0,8,'{\"nf\":[1651413265,1651413280,1651413280,1651413303,1651413315,1654341362,1654341366,1654341385]}'),(14706,'192.241.233.164','normal','',0,0,0,0,3,'{\"nf\":[1651413296,1651413490,1651413731]}'),(14707,'144.217.252.240','normal','',0,0,0,0,4,'{\"nf\":[1651413311,1651413320,1651413389,1651413461]}'),(14708,'173.254.24.29','normal','',0,0,0,0,0,'[]'),(14709,'136.243.253.70','normal','',0,0,0,0,0,'[]'),(14710,'176.9.89.163','normal','',0,0,0,1,0,'{\"login\":[1651424067]}'),(14711,'78.12.18.188','normal','',0,0,0,1,0,'{\"login\":[1651427081]}'),(14712,'35.184.202.0','normal','',0,0,0,1,0,'{\"login\":[1651427357]}'),(14713,'196.46.232.4','normal','',0,0,0,1,0,'{\"login\":[1651429236]}'),(14714,'159.223.75.135','normal','',0,0,0,4,0,'{\"login\":[1651430800,1651435591,1652169954,1652193741]}'),(14715,'185.212.71.179','normal','',0,0,0,0,0,'[]'),(14716,'193.189.100.197','normal','',0,0,0,0,0,'[]'),(14717,'64.227.185.46','normal','',0,0,0,13,0,'{\"login\":[1651436998,1651523438,1652177071,1652216757,1652846537,1653559924,1653578502,1653606162,1653610410,1653620013,1653627939,1654548725,1654639275]}'),(14718,'155.133.132.66','normal','',0,0,0,0,1,'{\"nf\":[1651437407]}'),(14719,'193.230.142.221','normal','',0,0,0,15,0,'{\"login\":[1651438773,1652181642,1652182511,1652195145,1652833068,1653546558,1653552918,1653575817,1653602002,1653617805,1654539047,1655282251,1655288509,1655290296,1655312657]}'),(14720,'35.89.138.222','normal','',0,0,0,0,0,'[]'),(14721,'94.177.206.184','normal','',0,0,0,1,0,'{\"login\":[1651441879]}'),(14722,'104.248.242.212','normal','',0,0,0,0,0,'[]'),(14723,'159.89.156.62','normal','',0,0,0,5,0,'{\"login\":[1651446809,1652208753,1652217103,1652228302,1652840435]}'),(14724,'70.32.23.65','normal','',0,0,0,0,0,'[]'),(14725,'157.230.161.123','normal','',0,0,0,0,0,'[]'),(14726,'103.117.180.5','normal','',0,0,0,5,0,'{\"login\":[1651456777,1652178564,1652209654,1652214851,1652247729]}'),(14727,'172.58.163.18','normal','',0,0,0,0,0,'[]'),(14728,'78.12.16.123','normal','',0,0,0,1,0,'{\"login\":[1651470240]}'),(14729,'195.238.121.17','normal','',0,0,0,0,0,'[]'),(14730,'197.185.114.199','normal','',0,0,0,0,0,'[]'),(14731,'137.117.42.240','normal','',0,0,0,0,0,'[]'),(14732,'41.242.175.255','normal','',0,0,0,0,0,'[]'),(14733,'185.56.74.34','normal','',0,0,0,0,0,'[]'),(14734,'105.186.81.219','normal','',0,0,0,0,0,'[]'),(14735,'138.199.5.102','normal','',0,0,0,1,0,'{\"login\":[1651510351]}'),(14736,'196.41.216.172','normal','',0,0,0,0,0,'[]'),(14737,'81.163.79.172','normal','',0,0,0,0,0,'[]'),(14738,'41.10.3.59','normal','',0,0,0,0,0,'[]'),(14739,'52.73.49.201','normal','',0,0,0,1,0,'{\"login\":[1651519871]}'),(14740,'103.130.215.155','normal','',0,0,0,2,0,'{\"login\":[1651521558,1652175546]}'),(14741,'52.43.14.230','normal','',0,0,0,0,0,'[]'),(14742,'72.167.37.160','normal','',0,0,0,0,0,'[]'),(14743,'178.62.10.71','normal','',0,0,0,1,0,'{\"login\":[1651532160]}'),(14744,'212.112.65.196','normal','',0,0,0,1,0,'{\"login\":[1651533942]}'),(14745,'91.238.162.172','normal','',0,0,0,1,0,'{\"login\":[1651535592]}'),(14746,'139.59.121.208','normal','',0,0,0,2,0,'{\"login\":[1651537477,1652177588]}'),(14747,'54.153.23.211','normal','',0,0,0,8,0,'{\"login\":[1651542625,1652179083,1652194174,1652197913,1657431877,1657443131,1657457008,1657503492]}'),(14748,'142.93.48.70','normal','',0,0,0,36,0,'{\"login\":[1652200678,1652235928,1652241855,1652251929,1652819626,1653557311,1653566010,1653577565,1653587244,1653593546,1653594743,1654528798,1654664747,1655283033,1656760496,1656801214,1656801797,1659370679,1659382671,1659389889,1659399474,1659402605,1659405797,1659814601,1659818945,1659924567,1660151045,1660189560,1660291461,1661753029,1661754251,1661782658,1661789778,1661799709,1661807309,1661809983]}'),(14749,'162.247.74.200','normal','',0,0,0,0,1,'{\"nf\":[1651548024]}'),(14750,'209.126.8.92','normal','',0,0,0,2,0,'{\"login\":[1651554913,1654009017]}'),(14751,'65.108.195.215','normal','',0,0,0,0,0,'[]'),(14752,'162.0.229.84','normal','',0,0,0,0,1,'{\"nf\":[1651560059]}'),(14753,'128.199.220.77','normal','',0,0,0,6,0,'{\"login\":[1651560358,1652180979,1652204909,1652226286,1652822288,1653578676]}'),(14754,'102.165.48.50','normal','',0,0,0,0,0,'[]'),(14755,'137.74.202.94','normal','',0,0,0,0,0,'[]'),(14756,'185.208.79.94','normal','',0,0,0,18,0,'{\"login\":[1651565747,1651567553,1652217952,1652239326,1652818660,1652820583,1652824097,1653566843,1653587469,1654549970,1654634948,1655294830,1655311383,1656752213,1656771538,1656772550,1656823211,1656827502]}'),(14757,'167.71.85.34','normal','',0,0,0,0,0,'[]'),(14758,'114.119.143.59','normal','',0,0,0,0,0,'[]'),(14759,'109.70.100.89','normal','',0,0,0,0,0,'[]'),(14760,'107.189.5.206','normal','',0,0,0,0,0,'[]'),(14761,'102.165.81.3','normal','',0,0,0,0,0,'[]'),(14762,'199.195.252.18','normal','',0,0,0,0,0,'[]'),(14763,'45.129.18.115','normal','',0,0,0,0,0,'[]'),(14764,'45.129.18.166','normal','',0,0,0,0,0,'[]'),(14765,'45.129.18.32','normal','',0,0,0,0,0,'[]'),(14766,'51.141.120.124','normal','',0,0,0,0,0,'[]'),(14767,'34.222.98.142','normal','',0,0,0,0,0,'[]'),(14768,'18.236.206.29','normal','',0,0,0,0,0,'[]'),(14769,'54.213.119.32','normal','',0,0,0,0,0,'[]'),(14770,'54.188.71.241','normal','',0,0,0,0,0,'[]'),(14771,'54.84.105.146','normal','',0,0,0,0,0,'[]'),(14772,'217.160.108.131','normal','',0,0,0,0,3,'{\"nf\":[1651637755,1651637757,1651637758]}'),(14773,'50.87.249.14','normal','',0,0,0,0,0,'[]'),(14774,'108.163.227.58','normal','',0,0,0,0,0,'[]'),(14775,'171.33.251.184','normal','',0,0,0,0,1,'{\"nf\":[1651642549]}'),(14776,'162.241.253.207','normal','',0,0,0,0,0,'[]'),(14777,'67.222.154.106','normal','',0,0,0,1,0,'{\"login\":[1662032467]}'),(14778,'66.249.64.221','normal','',0,0,0,0,0,'[]'),(14779,'41.157.96.204','normal','',0,0,0,0,0,'[]'),(14780,'197.94.83.84','normal','',0,0,0,0,0,'[]'),(14781,'196.26.90.162','normal','',0,0,0,0,0,'[]'),(14782,'216.145.17.190','normal','',0,0,0,0,0,'[]'),(14783,'34.215.4.76','normal','',0,0,0,0,0,'[]'),(14784,'146.148.93.148','normal','',0,0,0,0,1,'{\"nf\":[1651683140]}'),(14785,'198.235.24.2','normal','',0,0,0,0,0,'[]'),(14786,'89.43.66.178','normal','',0,0,0,0,1,'{\"nf\":[1651685964]}'),(14787,'54.190.123.122','normal','',0,0,0,0,0,'[]'),(14788,'54.244.165.49','normal','',0,0,0,0,0,'[]'),(14789,'52.32.52.119','normal','',0,0,0,0,0,'[]'),(14790,'161.97.104.0','normal','',0,0,0,0,1,'{\"nf\":[1651701394]}'),(14791,'194.163.170.74','normal','',0,0,0,0,0,'[]'),(14792,'205.210.31.148','normal','',0,0,0,0,0,'[]'),(14793,'162.241.252.35','normal','',0,0,0,0,0,'[]'),(14794,'173.249.24.3','normal','',0,0,0,0,0,'[]'),(14795,'41.13.212.253','normal','',0,0,0,0,0,'[]'),(14796,'102.65.221.83','normal','',0,0,0,0,0,'[]'),(14797,'109.248.175.163','normal','',0,0,0,0,4,'{\"nf\":[1651741097,1651745974,1651782903,1651801640]}'),(14798,'41.10.35.184','normal','',0,0,0,0,0,'[]'),(14799,'94.0.213.242','normal','',0,0,0,0,0,'[]'),(14800,'35.205.232.99','normal','',0,0,0,0,0,'[]'),(14801,'35.205.107.199','normal','',0,0,0,0,0,'[]'),(14802,'162.142.125.8','normal','',0,0,0,0,0,'[]'),(14803,'195.176.3.19','normal','',0,0,0,0,0,'[]'),(14804,'109.70.100.92','normal','',0,0,0,0,0,'[]'),(14805,'142.132.144.53','normal','',0,0,0,0,2,'{\"nf\":[1651779899,1651779924]}'),(14806,'52.24.45.241','normal','',0,0,0,0,0,'[]'),(14807,'34.211.220.113','normal','',0,0,0,0,0,'[]'),(14808,'52.24.66.141','normal','',0,0,0,0,0,'[]'),(14809,'54.188.194.132','normal','',0,0,0,0,0,'[]'),(14810,'54.36.149.37','normal','',0,0,0,0,0,'[]'),(14811,'79.110.54.124','normal','',0,0,0,0,1,'{\"nf\":[1651795066]}'),(14812,'35.206.247.151','normal','',0,0,0,0,0,'[]'),(14813,'35.217.33.156','normal','',0,0,0,0,1,'{\"nf\":[1651799237]}'),(14814,'54.36.148.95','normal','',0,0,0,0,0,'[]'),(14815,'123.21.41.164','normal','',0,0,0,0,0,'[]'),(14816,'82.165.87.46','normal','',0,0,0,0,1,'{\"nf\":[1651811332]}'),(14817,'3.83.25.119','normal','',0,0,0,0,1,'{\"nf\":[1651820666]}'),(14818,'34.200.52.53','normal','',0,0,0,0,0,'[]'),(14819,'168.176.213.91','normal','',0,0,0,0,0,'[]'),(14820,'82.223.11.239','normal','',0,0,0,0,2,'{\"nf\":[1651839917,1651839956]}'),(14821,'192.185.2.124','normal','',0,0,0,0,0,'[]'),(14822,'85.202.169.168','normal','',0,0,0,0,0,'[]'),(14823,'156.67.73.59','normal','',0,0,0,0,0,'[]'),(14824,'34.219.99.164','normal','',0,0,0,0,0,'[]'),(14825,'102.165.66.152','normal','',0,0,0,0,0,'[]'),(14826,'142.93.48.245','normal','',0,0,0,0,1,'{\"nf\":[1651872379]}'),(14827,'109.248.175.110','normal','',0,0,0,0,6,'{\"nf\":[1651878024,1651878182,1651878695,1651937228,1651973413,1651981363]}'),(14828,'198.235.24.133','normal','',0,0,0,0,0,'[]'),(14829,'138.201.125.168','normal','',0,0,0,0,0,'[]'),(14830,'148.251.183.254','normal','',0,0,0,0,6,'{\"nf\":[1651906812,1651906820,1651906824,1651906828,1652251845,1652251867]}'),(14831,'102.165.81.176','normal','',0,0,0,0,1,'{\"nf\":[1651909581]}'),(14832,'17.121.114.193','normal','',0,0,0,0,0,'[]'),(14833,'50.62.177.68','normal','',0,0,0,0,0,'[]'),(14834,'54.92.51.217','normal','',0,0,0,2,0,'{\"login\":[1651931484,1652073015]}'),(14835,'170.106.38.57','normal','',0,0,0,0,1,'{\"nf\":[1651936617]}'),(14836,'178.62.51.47','normal','',0,0,0,0,0,'[]'),(14837,'197.245.29.194','normal','',0,0,0,0,0,'[]'),(14838,'185.174.29.200','normal','',0,0,0,0,1,'{\"nf\":[1651951822]}'),(14839,'35.161.78.80','normal','',0,0,0,0,0,'[]'),(14840,'107.150.49.226','normal','',0,0,0,0,0,'[]'),(14841,'185.83.147.207','normal','',0,0,0,0,1,'{\"nf\":[1651959822]}'),(14842,'122.17.163.147','normal','',0,0,0,0,21,'{\"nf\":[1651971575,1651971633,1651971661,1651971739,1651971784,1651971804,1651971822,1651971925,1651971929,1651971994,1651972018,1651972058,1656885698,1656885728,1656885762,1656885783,1656885860,1656885889,1656885948,1656885963,1656886059]}'),(14843,'151.80.27.89','normal','',0,0,0,0,14,'{\"nf\":[1651971612,1651971651,1651971683,1651971715,1651971781,1651971828,1651971833,1651971835,1651971985,1651972037,1651972040,1651972107,1651972170,1651972181]}'),(14844,'108.167.132.33','normal','',0,0,0,0,0,'[]'),(14845,'173.252.79.23','normal','',0,0,0,0,0,'[]'),(14846,'173.252.79.2','normal','',0,0,0,0,0,'[]'),(14847,'187.102.204.112','normal','',0,0,0,0,0,'[]'),(14848,'185.174.28.74','normal','',0,0,0,0,1,'{\"nf\":[1651991266]}'),(14849,'185.83.147.50','normal','',0,0,0,0,2,'{\"nf\":[1651999344,1651999355]}'),(14850,'197.86.217.67','normal','',0,0,0,0,0,'[]'),(14851,'89.252.177.18','normal','',0,0,0,0,1,'{\"nf\":[1652007732]}'),(14852,'115.78.122.58','normal','',0,0,0,5,0,'{\"login\":[1652013877,1654426592,1654500751,1661096208,1661672608]}'),(14853,'159.223.50.148','normal','',0,0,0,22,0,'{\"login\":[1652187241,1652200438,1652218832,1652227058,1652235242,1652825522,1653544182,1653568031,1653601524,1655281558,1655313484,1656758801,1656771746,1656798574,1656814212,1656830250,1657452307,1657457315,1657467466,1657518251,1657694850,1657785543]}'),(14854,'171.244.139.185','normal','',0,0,0,25,0,'{\"login\":[1652184304,1652207714,1652226757,1653546088,1653605101,1653629113,1654520632,1654626889,1655293348,1655312327,1656794339,1656805682,1656806879,1656812859,1657442086,1657454682,1657503216,1657667422,1657715066,1659389548,1659411618,1660535390,1660825083,1661768958,1661792830]}'),(14855,'51.124.226.192','normal','',0,0,0,2,0,'{\"login\":[1652184078,1652205360]}'),(14856,'104.248.165.17','normal','',0,0,0,1,0,'{\"login\":[1652224713]}'),(14857,'161.35.189.18','normal','',0,0,0,0,0,'[]'),(14858,'109.248.175.26','normal','',0,0,0,0,3,'{\"nf\":[1652030887,1652050709,1652149526]}'),(14859,'162.0.232.99','normal','',0,0,0,0,1,'{\"nf\":[1652036594]}'),(14860,'34.216.243.207','normal','',0,0,0,0,0,'[]'),(14861,'34.215.182.138','normal','',0,0,0,0,0,'[]'),(14862,'185.27.99.112','normal','',0,0,0,0,1,'{\"nf\":[1652050198]}'),(14863,'185.27.99.130','normal','',0,0,0,0,0,'[]'),(14864,'185.17.0.61','normal','',0,0,0,0,1,'{\"nf\":[1652050393]}'),(14865,'88.214.43.20','normal','',0,0,0,0,2,'{\"nf\":[1652058484,1652058484]}'),(14866,'54.36.148.60','normal','',0,0,0,0,0,'[]'),(14867,'108.179.252.175','normal','',0,0,0,0,1,'{\"nf\":[1652060816]}'),(14868,'203.154.140.248','normal','',0,0,0,0,0,'[]'),(14869,'14.165.143.31','normal','',0,0,0,1,0,'{\"login\":[1652063573]}'),(14870,'162.241.225.216','normal','',0,0,0,0,0,'[]'),(14871,'173.254.28.195','normal','',0,0,0,0,0,'[]'),(14872,'163.44.169.226','normal','',0,0,0,0,0,'[]'),(14873,'220.144.247.144','normal','',0,0,0,0,0,'[]'),(14874,'102.22.204.253','normal','',0,0,0,0,0,'[]'),(14875,'124.158.12.83','normal','',0,0,0,3,0,'{\"login\":[1662020816,1662079624,1662226835]}'),(14876,'185.174.28.82','normal','',0,0,0,0,2,'{\"nf\":[1652085989,1652085993]}'),(14877,'151.242.19.54','normal','',0,0,0,1,0,'{\"login\":[1652086346]}'),(14878,'185.83.145.138','normal','',0,0,0,0,1,'{\"nf\":[1652086589]}'),(14879,'3.136.156.237','normal','',0,0,0,0,0,'[]'),(14880,'102.217.31.142','normal','',0,0,0,0,0,'[]'),(14881,'17.121.114.69','normal','',0,0,0,0,0,'[]'),(14882,'105.233.67.241','normal','',0,0,0,0,0,'[]'),(14883,'198.235.24.148','normal','',0,0,0,0,0,'[]'),(14884,'144.76.195.167','normal','',0,0,0,0,0,'[]'),(14885,'95.111.195.120','normal','',0,0,0,0,0,'[]'),(14886,'141.98.1.139','normal','',0,0,0,0,16,'{\"nf\":[1652117491,1652117494,1652117495,1652117496,1652117874,1652117876,1652117877,1652117878,1652375759,1652375761,1652375764,1652375766,1652382409,1652382412,1652382413,1652382416]}'),(14887,'54.36.148.96','normal','',0,0,0,0,0,'[]'),(14888,'91.219.215.157','normal','',0,0,0,2,0,'{\"login\":[1652126241,1652869998]}'),(14889,'45.129.18.190','normal','',0,0,0,0,0,'[]'),(14890,'35.89.125.99','normal','',0,0,0,0,0,'[]'),(14891,'54.202.188.48','normal','',0,0,0,0,0,'[]'),(14892,'39.32.22.241','normal','',0,0,0,1,0,'{\"login\":[1652129067]}'),(14893,'34.212.177.107','normal','',0,0,0,0,0,'[]'),(14894,'49.150.64.161','normal','',0,0,0,1,0,'{\"login\":[1652130897]}'),(14895,'41.116.229.214','normal','',0,0,0,0,0,'[]'),(14896,'181.64.223.67','normal','',0,0,0,1,0,'{\"login\":[1652138324]}'),(14897,'201.217.201.110','normal','',0,0,0,0,1,'{\"nf\":[1652141631]}'),(14898,'180.249.167.231','normal','',0,0,0,1,0,'{\"login\":[1652142816]}'),(14899,'170.82.79.166','normal','',0,0,0,1,0,'{\"login\":[1652144474]}'),(14900,'177.202.21.228','normal','',0,0,0,1,0,'{\"login\":[1652144844]}'),(14901,'157.100.76.165','normal','',0,0,0,1,0,'{\"login\":[1652147321]}'),(14902,'114.119.144.24','normal','',0,0,0,0,0,'[]'),(14903,'180.190.180.140','normal','',0,0,0,1,0,'{\"login\":[1652165111]}'),(14904,'139.59.242.226','normal','',0,0,0,2,0,'{\"login\":[1652169725,1652211655]}'),(14905,'178.33.133.114','normal','',0,0,0,1,0,'{\"login\":[1652170053]}'),(14906,'94.237.76.72','normal','',0,0,0,3,0,'{\"login\":[1652170119,1652188834,1652196906]}'),(14907,'213.95.21.15','normal','',0,0,0,1,0,'{\"login\":[1652170283]}'),(14908,'72.167.40.5','normal','',0,0,0,4,0,'{\"login\":[1652170580,1652177725,1652189107,1652202886]}'),(14909,'206.188.196.182','normal','',0,0,0,1,0,'{\"login\":[1652170650]}'),(14910,'122.248.221.109','normal','',0,0,0,2,0,'{\"login\":[1652171026,1652183778]}'),(14911,'13.234.154.48','normal','',0,0,0,2,0,'{\"login\":[1652171160,1652171889]}'),(14912,'65.108.84.245','normal','',0,0,0,2,0,'{\"login\":[1652171415,1652177392]}'),(14913,'115.79.40.7','normal','',0,0,0,26,0,'{\"login\":[1652171550,1652209965,1652228459,1652248937,1652822008,1652833873,1652842298,1652846251,1653544070,1653589029,1654531794,1654661725,1654724868,1654727255,1655300304,1655303061,1655309962,1655313728,1655351638,1655535680,1656761053,1656789732,1656797134,1656800665,1656810203,1656835040]}'),(14914,'192.64.126.247','normal','',0,0,0,5,0,'{\"login\":[1652171760,1652178418,1652215248,1652248303,1652254360]}'),(14915,'34.65.192.75','normal','',0,0,0,47,0,'{\"login\":[1652172374,1652175166,1652176846,1652190688,1652218176,1652826739,1652828642,1653549666,1653568977,1653580737,1653585467,1653593276,1653599028,1654543120,1654571045,1654618967,1654627347,1655279990,1655286473,1655298362,1655317490,1655328143,1655337606,1656756189,1657438202,1657461153,1657474374,1657491884,1657691839,1657776238,1657803716,1657815994,1657843505,1657872903,1657885038,1659348383,1659355367,1659355948,1659823179,1660310661,1661768311,1661786151,1661816281,1661832358,1661835265,1661837577,1661842332]}'),(14916,'157.90.196.179','normal','',0,0,0,15,0,'{\"login\":[1652172595,1652198954,1652214257,1652250028,1655285981,1655286863,1655339322,1655344588,1655349591,1657747742,1657755126,1657765576,1657825257,1657827196,1657850209]}'),(14917,'92.205.23.181','normal','',0,0,0,4,0,'{\"login\":[1652172880,1652174265,1652192839,1652233259]}'),(14918,'192.166.219.40','normal','',0,0,0,7,0,'{\"login\":[1652173007,1652176324,1652203371,1652204772,1652838279,1652841829,1652846819]}'),(14919,'188.138.75.83','normal','',0,0,0,1,0,'{\"login\":[1652173238]}'),(14920,'20.188.35.210','normal','',0,0,0,2,0,'{\"login\":[1652173508,1652196468]}'),(14921,'13.36.28.129','normal','',0,0,0,4,0,'{\"login\":[1652173641,1652188150,1652221098,1652232473]}'),(14922,'137.158.184.105','normal','',0,0,0,0,0,'[]'),(14923,'163.44.154.211','normal','',0,0,0,19,0,'{\"login\":[1652173906,1652174931,1652193440,1652198137,1652818178,1652829655,1653550698,1653617268,1653628732,1654495387,1654516486,1654556420,1654575462,1654580713,1654582471,1654663269,1655297221,1655310191,1655332261]}'),(14924,'164.92.217.51','normal','',0,0,0,4,0,'{\"login\":[1652173978,1652178262,1652191780,1652223013]}'),(14925,'104.248.54.102','normal','',0,0,0,5,0,'{\"login\":[1652174168,1652197043,1652207039,1652224480,1652835977]}'),(14926,'133.18.231.88','normal','',0,0,0,2,0,'{\"login\":[1652174418,1652205839]}'),(14927,'74.208.49.11','normal','',0,0,0,3,0,'{\"login\":[1652174562,1652189799,1652242834]}'),(14928,'178.62.6.225','normal','',0,0,0,2,0,'{\"login\":[1652174612,1653568645]}'),(14929,'46.248.162.200','normal','',0,0,0,2,0,'{\"login\":[1652174796,1652176732]}'),(14930,'157.55.39.12','normal','',0,0,0,0,0,'[]'),(14931,'207.148.126.254','normal','',0,0,0,2,0,'{\"login\":[1652175429,1652216068]}'),(14932,'199.203.112.161','normal','',0,0,0,10,0,'{\"login\":[1652824423,1652840967,1652847697,1654639516,1654791624,1654797386,1654898243,1655387282,1655599217,1656288813]}'),(14933,'199.203.112.161','normal','',0,0,0,1,0,'{\"login\":[1652175726]}'),(14934,'54.219.48.56','normal','',0,0,0,1,0,'{\"login\":[1652175790]}'),(14935,'68.183.235.106','normal','',0,0,0,4,0,'{\"login\":[1652176041,1652226136,1652227691,1652833298]}'),(14936,'143.110.252.135','normal','',0,0,0,2,0,'{\"login\":[1652176128,1652252348]}'),(14937,'159.203.30.50','normal','',0,0,0,1,0,'{\"login\":[1652176939]}'),(14938,'34.247.253.215','normal','',0,0,0,0,1,'{\"nf\":[1652176980]}'),(14939,'34.255.206.175','normal','',0,0,0,0,1,'{\"nf\":[1652176981]}'),(14940,'193.70.3.235','normal','',0,0,0,4,0,'{\"login\":[1652177519,1652227212,1652237583,1655328942]}'),(14941,'188.68.47.84','normal','',0,0,0,11,0,'{\"login\":[1652177903,1652179928,1652205532,1652238235,1652251003,1652839866,1653582844,1653621950,1653628172,1654572334,1654623108]}'),(14942,'194.146.50.22','normal','',0,0,0,1,0,'{\"login\":[1652178050]}'),(14943,'13.124.23.20','normal','',0,0,0,1,0,'{\"login\":[1652178309]}'),(14944,'82.165.166.54','normal','',0,0,0,5,0,'{\"login\":[1652179297,1652193972,1652223938,1652237679,1652240504]}'),(14945,'104.248.202.254','normal','',0,0,0,3,0,'{\"login\":[1652179430,1653571453,1653581927]}'),(14946,'144.91.118.153','normal','',0,0,0,4,0,'{\"login\":[1652179631,1652187970,1652199980,1652225347]}'),(14947,'5.9.157.218','normal','',0,0,0,10,0,'{\"login\":[1652180029,1652186263,1652189951,1652191278,1652201128,1652230462,1652236181,1652818760,1653553190,1653555124]}'),(14948,'159.203.9.51','normal','',0,0,0,10,0,'{\"login\":[1652180427,1652212332,1652231643,1652235548,1652236914,1652838160,1652840780,1653560520,1653623872,1654497202]}'),(14949,'52.14.119.217','normal','',0,0,0,3,0,'{\"login\":[1652180709,1652181101,1652186954]}'),(14950,'68.183.83.105','normal','',0,0,0,1,0,'{\"login\":[1652181228]}'),(14951,'137.184.126.22','normal','',0,0,0,10,0,'{\"login\":[1652181317,1652828404,1652835532,1652839988,1652845789,1653548579,1653558795,1653619531,1654505601,1654545365]}'),(14952,'206.189.229.188','normal','',0,0,0,4,0,'{\"login\":[1652181503,1652819991,1653553839,1653563870]}'),(14953,'54.158.16.25','normal','',0,0,0,0,1,'{\"nf\":[1652181577]}'),(14954,'165.22.208.48','normal','',0,0,0,22,0,'{\"login\":[1652181873,1652189206,1652838348,1653558361,1653598639,1653609491,1654534258,1655281983,1655301548,1657429408,1657452720,1657467098,1657504471,1657756419,1657814004,1657828561,1657835297,1659358875,1659364329,1659369844,1659906821,1660075756]}'),(14955,'192.99.246.199','normal','',0,0,0,2,0,'{\"login\":[1652182074,1652837572]}'),(14956,'217.115.123.68','normal','',0,0,0,3,0,'{\"login\":[1652182377,1652192990,1652207374]}'),(14957,'177.55.111.21','normal','',0,0,0,5,0,'{\"login\":[1652182919,1652188994,1652211045,1652242361,1652252081]}'),(14958,'5.135.136.181','normal','',0,0,0,12,0,'{\"login\":[1652183204,1652197482,1652200565,1652232795,1652822386,1652830435,1652841467,1653583735,1654491335,1654506216,1654533542,1659866843]}'),(14959,'46.101.253.238','normal','',0,0,0,7,0,'{\"login\":[1652183263,1652234699,1652238958,1652841891,1653549702,1653550114,1653611453]}'),(14960,'185.159.153.139','normal','',0,0,0,6,0,'{\"login\":[1652183900,1652226927,1652230175,1652246129,1652827744,1652841725]}'),(14961,'194.163.139.129','normal','',0,0,0,3,0,'{\"login\":[1652184556,1652206720,1652244862]}'),(14962,'46.101.89.32','normal','',0,0,0,8,0,'{\"login\":[1652184787,1652191496,1652228816,1652245578,1652820865,1659363274,1659844547,1661788276]}'),(14963,'106.14.10.87','normal','',0,0,0,6,0,'{\"login\":[1652185032,1652187550,1652215422,1652216529,1652224965,1652227403]}'),(14964,'143.198.106.132','normal','',0,0,0,13,0,'{\"login\":[1652185128,1652200979,1652206266,1652210854,1652219566,1652227519,1652240243,1652253157,1653544297,1653547418,1653583131,1653585311,1653586589]}'),(14965,'34.78.235.174','normal','',0,0,0,3,0,'{\"login\":[1652185277,1652237277,1652249704]}'),(14966,'157.230.216.8','normal','',0,0,0,23,0,'{\"login\":[1652185397,1652187655,1652190073,1652222042,1652831251,1653599158,1653606720,1654505006,1654510718,1654530816,1654591689,1655304127,1655304709,1655312784,1655323431,1655344220,1656779455,1656782038,1656810856,1657449818,1657471789,1657489393,1657508519]}'),(14967,'54.37.139.105','normal','',0,0,0,3,0,'{\"login\":[1652185584,1652205609,1652209801]}'),(14968,'173.82.114.120','normal','',0,0,0,3,0,'{\"login\":[1652185711,1652215110,1652215581]}'),(14969,'161.97.85.80','normal','',0,0,0,5,0,'{\"login\":[1652185852,1652192691,1652822778,1653574791,1653593121]}'),(14970,'137.184.63.236','normal','',0,0,0,4,0,'{\"login\":[1652185971,1653544425,1653589288,1653613612]}'),(14971,'157.245.11.85','normal','',0,0,0,3,0,'{\"login\":[1652186131,1652195007,1652204100]}'),(14972,'178.128.125.65','normal','',0,0,0,1,0,'{\"login\":[1652186369]}'),(14973,'77.65.215.16','normal','',0,0,0,4,0,'{\"login\":[1652188387,1652202792,1652237905,1652246431]}'),(14974,'15.207.92.246','normal','',0,0,0,4,0,'{\"login\":[1652188567,1652195867,1652221583,1652240420]}'),(14975,'102.140.112.12','normal','',0,0,0,0,0,'[]'),(14976,'206.81.3.84','normal','',0,0,0,29,0,'{\"login\":[1652189386,1652238077,1652245303,1652250224,1652819784,1652827300,1652839349,1653551212,1653552669,1654506756,1654536279,1655280297,1655294256,1655349802,1655351255,1656752778,1656756540,1656758599,1656785811,1656786880,1656791855,1656794210,1656834257,1657438603,1657465380,1657473556,1657481909,1657500807,1657504101]}'),(14977,'180.241.30.8','normal','',0,0,0,1,0,'{\"login\":[1652189886]}'),(14978,'185.141.106.234','normal','',0,0,0,2,0,'{\"login\":[1652190377,1652845862]}'),(14979,'54.37.72.96','normal','',0,0,0,0,1,'{\"nf\":[1652190466]}'),(14980,'176.9.117.218','normal','',0,0,0,0,1,'{\"nf\":[1652220373]}'),(14981,'178.128.216.68','normal','',0,0,0,4,0,'{\"login\":[1652191934,1652204438,1652229116,1652243370]}'),(14982,'159.223.97.177','normal','',0,0,0,38,0,'{\"login\":[1652192540,1652836644,1652844956,1652846434,1653568572,1653601835,1653615350,1653620755,1654494094,1654637805,1655320942,1656761799,1656762811,1656774820,1656789823,1656806149,1656813159,1657432487,1657432903,1657453445,1657455800,1657465098,1657467639,1657482064,1657510929,1657514892,1657517787,1657772489,1657874363,1659348852,1659367543,1659391355,1660033045,1660083290,1660142828,1660243144,1660764974,1660892841]}'),(14983,'17.121.115.59','normal','',0,0,0,0,0,'[]'),(14984,'103.159.54.10','normal','',0,0,0,3,0,'{\"login\":[1652193283,1652236524,1652819443]}'),(14985,'49.204.234.246','normal','',0,0,0,1,0,'{\"login\":[1652193802]}'),(14986,'64.227.182.179','normal','',0,0,0,4,0,'{\"login\":[1652193830,1652214477,1652243860,1652820637]}'),(14987,'167.172.92.30','normal','',0,0,0,1,0,'{\"login\":[1652194451]}'),(14988,'157.245.54.48','normal','',0,0,0,8,0,'{\"login\":[1652194534,1652205922,1652239439,1652243702,1652254017,1653548170,1654539413,1654646596]}'),(14989,'36.85.217.140','normal','',0,0,0,1,0,'{\"login\":[1652194775]}'),(14990,'80.87.193.139','normal','',0,0,0,7,0,'{\"login\":[1652195584,1652217462,1652222969,1652229068,1652241100,1652246623,1652251616]}'),(14991,'161.35.56.234','normal','',0,0,0,6,0,'{\"login\":[1652196767,1652222196,1652225543,1652226581,1652231853,1652233570]}'),(14992,'69.60.119.184','normal','',0,0,0,6,0,'{\"login\":[1652197158,1652239163,1655337208,1657514401,1661773473,1661795039]}'),(14993,'37.9.13.206','normal','',0,0,0,3,0,'{\"login\":[1652198364,1652215918,1652220213]}'),(14994,'103.19.37.101','normal','',0,0,0,3,0,'{\"login\":[1652198486,1652239963,1653558123]}'),(14995,'34.134.93.156','normal','',0,0,0,6,0,'{\"login\":[1652199102,1652203232,1652203528,1652220487,1652823642,1653547850]}'),(14996,'139.59.122.66','normal','',0,0,0,25,0,'{\"login\":[1652199430,1652832744,1653561345,1653591608,1654530483,1656767922,1656800766,1656809426,1656811749,1657472232,1657476952,1657486159,1657802907,1657808854,1659347098,1659353999,1661768826,1661772745,1661779255,1661779367,1661782776,1661790792,1661793793,1661823742,1661826867]}'),(14997,'167.86.103.126','normal','',0,0,0,16,0,'{\"login\":[1652200873,1652253800,1652817420,1652822868,1652833412,1652842524,1653556427,1653561669,1653575168,1653602846,1654517627,1654596169,1654621753,1654630188,1655301930,1655303180]}'),(14998,'167.99.234.108','normal','',0,0,0,4,0,'{\"login\":[1652201279,1652227826,1652247544,1652817032]}'),(14999,'143.198.219.193','normal','',0,0,0,5,0,'{\"login\":[1652201562,1652231498,1652837663,1653621749,1653622786]}'),(15000,'213.132.223.40','normal','',0,0,0,1,0,'{\"login\":[1652201758]}'),(15001,'94.103.83.213','normal','',0,0,0,3,0,'{\"login\":[1652202452,1652212104,1652232155]}'),(15002,'137.184.121.157','normal','',0,0,0,17,0,'{\"login\":[1652202578,1652211127,1652821020,1652821131,1652823749,1652843861,1653563324,1653585047,1654645124,1654661199,1655350178,1657434570,1657443005,1657462359,1657497129,1657510437,1657518550]}'),(15003,'103.94.185.200','normal','',0,0,0,0,0,'[]'),(15004,'77.222.40.109','normal','',0,0,0,0,0,'[]'),(15005,'58.147.185.2','normal','',0,0,0,0,0,'[]'),(15006,'163.172.102.219','normal','',0,0,0,0,0,'[]'),(15007,'106.55.161.234','normal','',0,0,0,0,0,'[]'),(15008,'159.223.210.97','normal','',0,0,0,10,0,'{\"login\":[1652204524,1652849795,1653559397,1654531752,1656793654,1656827297,1657443961,1657444639,1657471974,1657499054]}'),(15009,'167.172.70.218','normal','',0,0,0,0,0,'[]'),(15010,'13.215.161.202','normal','',0,0,0,2,0,'{\"login\":[1652206066,1652230873]}'),(15011,'162.246.17.40','normal','',0,0,0,4,0,'{\"login\":[1652206468,1652223692,1652234643,1652241262]}'),(15012,'35.199.174.12','normal','',0,0,0,3,0,'{\"login\":[1652207159,1652213744,1652219677]}'),(15013,'1.116.44.97','normal','',0,0,0,6,0,'{\"login\":[1652209515,1652223839,1652226411,1653588225,1653597178,1653613767]}'),(15014,'67.205.29.62','normal','',0,0,0,1,0,'{\"login\":[1652210261]}'),(15015,'52.221.18.151','normal','',0,0,0,1,0,'{\"login\":[1652210422]}'),(15016,'139.196.186.219','normal','',0,0,0,1,0,'{\"login\":[1652210540]}'),(15017,'92.204.137.53','normal','',0,0,0,5,0,'{\"login\":[1652211937,1652219426,1652236679,1652828755,1652834627]}'),(15018,'188.166.178.118','normal','',0,0,0,2,0,'{\"login\":[1652212196,1652244645]}'),(15019,'13.40.84.51','normal','',0,0,0,2,0,'{\"login\":[1652212511,1652837792]}'),(15020,'103.112.0.113','normal','',0,0,0,0,0,'[]'),(15021,'41.182.220.13','normal','',0,0,0,1,0,'{\"login\":[1652213046]}'),(15022,'51.79.158.52','normal','',0,0,0,2,0,'{\"login\":[1652213160,1652240087]}'),(15023,'34.221.240.154','normal','',0,0,0,0,0,'[]'),(15024,'46.38.232.148','normal','',0,0,0,4,0,'{\"login\":[1652214683,1652235411,1652241404,1652247858]}'),(15025,'99.192.137.215','normal','',0,0,0,2,0,'{\"login\":[1652215708,1652248616]}'),(15026,'213.14.10.162','normal','',0,0,0,2,0,'{\"login\":[1652219288,1652248477]}'),(15027,'116.48.146.224','normal','',0,0,0,3,0,'{\"login\":[1652219850,1654552347,1654574514]}'),(15028,'103.171.85.206','normal','',0,0,0,10,0,'{\"login\":[1652220308,1652243118,1652818883,1652831791,1653546392,1653574579,1653608504,1653609150,1653623394,1654526571]}'),(15029,'203.145.229.246','normal','',0,0,0,3,0,'{\"login\":[1652220934,1652230005,1653573642]}'),(15030,'91.238.162.176','normal','',0,0,0,2,0,'{\"login\":[1652222338,1653571616]}'),(15031,'3.109.133.146','normal','',0,0,0,1,0,'{\"login\":[1652222770]}'),(15032,'64.38.96.185','normal','',0,0,0,1,0,'{\"login\":[1652223392]}'),(15033,'82.165.87.214','normal','',0,0,0,0,0,'[]'),(15034,'103.87.175.202','normal','',0,0,0,0,0,'[]'),(15035,'176.122.129.180','normal','',0,0,0,1,0,'{\"login\":[1652225705]}'),(15036,'137.184.58.101','normal','',0,0,0,6,0,'{\"login\":[1652228138,1652233723,1652233882,1652244485,1652245960,1652821947]}'),(15037,'194.233.65.51','normal','',0,0,0,4,0,'{\"login\":[1652228592,1652820346,1652836781,1652845570]}'),(15038,'114.119.140.102','normal','',0,0,0,0,0,'[]'),(15039,'210.186.47.57','normal','',0,0,0,1,0,'{\"login\":[1652233404]}'),(15040,'167.172.66.108','normal','',0,0,0,1,0,'{\"login\":[1652234163]}'),(15041,'203.158.192.34','normal','',0,0,0,8,0,'{\"login\":[1652234327,1653580023,1653581704,1653586468,1654576786,1654589904,1655310427,1655319585]}'),(15042,'128.199.245.191','normal','',0,0,0,0,1,'{\"nf\":[1652235407]}'),(15043,'189.254.1.218','normal','',0,0,0,9,0,'{\"login\":[1652236370,1652249072,1652824980,1653611247,1654585099,1654593897,1655301144,1655339138,1655350788]}'),(15044,'88.212.207.125','normal','',0,0,0,2,0,'{\"login\":[1652246796,1652251784]}'),(15045,'51.210.178.126','normal','',0,0,0,1,0,'{\"login\":[1652247399]}'),(15046,'50.62.177.46','normal','',0,0,0,0,0,'[]'),(15047,'77.68.64.29','normal','',0,0,0,0,0,'[]'),(15048,'135.181.157.41','normal','',0,0,0,0,0,'[]'),(15049,'150.254.36.172','normal','',0,0,0,0,0,'[]'),(15050,'159.223.62.82','normal','',0,0,0,2,0,'{\"login\":[1652250509,1652844662]}'),(15051,'85.128.143.27','normal','',0,0,0,1,0,'{\"login\":[1652253298]}'),(15052,'87.250.224.124','normal','',0,0,0,0,0,'[]'),(15053,'34.217.66.217','normal','',0,0,0,0,0,'[]'),(15054,'54.219.127.195','normal','',0,0,0,0,1,'{\"nf\":[1652264715]}'),(15055,'206.180.185.19','normal','',0,0,0,0,0,'[]'),(15056,'41.71.2.139','normal','',0,0,0,0,5,'{\"nf\":[1652273440,1652273444,1652274405,1652274406,1652274407]}'),(15057,'102.165.81.168','normal','',0,0,0,0,2,'{\"nf\":[1652273731,1652273732]}'),(15058,'205.210.31.3','normal','',0,0,0,0,0,'[]'),(15059,'205.210.31.129','normal','',0,0,0,0,0,'[]'),(15060,'154.121.73.150','normal','',0,0,0,1,0,'{\"login\":[1652279195]}'),(15061,'216.246.113.244','normal','',0,0,0,0,0,'[]'),(15062,'197.156.107.83','normal','',0,0,0,1,0,'{\"login\":[1652280794]}'),(15063,'41.94.28.60','normal','',0,0,0,1,0,'{\"login\":[1652281108]}'),(15064,'205.210.31.142','normal','',0,0,0,0,0,'[]'),(15065,'154.67.53.80','normal','',0,0,0,1,0,'{\"login\":[1652290026]}'),(15066,'198.235.24.155','normal','',0,0,0,0,0,'[]'),(15067,'104.197.255.93','normal','',0,0,0,2,0,'{\"login\":[1652290965,1652399162]}'),(15068,'103.26.85.121','normal','',0,0,0,1,0,'{\"login\":[1652291659]}'),(15069,'102.165.81.232','normal','',0,0,0,0,0,'[]'),(15070,'102.220.209.208','normal','',0,0,0,0,1,'{\"nf\":[1652296151]}'),(15071,'54.81.146.35','normal','',0,0,0,3,0,'{\"login\":[1652299872,1652510142,1653273625]}'),(15072,'54.188.144.23','normal','',0,0,0,0,0,'[]'),(15073,'102.182.190.143','normal','',0,0,0,0,0,'[]'),(15074,'188.48.209.246','normal','',0,0,0,1,0,'{\"login\":[1652313651]}'),(15075,'82.165.80.74','normal','',0,0,0,0,1,'{\"nf\":[1652320810]}'),(15076,'188.241.177.233','normal','',0,0,0,1,0,'{\"login\":[1652328689]}'),(15077,'105.225.45.64','normal','',0,0,0,0,0,'[]'),(15078,'47.115.24.165','normal','',0,0,0,18,0,'{\"login\":[1652335391,1652939245,1653000170,1653248795,1653251400,1653531846,1654344968,1655404814,1655476270,1657593919,1657623244,1658023509,1659128047,1660416965,1660588894,1660687490,1662696030,1663155076]}'),(15079,'5.9.93.146','normal','',0,0,0,0,0,'[]'),(15080,'185.220.101.58','normal','',0,0,0,0,0,'[]'),(15081,'197.229.7.63','normal','',0,0,0,0,0,'[]'),(15082,'180.194.190.159','normal','',0,0,0,1,0,'{\"login\":[1652351121]}'),(15083,'89.252.138.226','normal','',0,0,0,1,0,'{\"login\":[1657114392]}'),(15084,'197.94.66.137','normal','',0,0,0,0,0,'[]'),(15085,'77.23.37.6','normal','',0,0,0,0,0,'[]'),(15086,'105.155.254.118','normal','',0,0,0,1,0,'{\"login\":[1652357053]}'),(15087,'189.58.152.129','normal','',0,0,0,1,0,'{\"login\":[1652358597]}'),(15088,'171.252.154.23','normal','',0,0,0,1,0,'{\"login\":[1652361143]}'),(15089,'41.13.196.13','normal','',0,0,0,0,1,'{\"nf\":[1652361238]}'),(15090,'114.119.134.196','normal','',0,0,0,0,0,'[]'),(15091,'102.65.166.122','normal','',0,0,0,0,0,'[]'),(15092,'17.121.114.15','normal','',0,0,0,0,0,'[]'),(15093,'39.45.192.240','normal','',0,0,0,1,0,'{\"login\":[1652384592]}'),(15094,'181.209.112.10','normal','',0,0,0,1,0,'{\"login\":[1652385520]}'),(15095,'108.179.192.115','normal','',0,0,0,0,0,'[]'),(15096,'13.86.95.145','blocked','You have been locked out due to too many invalid login attempts.',1652387015,1652386715,0,5,0,'{\"login\":[1652386698,1652386702,1652386707,1652386711,1652386715]}'),(15097,'125.164.4.155','normal','',0,0,0,1,0,'{\"login\":[1652398641]}'),(15098,'54.36.149.4','normal','',0,0,0,0,0,'[]'),(15099,'93.158.161.53','normal','',0,0,0,0,0,'[]'),(15100,'205.210.31.13','normal','',0,0,0,0,0,'[]'),(15101,'45.129.18.175','normal','',0,0,0,0,0,'[]'),(15102,'45.129.18.24','normal','',0,0,0,0,0,'[]'),(15103,'45.129.18.189','normal','',0,0,0,0,0,'[]'),(15104,'46.185.125.16','normal','',0,0,0,0,4,'{\"nf\":[1652418031,1652418033,1652418034,1652418035]}'),(15105,'222.141.8.134','normal','',0,0,0,0,0,'[]'),(15106,'157.55.39.192','normal','',0,0,0,0,0,'[]'),(15107,'207.46.13.96','normal','',0,0,0,0,0,'[]'),(15108,'132.148.121.7','normal','',0,0,0,0,1,'{\"nf\":[1652457706]}'),(15109,'209.126.13.148','normal','',0,0,0,0,0,'[]'),(15110,'51.75.30.7','normal','',0,0,0,1,0,'{\"login\":[1658233160]}'),(15111,'91.146.104.232','normal','',0,0,0,1,0,'{\"login\":[1653984109]}'),(15112,'185.221.108.114','normal','',0,0,0,0,0,'[]'),(15113,'46.28.140.150','normal','',0,0,0,0,0,'[]'),(15114,'131.153.50.250','normal','',0,0,0,0,0,'[]'),(15115,'54.212.7.241','normal','',0,0,0,0,0,'[]'),(15116,'39.106.95.56','normal','',0,0,0,0,0,'[]'),(15117,'213.149.250.5','normal','',0,0,0,0,0,'[]'),(15118,'186.19.22.142','normal','',0,0,0,1,0,'{\"login\":[1652477904]}'),(15119,'148.72.210.35','normal','',0,0,0,0,0,'[]'),(15120,'52.73.21.83','normal','',0,0,0,0,0,'[]'),(15121,'36.80.76.68','normal','',0,0,0,1,0,'{\"login\":[1652480968]}'),(15122,'142.11.205.211','normal','',0,0,0,1,0,'{\"login\":[1653809432]}'),(15123,'185.4.135.82','normal','',0,0,0,1,0,'{\"login\":[1653820534]}'),(15124,'88.198.10.110','normal','',0,0,0,0,0,'[]'),(15125,'208.87.132.105','normal','',0,0,0,0,0,'[]'),(15126,'162.240.70.89','normal','',0,0,0,1,0,'{\"login\":[1655126912]}'),(15127,'64.71.157.71','normal','',0,0,0,0,0,'[]'),(15128,'114.119.152.139','normal','',0,0,0,0,0,'[]'),(15129,'185.62.81.186','normal','',0,0,0,0,0,'[]'),(15130,'142.4.13.185','normal','',0,0,0,2,0,'{\"login\":[1654064992,1654529283]}'),(15131,'85.214.94.183','normal','',0,0,0,0,0,'[]'),(15132,'185.244.175.28','normal','',0,0,0,0,6,'{\"nf\":[1652491081,1659861024,1659943388,1660039017,1660071286,1660087449]}'),(15133,'103.20.215.59','normal','',0,0,0,0,0,'[]'),(15134,'134.209.92.28','normal','',0,0,0,0,0,'[]'),(15135,'111.90.150.28','normal','',0,0,0,3,0,'{\"login\":[1661071695,1661085471,1662255624]}'),(15136,'52.206.242.146','normal','',0,0,0,0,0,'[]'),(15137,'111.90.145.188','normal','',0,0,0,1,0,'{\"login\":[1661158820]}'),(15138,'192.236.155.206','normal','',0,0,0,0,0,'[]'),(15139,'173.254.28.204','normal','',0,0,0,0,0,'[]'),(15140,'50.87.217.79','normal','',0,0,0,0,0,'[]'),(15141,'167.71.73.242','normal','',0,0,0,0,0,'[]'),(15142,'150.95.109.187','normal','',0,0,0,2,0,'{\"login\":[1657109487,1661952295]}'),(15143,'63.247.133.104','normal','',0,0,0,0,0,'[]'),(15144,'45.77.229.164','normal','',0,0,0,0,0,'[]'),(15145,'101.99.90.175','normal','',0,0,0,1,0,'{\"login\":[1660302930]}'),(15146,'80.77.135.125','normal','',0,0,0,2,0,'{\"login\":[1661683331,1662252219]}'),(15147,'66.94.105.162','normal','',0,0,0,0,0,'[]'),(15148,'78.190.157.190','normal','',0,0,0,1,0,'{\"login\":[1652517653]}'),(15149,'37.251.155.46','normal','',0,0,0,0,0,'[]'),(15150,'85.25.177.176','normal','',0,0,0,0,1,'{\"nf\":[1652518282]}'),(15151,'206.189.85.193','normal','',0,0,0,1,0,'{\"login\":[1653804735]}'),(15152,'195.201.144.72','normal','',0,0,0,0,0,'[]'),(15153,'197.189.233.122','normal','',0,0,0,1,0,'{\"login\":[1653990646]}'),(15154,'23.129.64.139','normal','',0,0,0,0,0,'[]'),(15155,'78.178.110.183','normal','',0,0,0,1,0,'{\"login\":[1652528923]}'),(15156,'173.249.27.247','normal','',0,0,0,1,0,'{\"login\":[1654067608]}'),(15157,'5.79.124.130','normal','',0,0,0,0,0,'[]'),(15158,'89.104.81.222','normal','',0,0,0,1,0,'{\"login\":[1653821912]}'),(15159,'185.190.143.213','normal','',0,0,0,0,0,'[]'),(15160,'37.97.173.175','normal','',0,0,0,0,0,'[]'),(15161,'196.221.175.35','normal','',0,0,0,1,0,'{\"login\":[1652544965]}'),(15162,'162.241.253.243','normal','',0,0,0,0,0,'[]'),(15163,'162.14.71.142','normal','',0,0,0,1,0,'{\"login\":[1654069147]}'),(15164,'184.168.126.196','normal','',0,0,0,0,0,'[]'),(15165,'138.128.160.186','normal','',0,0,0,1,0,'{\"login\":[1653816433]}'),(15166,'162.241.224.224','normal','',0,0,0,0,0,'[]'),(15167,'185.14.56.92','normal','',0,0,0,1,0,'{\"login\":[1654526067]}'),(15168,'69.16.238.78','normal','',0,0,0,1,0,'{\"login\":[1661684865]}'),(15169,'195.30.85.100','normal','',0,0,0,0,0,'[]'),(15170,'192.162.28.20','normal','',0,0,0,0,0,'[]'),(15171,'66.94.110.119','normal','',0,0,0,0,0,'[]'),(15172,'34.222.81.171','normal','',0,0,0,0,0,'[]'),(15173,'35.164.2.49','normal','',0,0,0,0,0,'[]'),(15174,'35.165.30.84','normal','',0,0,0,0,0,'[]'),(15175,'198.154.191.130','normal','',0,0,0,0,0,'[]'),(15176,'35.162.96.222','normal','',0,0,0,0,0,'[]'),(15177,'213.202.253.35','normal','',0,0,0,0,0,'[]'),(15178,'199.195.248.29','normal','',0,0,0,1,0,'{\"login\":[1652565484]}'),(15179,'116.203.221.198','normal','',0,0,0,0,0,'[]'),(15180,'202.67.9.90','normal','',0,0,0,0,0,'[]'),(15181,'52.69.31.189','normal','',0,0,0,0,0,'[]'),(15182,'162.214.227.87','normal','',0,0,0,0,0,'[]'),(15183,'159.69.58.180','normal','',0,0,0,0,0,'[]'),(15184,'184.168.123.157','normal','',0,0,0,0,0,'[]'),(15185,'52.56.209.206','normal','',0,0,0,0,0,'[]'),(15186,'161.97.103.248','normal','',0,0,0,0,0,'[]'),(15187,'103.130.218.150','normal','',0,0,0,0,0,'[]'),(15188,'213.136.75.108','normal','',0,0,0,1,0,'{\"login\":[1654508525]}'),(15189,'52.14.87.50','normal','',0,0,0,0,0,'[]'),(15190,'94.63.62.35','normal','',0,0,0,0,0,'[]'),(15191,'20.74.247.69','normal','',0,0,0,0,0,'[]'),(15192,'91.192.164.134','normal','',0,0,0,0,0,'[]'),(15193,'69.163.193.146','normal','',0,0,0,0,0,'[]'),(15194,'46.105.118.144','normal','',0,0,0,0,0,'[]'),(15195,'95.211.197.162','normal','',0,0,0,0,0,'[]'),(15196,'45.32.122.7','normal','',0,0,0,0,0,'[]'),(15197,'87.247.245.144','normal','',0,0,0,0,0,'[]'),(15198,'114.119.143.145','normal','',0,0,0,0,0,'[]'),(15199,'167.86.92.17','normal','',0,0,0,0,1,'{\"nf\":[1652590326]}'),(15200,'111.90.150.171','normal','',0,0,0,2,0,'{\"login\":[1654061428,1660481280]}'),(15201,'150.158.77.234','normal','',0,0,0,0,0,'[]'),(15202,'5.188.62.26','normal','',0,0,0,28,4,'{\"login\":[1652597861,1652597865,1652689212,1652689218,1652711003,1652711008,1652732076,1652732081,1652753446,1652753451,1652775911,1652775916,1652799052,1652799057,1652820178,1652820183,1652841273,1652841278,1652862651,1652862656,1652884681,1652884686,1652906719,1652906724,1652928526,1652928531,1662765928,1662840282],\"nf\":[1659700159,1659700161,1660258265,1660258267]}'),(15203,'47.241.16.175','normal','',0,0,0,0,0,'[]'),(15204,'39.52.101.90','normal','',0,0,0,2,0,'{\"login\":[1652609200,1652609208]}'),(15205,'154.117.192.143','normal','',0,0,0,2,0,'{\"login\":[1652609218,1652609227]}'),(15206,'194.126.177.53','normal','',0,0,0,2,0,'{\"login\":[1652610597,1653363096]}'),(15207,'105.225.64.130','normal','',0,0,0,0,0,'[]'),(15208,'51.141.30.109','normal','',0,0,0,0,1,'{\"nf\":[1652611594]}'),(15209,'161.0.159.5','normal','',0,0,0,0,0,'[]'),(15210,'167.99.123.158','normal','',0,0,0,0,0,'[]'),(15211,'194.53.148.159','normal','',0,0,0,0,0,'[]'),(15212,'46.183.163.202','normal','',0,0,0,0,0,'[]'),(15213,'209.17.114.78','normal','',0,0,0,0,0,'[]'),(15214,'190.92.152.202','normal','',0,0,0,0,0,'[]'),(15215,'52.32.200.127','normal','',0,0,0,0,0,'[]'),(15216,'103.55.124.200','normal','',0,0,0,2,0,'{\"login\":[1654069882,1654518501]}'),(15217,'47.243.43.108','normal','',0,0,0,0,0,'[]'),(15218,'69.163.203.121','normal','',0,0,0,0,0,'[]'),(15219,'109.248.175.64','normal','',0,0,0,0,3,'{\"nf\":[1652631806,1652667128,1652696735]}'),(15220,'182.180.61.111','normal','',0,0,0,2,0,'{\"login\":[1652634855,1652634861]}'),(15221,'41.189.206.5','normal','',0,0,0,2,0,'{\"login\":[1652634866,1652634871]}'),(15222,'35.89.147.142','normal','',0,0,0,0,0,'[]'),(15223,'40.77.167.56','normal','',0,0,0,0,0,'[]'),(15224,'185.242.180.8','normal','',0,0,0,1,0,'{\"login\":[1653821576]}'),(15225,'143.110.177.246','normal','',0,0,0,1,0,'{\"login\":[1655132997]}'),(15226,'95.217.195.165','normal','',0,0,0,0,0,'[]'),(15227,'103.145.51.107','normal','',0,0,0,1,0,'{\"login\":[1655138375]}'),(15228,'92.205.25.182','normal','',0,0,0,1,0,'{\"login\":[1655127727]}'),(15229,'89.161.157.122','normal','',0,0,0,0,0,'[]'),(15230,'159.89.228.66','normal','',0,0,0,0,1,'{\"nf\":[1652671521]}'),(15231,'64.91.227.151','normal','',0,0,0,0,0,'[]'),(15232,'108.167.189.32','normal','',0,0,0,0,5,'{\"nf\":[1662244818,1662604194,1662635928,1662635978,1662635984]}'),(15233,'180.190.230.245','normal','',0,0,0,2,0,'{\"login\":[1652673721,1652673730]}'),(15234,'58.11.18.116','normal','',0,0,0,2,0,'{\"login\":[1652673757,1652673765]}'),(15235,'207.154.204.99','normal','',0,0,0,1,0,'{\"login\":[1653978943]}'),(15236,'161.35.193.62','normal','',0,0,0,2,0,'{\"login\":[1655125993,1655139142]}'),(15237,'151.80.24.73','normal','',0,0,0,1,0,'{\"login\":[1654068359]}'),(15238,'81.169.249.249','normal','',0,0,0,0,0,'[]'),(15239,'51.83.37.23','normal','',0,0,0,0,0,'[]'),(15240,'193.111.63.22','normal','',0,0,0,0,0,'[]'),(15241,'185.203.240.151','normal','',0,0,0,0,0,'[]'),(15242,'188.212.34.36','normal','',0,0,0,1,0,'{\"login\":[1662250039]}'),(15243,'197.94.8.110','normal','',0,0,0,0,0,'[]'),(15244,'178.159.242.182','normal','',0,0,0,0,0,'[]'),(15245,'204.197.242.14','normal','',0,0,0,0,0,'[]'),(15246,'35.78.7.110','normal','',0,0,0,0,0,'[]'),(15247,'5.161.69.144','normal','',0,0,0,0,0,'[]'),(15248,'45.117.83.197','normal','',0,0,0,0,0,'[]'),(15249,'187.183.170.55','normal','',0,0,0,2,0,'{\"login\":[1652708425,1652708430]}'),(15250,'193.202.87.16','normal','',0,0,0,2,0,'{\"login\":[1652708444,1652708449]}'),(15251,'64.237.40.203','normal','',0,0,0,0,0,'[]'),(15252,'216.158.225.249','normal','',0,0,0,0,2,'{\"nf\":[1652710340,1652710420]}'),(15253,'185.221.182.130','normal','',0,0,0,0,0,'[]'),(15254,'35.180.138.38','normal','',0,0,0,0,0,'[]'),(15255,'159.65.147.193','normal','',0,0,0,2,0,'{\"login\":[1653983430,1662112367]}'),(15256,'149.255.62.43','normal','',0,0,0,0,0,'[]'),(15257,'69.167.169.57','normal','',0,0,0,0,0,'[]'),(15258,'185.178.193.104','normal','',0,0,0,0,0,'[]'),(15259,'94.183.166.168','normal','',0,0,0,0,0,'[]'),(15260,'45.129.18.36','normal','',0,0,0,0,0,'[]'),(15261,'94.130.11.28','normal','',0,0,0,0,0,'[]'),(15262,'159.65.39.111','normal','',0,0,0,0,9,'{\"nf\":[1652724636,1652724690,1652724745,1652724751,1652724764,1652724792,1652724848,1652724947,1655879398]}'),(15263,'50.87.153.82','normal','',0,0,0,0,1,'{\"nf\":[1652724907]}'),(15264,'54.203.2.192','normal','',0,0,0,0,0,'[]'),(15265,'35.86.110.134','normal','',0,0,0,0,0,'[]'),(15266,'34.220.181.247','normal','',0,0,0,0,0,'[]'),(15267,'65.1.72.182','normal','',0,0,0,1,0,'{\"login\":[1652739339]}'),(15268,'52.116.26.139','normal','',0,0,0,1,0,'{\"login\":[1652742173]}'),(15269,'185.244.175.159','normal','',0,0,0,0,1,'{\"nf\":[1652746169]}'),(15270,'145.239.67.10','normal','',0,0,0,0,2,'{\"nf\":[1652746909,1652746941]}'),(15271,'95.217.109.26','normal','',0,0,0,0,0,'[]'),(15272,'43.154.149.60','normal','',0,0,0,0,0,'[]'),(15273,'152.36.192.243','normal','',0,0,0,0,1,'{\"nf\":[1652765271]}'),(15274,'102.67.141.90','normal','',0,0,0,0,0,'[]'),(15275,'185.182.56.181','normal','',0,0,0,0,0,'[]'),(15276,'3.144.223.128','normal','',0,0,0,0,0,'[]'),(15277,'62.171.129.255','normal','',0,0,0,0,0,'[]'),(15278,'169.0.76.250','normal','',0,0,0,0,1,'{\"nf\":[1652776859]}'),(15279,'105.0.3.66','normal','',0,0,0,0,4,'{\"nf\":[1652778519,1652778635,1652778695,1652779419]}'),(15280,'41.13.204.185','normal','',0,0,0,0,1,'{\"nf\":[1652784802]}'),(15281,'46.161.27.204','blocked','You have been locked out due to too many invalid login attempts.',1656203005,1656202705,0,5,7,'{\"nf\":[1656202698,1656202701],\"login\":[1656202702,1656202703,1656202704,1656202704,1656202705]}'),(15282,'185.67.101.148','normal','',0,0,0,1,0,'{\"login\":[1654512135]}'),(15283,'17.121.113.112','normal','',0,0,0,0,0,'[]'),(15284,'18.141.204.85','normal','',0,0,0,0,0,'[]'),(15285,'47.100.46.2','normal','',0,0,0,0,0,'[]'),(15286,'65.21.239.109','normal','',0,0,0,0,0,'[]'),(15287,'208.109.213.221','normal','',0,0,0,0,0,'[]'),(15288,'105.184.149.183','normal','',0,0,0,0,1,'{\"nf\":[1652805538]}'),(15289,'185.244.175.92','normal','',0,0,0,0,3,'{\"nf\":[1652806111,1652862345,1652911516]}'),(15290,'185.39.144.147','normal','',0,0,0,0,0,'[]'),(15291,'154.66.207.156','normal','',0,0,0,0,0,'[]'),(15292,'205.210.31.9','normal','',0,0,0,0,0,'[]'),(15293,'46.105.135.161','normal','',0,0,0,2,0,'{\"login\":[1652816842,1653616910]}'),(15294,'139.59.69.198','normal','',0,0,0,3,0,'{\"login\":[1652816940,1653591470,1653595491]}'),(15295,'103.10.105.157','normal','',0,0,0,8,0,'{\"login\":[1652817165,1652833971,1652850718,1657670124,1657680506,1657715663,1659403374,1661799041]}'),(15296,'45.158.12.90','normal','',0,0,0,8,0,'{\"login\":[1652817276,1653555961,1653579743,1653583437,1653608989,1654541623,1654567083,1654626394]}'),(15297,'213.32.74.165','normal','',0,0,0,3,0,'{\"login\":[1652817492,1652826195,1652842977]}'),(15298,'46.101.133.107','normal','',0,0,0,2,0,'{\"login\":[1652817700,1652823260]}'),(15299,'85.128.143.211','normal','',0,0,0,1,0,'{\"login\":[1652817820]}'),(15300,'41.13.200.36','normal','',0,0,0,0,0,'[]'),(15301,'213.233.161.220','normal','',0,0,0,7,0,'{\"login\":[1652818092,1653588424,1654526931,1656780153,1656805305,1657456216,1657481751]}'),(15302,'45.33.40.64','normal','',0,0,0,5,0,'{\"login\":[1652818286,1652827377,1652829984,1652838596,1652839632]}'),(15303,'17.121.115.147','normal','',0,0,0,0,0,'[]'),(15304,'78.46.36.208','normal','',0,0,0,11,0,'{\"login\":[1652818981,1652823147,1653548858,1654569717,1655322954,1656748059,1656820027,1657429173,1657431690,1657515816,1657516910]}'),(15305,'210.172.223.68','normal','',0,0,0,5,0,'{\"login\":[1652819101,1652834309,1652841134,1652844549,1652846024]}'),(15306,'51.75.112.125','normal','',0,0,0,3,0,'{\"login\":[1652819204,1652827935,1652848376]}'),(15307,'34.222.129.14','normal','',0,0,0,0,0,'[]'),(15308,'37.97.207.252','normal','',0,0,0,2,0,'{\"login\":[1652820223,1652846344]}'),(15309,'54.200.225.141','normal','',0,0,0,0,0,'[]'),(15310,'34.209.251.32','normal','',0,0,0,0,0,'[]'),(15311,'34.219.101.37','normal','',0,0,0,0,0,'[]'),(15312,'139.59.45.99','normal','',0,0,0,22,0,'{\"login\":[1652821367,1652826843,1652830558,1652832167,1653560128,1653581425,1653592666,1653593994,1653627627,1655277837,1655279251,1655327183,1656745800,1656811410,1657446886,1657452521,1657465229,1657671076,1657711154,1657762575,1659373178,1659426982]}'),(15313,'185.210.93.190','normal','',0,0,0,1,0,'{\"login\":[1652821595]}'),(15314,'178.170.39.186','normal','',0,0,0,4,0,'{\"login\":[1652821708,1652825396,1652835633,1652836426]}'),(15315,'54.213.220.174','normal','',0,0,0,0,0,'[]'),(15316,'143.198.217.166','normal','',0,0,0,16,0,'{\"login\":[1652822501,1653592029,1653618330,1655291663,1655304941,1656764887,1656814832,1656816492,1656830717,1657435894,1657478237,1659409122,1661754130,1661774359,1661785655,1661826410]}'),(15317,'159.223.75.59','normal','',0,0,0,11,0,'{\"login\":[1652823413,1652824304,1653553314,1655283708,1655287165,1655304774,1655343652,1655344464,1656766269,1656781562,1656809555]}'),(15318,'54.202.69.50','normal','',0,0,0,2,0,'{\"login\":[1652823919,1652830851]}'),(15319,'62.74.238.156','normal','',0,0,0,1,0,'{\"login\":[1652824178]}'),(15320,'144.91.90.252','normal','',0,0,0,24,0,'{\"login\":[1652824651,1652827056,1653585187,1653604942,1654556012,1654580272,1654662707,1655277331,1655317117,1656757174,1656768934,1656816081,1657437319,1657489809,1657661205,1657745876,1659349548,1659358543,1659405052,1659417390,1661769618,1661798240,1661804851,1661811138]}'),(15321,'137.184.239.42','normal','',0,0,0,5,0,'{\"login\":[1652824744,1652826574,1652828045,1652830658,1652840539]}'),(15322,'167.99.65.159','normal','',0,0,0,0,1,'{\"nf\":[1652825039]}'),(15323,'142.93.36.53','normal','',0,0,0,16,0,'{\"login\":[1652825737,1652837348,1652843965,1653565328,1653592195,1655284171,1655301705,1655311248,1655326600,1655329983,1655340886,1655346505,1656751887,1656788206,1656816364,1656832314]}'),(15324,'34.107.42.14','normal','',0,0,0,22,0,'{\"login\":[1652825856,1653547254,1653582706,1654512511,1654534567,1654555561,1654598411,1654651500,1655276335,1655278913,1655280977,1655295797,1655298831,1655306213,1655318880,1655334932,1656750361,1656753455,1656757553,1656771275,1656783890,1656821416]}'),(15325,'124.158.10.29','normal','',0,0,0,22,0,'{\"login\":[1652825922,1652831388,1652832052,1652843082,1653601214,1654640255,1655280566,1655345427,1656770212,1656806044,1656819811,1657482707,1657663906,1657862882,1659421234,1660010666,1660318057,1660602605,1661761430,1661766748,1661783037,1661806557]}'),(15326,'157.230.39.173','normal','',0,0,0,2,0,'{\"login\":[1652826297,1652849058]}'),(15327,'3.24.190.43','normal','',0,0,0,1,0,'{\"login\":[1652826370]}'),(15328,'207.46.13.106','normal','',0,0,0,0,0,'[]'),(15329,'147.182.196.130','normal','',0,0,0,9,0,'{\"login\":[1652827562,1652841531,1653554007,1653565159,1653567718,1653571303,1653581099,1653590386,1653615467]}'),(15330,'44.198.167.28','normal','',0,0,0,1,0,'{\"login\":[1652827800]}'),(15331,'114.111.151.52','normal','',0,0,0,6,0,'{\"login\":[1652828183,1653574045,1653618501,1654599312,1654620382,1654665763]}'),(15332,'2.59.134.53','normal','',0,0,0,3,0,'{\"login\":[1652828528,1652832388,1652842752]}'),(15333,'194.31.98.157','normal','',0,0,0,0,0,'[]'),(15334,'83.135.128.99','normal','',0,0,0,1,0,'{\"login\":[1652828762]}'),(15335,'210.211.119.245','normal','',0,0,0,12,0,'{\"login\":[1652828876,1653547186,1653550588,1653607702,1654492345,1654513465,1655299905,1655315380,1655316319,1655339490,1655351033,1655353060]}'),(15336,'77.221.130.83','normal','',0,0,0,8,0,'{\"login\":[1652828983,1652848293,1653544668,1653550468,1653557373,1653572853,1653576623,1653612564]}'),(15337,'138.68.248.112','normal','',0,0,0,1,0,'{\"login\":[1652829082]}'),(15338,'212.91.94.100','normal','',0,0,0,22,0,'{\"login\":[1652829272,1652843282,1653597913,1656771030,1656784881,1656790817,1656810685,1656812026,1656822946,1656823442,1657435046,1657437254,1657448249,1657464741,1657465571,1657517477,1657519375,1657664742,1657786211,1661789898,1661809730,1661832798]}'),(15339,'105.186.254.81','normal','',0,0,0,0,0,'[]'),(15340,'161.97.181.31','normal','',0,0,0,18,0,'{\"login\":[1652831022,1652844321,1652849725,1652850382,1653557205,1653572444,1653618848,1653624562,1653626379,1655282096,1655297291,1656755945,1656768805,1656772791,1656785699,1656789109,1656824488,1661954811]}'),(15341,'54.36.148.57','normal','',0,0,0,0,0,'[]'),(15342,'78.157.41.185','normal','',0,0,0,0,0,'[]'),(15343,'164.90.224.213','normal','',0,0,0,3,0,'{\"login\":[1652831437,1653576035,1654522126]}'),(15344,'62.171.183.190','normal','',0,0,0,3,0,'{\"login\":[1652831563,1652834549,1653601370]}'),(15345,'157.90.103.125','normal','',0,0,0,0,0,'[]'),(15346,'5.161.54.232','normal','',0,0,0,11,0,'{\"login\":[1652832270,1653605570,1654495060,1655296515,1655332588,1656760633,1656761418,1656793963,1656796261,1656797641,1656822211]}'),(15347,'46.235.40.141','normal','',0,0,0,0,1,'{\"nf\":[1652832560]}'),(15348,'51.210.99.98','normal','',0,0,0,20,0,'{\"login\":[1652832841,1652841348,1652845109,1652847807,1653621255,1653822286,1654004169,1654608866,1654613128,1654671395,1655128594,1655278438,1655336426,1656762687,1656764324,1656781914,1656816703,1657456098,1658753811,1662002017]}'),(15349,'67.205.186.99','normal','',0,0,0,17,0,'{\"login\":[1652832957,1652839751,1653574848,1653580866,1653595165,1653615004,1654522476,1654546510,1654584649,1654595254,1654601603,1654654511,1655278094,1655290558,1655297792,1655328489,1655332041]}'),(15350,'47.88.6.6','normal','',0,0,0,1,0,'{\"login\":[1652833180]}'),(15351,'88.99.147.16','normal','',0,0,0,0,1,'{\"nf\":[1652833207]}'),(15352,'114.119.154.73','normal','',0,0,0,0,0,'[]'),(15353,'188.166.220.74','normal','',0,0,0,16,0,'{\"login\":[1652833573,1652842635,1654550355,1655286806,1655296998,1655327530,1656747951,1656770717,1656785424,1656789937,1656824016,1657454965,1657477969,1657517315,1657689881,1659355644]}'),(15354,'15.184.23.166','normal','',0,0,0,0,0,'[]'),(15355,'62.171.174.219','normal','',0,0,0,6,0,'{\"login\":[1652834375,1652838853,1652839530,1653568184,1653589905,1655285855]}'),(15356,'165.22.208.58','normal','',0,0,0,3,0,'{\"login\":[1652834805,1652845426,1652848777]}'),(15357,'134.209.215.45','normal','',0,0,0,1,0,'{\"login\":[1652834957]}'),(15358,'161.35.79.54','normal','',0,0,0,8,0,'{\"login\":[1652835029,1653576311,1653599879,1653607142,1654525381,1654620754,1654666722,1655281271]}'),(15359,'203.158.192.37','normal','',0,0,0,2,0,'{\"login\":[1652835190,1654499993]}'),(15360,'34.123.202.99','normal','',0,0,0,6,0,'{\"login\":[1652835405,1653546305,1653546619,1653557832,1653577966,1653611958]}'),(15361,'162.0.208.10','normal','',0,0,0,0,0,'[]'),(15362,'74.208.26.95','normal','',0,0,0,1,0,'{\"login\":[1652836055]}'),(15363,'217.160.140.87','normal','',0,0,0,5,0,'{\"login\":[1652836271,1652842122,1652850266,1655476949,1656781313]}'),(15364,'3.109.106.151','normal','',0,0,0,1,0,'{\"login\":[1652837016]}'),(15365,'159.89.48.15','normal','',0,0,0,3,0,'{\"login\":[1652837131,1652849158,1653557557]}'),(15366,'165.22.85.52','normal','',0,0,0,1,0,'{\"login\":[1652837191]}'),(15367,'165.22.124.120','normal','',0,0,0,1,0,'{\"login\":[1652837921]}'),(15368,'198.27.90.145','normal','',0,0,0,5,0,'{\"login\":[1652838966,1652844437,1653550959,1653575406,1654498508]}'),(15369,'159.223.230.111','normal','',0,0,0,3,0,'{\"login\":[1652840852,1653554154,1653564761]}'),(15370,'144.217.247.198','normal','',0,0,0,3,0,'{\"login\":[1652841257,1653565602,1653578400]}'),(15371,'203.158.192.31','normal','',0,0,0,1,0,'{\"login\":[1652843754]}'),(15372,'174.138.27.203','normal','',0,0,0,24,0,'{\"login\":[1652844054,1652850559,1653545307,1653548717,1653552502,1653582560,1653583594,1653584629,1653605395,1653612497,1654570140,1654604842,1655316174,1655320162,1656745257,1656765327,1656774036,1656793500,1656797183,1656801890,1657446538,1657482204,1657488845,1657506811]}'),(15373,'83.221.247.18','normal','',0,0,0,1,0,'{\"login\":[1652844839]}'),(15374,'85.128.143.54','normal','',0,0,0,0,0,'[]'),(15375,'179.61.80.99','normal','',0,0,0,8,0,'{\"login\":[1652846704,1652848620,1653554340,1653572983,1653626567,1654579854,1654605362,1655291901]}'),(15376,'203.158.192.35','normal','',0,0,0,1,0,'{\"login\":[1652847027]}'),(15377,'44.201.187.86','normal','',0,0,0,0,0,'[]'),(15378,'104.128.65.124','normal','',0,0,0,3,0,'{\"login\":[1652847573,1653549044,1654590328]}'),(15379,'18.117.145.215','normal','',0,0,0,1,0,'{\"login\":[1652848480]}'),(15380,'104.207.156.131','normal','',0,0,0,1,0,'{\"login\":[1652848934]}'),(15381,'139.59.83.50','normal','',0,0,0,5,0,'{\"login\":[1652849336,1653570667,1654518495,1655302477,1655303388]}'),(15382,'159.223.121.77','normal','',0,0,0,14,0,'{\"login\":[1652849916,1653551326,1653559581,1653570320,1653601031,1653617969,1653619879,1654551961,1656746319,1656755840,1656773138,1657456856,1657459661,1657500241]}'),(15383,'15.206.8.144','normal','',0,0,0,0,0,'[]'),(15384,'146.19.90.237','normal','',0,0,0,2,0,'{\"login\":[1652851315,1652851322]}'),(15385,'171.228.85.76','normal','',0,0,0,2,0,'{\"login\":[1652851330,1652851339]}'),(15386,'139.59.89.19','normal','',0,0,0,1,0,'{\"login\":[1653993442]}'),(15387,'68.183.84.182','normal','',0,0,0,0,0,'[]'),(15388,'5.61.52.193','normal','',0,0,0,0,2,'{\"nf\":[1652867989,1652867990]}'),(15389,'41.116.129.188','normal','',0,0,0,0,0,'[]'),(15390,'37.120.165.225','normal','',0,0,0,0,0,'[]'),(15391,'212.115.42.249','normal','',0,0,0,0,0,'[]'),(15392,'54.202.126.182','normal','',0,0,0,0,0,'[]'),(15393,'72.167.190.8','normal','',0,0,0,0,1,'{\"nf\":[1652910810]}'),(15394,'3.94.57.91','normal','',0,0,0,0,0,'[]'),(15395,'20.248.168.251','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1652915385,0,1652915085,0,20,'{\"nf\":[1652914982,1652914990,1652914997,1652915002,1652915006,1652915010,1652915014,1652915019,1652915022,1652915026,1652915041,1652915048,1652915058,1652915062,1652915066,1652915070,1652915074,1652915077,1652915081,1652915085]}'),(15396,'34.217.213.176','normal','',0,0,0,0,0,'[]'),(15397,'206.123.140.38','normal','',0,0,0,0,0,'[]'),(15398,'95.142.124.20','normal','',0,0,0,0,0,'[]'),(15399,'185.220.101.63','normal','',0,0,0,1,0,'{\"login\":[1652925489]}'),(15400,'101.35.239.216','normal','',0,0,0,0,0,'[]'),(15401,'217.79.241.50','normal','',0,0,0,0,0,'[]'),(15402,'204.85.191.7','normal','',0,0,0,0,0,'[]'),(15403,'185.220.101.34','normal','',0,0,0,0,0,'[]'),(15404,'95.217.228.222','normal','',0,0,0,0,0,'[]'),(15405,'20.187.95.186','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1652951602,0,1652951302,0,20,'{\"nf\":[1652951263,1652951264,1652951266,1652951268,1652951270,1652951271,1652951273,1652951276,1652951277,1652951279,1652951282,1652951283,1652951285,1652951287,1652951288,1652951290,1652951292,1652951298,1652951300,1652951302]}'),(15406,'40.77.167.65','normal','',0,0,0,0,0,'[]'),(15407,'212.98.224.135','normal','',0,0,0,0,0,'[]'),(15408,'65.108.142.143','normal','',0,0,0,0,0,'[]'),(15409,'85.202.169.220','normal','',0,0,0,0,41,'{\"nf\":[1652957014,1652957034,1652957063,1654603522,1654603562,1654603584,1654603592,1654603600,1654603609,1654603625,1654603637,1654603664,1654603678,1654603709,1654603720,1654603733,1654603738,1654603752,1654603799,1654603828,1654603886,1654603913,1654603952,1654604002,1654604041,1654604076,1654604090,1654604100,1654604188,1654604232,1654604304,1654604322,1654604336,1654604351,1654604379,1654604433,1654604485,1654604637,1654604645,1654604665,1654604678]}'),(15410,'66.249.77.81','normal','',0,0,0,0,0,'[]'),(15411,'34.143.189.81','normal','',0,0,0,0,0,'[]'),(15412,'216.119.142.131','normal','',0,0,0,0,1,'{\"nf\":[1652964043]}'),(15413,'45.33.53.123','normal','',0,0,0,2,0,'{\"login\":[1652967081,1653058104]}'),(15414,'66.249.77.85','normal','',0,0,0,0,0,'[]'),(15415,'185.220.103.6','normal','',0,0,0,0,0,'[]'),(15416,'74.220.219.177','normal','',0,0,0,0,0,'[]'),(15417,'20.24.84.102','normal','',0,0,0,0,0,'[]'),(15418,'54.36.148.62','normal','',0,0,0,0,0,'[]'),(15419,'52.91.104.147','normal','',0,0,0,0,0,'[]'),(15420,'157.55.39.147','normal','',0,0,0,0,0,'[]'),(15421,'34.215.100.19','normal','',0,0,0,0,0,'[]'),(15422,'45.129.18.163','normal','',0,0,0,0,0,'[]'),(15423,'45.129.18.16','normal','',0,0,0,0,0,'[]'),(15424,'114.119.153.253','normal','',0,0,0,0,0,'[]'),(15425,'66.249.77.83','normal','',0,0,0,0,0,'[]'),(15426,'66.249.88.185','normal','',0,0,0,0,2,'{\"nf\":[1653023612,1654881912]}'),(15427,'185.244.175.178','normal','',0,0,0,0,19,'{\"nf\":[1653023799,1653116652,1653116816,1653116872,1653195961,1653201634,1653212949,1653298665,1653449950,1653484216,1653525730,1653571445,1653582912,1653616227,1653717749,1653749758,1653804359,1653819263,1653835053]}'),(15428,'135.181.74.243','normal','',0,0,0,0,0,'[]'),(15429,'199.249.230.151','normal','',0,0,0,0,0,'[]'),(15430,'185.82.126.31','normal','',0,0,0,1,0,'{\"login\":[1653025618]}'),(15431,'205.210.31.151','normal','',0,0,0,0,0,'[]'),(15432,'185.220.101.55','normal','',0,0,0,0,0,'[]'),(15433,'207.46.13.143','normal','',0,0,0,0,0,'[]'),(15434,'207.46.13.230','normal','',0,0,0,0,0,'[]'),(15435,'34.222.16.2','normal','',0,0,0,0,0,'[]'),(15436,'169.0.65.177','normal','',0,0,0,0,1,'{\"nf\":[1653081448]}'),(15437,'54.38.55.122','normal','',0,0,0,0,1,'{\"nf\":[1653105694]}'),(15438,'35.244.6.175','normal','',0,0,0,0,0,'[]'),(15439,'92.53.96.22','normal','',0,0,0,0,1,'{\"nf\":[1653109467]}'),(15440,'89.58.16.23','normal','',0,0,0,0,0,'[]'),(15441,'5.255.253.108','normal','',0,0,0,0,1,'{\"nf\":[1653218241]}'),(15442,'144.76.119.235','normal','',0,0,0,0,0,'[]'),(15443,'114.119.134.95','normal','',0,0,0,0,0,'[]'),(15444,'34.79.140.10','normal','',0,0,0,0,0,'[]'),(15445,'63.34.74.36','normal','',0,0,0,0,0,'[]'),(15446,'94.237.73.137','normal','',0,0,0,0,0,'[]'),(15447,'102.65.66.190','normal','',0,0,0,0,0,'[]'),(15448,'54.36.148.211','normal','',0,0,0,0,0,'[]'),(15449,'198.235.24.136','normal','',0,0,0,0,0,'[]'),(15450,'54.36.148.189','normal','',0,0,0,0,0,'[]'),(15451,'89.248.97.18','normal','',0,0,0,0,0,'[]'),(15452,'85.128.143.39','normal','',0,0,0,0,0,'[]'),(15453,'162.241.123.67','normal','',0,0,0,0,0,'[]'),(15454,'199.79.62.17','normal','',0,0,0,0,0,'[]'),(15455,'54.36.148.139','normal','',0,0,0,0,0,'[]'),(15456,'178.18.244.210','normal','',0,0,0,0,0,'[]'),(15457,'35.203.117.189','normal','',0,0,0,0,1,'{\"nf\":[1653157460]}'),(15458,'174.198.196.120','normal','',0,0,0,0,0,'[]'),(15459,'51.91.118.206','normal','',0,0,0,0,0,'[]'),(15460,'17.121.114.253','normal','',0,0,0,0,0,'[]'),(15461,'200.147.58.27','normal','',0,0,0,0,0,'[]'),(15462,'54.36.148.94','normal','',0,0,0,0,0,'[]'),(15463,'192.99.36.166','normal','',0,0,0,0,0,'[]'),(15464,'34.176.52.36','normal','',0,0,0,0,1,'{\"nf\":[1653200880]}'),(15465,'198.12.107.235','normal','',0,0,0,0,0,'[]'),(15466,'62.197.136.222','normal','',0,0,0,0,1,'{\"nf\":[1653209436]}'),(15467,'185.3.235.252','normal','',0,0,0,0,0,'[]'),(15468,'50.87.222.88','normal','',0,0,0,0,0,'[]'),(15469,'162.214.80.88','normal','',0,0,0,0,0,'[]'),(15470,'90.156.168.24','normal','',0,0,0,0,1,'{\"nf\":[1653221581]}'),(15471,'45.32.93.206','normal','',0,0,0,2,0,'{\"login\":[1653223536,1653628523]}'),(15472,'18.212.182.223','normal','',0,0,0,0,0,'[]'),(15473,'198.57.247.229','normal','',0,0,0,0,0,'[]'),(15474,'119.18.54.14','normal','',0,0,0,0,0,'[]'),(15475,'41.116.142.19','normal','',0,0,0,0,0,'[]'),(15476,'188.40.125.250','normal','',0,0,0,0,0,'[]'),(15477,'23.128.248.97','normal','',0,0,0,0,0,'[]'),(15478,'114.119.159.233','normal','',0,0,0,0,0,'[]'),(15479,'18.219.92.100','normal','',0,0,0,0,1,'{\"nf\":[1653260646]}'),(15480,'104.198.224.53','normal','',0,0,0,1,0,'{\"login\":[1653263802]}'),(15481,'102.65.66.58','normal','',0,0,0,0,0,'[]'),(15482,'156.155.226.170','normal','',0,0,0,0,0,'[]'),(15483,'41.71.8.126','normal','',0,0,0,0,0,'[]'),(15484,'167.172.110.221','normal','',0,0,0,0,0,'[]'),(15485,'162.142.125.210','normal','',0,0,0,0,0,'[]'),(15486,'167.248.133.62','normal','',0,0,0,0,0,'[]'),(15487,'43.154.217.160','normal','',0,0,0,0,0,'[]'),(15488,'155.93.253.93','normal','',0,0,0,0,0,'[]'),(15489,'114.119.135.206','normal','',0,0,0,0,0,'[]'),(15490,'58.177.74.170','normal','',0,0,0,2,0,'{\"login\":[1653349310,1653355231]}'),(15491,'89.245.13.216','normal','',0,0,0,2,0,'{\"login\":[1653364488,1653410529]}'),(15492,'50.87.144.23','normal','',0,0,0,0,0,'[]'),(15493,'50.87.144.83','normal','',0,0,0,0,0,'[]'),(15494,'188.186.141.232','normal','',0,0,0,0,0,'[]'),(15495,'23.227.183.215','normal','',0,0,0,0,1,'{\"nf\":[1653373999]}'),(15496,'143.244.172.105','normal','',0,0,0,2,0,'{\"login\":[1653815395,1662111319]}'),(15497,'207.180.208.41','normal','',0,0,0,0,0,'[]'),(15498,'102.220.209.173','normal','',0,0,0,0,0,'[]'),(15499,'167.94.138.44','normal','',0,0,0,0,0,'[]'),(15500,'17.121.114.140','normal','',0,0,0,0,0,'[]'),(15501,'82.207.154.238','normal','',0,0,0,0,0,'[]'),(15502,'41.13.228.186','normal','',0,0,0,0,0,'[]'),(15503,'23.237.44.162','normal','',0,0,0,0,0,'[]'),(15504,'144.172.73.66','normal','',0,0,0,0,0,'[]'),(15505,'197.83.227.143','normal','',0,0,0,0,1,'{\"nf\":[1653411605]}'),(15506,'41.10.134.52','normal','',0,0,0,0,1,'{\"nf\":[1653417781]}'),(15507,'112.249.66.25','normal','',0,0,0,0,0,'[]'),(15508,'58.255.234.42','normal','',0,0,0,0,0,'[]'),(15509,'123.162.251.197','normal','',0,0,0,0,0,'[]'),(15510,'54.191.18.54','normal','',0,0,0,0,0,'[]'),(15511,'35.86.88.68','normal','',0,0,0,0,0,'[]'),(15512,'34.217.116.17','normal','',0,0,0,0,0,'[]'),(15513,'54.186.6.34','normal','',0,0,0,0,0,'[]'),(15514,'17.121.112.118','normal','',0,0,0,0,0,'[]'),(15515,'185.25.117.20','normal','',0,0,0,0,5,'{\"nf\":[1653426432,1653426532,1653426540,1653426583,1653426604]}'),(15516,'41.71.38.101','normal','',0,0,0,0,4,'{\"nf\":[1653433160,1653433245,1653433265,1653433271]}'),(15517,'130.255.166.98','normal','',0,0,0,0,1,'{\"nf\":[1653435810]}'),(15518,'130.255.166.82','normal','',0,0,0,0,1,'{\"nf\":[1653435809]}'),(15519,'130.255.166.24','normal','',0,0,0,0,2,'{\"nf\":[1654140997,1656271606]}'),(15520,'185.177.124.177','normal','',0,0,0,0,1,'{\"nf\":[1653446364]}'),(15521,'185.128.136.172','normal','',0,0,0,0,0,'[]'),(15522,'162.241.225.120','normal','',0,0,0,0,0,'[]'),(15523,'41.116.179.248','normal','',0,0,0,0,1,'{\"nf\":[1653452420]}'),(15524,'165.22.105.152','normal','',0,0,0,0,3,'{\"nf\":[1653455649,1653455651,1653455654]}'),(15525,'161.97.103.12','normal','',0,0,0,0,0,'[]'),(15526,'197.94.212.103','normal','',0,0,0,0,8,'{\"nf\":[1653464145,1653464161,1653464178,1653464185,1653464198,1653464229,1653464238,1653464284]}'),(15527,'77.111.247.49','normal','',0,0,0,0,1,'{\"nf\":[1653465933]}'),(15528,'77.111.247.146','normal','',0,0,0,0,1,'{\"nf\":[1653465932]}'),(15529,'77.111.247.75','normal','',0,0,0,0,1,'{\"nf\":[1653465933]}'),(15530,'41.164.30.26','normal','',0,0,0,0,1,'{\"nf\":[1653472582]}'),(15531,'78.135.80.225','normal','',0,0,0,0,1,'{\"nf\":[1653473574]}'),(15532,'78.135.80.225','normal','',0,0,0,0,1,'{\"nf\":[1653473575]}'),(15533,'200.69.47.112','normal','',0,0,0,6,1,'{\"nf\":[1653474084],\"login\":[1653577007,1653610795,1654499232,1654542710,1654548051,1654607342]}'),(15534,'41.193.189.218','normal','',0,0,0,0,5,'{\"nf\":[1653479163,1653479179,1653559247,1653559254,1653559265]}'),(15535,'147.161.163.5','normal','',0,0,0,0,1,'{\"nf\":[1653479317]}'),(15536,'167.235.242.114','normal','',0,0,0,0,0,'[]'),(15537,'45.222.24.21','normal','',0,0,0,0,1,'{\"nf\":[1653482327]}'),(15538,'80.190.99.101','normal','',0,0,0,0,0,'[]'),(15539,'185.14.97.176','normal','',0,0,0,1,0,'{\"login\":[1653490407]}'),(15540,'171.231.55.231','normal','',0,0,0,0,0,'[]'),(15541,'107.77.201.108','normal','',0,0,0,0,1,'{\"nf\":[1653495421]}'),(15542,'102.65.175.60','normal','',0,0,0,0,3,'{\"nf\":[1653495934,1653495960,1653547844]}'),(15543,'85.208.98.23','normal','',0,0,0,0,0,'[]'),(15544,'41.10.145.76','normal','',0,0,0,0,3,'{\"nf\":[1653506854,1653506888,1653506919]}'),(15545,'34.214.159.162','normal','',0,0,0,0,0,'[]'),(15546,'114.119.140.179','normal','',0,0,0,0,0,'[]'),(15547,'54.184.47.189','normal','',0,0,0,0,0,'[]'),(15548,'45.129.18.188','normal','',0,0,0,0,0,'[]'),(15549,'54.213.175.162','normal','',0,0,0,0,0,'[]'),(15550,'85.128.143.207','normal','',0,0,0,7,0,'{\"login\":[1653543936,1653545176,1653554398,1653607357,1653609806,1653610294,1653621420]}'),(15551,'203.158.192.36','normal','',0,0,0,4,0,'{\"login\":[1653544814,1653553958,1653612795,1653612950]}'),(15552,'52.168.71.122','normal','',0,0,0,6,0,'{\"login\":[1653544928,1653573776,1653585882,1654568377,1655328718,1655349379]}'),(15553,'5.189.161.19','normal','',0,0,0,2,0,'{\"login\":[1653545054,1653625278]}'),(15554,'139.59.60.40','normal','',0,0,0,5,0,'{\"login\":[1653545540,1653569229,1655289528,1657666616,1657869465]}'),(15555,'46.31.145.93','normal','',0,0,0,5,0,'{\"login\":[1653545643,1653548339,1653559055,1653617439,1653620924]}'),(15556,'45.33.59.71','normal','',0,0,0,2,0,'{\"login\":[1653545801,1653590566]}'),(15557,'69.163.192.25','normal','',0,0,0,13,0,'{\"login\":[1653547713,1653547968,1659421040,1660039407,1660323003,1660648604,1660936943,1661757878,1661787365,1661802451,1661805568,1661805708,1661819088]}'),(15558,'115.78.73.226','normal','',0,0,0,6,0,'{\"login\":[1653548996,1653555575,1653580457,1653593424,1653603308,1654538715]}'),(15559,'143.244.136.123','normal','',0,0,0,13,0,'{\"login\":[1653549363,1653551990,1653576212,1655278663,1655292230,1655305527,1656746762,1656765141,1656803570,1656822355,1657450506,1657458872,1659377381]}'),(15560,'128.199.105.122','normal','',0,0,0,12,0,'{\"login\":[1653549494,1653602454,1653605240,1653623712,1654602530,1654613617,1655293685,1655326015,1656795120,1656829263,1656831410,1656831535]}'),(15561,'167.86.68.248','normal','',0,0,0,17,0,'{\"login\":[1653549914,1653567360,1653614319,1653622476,1653628906,1654574153,1654592572,1655276694,1655312492,1655313898,1655318462,1655348108,1655351083,1656749439,1656756967,1656760112,1656800883]}'),(15562,'90.156.169.8','normal','',0,0,0,1,0,'{\"login\":[1653551104]}'),(15563,'54.39.105.105','normal','',0,0,0,6,0,'{\"login\":[1653551451,1653573371,1653584481,1653590157,1653609644,1653613271]}'),(15564,'164.92.128.114','normal','',0,0,0,16,0,'{\"login\":[1653551545,1655317305,1655333989,1656751127,1656760744,1656768652,1656793073,1656804917,1656807248,1656829582,1656831227,1657448835,1657454511,1657471652,1657493693,1657860117]}'),(15565,'164.92.88.122','normal','',0,0,0,4,0,'{\"login\":[1653551655,1653556171,1653567480,1653620575]}'),(15566,'45.76.183.218','normal','',0,0,0,4,0,'{\"login\":[1653552116,1653578959,1653582273,1653625476]}'),(15567,'161.35.0.168','normal','',0,0,0,25,0,'{\"login\":[1653552394,1653562227,1653577699,1653579492,1653603614,1653624934,1653626153,1653627407,1654545021,1654551150,1654650526,1655296184,1655333820,1656748870,1656750713,1656751780,1656767077,1656768323,1656778546,1656779851,1656782215,1656788739,1656815966,1656834735,1657495103]}'),(15568,'177.234.143.148','normal','',0,0,0,0,0,'[]'),(15569,'46.38.249.139','normal','',0,0,0,10,0,'{\"login\":[1653554735,1653570063,1653573121,1653606894,1653608846,1653613123,1654537320,1654603418,1654629239,1654653005]}'),(15570,'102.36.24.55','normal','',0,0,0,0,1,'{\"nf\":[1653556009]}'),(15571,'210.1.31.3','normal','',0,0,0,5,0,'{\"login\":[1653556902,1653561447,1653584903,1653624052,1653626911]}'),(15572,'210.57.216.51','normal','',0,0,0,7,0,'{\"login\":[1653557705,1653577281,1654493768,1654664263,1655290981,1655317003,1655338089]}'),(15573,'154.12.248.52','normal','',0,0,0,6,0,'{\"login\":[1653558516,1653562397,1653570457,1653584334,1653597316,1653605736]}'),(15574,'139.59.109.241','normal','',0,0,0,31,0,'{\"login\":[1653558609,1653563960,1653564364,1655276939,1655290711,1655302704,1655308859,1655319419,1656763819,1656767219,1656784172,1656806773,1656821558,1656825254,1657442238,1657480702,1657503778,1657651254,1657655706,1657681283,1657853490,1657864066,1659362418,1659382104,1659400706,1659406855,1660333009,1660460261,1660719513,1661771546,1661791070]}'),(15575,'159.89.201.33','normal','',0,0,0,4,0,'{\"login\":[1653558932,1653578811,1654606314,1654632056]}'),(15576,'157.7.128.60','normal','',0,0,0,7,0,'{\"login\":[1653559218,1653563479,1653614139,1655296648,1655307407,1655332159,1655350425]}'),(15577,'47.94.18.241','normal','',0,0,0,5,0,'{\"login\":[1653559761,1653610661,1653628398,1654515559,1654584245]}'),(15578,'41.13.196.22','normal','',0,0,0,0,1,'{\"nf\":[1653560203]}'),(15579,'65.21.203.10','normal','',0,0,0,0,0,'[]'),(15580,'3.229.253.222','normal','',0,0,0,4,0,'{\"login\":[1653560757,1654518230,1654523298,1654524831]}'),(15581,'200.62.44.154','normal','',0,0,0,5,3,'{\"login\":[1653561031,1654647016,1656796607,1656831600,1657433266],\"nf\":[1656732687,1656732693,1656732699]}'),(15582,'192.241.204.138','normal','',0,0,0,1,0,'{\"login\":[1653561769]}'),(15583,'46.101.187.103','normal','',0,0,0,32,0,'{\"login\":[1653561903,1653566271,1653594451,1653596550,1655275658,1655284978,1655288726,1655295379,1655306700,1655308454,1655309040,1655309140,1655309628,1655318404,1655319111,1655321466,1655330269,1655340672,1655352530,1656755257,1656759379,1656770905,1656786062,1656787241,1656796809,1656802761,1656802968,1656826986,1656829191,1657455934,1657485616,1657489693]}'),(15584,'120.53.122.54','normal','',0,0,0,18,0,'{\"login\":[1653562207,1653571262,1653612153,1654612625,1655276059,1655280804,1655311887,1657477889,1657491296,1657500693,1657765039,1657793180,1657796392,1657830640,1659403079,1661780452,1661835420,1661843354]}'),(15585,'181.57.140.66','normal','',0,0,0,15,0,'{\"login\":[1653562791,1653587976,1653598835,1654540843,1654551509,1654588551,1656769021,1656784494,1656790281,1656793567,1656795192,1656811505,1656817648,1656825107,1656828627]}'),(15586,'195.38.168.118','normal','',0,0,0,4,0,'{\"login\":[1653563102,1653608356,1654511928,1655341622]}'),(15587,'188.68.47.175','normal','',0,0,0,12,0,'{\"login\":[1653564142,1653584184,1653624212,1654541245,1654576343,1654595691,1654624072,1654637316,1655292927,1655314184,1656752532,1656823710]}'),(15588,'142.93.148.234','normal','',0,0,0,2,0,'{\"login\":[1653564625,1653582951]}'),(15589,'157.245.105.78','normal','',0,0,0,12,0,'{\"login\":[1653565811,1653568845,1653586846,1653586959,1653607008,1654514324,1654669867,1655275904,1655284057,1655317933,1655327422,1656799536]}'),(15590,'185.161.122.185','normal','',0,0,0,6,0,'{\"login\":[1653566551,1653574184,1653619708,1653622654,1653626013,1653627811]}'),(15591,'103.84.208.44','normal','',0,0,0,0,0,'[]'),(15592,'178.62.36.29','normal','',0,0,0,0,15,'{\"nf\":[1653568283,1653568285,1653568287,1653568289,1653568290,1653568292,1653568294,1653568296,1653568298,1653568300,1653568301,1653568303,1653568304,1653568306,1653568308]}'),(15593,'3.65.172.59','normal','',0,0,0,1,0,'{\"login\":[1653569098]}'),(15594,'109.68.214.12','normal','',0,0,0,5,0,'{\"login\":[1653569524,1653598574,1653600431,1653602973,1653616039]}'),(15595,'139.59.24.192','normal','',0,0,0,0,1,'{\"nf\":[1653570034]}'),(15596,'103.198.68.35','normal','',0,0,0,7,0,'{\"login\":[1653570201,1653596942,1653607956,1654543841,1654603834,1659358203,1660424575]}'),(15597,'65.182.174.11','normal','',0,0,0,1,0,'{\"login\":[1653571093]}'),(15598,'20.24.22.83','normal','',0,0,0,0,1,'{\"nf\":[1653571564]}'),(15599,'178.211.48.6','normal','',0,0,0,10,0,'{\"login\":[1653572023,1653585611,1653601687,1653607518,1654532160,1654604378,1654658094,1655279449,1655291780,1655312077]}'),(15600,'176.57.184.241','normal','',0,0,0,5,0,'{\"login\":[1653572288,1653592957,1653595354,1653612288,1653616734]}'),(15601,'217.109.57.18','normal','',0,0,0,1,0,'{\"login\":[1653575257]}'),(15602,'147.182.230.210','normal','',0,0,0,24,0,'{\"login\":[1653575900,1653587242,1653607787,1654536619,1654644642,1655295450,1656775158,1656776819,1656792662,1656802058,1656804775,1656826204,1657462850,1657737988,1657835963,1657840113,1659358975,1659415696,1659976196,1660567533,1660807325,1661790851,1661817315,1661845622]}'),(15603,'167.235.243.50','normal','',0,0,0,0,0,'[]'),(15604,'51.68.38.140','normal','',0,0,0,13,0,'{\"login\":[1653579084,1654575917,1655306467,1655329305,1656747570,1656747788,1656750101,1656754327,1656775605,1656791310,1657430480,1657436148,1657492387]}'),(15605,'94.237.39.106','normal','',0,0,0,7,0,'{\"login\":[1653579620,1653591764,1653592486,1656778283,1656799704,1656812127,1656823048]}'),(15606,'5.133.192.187','normal','',0,0,0,0,1,'{\"nf\":[1653580967]}'),(15607,'103.114.163.233','normal','',0,0,0,3,0,'{\"login\":[1653586754,1653591013,1654536981]}'),(15608,'78.142.211.251','normal','',0,0,0,1,0,'{\"login\":[1653587573]}'),(15609,'137.184.178.176','normal','',0,0,0,5,0,'{\"login\":[1653587711,1654547266,1655313353,1655328587,1655345668]}'),(15610,'20.57.160.124','normal','',0,0,0,0,1,'{\"nf\":[1653588762]}'),(15611,'20.57.160.124','normal','',0,0,0,0,0,'[]'),(15612,'20.57.160.124','normal','',0,0,0,0,1,'{\"nf\":[1653588762]}'),(15613,'18.197.97.29','normal','',0,0,0,1,0,'{\"login\":[1653589432]}'),(15614,'101.35.148.167','normal','',0,0,0,1,0,'{\"login\":[1653591332]}'),(15615,'191.252.110.161','normal','',0,0,0,6,0,'{\"login\":[1653591919,1653614827,1653622310,1655293483,1655299646,1655352693]}'),(15616,'34.212.55.155','normal','',0,0,0,1,0,'{\"login\":[1653593905]}'),(15617,'45.79.117.152','normal','',0,0,0,18,0,'{\"login\":[1653594144,1653603949,1653611119,1653619354,1656747462,1656760207,1656765547,1656776550,1656780077,1656816217,1656817443,1656833772,1657442389,1657453268,1657467333,1657467935,1657509681,1657520053]}'),(15618,'85.128.143.121','normal','',0,0,0,2,0,'{\"login\":[1653596386,1657487002]}'),(15619,'95.128.139.216','normal','',0,0,0,7,0,'{\"login\":[1653596718,1653599806,1653611801,1655338656,1655343538,1659382345,1659407897]}'),(15620,'54.200.19.201','normal','',0,0,0,0,0,'[]'),(15621,'82.223.216.165','normal','',0,0,0,3,0,'{\"login\":[1653597739,1653618961,1653626674]}'),(15622,'103.171.182.204','normal','',0,0,0,27,0,'{\"login\":[1653598094,1654498162,1654528486,1654623579,1654653510,1654654015,1655289176,1655304468,1655315590,1655340184,1656832495,1656834018,1657443609,1657516186,1657685163,1657783038,1657846848,1659372950,1659381728,1659386660,1659395916,1659400833,1659413408,1659416793,1661809451,1661810658,1661818670]}'),(15623,'95.129.24.120','normal','',0,0,0,4,0,'{\"login\":[1653600244,1654553543,1654632989,1659406410]}'),(15624,'185.17.181.13','normal','',0,0,0,21,0,'{\"login\":[1653603138,1653610143,1653610962,1653616557,1654598857,1654648564,1655307499,1655321809,1655329204,1656744985,1656753114,1656758214,1656795943,1656811181,1656829959,1657443758,1657453888,1657454018,1657496512,1657510308,1657702428]}'),(15625,'54.36.149.30','normal','',0,0,0,0,0,'[]'),(15626,'66.249.88.181','normal','',0,0,0,0,3,'{\"nf\":[1653604928,1653615945,1653686185]}'),(15627,'62.138.11.76','normal','',0,0,0,8,0,'{\"login\":[1653609327,1653622135,1654567510,1654638797,1655282938,1655295032,1655297114,1655349248]}'),(15628,'20.83.26.133','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1654594079,0,1654593779,0,60,'{\"nf\":[1654593732,1654593734,1654593737,1654593739,1654593742,1654593743,1654593746,1654593748,1654593751,1654593753,1654593755,1654593758,1654593760,1654593761,1654593763,1654593769,1654593772,1654593774,1654593777,1654593779],\"login\":[]}'),(15629,'114.119.152.27','normal','',0,0,0,0,0,'[]'),(15630,'46.101.211.21','normal','',0,0,0,1,0,'{\"login\":[1653620351]}'),(15631,'222.255.148.162','normal','',0,0,0,2,0,'{\"login\":[1653622977,1654560133]}'),(15632,'17.121.113.198','normal','',0,0,0,0,0,'[]'),(15633,'156.155.128.190','normal','',0,0,0,0,0,'[]'),(15634,'66.249.88.177','normal','',0,0,0,0,1,'{\"nf\":[1653664228]}'),(15635,'20.205.139.105','normal','',0,0,0,0,3,'{\"nf\":[1653676874,1653676888,1653676892]}'),(15636,'209.141.55.26','normal','',0,0,0,0,1,'{\"nf\":[1653681495]}'),(15637,'72.14.201.194','normal','',0,0,0,0,0,'[]'),(15638,'220.88.49.227','normal','',0,0,0,0,0,'[]'),(15639,'54.39.90.165','normal','',0,0,0,1,0,'{\"login\":[1662155827]}'),(15640,'196.44.176.39','normal','',0,0,0,1,0,'{\"login\":[1660476609]}'),(15641,'142.4.223.93','normal','',0,0,0,0,0,'[]'),(15642,'68.168.112.162','normal','',0,0,0,1,0,'{\"login\":[1653811390]}'),(15643,'176.9.188.56','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1653698860,0,1653698560,0,40,'{\"nf\":[1653698501,1653698502,1653698543,1653698546,1653698547,1653698548,1653698549,1653698550,1653698550,1653698551,1653698552,1653698553,1653698553,1653698554,1653698555,1653698556,1653698557,1653698557,1653698558,1653698559],\"login\":[]}'),(15644,'80.241.209.240','normal','',0,0,0,0,0,'[]'),(15645,'162.240.14.213','normal','',0,0,0,0,0,'[]'),(15646,'78.129.218.33','normal','',0,0,0,0,0,'[]'),(15647,'78.137.100.9','normal','',0,0,0,0,0,'[]'),(15648,'5.161.58.152','normal','',0,0,0,0,0,'[]'),(15649,'205.210.31.26','normal','',0,0,0,0,0,'[]'),(15650,'91.206.207.211','normal','',0,0,0,0,0,'[]'),(15651,'198.58.127.244','normal','',0,0,0,0,0,'[]'),(15652,'54.79.157.107','normal','',0,0,0,0,0,'[]'),(15653,'162.214.122.19','normal','',0,0,0,0,0,'[]'),(15654,'199.16.130.127','normal','',0,0,0,0,0,'[]'),(15655,'92.53.96.116','normal','',0,0,0,0,0,'[]'),(15656,'52.226.227.211','normal','',0,0,0,0,0,'[]'),(15657,'212.200.255.43','normal','',0,0,0,0,0,'[]'),(15658,'35.194.233.240','normal','',0,0,0,2,0,'{\"login\":[1654511735,1661159352]}'),(15659,'18.168.218.47','normal','',0,0,0,0,0,'[]'),(15660,'207.148.127.170','normal','',0,0,0,0,0,'[]'),(15661,'149.255.58.15','normal','',0,0,0,2,0,'{\"login\":[1653805991,1654001766]}'),(15662,'158.58.189.250','normal','',0,0,0,3,0,'{\"login\":[1654507095,1654517686,1654528858]}'),(15663,'208.113.192.159','normal','',0,0,0,0,0,'[]'),(15664,'170.249.216.42','normal','',0,0,0,0,0,'[]'),(15665,'3.108.40.146','normal','',0,0,0,0,0,'[]'),(15666,'143.198.161.19','normal','',0,0,0,2,0,'{\"login\":[1662110227,1662988737]}'),(15667,'132.148.166.219','normal','',0,0,0,0,0,'[]'),(15668,'185.255.208.195','normal','',0,0,0,1,0,'{\"login\":[1654007608]}'),(15669,'185.182.56.94','normal','',0,0,0,0,0,'[]'),(15670,'46.101.21.36','normal','',0,0,0,0,0,'[]'),(15671,'94.237.40.123','normal','',0,0,0,0,0,'[]'),(15672,'103.8.25.76','normal','',0,0,0,0,0,'[]'),(15673,'213.5.70.61','normal','',0,0,0,0,0,'[]'),(15674,'178.128.197.211','normal','',0,0,0,1,0,'{\"login\":[1653809765]}'),(15675,'193.151.131.160','normal','',0,0,0,3,0,'{\"login\":[1653973396,1653984062,1662076266]}'),(15676,'45.79.57.178','normal','',0,0,0,0,0,'[]'),(15677,'176.74.19.166','normal','',0,0,0,1,0,'{\"login\":[1653978947]}'),(15678,'188.227.85.26','normal','',0,0,0,0,0,'[]'),(15679,'111.90.150.36','normal','',0,0,0,2,0,'{\"login\":[1657108436,1662068301]}'),(15680,'183.91.14.212','normal','',0,0,0,0,0,'[]'),(15681,'67.23.227.254','normal','',0,0,0,0,0,'[]'),(15682,'137.184.43.122','normal','',0,0,0,0,0,'[]'),(15683,'116.203.227.196','normal','',0,0,0,0,0,'[]'),(15684,'185.175.45.32','normal','',0,0,0,2,0,'{\"login\":[1653807846,1653822673]}'),(15685,'5.9.99.37','normal','',0,0,0,0,0,'[]'),(15686,'145.239.3.48','normal','',0,0,0,0,0,'[]'),(15687,'197.101.82.197','normal','',0,0,0,0,0,'[]'),(15688,'162.214.214.62','normal','',0,0,0,0,0,'[]'),(15689,'13.250.187.111','normal','',0,0,0,0,0,'[]'),(15690,'88.99.149.170','normal','',0,0,0,0,0,'[]'),(15691,'213.175.211.155','normal','',0,0,0,0,0,'[]'),(15692,'162.144.75.147','normal','',0,0,0,0,0,'[]'),(15693,'3.145.52.179','normal','',0,0,0,0,0,'[]'),(15694,'198.144.188.12','normal','',0,0,0,1,0,'{\"login\":[1653809111]}'),(15695,'194.233.70.74','normal','',0,0,0,0,0,'[]'),(15696,'2.59.117.198','normal','',0,0,0,0,0,'[]'),(15697,'34.81.221.251','normal','',0,0,0,0,0,'[]'),(15698,'209.133.222.226','normal','',0,0,0,0,0,'[]'),(15699,'67.215.14.242','normal','',0,0,0,0,0,'[]'),(15700,'69.167.154.36','normal','',0,0,0,0,0,'[]'),(15701,'143.110.184.34','normal','',0,0,0,1,0,'{\"login\":[1654010662]}'),(15702,'43.224.137.97','normal','',0,0,0,0,0,'[]'),(15703,'34.102.79.135','normal','',0,0,0,0,0,'[]'),(15704,'185.76.77.160','normal','',0,0,0,2,0,'{\"login\":[1654003345,1661673062]}'),(15705,'137.184.185.123','normal','',0,0,0,0,0,'[]'),(15706,'185.243.218.78','normal','',0,0,0,0,0,'[]'),(15707,'185.165.31.148','normal','',0,0,0,0,0,'[]'),(15708,'207.148.86.249','normal','',0,0,0,0,0,'[]'),(15709,'131.72.236.128','normal','',0,0,0,0,0,'[]'),(15710,'135.181.10.54','normal','',0,0,0,0,0,'[]'),(15711,'190.8.178.135','normal','',0,0,0,0,0,'[]'),(15712,'44.196.171.96','normal','',0,0,0,0,0,'[]'),(15713,'178.64.44.196','normal','',0,0,0,0,0,'[]'),(15714,'44.202.23.235','normal','',0,0,0,0,0,'[]'),(15715,'44.203.193.62','normal','',0,0,0,0,0,'[]'),(15716,'184.73.150.135','normal','',0,0,0,0,0,'[]'),(15717,'114.119.149.116','normal','',0,0,0,0,0,'[]'),(15718,'52.12.36.61','normal','',0,0,0,0,0,'[]'),(15719,'54.191.44.180','normal','',0,0,0,0,0,'[]'),(15720,'54.149.155.221','normal','',0,0,0,0,0,'[]'),(15721,'52.39.191.143','normal','',0,0,0,0,0,'[]'),(15722,'92.53.118.39','normal','',0,0,0,0,1,'{\"nf\":[1653775038]}'),(15723,'34.83.64.112','normal','',0,0,0,0,3,'{\"nf\":[1653779063,1653779066,1653779069]}'),(15724,'5.161.117.119','normal','',0,0,0,0,7,'{\"nf\":[1653782553,1653782561,1653782568,1653782581,1653782589,1653782591,1653782599]}'),(15725,'31.184.242.14','normal','',0,0,0,2,0,'{\"login\":[1657106338,1662883352]}'),(15726,'164.160.129.200','normal','',0,0,0,1,0,'{\"login\":[1654522000]}'),(15727,'185.165.171.40','normal','',0,0,0,1,0,'{\"login\":[1653791245]}'),(15728,'5.182.26.11','normal','',0,0,0,1,0,'{\"login\":[1662244917]}'),(15729,'50.28.1.56','normal','',0,0,0,0,0,'[]'),(15730,'50.87.144.137','normal','',0,0,0,0,0,'[]'),(15731,'186.234.80.192','normal','',0,0,0,0,0,'[]'),(15732,'3.134.42.8','normal','',0,0,0,0,0,'[]'),(15733,'204.44.95.113','normal','',0,0,0,0,0,'[]'),(15734,'75.172.116.230','normal','',0,0,0,0,1,'{\"nf\":[1653800879]}'),(15735,'54.243.28.53','normal','',0,0,0,1,0,'{\"login\":[1654008381]}'),(15736,'209.126.25.167','normal','',0,0,0,1,0,'{\"login\":[1655125159]}'),(15737,'184.94.240.88','normal','',0,0,0,0,0,'[]'),(15738,'62.171.175.183','normal','',0,0,0,0,0,'[]'),(15739,'217.61.208.245','normal','',0,0,0,0,0,'[]'),(15740,'138.201.208.182','normal','',0,0,0,1,0,'{\"login\":[1653804455]}'),(15741,'18.133.60.229','normal','',0,0,0,1,0,'{\"login\":[1653805652]}'),(15742,'164.92.86.135','normal','',0,0,0,1,0,'{\"login\":[1653806872]}'),(15743,'184.168.126.242','normal','',0,0,0,6,0,'{\"login\":[1653810074,1653817432,1654011493,1660736588,1662015490,1662163431]}'),(15744,'162.240.28.46','normal','',0,0,0,1,0,'{\"login\":[1653810763]}'),(15745,'68.183.204.172','normal','',0,0,0,1,0,'{\"login\":[1653811052]}'),(15746,'64.227.50.237','normal','',0,0,0,3,0,'{\"login\":[1653811706,1653974373,1653975812]}'),(15747,'105.244.96.138','normal','',0,0,0,0,0,'[]'),(15748,'51.222.183.68','normal','',0,0,0,1,0,'{\"login\":[1653812040]}'),(15749,'139.180.204.50','normal','',0,0,0,1,0,'{\"login\":[1653813040]}'),(15750,'185.192.113.15','normal','',0,0,0,1,0,'{\"login\":[1653814733]}'),(15751,'172.104.167.152','normal','',0,0,0,1,0,'{\"login\":[1653815066]}'),(15752,'34.85.75.234','normal','',0,0,0,1,0,'{\"login\":[1653818117]}'),(15753,'139.59.69.223','normal','',0,0,0,1,0,'{\"login\":[1653818473]}'),(15754,'142.93.212.28','normal','',0,0,0,1,0,'{\"login\":[1653818806]}'),(15755,'66.249.66.92','normal','',0,0,0,0,0,'[]'),(15756,'66.249.66.93','normal','',0,0,0,0,0,'[]'),(15757,'213.190.100.201','normal','',0,0,0,1,0,'{\"login\":[1653819491]}'),(15758,'194.36.123.66','normal','',0,0,0,1,0,'{\"login\":[1653819842]}'),(15759,'128.199.86.2','normal','',0,0,0,2,0,'{\"login\":[1653823645,1653971522]}'),(15760,'188.166.180.80','normal','',0,0,0,0,0,'[]'),(15761,'37.251.155.58','normal','',0,0,0,0,0,'[]'),(15762,'94.237.102.233','normal','',0,0,0,0,0,'[]'),(15763,'5.189.159.246','normal','',0,0,0,2,0,'{\"login\":[1653980183,1654063896]}'),(15764,'52.206.255.80','normal','',0,0,0,0,0,'[]'),(15765,'192.227.178.147','normal','',0,0,0,1,0,'{\"login\":[1654530684]}'),(15766,'18.219.96.113','normal','',0,0,0,0,0,'[]'),(15767,'18.219.96.113','normal','',0,0,0,0,0,'[]'),(15768,'46.161.11.159','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1653842507,0,1653842207,0,20,'{\"nf\":[1653842183,1653842185,1653842186,1653842187,1653842193,1653842193,1653842194,1653842195,1653842196,1653842197,1653842198,1653842199,1653842200,1653842201,1653842202,1653842202,1653842203,1653842204,1653842205,1653842206]}'),(15769,'66.249.66.63','normal','',0,0,0,0,0,'[]'),(15770,'20.216.13.211','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1653958246,0,1653957946,0,21,'{\"nf\":[1653850709,1653957908,1653957912,1653957914,1653957917,1653957918,1653957920,1653957922,1653957924,1653957926,1653957928,1653957929,1653957931,1653957933,1653957934,1653957936,1653957938,1653957940,1653957942,1653957944,1653957946]}'),(15771,'54.148.176.150','normal','',0,0,0,0,0,'[]'),(15772,'114.119.142.189','normal','',0,0,0,0,0,'[]'),(15773,'207.46.13.53','normal','',0,0,0,0,0,'[]'),(15774,'65.109.8.232','normal','',0,0,0,0,0,'[]'),(15775,'106.55.131.134','normal','',0,0,0,0,0,'[]'),(15776,'65.154.226.168','normal','',0,0,0,0,0,'[]'),(15777,'193.169.244.228','normal','',0,0,0,0,2,'{\"nf\":[1653887277,1653887280]}'),(15778,'95.211.187.229','normal','',0,0,0,0,0,'[]'),(15779,'102.65.157.126','normal','',0,0,0,0,0,'[]'),(15780,'185.244.175.57','normal','',0,0,0,0,2,'{\"nf\":[1653893971,1654021191]}'),(15781,'159.203.1.170','normal','',0,0,0,0,9,'{\"nf\":[1653905587,1653905590,1653905593,1653905595,1653905597,1653905599,1653905601,1653905602,1653905604]}'),(15782,'66.249.66.222','normal','',0,0,0,0,0,'[]'),(15783,'188.165.241.181','normal','',0,0,0,0,0,'[]'),(15784,'176.53.222.192','normal','',0,0,0,0,0,'[]'),(15785,'176.53.221.140','normal','',0,0,0,0,0,'[]'),(15786,'176.53.222.36','normal','',0,0,0,0,0,'[]'),(15787,'89.104.110.97','normal','',0,0,0,0,0,'[]'),(15788,'54.187.71.242','normal','',0,0,0,0,0,'[]'),(15789,'185.220.101.175','normal','',0,0,0,0,0,'[]'),(15790,'54.36.148.74','normal','',0,0,0,0,0,'[]'),(15791,'54.36.148.11','normal','',0,0,0,0,0,'[]'),(15792,'34.238.115.40','normal','',0,0,0,0,0,'[]'),(15793,'114.119.154.207','normal','',0,0,0,0,0,'[]'),(15794,'3.95.178.134','normal','',0,0,0,0,0,'[]'),(15795,'94.102.56.9','normal','',0,0,0,1,0,'{\"login\":[1653964606]}'),(15796,'138.128.180.146','normal','',0,0,0,0,0,'[]'),(15797,'207.244.239.41','normal','',0,0,0,0,0,'[]'),(15798,'79.139.57.166','normal','',0,0,0,2,0,'{\"login\":[1653976074,1654005733]}'),(15799,'157.245.103.220','normal','',0,0,0,1,0,'{\"login\":[1653977658]}'),(15800,'128.127.106.229','normal','',0,0,0,2,0,'{\"login\":[1653978317,1653994732]}'),(15801,'104.236.233.109','normal','',0,0,0,0,1,'{\"nf\":[1653979298]}'),(15802,'173.254.24.24','normal','',0,0,0,1,0,'{\"login\":[1653980185]}'),(15803,'144.202.5.14','normal','',0,0,0,1,0,'{\"login\":[1653980772]}'),(15804,'45.79.204.206','normal','',0,0,0,1,0,'{\"login\":[1653981423]}'),(15805,'185.151.196.63','normal','',0,0,0,1,0,'{\"login\":[1653981492]}'),(15806,'199.16.128.112','normal','',0,0,0,1,0,'{\"login\":[1653982130]}'),(15807,'5.39.104.183','normal','',0,0,0,0,3,'{\"nf\":[1653982412,1653982428,1661853879]}'),(15808,'102.217.79.226','normal','',0,0,0,0,0,'[]'),(15809,'46.235.40.47','normal','',0,0,0,0,1,'{\"nf\":[1653983179]}'),(15810,'194.56.190.57','normal','',0,0,0,2,0,'{\"login\":[1653984687,1654010835]}'),(15811,'95.110.132.10','normal','',0,0,0,2,0,'{\"login\":[1653984939,1654519817]}'),(15812,'20.83.26.154','normal','',0,0,0,0,6,'{\"nf\":[1653985100,1653985107,1653985113,1653985120,1653985125,1653985131]}'),(15813,'177.55.124.78','normal','',0,0,0,1,0,'{\"login\":[1653986555]}'),(15814,'207.148.69.200','normal','',0,0,0,1,0,'{\"login\":[1653986607]}'),(15815,'64.227.174.64','normal','',0,0,0,1,0,'{\"login\":[1653987458]}'),(15816,'18.139.33.116','normal','',0,0,0,1,0,'{\"login\":[1653987956]}'),(15817,'23.88.63.121','normal','',0,0,0,1,0,'{\"login\":[1653989339]}'),(15818,'62.151.182.243','normal','',0,0,0,1,0,'{\"login\":[1653997124]}'),(15819,'54.36.149.20','normal','',0,0,0,0,0,'[]'),(15820,'17.121.113.13','normal','',0,0,0,0,0,'[]'),(15821,'162.249.4.84','normal','',0,0,0,4,0,'{\"login\":[1653999521,1662120355,1662241160,1662256776]}'),(15822,'157.90.161.243','normal','',0,0,0,3,0,'{\"login\":[1654000145,1654511331,1654521125]}'),(15823,'92.119.113.214','normal','',0,0,0,1,0,'{\"login\":[1654000932]}'),(15824,'2.184.67.138','normal','',0,0,0,3,0,'{\"login\":[1654001125,1654526509,1662249078]}'),(15825,'178.63.72.110','normal','',0,0,0,2,0,'{\"login\":[1654001919,1654504995]}'),(15826,'159.65.142.51','normal','',0,0,0,1,0,'{\"login\":[1654003581]}'),(15827,'54.38.211.183','normal','',0,0,0,2,0,'{\"login\":[1654005187,1654513771]}'),(15828,'51.255.62.10','normal','',0,0,0,0,0,'[]'),(15829,'51.255.62.4','normal','',0,0,0,0,0,'[]'),(15830,'51.255.62.0','normal','',0,0,0,0,0,'[]'),(15831,'65.2.13.18','normal','',0,0,0,1,0,'{\"login\":[1654009837]}'),(15832,'95.216.100.153','normal','',0,0,0,1,0,'{\"login\":[1654012508]}'),(15833,'131.72.236.73','normal','',0,0,0,1,0,'{\"login\":[1654013165]}'),(15834,'45.77.40.249','normal','',0,0,0,0,0,'[]'),(15835,'130.185.74.183','normal','',0,0,0,2,0,'{\"login\":[1654509397,1662232041]}'),(15836,'51.254.49.111','normal','',0,0,0,0,0,'[]'),(15837,'67.217.34.36','normal','',0,0,0,2,0,'{\"login\":[1654514205,1654522444]}'),(15838,'89.104.100.46','normal','',0,0,0,0,0,'[]'),(15839,'46.4.227.96','normal','',0,0,0,0,0,'[]'),(15840,'45.129.18.105','normal','',0,0,0,0,0,'[]'),(15841,'176.53.219.254','normal','',0,0,0,0,0,'[]'),(15842,'176.113.42.87','normal','',0,0,0,0,0,'[]'),(15843,'197.92.137.115','normal','',0,0,0,0,1,'{\"nf\":[1654028112]}'),(15844,'35.161.211.66','normal','',0,0,0,0,0,'[]'),(15845,'191.101.61.33','normal','',0,0,0,0,0,'[]'),(15846,'185.243.218.46','normal','',0,0,0,0,0,'[]'),(15847,'66.249.66.61','normal','',0,0,0,0,0,'[]'),(15848,'154.0.175.35','normal','',0,0,0,0,0,'[]'),(15849,'18.206.103.126','normal','',0,0,0,1,0,'{\"login\":[1654068724]}'),(15850,'142.93.255.167','normal','',0,0,0,0,0,'[]'),(15851,'67.215.237.66','normal','',0,0,0,0,0,'[]'),(15852,'195.242.130.94','normal','',0,0,0,1,0,'{\"login\":[1654062121]}'),(15853,'163.44.207.122','normal','',0,0,0,1,0,'{\"login\":[1654063550]}'),(15854,'128.199.223.238','normal','',0,0,0,1,0,'{\"login\":[1654064261]}'),(15855,'43.252.88.154','normal','',0,0,0,1,0,'{\"login\":[1654064621]}'),(15856,'51.158.108.61','normal','',0,0,0,0,0,'[]'),(15857,'158.69.116.35','normal','',0,0,0,0,0,'[]'),(15858,'8.215.41.77','normal','',0,0,0,8,0,'{\"login\":[1656754414,1656780989,1656791207,1656808038,1657477418,1657494844,1657753401,1657872182]}'),(15859,'162.241.87.243','normal','',0,0,0,0,0,'[]'),(15860,'109.248.37.211','normal','',0,0,0,1,0,'{\"login\":[1654080837]}'),(15861,'158.69.243.52','normal','',0,0,0,0,0,'[]'),(15862,'41.13.196.148','normal','',0,0,0,0,1,'{\"nf\":[1654085057]}'),(15863,'151.106.120.184','normal','',0,0,0,0,0,'[]'),(15864,'41.13.143.152','normal','',0,0,0,0,1,'{\"nf\":[1654090198]}'),(15865,'185.165.42.75','normal','',0,0,0,1,0,'{\"login\":[1662097573]}'),(15866,'109.248.175.40','normal','',0,0,0,0,3,'{\"nf\":[1654091458,1654138660,1654207755]}'),(15867,'114.119.144.37','normal','',0,0,0,0,0,'[]'),(15868,'58.177.74.254','normal','',0,0,0,4,0,'{\"login\":[1654099957,1655409547,1655538203,1655542929]}'),(15869,'159.203.93.204','normal','',0,0,0,0,0,'[]'),(15870,'178.18.136.235','normal','',0,0,0,1,0,'{\"login\":[1660303790]}'),(15871,'102.132.60.78','normal','',0,0,0,0,3,'{\"nf\":[1654108112,1654108113,1654108114]}'),(15872,'34.95.185.149','normal','',0,0,0,0,0,'[]'),(15873,'34.221.131.84','normal','',0,0,0,0,0,'[]'),(15874,'35.90.32.78','normal','',0,0,0,0,0,'[]'),(15875,'35.90.54.103','normal','',0,0,0,0,0,'[]'),(15876,'115.78.7.95','normal','',0,0,0,0,0,'[]'),(15877,'185.209.229.181','normal','',0,0,0,0,0,'[]'),(15878,'204.2.194.83','normal','',0,0,0,0,0,'[]'),(15879,'52.26.111.68','normal','',0,0,0,0,0,'[]'),(15880,'103.110.9.34','normal','',0,0,0,0,0,'[]'),(15881,'202.21.38.38','normal','',0,0,0,0,0,'[]'),(15882,'149.255.62.16','normal','',0,0,0,0,0,'[]'),(15883,'79.175.168.22','normal','',0,0,0,0,0,'[]'),(15884,'159.69.67.51','normal','',0,0,0,0,0,'[]'),(15885,'161.0.159.49','normal','',0,0,0,0,0,'[]'),(15886,'46.249.199.7','normal','',0,0,0,0,0,'[]'),(15887,'46.161.11.252','normal','',0,0,0,0,0,'[]'),(15888,'103.204.128.101','normal','',0,0,0,0,0,'[]'),(15889,'83.169.41.136','normal','',0,0,0,5,0,'{\"login\":[1659408055,1661756898,1661760418,1661774827,1661826284]}'),(15890,'103.179.190.176','normal','',0,0,0,0,0,'[]'),(15891,'157.245.205.64','normal','',0,0,0,0,0,'[]'),(15892,'160.16.65.204','normal','',0,0,0,0,0,'[]'),(15893,'160.119.252.16','normal','',0,0,0,1,0,'{\"login\":[1662266576]}'),(15894,'46.4.32.21','normal','',0,0,0,0,0,'[]'),(15895,'113.161.54.238','normal','',0,0,0,0,0,'[]'),(15896,'199.192.24.50','normal','',0,0,0,0,0,'[]'),(15897,'44.201.171.199','normal','',0,0,0,0,0,'[]'),(15898,'34.203.96.246','normal','',0,0,0,0,0,'[]'),(15899,'123.253.33.101','normal','',0,0,0,0,0,'[]'),(15900,'162.240.50.109','normal','',0,0,0,0,0,'[]'),(15901,'82.165.52.170','normal','',0,0,0,0,0,'[]'),(15902,'62.28.137.98','normal','',0,0,0,0,0,'[]'),(15903,'167.94.138.46','normal','',0,0,0,0,0,'[]'),(15904,'172.104.81.115','normal','',0,0,0,3,0,'{\"login\":[1655136594,1661163819,1662871870]}'),(15905,'54.36.148.10','normal','',0,0,0,0,0,'[]'),(15906,'95.216.73.226','normal','',0,0,0,0,0,'[]'),(15907,'3.109.210.195','normal','',0,0,0,0,0,'[]'),(15908,'105.225.98.6','normal','',0,0,0,0,0,'[]'),(15909,'164.92.68.143','normal','',0,0,0,0,0,'[]'),(15910,'109.237.138.49','normal','',0,0,0,0,0,'[]'),(15911,'46.235.42.180','normal','',0,0,0,0,1,'{\"nf\":[1654198287]}'),(15912,'54.185.96.185','normal','',0,0,0,0,0,'[]'),(15913,'114.119.152.33','normal','',0,0,0,0,0,'[]'),(15914,'185.61.219.163','normal','',0,0,0,0,0,'[]'),(15915,'77.220.194.239','normal','',0,0,0,0,0,'[]'),(15916,'194.233.68.188','normal','',0,0,0,0,0,'[]'),(15917,'34.76.111.221','normal','',0,0,0,0,0,'[]'),(15918,'52.226.210.206','normal','',0,0,0,0,1,'{\"nf\":[1655460348]}'),(15919,'178.128.95.64','normal','',0,0,0,0,0,'[]'),(15920,'20.216.132.125','normal','',0,0,0,0,0,'[]'),(15921,'69.171.251.12','normal','',0,0,0,0,0,'[]'),(15922,'173.252.95.6','normal','',0,0,0,0,0,'[]'),(15923,'173.252.95.117','normal','',0,0,0,0,0,'[]'),(15924,'8.142.64.24','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1654221656,0,1654221356,0,20,'{\"nf\":[1654221307,1654221309,1654221310,1654221312,1654221317,1654221318,1654221320,1654221321,1654221323,1654221325,1654221327,1654221328,1654221329,1654221337,1654221338,1654221339,1654221341,1654221350,1654221351,1654221356]}'),(15925,'205.147.109.57','normal','',0,0,0,0,0,'[]'),(15926,'162.241.194.11','normal','',0,0,0,0,0,'[]'),(15927,'67.211.212.202','normal','',0,0,0,0,0,'[]'),(15928,'89.114.157.216','normal','',0,0,0,0,0,'[]'),(15929,'149.28.212.238','normal','',0,0,0,0,0,'[]'),(15930,'217.160.12.168','normal','',0,0,0,0,0,'[]'),(15931,'47.242.93.41','normal','',0,0,0,0,0,'[]'),(15932,'159.89.44.17','normal','',0,0,0,0,0,'[]'),(15933,'207.148.89.8','normal','',0,0,0,0,0,'[]'),(15934,'138.68.53.211','normal','',0,0,0,0,0,'[]'),(15935,'144.24.137.33','normal','',0,0,0,0,0,'[]'),(15936,'109.248.175.131','normal','',0,0,0,0,9,'{\"nf\":[1654261425,1654280988,1654320271,1654348426,1654464953,1654475379,1654506197,1654562434,1654570292]}'),(15937,'66.249.65.157','normal','',0,0,0,0,0,'[]'),(15938,'66.249.65.128','normal','',0,0,0,0,0,'[]'),(15939,'194.126.177.34','normal','',0,0,0,1,0,'{\"login\":[1654263876]}'),(15940,'17.121.115.91','normal','',0,0,0,0,0,'[]'),(15941,'47.89.245.71','normal','',0,0,0,0,0,'[]'),(15942,'14.45.218.228','normal','',0,0,0,0,0,'[]'),(15943,'159.65.136.177','normal','',0,0,0,0,0,'[]'),(15944,'196.240.143.11','normal','',0,0,0,0,0,'[]'),(15945,'95.216.145.1','normal','',0,0,0,0,0,'[]'),(15946,'131.72.236.184','normal','',0,0,0,0,0,'[]'),(15947,'162.241.253.222','normal','',0,0,0,0,0,'[]'),(15948,'207.180.210.245','normal','',0,0,0,0,0,'[]'),(15949,'190.169.30.54','normal','',0,0,0,1,0,'{\"login\":[1661677827]}'),(15950,'49.12.131.60','normal','',0,0,0,0,0,'[]'),(15951,'198.12.254.32','normal','',0,0,0,0,0,'[]'),(15952,'148.72.209.0','normal','',0,0,0,1,0,'{\"login\":[1660048402]}'),(15953,'140.246.255.164','normal','',0,0,0,0,0,'[]'),(15954,'67.205.176.79','normal','',0,0,0,0,0,'[]'),(15955,'52.36.219.215','normal','',0,0,0,0,0,'[]'),(15956,'205.210.31.153','normal','',0,0,0,0,0,'[]'),(15957,'162.210.196.130','normal','',0,0,0,0,0,'[]'),(15958,'119.238.48.249','normal','',0,0,0,0,0,'[]'),(15959,'67.20.76.169','normal','',0,0,0,0,0,'[]'),(15960,'162.241.218.25','normal','',0,0,0,0,0,'[]'),(15961,'23.254.253.92','normal','',0,0,0,0,0,'[]'),(15962,'41.198.133.182','normal','',0,0,0,0,0,'[]'),(15963,'66.7.223.194','normal','',0,0,0,0,0,'[]'),(15964,'98.142.107.122','normal','',0,0,0,0,0,'[]'),(15965,'31.216.62.146','normal','',0,0,0,0,0,'[]'),(15966,'141.94.241.64','normal','',0,0,0,0,1,'{\"nf\":[1654340369]}'),(15967,'185.181.61.24','normal','',0,0,0,0,0,'[]'),(15968,'68.183.191.223','normal','',0,0,0,1,0,'{\"login\":[1654354621]}'),(15969,'54.36.148.223','normal','',0,0,0,0,0,'[]'),(15970,'165.0.101.46','normal','',0,0,0,0,0,'[]'),(15971,'172.245.120.9','normal','',0,0,0,0,0,'[]'),(15972,'199.249.230.87','normal','',0,0,0,0,0,'[]'),(15973,'207.46.13.164','normal','',0,0,0,0,0,'[]'),(15974,'54.190.13.213','normal','',0,0,0,0,0,'[]'),(15975,'54.189.126.203','normal','',0,0,0,0,0,'[]'),(15976,'35.87.36.174','normal','',0,0,0,0,0,'[]'),(15977,'183.197.22.61','normal','',0,0,0,0,0,'[]'),(15978,'125.79.83.104','normal','',0,0,0,0,0,'[]'),(15979,'183.202.178.167','normal','',0,0,0,0,0,'[]'),(15980,'115.57.148.135','normal','',0,0,0,0,0,'[]'),(15981,'1.192.227.251','normal','',0,0,0,0,0,'[]'),(15982,'1.80.210.34','normal','',0,0,0,0,0,'[]'),(15983,'62.178.165.102','normal','',0,0,0,1,0,'{\"login\":[1654384537]}'),(15984,'77.51.41.243','normal','',0,0,0,0,0,'[]'),(15985,'95.217.226.248','normal','',0,0,0,0,0,'[]'),(15986,'103.180.121.20','normal','',0,0,0,6,0,'{\"login\":[1654523338,1656832805,1659399055,1659871333,1660167824,1660370454]}'),(15987,'114.119.143.177','normal','',0,0,0,0,0,'[]'),(15988,'85.128.143.174','normal','',0,0,0,0,0,'[]'),(15989,'51.38.113.53','normal','',0,0,0,1,0,'{\"login\":[1661674068]}'),(15990,'74.220.219.213','normal','',0,0,0,0,0,'[]'),(15991,'164.92.205.253','normal','',0,0,0,0,0,'[]'),(15992,'5.2.73.13','normal','',0,0,0,0,4,'{\"nf\":[1654409792,1654409795,1654409796,1654409798]}'),(15993,'102.165.194.227','normal','',0,0,0,0,0,'[]'),(15994,'200.69.236.71','normal','',0,0,0,0,4,'{\"nf\":[1654426993,1654427035,1654427095,1654427128]}'),(15995,'197.189.205.42','normal','',0,0,0,0,4,'{\"nf\":[1654427058,1654427061,1654427062,1654427140]}'),(15996,'198.1.85.99','normal','',0,0,0,0,3,'{\"nf\":[1654427063,1654427065,1654427092]}'),(15997,'181.214.173.227','normal','',0,0,0,0,1,'{\"nf\":[1654431309]}'),(15998,'165.22.109.42','normal','',0,0,0,40,0,'{\"login\":[1654444780,1654492538,1654714276,1654899052,1655382312,1655787365,1655807051,1655810711,1656259644,1656779351,1657057788,1657062843,1657084829,1657098228,1658711572,1658722280,1658823176,1659001095,1659754684,1659973820,1659994364,1660010452,1660145390,1660211898,1660418148,1660435013,1660449925,1660610126,1660769590,1660773812,1660778064,1661182758,1661334133,1661508015,1661670973,1662347798,1662652021,1662710593,1662722874,1663007530]}'),(15999,'165.227.98.188','normal','',0,0,0,0,0,'[]'),(16000,'54.218.97.55','normal','',0,0,0,0,0,'[]'),(16001,'34.219.121.180','normal','',0,0,0,0,0,'[]'),(16002,'52.12.79.100','normal','',0,0,0,0,0,'[]'),(16003,'66.249.66.51','normal','',0,0,0,0,0,'[]'),(16004,'105.185.159.231','normal','',0,0,0,0,0,'[]'),(16005,'205.210.31.19','normal','',0,0,0,0,0,'[]'),(16006,'131.108.234.66','normal','',0,0,0,9,0,'{\"login\":[1654491698,1654549571,1655307751,1656764682,1656795836,1656810953,1656825483,1657432169,1657493993]}'),(16007,'95.216.58.66','normal','',0,0,0,1,0,'{\"login\":[1654492015]}'),(16008,'185.217.125.241','normal','',0,0,0,7,0,'{\"login\":[1654493019,1654643182,1656777072,1656788402,1656793794,1656820391,1656821024]}'),(16009,'211.135.205.209','normal','',0,0,0,0,0,'[]'),(16010,'103.145.163.102','normal','',0,0,0,4,0,'{\"login\":[1654493599,1654547680,1654552819,1654559327]}'),(16011,'34.93.94.58','normal','',0,0,0,2,0,'{\"login\":[1654494448,1654520079]}'),(16012,'196.251.57.19','normal','',0,0,0,0,0,'[]'),(16013,'104.131.174.40','normal','',0,0,0,6,0,'{\"login\":[1654495684,1654557151,1654564407,1655287775,1655352172,1655353475]}'),(16014,'102.182.46.51','normal','',0,0,0,0,0,'[]'),(16015,'41.147.0.184','normal','',0,0,0,0,0,'[]'),(16016,'85.128.143.49','normal','',0,0,0,1,0,'{\"login\":[1654497497]}'),(16017,'157.245.44.162','normal','',0,0,0,6,0,'{\"login\":[1654499541,1654521505,1654548343,1655299352,1655304198,1655309440]}'),(16018,'45.163.19.167','normal','',0,0,0,3,0,'{\"login\":[1654500655,1655325565,1655340336]}'),(16019,'139.180.157.71','normal','',0,0,0,1,0,'{\"login\":[1654501671]}'),(16020,'91.204.46.73','normal','',0,0,0,11,0,'{\"login\":[1654502343,1654557651,1654562745,1654590797,1654606830,1654618004,1655301369,1655320428,1655327795,1655332982,1655348037]}'),(16021,'190.183.61.97','normal','',0,0,0,5,0,'{\"login\":[1654503226,1660134603,1660153090,1660328069,1660673939]}'),(16022,'114.119.137.7','normal','',0,0,0,0,0,'[]'),(16023,'201.33.152.40','normal','',0,0,0,4,0,'{\"login\":[1654504384,1654539753,1654668865,1655342564]}'),(16024,'177.70.21.214','normal','',0,0,0,5,0,'{\"login\":[1654504721,1654642195,1655295294,1655306848,1655308798]}'),(16025,'44.230.244.185','normal','',0,0,0,1,0,'{\"login\":[1654505768]}'),(16026,'82.165.163.106','normal','',0,0,0,0,6,'{\"nf\":[1654505885,1654505889,1654505893,1654505898,1654505903,1654505907]}'),(16027,'142.93.115.34','normal','',0,0,0,6,0,'{\"login\":[1654506413,1654571424,1654572747,1655281870,1655288026,1655317670]}'),(16028,'35.153.39.123','normal','',0,0,0,6,0,'{\"login\":[1654507042,1654508594,1654511001,1654529095,1654534879,1654575005]}'),(16029,'159.203.80.245','normal','',0,0,0,18,0,'{\"login\":[1654507328,1654508274,1654537606,1654543443,1654659098,1655290619,1655305031,1655307253,1655329740,1655335075,1655338523,1655347899,1656749971,1656768581,1656774853,1656785358,1656787446,1656791616]}'),(16030,'197.255.156.164','normal','',0,0,0,0,0,'[]'),(16031,'161.97.174.44','normal','',0,0,0,3,0,'{\"login\":[1654508936,1654511311,1654624529]}'),(16032,'139.99.72.163','normal','',0,0,0,14,0,'{\"login\":[1654509811,1654521898,1655277763,1655288391,1656755623,1656758017,1656792382,1656807833,1656826640,1657456688,1657461020,1657472630,1657484457,1659352226]}'),(16033,'72.167.44.18','normal','',0,0,0,13,0,'{\"login\":[1654510103,1656745352,1656811873,1657430907,1657442530,1657444411,1657508653,1657678539,1659383397,1661759098,1661778497,1661807156,1661833623]}'),(16034,'85.128.143.156','normal','',0,0,0,1,0,'{\"login\":[1654511587]}'),(16035,'66.23.235.238','normal','',0,0,0,8,0,'{\"login\":[1654512813,1654602971,1654660177,1655326472,1655332414,1657444570,1657464906,1657499974]}'),(16036,'185.103.159.172','normal','',0,0,0,1,0,'{\"login\":[1654512954]}'),(16037,'102.165.94.104','normal','',0,0,0,0,0,'[]'),(16038,'149.129.128.98','normal','',0,0,0,9,0,'{\"login\":[1654513179,1655323810,1655342162,1656743357,1656818239,1657458348,1657475098,1657483713,1657519062]}'),(16039,'194.163.134.40','normal','',0,0,0,13,0,'{\"login\":[1654514050,1655321552,1656756051,1656769600,1656773927,1656790550,1656812482,1656817788,1656822084,1656828512,1657463748,1657512379,1657791234]}'),(16040,'185.243.11.17','normal','',0,0,0,6,0,'{\"login\":[1654514625,1654573250,1654577692,1654596599,1655324156,1655346963]}'),(16041,'165.22.243.23','normal','',0,0,0,1,0,'{\"login\":[1654515463]}'),(16042,'69.10.42.57','normal','',0,0,0,1,0,'{\"login\":[1654515764]}'),(16043,'3.144.95.175','normal','',0,0,0,1,0,'{\"login\":[1654516151]}'),(16044,'95.217.217.113','normal','',0,0,0,14,0,'{\"login\":[1654517070,1654545759,1655278311,1655347541,1656803298,1656815659,1657436445,1657448356,1657451273,1657486245,1657510802,1657832630,1657837454,1659412569]}'),(16045,'45.32.250.8','normal','',0,0,0,1,0,'{\"login\":[1654517345]}'),(16046,'207.46.234.202','normal','',0,0,0,24,0,'{\"login\":[1654517972,1654561068,1655292577,1655321927,1656750889,1656751102,1656766630,1656776337,1656809356,1656827599,1657436923,1657471532,1657488151,1657508264,1657726756,1659116140,1659145996,1659795042,1660755516,1660775507,1661748953,1661779252,1662385438,1662543310]}'),(16047,'195.201.170.114','normal','',0,0,0,7,0,'{\"login\":[1654519199,1654565366,1654587726,1654622199,1654648074,1655295732,1655296422]}'),(16048,'161.35.104.141','normal','',0,0,0,9,0,'{\"login\":[1654519485,1654591244,1654625938,1654628259,1655293590,1655319942,1655326382,1655333475,1655337367]}'),(16049,'194.233.85.228','normal','',0,0,0,1,0,'{\"login\":[1654520256]}'),(16050,'203.158.192.32','normal','',0,0,0,1,0,'{\"login\":[1654520339]}'),(16051,'188.166.151.25','normal','',0,0,0,1,0,'{\"login\":[1654523021]}'),(16052,'105.27.126.6','normal','',0,0,0,0,0,'[]'),(16053,'161.189.5.123','normal','',0,0,0,9,0,'{\"login\":[1654523625,1654656058,1655287629,1655315148,1656763733,1656786403,1656825420,1656830164,1656833059]}'),(16054,'122.160.98.63','normal','',0,0,0,1,0,'{\"login\":[1654523786]}'),(16055,'62.171.169.89','normal','',0,0,0,5,0,'{\"login\":[1654525716,1654583784,1654589462,1654611463,1655306530]}'),(16056,'40.81.141.97','normal','',0,0,0,2,0,'{\"login\":[1655321327,1657753949]}'),(16057,'40.81.141.96','normal','',0,0,0,2,0,'{\"login\":[1654525960,1657686163]}'),(16058,'207.154.218.135','normal','',0,0,0,8,0,'{\"login\":[1654527139,1656776858,1656793823,1656803730,1656823248,1656828957,1657437652,1657441749]}'),(16059,'13.213.53.60','normal','',0,0,0,1,0,'{\"login\":[1654528149]}'),(16060,'103.182.48.101','normal','',0,0,0,1,0,'{\"login\":[1654529789]}'),(16061,'50.31.160.191','normal','',0,0,0,1,0,'{\"login\":[1654530199]}'),(16062,'178.170.40.84','normal','',0,0,0,1,0,'{\"login\":[1654530565]}'),(16063,'143.244.147.196','normal','',0,0,0,28,0,'{\"login\":[1654531163,1654578146,1654585976,1654610924,1655287221,1655300640,1655317174,1655318955,1656745709,1656749563,1656749776,1656757900,1656770342,1656787154,1656796143,1656798241,1656799618,1656820812,1656826509,1657443926,1657473895,1657483423,1657496059,1657508961,1657509521,1657689012,1657703175,1657736907]}'),(16064,'178.128.105.173','normal','',0,0,0,2,0,'{\"login\":[1654531401,1654627237]}'),(16065,'177.71.160.60','normal','',0,0,0,2,0,'{\"login\":[1654531499,1654538357]}'),(16066,'23.96.7.148','normal','',0,0,0,12,0,'{\"login\":[1654532178,1654594890,1655357418,1655602514,1656131406,1657043231,1658096683,1659303801,1659371920,1660105730,1662318842,1662402485]}'),(16067,'185.58.41.86','normal','',0,0,0,8,0,'{\"login\":[1654532490,1654554748,1654592132,1655282583,1655283153,1655284293,1655343753,1655352463]}'),(16068,'80.74.138.2','normal','',0,0,0,8,0,'{\"login\":[1654532554,1654645250,1654884369,1654976792,1655196294,1655387947,1655600036,1655604989]}'),(16069,'62.133.206.92','normal','',0,0,0,2,0,'{\"login\":[1654532835,1654582050]}'),(16070,'84.201.170.241','normal','',0,0,0,5,0,'{\"login\":[1654532980,1654622293,1655694876,1655716840,1655720879]}'),(16071,'13.126.67.180','normal','',0,0,0,1,0,'{\"login\":[1654533476]}'),(16072,'185.207.136.92','normal','',0,0,0,6,0,'{\"login\":[1654533970,1654591358,1654753435,1654778097,1654882757,1655159143]}'),(16073,'54.36.149.17','normal','',0,0,0,0,0,'[]'),(16074,'102.177.192.162','normal','',0,0,0,2,0,'{\"login\":[1654534467,1655735222]}'),(16075,'197.89.10.157','normal','',0,0,0,0,0,'[]'),(16076,'95.175.101.204','normal','',0,0,0,2,0,'{\"login\":[1654534958,1655031049]}'),(16077,'40.81.141.99','normal','',0,0,0,3,0,'{\"login\":[1655292784,1657470971,1657800954]}'),(16078,'40.81.141.98','normal','',0,0,0,3,0,'{\"login\":[1654535585,1657450200,1657471133]}'),(16079,'18.202.223.102','normal','',0,0,0,0,0,'[]'),(16080,'70.34.206.189','normal','',0,0,0,3,0,'{\"login\":[1654536435,1654861090,1655056682]}'),(16081,'89.163.219.42','normal','',0,0,0,19,0,'{\"login\":[1654537426,1654642152,1654864635,1655233865,1655886823,1655896861,1656225729,1656425582,1656526444,1656816504,1657225752,1657271769,1658088007,1658322584,1658464927,1659133804,1659324629,1660681215,1661124509]}'),(16082,'171.244.0.91','normal','',0,0,0,20,0,'{\"login\":[1654540875,1655722233,1655797869,1656237686,1657065728,1657081848,1657265562,1658020827,1658729759,1659093835,1659269218,1660077656,1660245269,1660533441,1660669909,1660762100,1660933582,1661657620,1662228640,1662251549]}'),(16083,'143.244.137.16','normal','',0,0,0,2,0,'{\"login\":[1654541846,1655072399]}'),(16084,'187.162.68.98','normal','',0,0,0,3,0,'{\"login\":[1654542012,1654578573,1655282357]}'),(16085,'193.201.9.12','normal','',0,0,0,0,143,'{\"nf\":[1655179901,1655381069,1655416640,1655419969,1655427279,1655432603,1655491915,1655494549,1655499730,1655512701,1655517827,1655686524,1655806116,1655848955,1655916830,1655916915,1655922141,1655991306,1656046168,1656056753,1656159109,1656211056,1656243029,1656289801,1656335494,1656384717,1656395179,1656516864,1656568494,1656574902,1656625451,1656659386,1656692507,1656726120,1656759940,1656793711,1656827816,1656876621,1656926440,1656928460,1657026097,1657063523,1657088907,1657090765,1657094183,1657138850,1657138881,1657145759,1657148181,1657151476,1657151712,1657192788,1657194142,1657194986,1657232709,1657270376,1657273086,1657327802,1657328031,1657328324,1657390682,1657391347,1657391738,1657423612,1657498117,1657498555,1657498671,1657499445,1657499593,1657500218,1657500924,1657501323,1657501735,1657501805,1657502313,1657502322,1657502736,1657502906,1657534184,1657534586,1657534862,1657534865,1657535047,1657535624,1657541550,1657542156,1657542384,1657543380,1657543504,1657543584,1657543696,1657543749,1657574291,1657574306,1657574439,1657574498,1657574874,1657578410,1657578863,1657582125,1657590570,1657597328,1657599990,1657789541,1657847194,1658247018,1658248061,1658249445,1658306033,1658362928,1658419033,1658421906,1658473525,1658523698,1658568960,1658574813,1658576714,1658595381,1658843235,1658932638,1658982459,1659033924,1659084126,1659092670,1659100969,1659106496,1659109282,1659112295,1659112335,1659113671,1659114348,1659114496,1659145607,1659145618,1659146896,1659150975,1659153688,1659216718,1659224273,1659224278,1659229063,1659234918,1659238777]}'),(16086,'35.158.199.126','normal','',0,0,0,2,0,'{\"login\":[1654543316,1654799031]}'),(16087,'94.231.86.20','normal','',0,0,0,20,0,'{\"login\":[1654544786,1655441943,1656241258,1656297818,1657388305,1657541829,1658477661,1659125508,1659126771,1659569575,1660560879,1660606104,1661204386,1661226324,1661423522,1662749817,1662757997,1662824870,1662872032,1662874889]}'),(16088,'209.216.89.206','normal','',0,0,0,1,0,'{\"login\":[1654546123]}'),(16089,'185.2.4.134','normal','',0,0,0,32,0,'{\"login\":[1654547714,1654935951,1654946684,1655048854,1656756475,1657099720,1657161214,1657206097,1657997102,1658391369,1659595422,1659828902,1659974530,1660395830,1660432592,1660698449,1660730699,1660733152,1660980556,1661232441,1661375473,1661658999,1661678846,1661687942,1662106918,1662117563,1662142031,1662246000,1662562558,1662655771,1662751198,1663081235]}'),(16090,'34.212.131.19','normal','',0,0,0,0,0,'[]'),(16091,'157.245.85.245','normal','',0,0,0,2,0,'{\"login\":[1654549192,1654570581]}'),(16092,'167.99.250.151','normal','',0,0,0,5,0,'{\"login\":[1654550165,1654553628,1654729651,1654990183,1655222140]}'),(16093,'188.68.47.193','normal','',0,0,0,13,0,'{\"login\":[1654550746,1654600695,1654618474,1654622648,1654629698,1654670879,1655277976,1655283824,1655305868,1655315026,1655318172,1655325324,1655328843]}'),(16094,'45.79.120.96','normal','',0,0,0,21,0,'{\"login\":[1654551149,1654595908,1654627684,1654630335,1654758396,1654772315,1654800678,1654884763,1654944688,1655378580,1655812524,1656783941,1656845546,1656903238,1657063563,1657623923,1658353677,1658392487,1658540710,1658951283,1662899686]}'),(16095,'64.111.120.253','normal','',0,0,0,17,0,'{\"login\":[1654553129,1654931619,1655729021,1656240064,1657383290,1657530851,1657701048,1657827687,1657834061,1657990969,1658067593,1658694291,1660079607,1660934782,1661099960,1661233180,1661534044]}'),(16096,'125.212.225.132','normal','',0,0,0,0,1,'{\"nf\":[1654553152]}'),(16097,'128.199.176.110','normal','',0,0,0,7,0,'{\"login\":[1654554356,1654577241,1655299471,1655302119,1655311103,1655318234,1655322119]}'),(16098,'139.162.80.30','normal','',0,0,0,1,0,'{\"login\":[1654555626]}'),(16099,'172.104.9.241','normal','',0,0,0,14,0,'{\"login\":[1654556619,1655451016,1655560685,1656810440,1657313453,1657447816,1657457121,1657901726,1658090591,1658231554,1658240168,1658311194,1659103569,1659982881]}'),(16100,'134.209.187.109','normal','',0,0,0,2,0,'{\"login\":[1654556832,1654561903]}'),(16101,'94.231.110.252','normal','',0,0,0,1,0,'{\"login\":[1654558486]}'),(16102,'173.209.53.242','normal','',0,0,0,7,0,'{\"login\":[1654558900,1655277501,1655299279,1655340419,1661771261,1661803644,1661811034]}'),(16103,'52.7.73.235','normal','',0,0,0,2,0,'{\"login\":[1654559102,1655018524]}'),(16104,'23.20.219.100','normal','',0,0,0,3,0,'{\"login\":[1654560587,1654617008,1654635434]}'),(16105,'51.91.220.143','normal','',0,0,0,19,0,'{\"login\":[1654561600,1654896226,1655827970,1655891451,1656890452,1657525649,1657838671,1658451279,1658684354,1659149869,1660242104,1660518706,1661145869,1661245395,1661616922,1661990197,1662134007,1662247113,1662760593]}'),(16106,'62.80.147.181','normal','',0,0,0,3,0,'{\"login\":[1654562326,1654646101,1654667795]}'),(16107,'13.213.229.81','normal','',0,0,0,1,0,'{\"login\":[1654564030]}'),(16108,'47.107.227.251','normal','',0,0,0,4,0,'{\"login\":[1654565761,1654652532,1655291157,1655338877]}'),(16109,'124.220.171.131','normal','',0,0,0,0,0,'[]'),(16110,'34.148.76.154','normal','',0,0,0,4,0,'{\"login\":[1654571915,1654597501,1655279322,1655351403]}'),(16111,'69.160.160.56','normal','',0,0,0,0,1,'{\"nf\":[1654577292]}'),(16112,'151.106.32.201','normal','',0,0,0,17,0,'{\"login\":[1654579413,1654639762,1654670373,1655283611,1656773361,1656813016,1656825849,1657431392,1657455323,1657471316,1657482520,1657520960,1657679478,1657790618,1660254961,1660342780,1660419255]}'),(16113,'199.15.251.34','normal','',0,0,0,0,0,'[]'),(16114,'92.204.135.241','normal','',0,0,0,1,0,'{\"login\":[1654581572]}'),(16115,'157.245.198.117','normal','',0,0,0,1,0,'{\"login\":[1654582901]}'),(16116,'185.100.128.30','normal','',0,0,0,2,0,'{\"login\":[1654584862,1655179810]}'),(16117,'169.61.68.246','normal','',0,0,0,2,0,'{\"login\":[1654585538,1654671897]}'),(16118,'67.205.28.4','normal','',0,0,0,5,0,'{\"login\":[1654585859,1654593873,1654873835,1655414900,1655539385]}'),(16119,'82.196.3.73','normal','',0,0,0,2,0,'{\"login\":[1654586357,1654586856]}'),(16120,'80.211.165.149','normal','',0,0,0,10,0,'{\"login\":[1654587356,1654752217,1654798209,1656738666,1657038688,1657112661,1657488504,1657490143,1657529418,1658069385]}'),(16121,'109.115.229.103','normal','',0,0,0,3,0,'{\"login\":[1654587861,1654639957,1654943889]}'),(16122,'213.108.110.135','normal','',0,0,0,6,0,'{\"login\":[1654588357,1654804819,1655440633,1656006318,1656076105,1656232914]}'),(16123,'82.165.184.76','normal','',0,0,0,0,0,'[]'),(16124,'139.59.26.124','normal','',0,0,0,0,0,'[]'),(16125,'159.223.50.102','normal','',0,0,0,4,0,'{\"login\":[1654590863,1654786335,1655469534,1655725605]}'),(16126,'69.163.152.108','normal','',0,0,0,18,0,'{\"login\":[1654593375,1654948678,1655175890,1655245433,1655461566,1655463546,1655889896,1657040961,1657223628,1657871427,1659018291,1659821949,1660737520,1660974509,1661189817,1661777194,1662009662,1662660627]}'),(16127,'197.94.79.245','normal','',0,0,0,0,0,'[]'),(16128,'178.62.230.17','normal','',0,0,0,2,0,'{\"login\":[1654594281,1654662149]}'),(16129,'105.187.38.156','normal','',0,0,0,0,0,'[]'),(16130,'139.59.95.88','normal','',0,0,0,6,0,'{\"login\":[1654596422,1654858582,1654906355,1655074384,1655361568,1655374881]}'),(16131,'47.106.196.17','normal','',0,0,0,2,0,'{\"login\":[1654643810,1655343355]}'),(16132,'119.82.141.225','normal','',0,0,0,3,0,'{\"login\":[1654599821,1654642672,1655321117]}'),(16133,'159.65.141.93','normal','',0,0,0,13,0,'{\"login\":[1654600257,1654615098,1654632530,1654655029,1655279821,1655323316,1656767365,1656779019,1656790521,1656794979,1656827315,1657448090,1658675510]}'),(16134,'103.145.50.184','normal','',0,0,0,1,0,'{\"login\":[1655130305]}'),(16135,'193.187.129.8','normal','',0,0,0,11,0,'{\"login\":[1654603193,1655381683,1655790957,1657105834,1657144106,1657159947,1657255795,1657455063,1657605299,1657675031,1658075672]}'),(16136,'207.154.250.8','normal','',0,0,0,29,0,'{\"login\":[1654604252,1654617174,1654646138,1654780024,1655016150,1655195311,1655468865,1655780572,1655809788,1656429982,1657095981,1657563254,1657757649,1658018172,1658080999,1658343243,1658420363,1658611086,1658681435,1659300765,1660495241,1661337868,1661359923,1661697957,1661757354,1662244878,1662320580,1662709370,1662768298]}'),(16137,'17.121.114.38','normal','',0,0,0,0,0,'[]'),(16138,'54.37.156.240','normal','',0,0,0,26,0,'{\"login\":[1654608150,1655252231,1656532118,1656777373,1657273849,1657448849,1657837747,1657841447,1657849794,1658320944,1658606217,1659126140,1659134443,1659996428,1660287805,1660752120,1661006352,1661108523,1661223147,1661287277,1661331326,1661674255,1662272887,1662295481,1662395946,1662870613]}'),(16139,'109.234.106.179','normal','',0,0,0,4,0,'{\"login\":[1654608711,1654723688,1655451669,1656035806]}'),(16140,'43.129.182.7','normal','',0,0,0,1,0,'{\"login\":[1654609397]}'),(16141,'184.72.180.158','normal','',0,0,0,1,0,'{\"login\":[1654609917]}'),(16142,'52.6.106.62','normal','',0,0,0,1,0,'{\"login\":[1654610963]}'),(16143,'66.33.193.231','normal','',0,0,0,20,0,'{\"login\":[1654612109,1655249320,1655457597,1655656683,1657100491,1658188522,1658593400,1658595340,1660007632,1660076568,1660399310,1660603433,1661071131,1661320416,1661390294,1661679271,1661722184,1662215088,1662678618,1663141073]}'),(16144,'105.242.161.142','normal','',0,0,0,0,0,'[]'),(16145,'47.241.228.110','normal','',0,0,0,0,0,'[]'),(16146,'193.6.176.97','normal','',0,0,0,4,0,'{\"login\":[1654614383,1654778740,1654898647,1655472220]}'),(16147,'82.157.25.77','normal','',0,0,0,0,0,'[]'),(16148,'204.13.182.155','normal','',0,0,0,2,0,'{\"login\":[1654615498,1655294462]}'),(16149,'188.166.236.35','normal','',0,0,0,27,0,'{\"login\":[1654616062,1654942295,1655234831,1655397732,1655553398,1655788272,1656268625,1656318258,1656539665,1656800491,1657083338,1657289833,1657301610,1657310964,1657505597,1659748769,1660009746,1660734394,1660788363,1660967258,1661263424,1661653971,1662194840,1662390216,1662412360,1662565184,1662956217]}'),(16150,'104.131.68.19','normal','',0,0,0,27,0,'{\"login\":[1654618273,1654929255,1655042937,1655443248,1655737993,1656074833,1656822810,1657307872,1657836820,1658004966,1658233267,1658294900,1658571787,1658811077,1658936025,1658968778,1659602920,1660335219,1660415794,1660550761,1660793345,1661001331,1661122022,1661128249,1661706084,1661767460,1662311798]}'),(16151,'168.119.80.254','normal','',0,0,0,29,0,'{\"login\":[1654618820,1654726057,1654756516,1655243501,1655674312,1655813903,1656117583,1656794509,1656828762,1657311585,1657446772,1657515460,1657629229,1658192031,1658653630,1658714529,1659284783,1659368046,1659762776,1660070583,1660938329,1661625525,1661650800,1661682864,1661778217,1662429022,1662792444,1663076741,1663107120]}'),(16152,'139.28.223.161','normal','',0,0,0,1,0,'{\"login\":[1654619369]}'),(16153,'116.202.232.57','normal','',0,0,0,17,0,'{\"login\":[1654621283,1655287500,1655290084,1655305770,1655308562,1655340764,1656772200,1656772451,1656818491,1656823568,1657435603,1657478718,1657484154,1657497963,1657501583,1657510145,1657516647]}'),(16154,'178.18.252.243','normal','',0,0,0,4,0,'{\"login\":[1654621373,1655580562,1655816210,1657054898]}'),(16155,'169.1.209.234','normal','',0,0,0,0,0,'[]'),(16156,'185.244.175.110','normal','',0,0,0,0,3,'{\"nf\":[1654625348,1654659645,1654750054]}'),(16157,'128.199.105.159','normal','',0,0,0,20,0,'{\"login\":[1654625463,1654715449,1654717200,1654793681,1654941494,1654945088,1655448417,1655741463,1657154897,1657703471,1658380808,1658407991,1658481058,1658557368,1658610090,1660300383,1660487848,1660562223,1661394685,1661407603]}'),(16158,'41.113.198.117','normal','',0,0,0,0,1,'{\"nf\":[1654628897]}'),(16159,'45.147.179.116','normal','',0,0,0,3,0,'{\"login\":[1654629459,1654767832,1655044906]}'),(16160,'178.62.108.24','normal','',0,0,0,7,0,'{\"login\":[1654630575,1655308646,1655350842,1655352760,1657812733,1657833944,1659369234]}'),(16161,'79.143.183.74','normal','',0,0,0,4,0,'{\"login\":[1654631567,1654666266,1655324010,1655328233]}'),(16162,'140.238.240.238','normal','',0,0,0,1,0,'{\"login\":[1654632520]}'),(16163,'115.57.144.91','normal','',0,0,0,0,0,'[]'),(16164,'118.249.58.227','normal','',0,0,0,0,0,'[]'),(16165,'39.73.137.242','normal','',0,0,0,0,0,'[]'),(16166,'188.164.193.182','normal','',0,0,0,19,0,'{\"login\":[1654633473,1654641700,1655301264,1655330133,1655339012,1655344109,1656758342,1656789203,1656794094,1656797756,1656810138,1656820161,1656828891,1657430088,1657439457,1657457147,1657478849,1657480140,1657518070]}'),(16167,'157.90.84.142','normal','',0,0,0,1,0,'{\"login\":[1654633833]}'),(16168,'62.205.10.82','normal','',0,0,0,1,0,'{\"login\":[1654633968]}'),(16169,'54.191.134.155','normal','',0,0,0,0,0,'[]'),(16170,'34.220.158.206','normal','',0,0,0,0,0,'[]'),(16171,'54.213.60.77','normal','',0,0,0,0,0,'[]'),(16172,'186.50.30.161','normal','',0,0,0,1,0,'{\"login\":[1654634269]}'),(16173,'35.90.54.164','normal','',0,0,0,0,0,'[]'),(16174,'64.233.173.163','normal','',0,0,0,0,1,'{\"nf\":[1654635694]}'),(16175,'45.32.221.238','normal','',0,0,0,1,0,'{\"login\":[1654635872]}'),(16176,'51.89.47.206','normal','',0,0,0,26,0,'{\"login\":[1654636454,1654797798,1654892630,1654994065,1655046221,1655171957,1655466203,1655652619,1656758437,1656885935,1657237256,1657760841,1658715566,1658809198,1659766195,1660107838,1660187584,1660359687,1660779777,1661216246,1661380621,1661424593,1662273951,1662325005,1662373284,1663127467]}'),(16177,'64.227.108.223','normal','',0,0,0,2,0,'{\"login\":[1654636801,1654651019]}'),(16178,'68.183.86.247','normal','',0,0,0,18,0,'{\"login\":[1654637325,1656057803,1656557713,1656872251,1657101289,1657122813,1657488783,1657601333,1658243649,1658490114,1659283729,1659621595,1660690738,1660722220,1661691361,1662258228,1662787130,1662954696]}'),(16179,'64.90.48.207','normal','',0,0,0,8,0,'{\"login\":[1654637762,1655018127,1655054730,1655157204,1655594329,1655785559,1656142874,1656902490]}'),(16180,'54.36.148.38','normal','',0,0,0,0,0,'[]'),(16181,'135.181.73.37','normal','',0,0,0,13,0,'{\"login\":[1654638198,1654790403,1655015357,1655026580,1655055381,1655070416,1655244466,1655445190,1655880055,1656184233,1656235305,1656915293,1657639607]}'),(16182,'163.22.17.119','normal','',0,0,0,1,0,'{\"login\":[1654638637]}'),(16183,'107.175.111.233','normal','',0,0,0,16,0,'{\"login\":[1654639074,1655552372,1657045532,1657898882,1658065803,1658821225,1658825794,1658993872,1659378104,1659840682,1660220627,1661328705,1661401282,1661635026,1661674476,1662168532]}'),(16184,'77.65.215.10','normal','',0,0,0,6,0,'{\"login\":[1654644166,1655312427,1655346010,1655347160,1657450834,1657460558]}'),(16185,'54.255.177.237','normal','',0,0,0,1,0,'{\"login\":[1654644807]}'),(16186,'102.39.189.217','normal','',0,0,0,0,0,'[]'),(16187,'66.70.177.215','normal','',0,0,0,36,0,'{\"login\":[1654649057,1655291998,1655296095,1655296870,1655315821,1655328363,1655331909,1656776081,1656776193,1656819024,1656821655,1656821984,1656831755,1657489262,1657499367,1657652185,1657829325,1659365857,1659370931,1659387893,1659388153,1659404021,1659417912,1660357781,1660688624,1660731655,1660923525,1661762869,1661781930,1661798680,1661805089,1661812569,1661825512,1661835922,1661838434,1661841940]}'),(16188,'178.128.109.164','normal','',0,0,0,2,0,'{\"login\":[1654650036,1654667283]}'),(16189,'114.119.136.113','normal','',0,0,0,0,0,'[]'),(16190,'193.56.254.35','normal','',0,0,0,1,0,'{\"login\":[1654655530]}'),(16191,'205.210.31.34','normal','',0,0,0,0,0,'[]'),(16192,'54.36.148.28','normal','',0,0,0,0,0,'[]'),(16193,'185.158.202.250','normal','',0,0,0,6,0,'{\"login\":[1654660619,1655324681,1657438987,1657440312,1659378436,1659399829]}'),(16194,'162.214.80.100','normal','',0,0,0,0,2,'{\"nf\":[1662630637,1662630638]}'),(16195,'54.39.133.112','normal','',0,0,0,0,0,'[]'),(16196,'177.222.54.214','normal','',0,0,0,0,0,'[]'),(16197,'191.96.150.226','normal','',0,0,0,0,0,'[]'),(16198,'178.64.50.37','normal','',0,0,0,0,0,'[]'),(16199,'45.129.18.216','normal','',0,0,0,0,0,'[]'),(16200,'192.95.30.21','normal','',0,0,0,0,0,'[]'),(16201,'119.18.49.12','normal','',0,0,0,0,0,'[]'),(16202,'50.87.144.53','normal','',0,0,0,0,0,'[]'),(16203,'197.87.186.191','normal','',0,0,0,0,0,'[]'),(16204,'162.215.253.215','normal','',0,0,0,0,0,'[]'),(16205,'185.116.60.5','normal','',0,0,0,0,0,'[]'),(16206,'91.234.46.71','normal','',0,0,0,0,0,'[]'),(16207,'102.134.212.122','normal','',0,0,0,0,2,'{\"nf\":[1654696580,1654696608]}'),(16208,'165.0.50.2','normal','',0,0,0,0,2,'{\"nf\":[1654703617,1654703727]}'),(16209,'41.3.208.212','normal','',0,0,0,0,2,'{\"nf\":[1654703622,1654704801]}'),(16210,'62.213.218.78','normal','',0,0,0,1,0,'{\"login\":[1654705452]}'),(16211,'51.91.121.242','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1654803811,0,1654803511,0,41,'{\"nf\":[1656861745],\"login\":[]}'),(16212,'120.35.11.210','normal','',0,0,0,0,0,'[]'),(16213,'37.115.115.54','normal','',0,0,0,0,0,'[]'),(16214,'37.115.115.54','normal','',0,0,0,0,0,'[]'),(16215,'185.207.153.233','normal','',0,0,0,11,0,'{\"login\":[1654709581,1654732655,1654928863,1655024961,1655031858,1655667068,1655728340,1656019274,1656781970,1656932347,1657481855]}'),(16216,'82.146.61.150','normal','',0,0,0,4,0,'{\"login\":[1654710162,1655019725,1655359785,1656788555]}'),(16217,'138.68.67.56','normal','',0,0,0,13,0,'{\"login\":[1654710748,1654978682,1655781487,1656083574,1656805129,1657245808,1657740307,1657824942,1659745232,1660164083,1660337498,1660452412,1660747776]}'),(16218,'178.17.44.115','normal','',0,0,0,1,0,'{\"login\":[1654711335]}'),(16219,'185.2.5.73','normal','',0,0,0,17,0,'{\"login\":[1654713094,1654761508,1654899453,1654936346,1655353798,1655787830,1656194385,1656322826,1656336692,1657304794,1657341168,1657462314,1657466482,1657475447,1657847007,1658234124,1658604163]}'),(16220,'197.245.221.41','normal','',0,0,0,0,0,'[]'),(16221,'159.65.111.42','normal','',0,0,0,0,4,'{\"nf\":[1654714802,1654714865,1654714884,1654714888]}'),(16222,'51.75.196.157','normal','',0,0,0,0,3,'{\"nf\":[1654714817,1654714852,1654714857]}'),(16223,'34.220.92.93','normal','',0,0,0,0,0,'[]'),(16224,'34.219.12.208','normal','',0,0,0,0,0,'[]'),(16225,'34.211.4.86','normal','',0,0,0,0,0,'[]'),(16226,'54.203.80.123','normal','',0,0,0,0,0,'[]'),(16227,'114.119.144.105','normal','',0,0,0,0,0,'[]'),(16228,'54.36.148.187','normal','',0,0,0,0,0,'[]'),(16229,'67.205.39.9','normal','',0,0,0,30,0,'{\"login\":[1654732053,1655597585,1655682889,1655687542,1655782855,1655791407,1655817611,1656089820,1656734021,1656933257,1657114199,1657297571,1657314701,1657424036,1657442660,1657510396,1658028886,1658085375,1658196460,1658271817,1659751132,1659776258,1660206628,1660468240,1660662986,1660782348,1661207533,1661415957,1662724112,1662746865]}'),(16230,'66.249.66.53','normal','',0,0,0,0,0,'[]'),(16231,'69.163.152.12','normal','',0,0,0,11,0,'{\"login\":[1654737458,1655027798,1655031452,1655722905,1657095244,1657399514,1657555669,1658007596,1662092786,1662649492,1663111129]}'),(16232,'13.86.24.92','normal','',0,0,0,0,10,'{\"nf\":[1654742808,1654742811,1654742814,1654742828,1654742834,1654742837,1654806549,1654806557,1655079999,1655080005]}'),(16233,'162.240.79.225','normal','',0,0,0,0,0,'[]'),(16234,'65.1.110.214','normal','',0,0,0,0,0,'[]'),(16235,'162.241.24.113','normal','',0,0,0,0,0,'[]'),(16236,'147.182.249.22','normal','',0,0,0,16,0,'{\"login\":[1654751003,1654806492,1655077686,1655238683,1656069906,1656545321,1656550076,1657283377,1657412950,1657532924,1657581898,1659619361,1661522079,1661667165,1661726209,1662014062]}'),(16237,'119.243.43.137','normal','',0,0,0,0,0,'[]'),(16238,'52.12.175.187','normal','',0,0,0,1,0,'{\"login\":[1654759632]}'),(16239,'193.189.100.194','normal','',0,0,0,0,0,'[]'),(16240,'54.219.238.110','normal','',0,0,0,1,0,'{\"login\":[1654762144]}'),(16241,'165.255.93.112','normal','',0,0,0,0,0,'[]'),(16242,'159.89.167.16','normal','',0,0,0,3,0,'{\"login\":[1654767203,1655474919,1655721557]}'),(16243,'35.241.156.161','normal','',0,0,0,9,0,'{\"login\":[1654768465,1655679583,1657441615,1658671484,1658746173,1659105773,1659130677,1659984890,1660163071]}'),(16244,'47.98.240.64','normal','',0,0,0,10,0,'{\"login\":[1654769742,1654803156,1656747299,1657545453,1657715713,1657999726,1658068495,1658478794,1658637224,1658713503]}'),(16245,'157.55.39.122','normal','',0,0,0,0,0,'[]'),(16246,'91.230.225.15','blocked','You have been locked out due to too many invalid login attempts.',1654770355,1654770055,0,5,0,'{\"login\":[1654770051,1654770051,1654770052,1654770053,1654770054]}'),(16247,'93.114.185.76','normal','',0,0,0,28,0,'{\"login\":[1654771021,1654853070,1654974278,1655181753,1655251258,1655776015,1656894987,1657165246,1657323412,1658033383,1658199111,1658428956,1658691309,1659323564,1659752317,1660189795,1660356133,1661117087,1661148341,1661421363,1661731283,1661984237,1662099141,1662216244,1662250430,1662281360,1662306422,1662654526]}'),(16248,'177.93.105.211','normal','',0,0,0,3,0,'{\"login\":[1654771668,1654783909,1654872299]}'),(16249,'41.71.27.236','normal','',0,0,0,0,0,'[]'),(16250,'45.77.34.5','normal','',0,0,0,0,0,'[]'),(16251,'41.147.1.6','normal','',0,0,0,0,0,'[]'),(16252,'208.113.171.103','normal','',0,0,0,21,0,'{\"login\":[1654775524,1654904722,1655182725,1655366380,1655669697,1655812072,1655814827,1656221007,1656247285,1657138154,1657215073,1658398010,1659728844,1659783275,1661086776,1661647169,1661649107,1661655679,1662323228,1662682304,1663123399]}'),(16253,'34.240.144.182','normal','',0,0,0,1,0,'{\"login\":[1654787552]}'),(16254,'18.181.214.34','normal','',0,0,0,1,0,'{\"login\":[1654787963]}'),(16255,'196.61.113.138','normal','',0,0,0,0,0,'[]'),(16256,'46.105.54.20','normal','',0,0,0,0,1,'{\"nf\":[1654788827]}'),(16257,'47.116.48.109','normal','',0,0,0,19,0,'{\"login\":[1654789596,1654806904,1655470201,1655718191,1656273128,1656789879,1656838888,1657113564,1657339231,1657731517,1658014627,1658101038,1658405742,1659138287,1660244644,1661156803,1662351496,1662893734,1663142452]}'),(16258,'198.57.247.157','normal','',0,0,0,0,0,'[]'),(16259,'137.184.112.149','normal','',0,0,0,0,0,'[]'),(16260,'164.92.197.65','normal','',0,0,0,2,0,'{\"login\":[1654799441,1654943493]}'),(16261,'95.217.184.34','normal','',0,0,0,0,0,'[]'),(16262,'35.89.247.155','normal','',0,0,0,0,0,'[]'),(16263,'37.187.24.87','normal','',0,0,0,2,0,'{\"login\":[1654805653,1654863620]}'),(16264,'102.65.62.223','normal','',0,0,0,0,0,'[]'),(16265,'146.70.40.250','normal','',0,0,0,0,1,'{\"nf\":[1654810753]}'),(16266,'198.235.24.25','normal','',0,0,0,0,0,'[]'),(16267,'165.232.167.37','normal','',0,0,0,0,0,'[]'),(16268,'109.248.175.79','normal','',0,0,0,0,3,'{\"nf\":[1654823469,1654830429,1654836874]}'),(16269,'66.249.66.88','normal','',0,0,0,0,0,'[]'),(16270,'167.114.158.215','normal','',0,0,0,0,0,'[]'),(16271,'69.46.23.106','normal','',0,0,0,0,0,'[]'),(16272,'18.170.155.197','normal','',0,0,0,0,0,'[]'),(16273,'114.119.146.45','normal','',0,0,0,0,0,'[]'),(16274,'47.104.209.196','normal','',0,0,0,0,0,'[]'),(16275,'93.158.90.66','normal','',0,0,0,0,1,'{\"nf\":[1654848158]}'),(16276,'93.158.90.65','normal','',0,0,0,0,0,'[]'),(16277,'198.13.40.95','normal','',0,0,0,0,0,'[]'),(16278,'103.130.218.189','normal','',0,0,0,28,0,'{\"login\":[1654848613,1654905129,1655030237,1656854236,1656892717,1657413746,1657573918,1657627255,1657717363,1657839596,1657853542,1658032494,1658324234,1658485587,1659104669,1659135085,1659411705,1659417261,1659571730,1660146455,1660237529,1660733772,1660758006,1661217553,1661680854,1662220980,1662419704,1662924737]}'),(16279,'93.158.161.60','normal','',0,0,0,0,0,'[]'),(16280,'17.121.112.24','normal','',0,0,0,0,0,'[]'),(16281,'47.243.9.61','normal','',0,0,0,0,0,'[]'),(16282,'47.243.15.50','normal','',0,0,0,0,0,'[]'),(16283,'41.163.1.115','normal','',0,0,0,0,0,'[]'),(16284,'82.165.182.213','normal','',0,0,0,4,0,'{\"login\":[1654857078,1654933195,1654986981,1655601687]}'),(16285,'167.172.142.236','normal','',0,0,0,16,0,'{\"login\":[1654857580,1655793225,1656924205,1656925104,1657685060,1658009490,1658637862,1658705344,1658834276,1659326727,1660322811,1660530732,1660752968,1661693161,1662339524,1662371407]}'),(16286,'165.22.0.191','normal','',0,0,0,11,0,'{\"login\":[1654859581,1655391078,1655408364,1655818544,1656744659,1657320275,1657493864,1657591203,1658011111,1658748150,1658961465]}'),(16287,'173.252.83.1','normal','',0,0,0,0,0,'[]'),(16288,'34.77.106.220','normal','',0,0,0,8,0,'{\"login\":[1654866160,1655036753,1655443896,1656045089,1657217320,1657285491,1657389981,1657406622]}'),(16289,'67.205.1.9','normal','',0,0,0,13,0,'{\"login\":[1654868719,1655242537,1655371827,1655397131,1655694208,1656793184,1657211597,1657858232,1658186815,1658360089,1659393102,1660559542,1660717222]}'),(16290,'13.233.10.30','normal','',0,0,0,1,0,'{\"login\":[1654869751]}'),(16291,'47.105.39.63','normal','',0,0,0,0,0,'[]'),(16292,'118.109.210.220','normal','',0,0,0,0,0,'[]'),(16293,'80.87.10.11','normal','',0,0,0,19,0,'{\"login\":[1654875886,1655226120,1655730399,1655796052,1656884429,1657240415,1657579235,1658019055,1658079234,1658280762,1658377552,1658395833,1659358259,1660118162,1660349095,1660404003,1660441178,1660464517,1660672213]}'),(16294,'119.18.54.11','normal','',0,0,0,0,0,'[]'),(16295,'72.14.201.195','normal','',0,0,0,0,0,'[]'),(16296,'124.153.66.86','normal','',0,0,0,14,0,'{\"login\":[1654882349,1655533319,1655890669,1656805793,1658029788,1658030689,1658333443,1658538450,1659797400,1660777223,1661620404,1662280299,1663037797,1663060149]}'),(16297,'35.197.62.248','normal','',0,0,0,0,3,'{\"nf\":[1654883204,1655334508,1661010277]}'),(16298,'20.25.13.178','normal','',0,0,0,0,0,'[]'),(16299,'195.231.84.205','normal','',0,0,0,6,0,'{\"login\":[1654883569,1655353195,1655574127,1655784655,1656895732,1656909133]}'),(16300,'99.79.103.24','normal','',0,0,0,1,0,'{\"login\":[1654885545]}'),(16301,'18.182.135.144','normal','',0,0,0,5,0,'{\"login\":[1654888289,1654894232,1654942695,1654979317,1659815185]}'),(16302,'34.219.47.149','normal','',0,0,0,0,0,'[]'),(16303,'18.237.189.174','normal','',0,0,0,0,0,'[]'),(16304,'18.236.250.35','normal','',0,0,0,0,0,'[]'),(16305,'67.205.62.27','normal','',0,0,0,19,0,'{\"login\":[1654893426,1655565116,1655910990,1656524549,1657750520,1658433363,1658476534,1658826451,1659568495,1660479050,1661198175,1661211489,1661418108,1661692421,1662118888,1662151054,1662376102,1662727881,1662884982]}'),(16306,'95.111.218.212','normal','',0,0,0,3,0,'{\"login\":[1654907581,1655369405,1655371220]}'),(16307,'199.249.230.147','normal','',0,0,0,0,0,'[]'),(16308,'65.21.80.198','normal','',0,0,0,0,0,'[]'),(16309,'105.184.208.157','normal','',0,0,0,0,0,'[]'),(16310,'50.87.224.105','normal','',0,0,0,0,0,'[]'),(16311,'69.195.110.65','normal','',0,0,0,0,0,'[]'),(16312,'102.222.180.208','normal','',0,0,0,0,0,'[]'),(16313,'89.151.107.91','normal','',0,0,0,0,0,'[]'),(16314,'217.70.32.2','normal','',0,0,0,0,0,'[]'),(16315,'103.216.113.120','normal','',0,0,0,0,0,'[]'),(16316,'91.194.60.2','normal','',0,0,0,0,0,'[]'),(16317,'66.85.29.18','normal','',0,0,0,0,0,'[]'),(16318,'217.68.241.165','normal','',0,0,0,0,0,'[]'),(16319,'104.131.56.182','normal','',0,0,0,0,0,'[]'),(16320,'27.123.220.59','normal','',0,0,0,0,0,'[]'),(16321,'66.228.48.122','normal','',0,0,0,0,0,'[]'),(16322,'202.38.173.169','normal','',0,0,0,0,0,'[]'),(16323,'138.197.133.150','normal','',0,0,0,0,0,'[]'),(16324,'138.197.133.150','normal','',0,0,0,0,0,'[]'),(16325,'185.182.90.30','normal','',0,0,0,0,0,'[]'),(16326,'47.105.42.206','normal','',0,0,0,0,0,'[]'),(16327,'211.135.140.213','normal','',0,0,0,0,0,'[]'),(16328,'65.0.20.147','normal','',0,0,0,0,0,'[]'),(16329,'144.217.15.207','normal','',0,0,0,21,0,'{\"login\":[1654930829,1655544115,1656063873,1656163321,1656250892,1657072967,1657312826,1657415338,1657728223,1659135726,1659975953,1660104641,1660127211,1660506907,1660720360,1660975707,1661313162,1662002154,1662298743,1662317088,1662331312]}'),(16330,'54.153.124.49','normal','',0,0,0,0,0,'[]'),(16331,'13.114.68.203','normal','',0,0,0,1,0,'{\"login\":[1654932817]}'),(16332,'198.235.24.33','normal','',0,0,0,0,0,'[]'),(16333,'138.201.201.6','normal','',0,0,0,10,0,'{\"login\":[1654939114,1655807496,1656224541,1656229329,1656562478,1657046294,1657128338,1657444710,1657519111,1657575234]}'),(16334,'45.85.147.223','normal','',0,0,0,0,0,'[]'),(16335,'13.48.43.53','normal','',0,0,0,0,0,'[]'),(16336,'188.166.228.39','normal','',0,0,0,0,3,'{\"nf\":[1654950746,1654950748,1654950749]}'),(16337,'35.212.175.213','normal','',0,0,0,0,1,'{\"nf\":[1654954272]}'),(16338,'3.126.55.103','normal','',0,0,0,0,0,'[]'),(16339,'159.65.200.228','normal','',0,0,0,20,0,'{\"login\":[1654960264,1654981843,1655793700,1655881530,1656889701,1657117342,1657135751,1657210449,1657724893,1658559438,1658989778,1659738174,1660209323,1661097467,1661193586,1662095371,1662341361,1662377030,1662393094,1662653282]}'),(16340,'54.161.41.102','normal','',0,0,0,0,0,'[]'),(16341,'159.89.109.117','normal','',0,0,0,15,0,'{\"login\":[1654971121,1655221136,1656127621,1657527741,1657821288,1658061337,1658072988,1659012828,1659199317,1659988903,1660191969,1661247718,1662556059,1663004400,1663043235]}'),(16342,'18.236.165.138','normal','',0,0,0,0,0,'[]'),(16343,'20.210.128.76','normal','',0,0,0,0,0,'[]'),(16344,'54.36.148.31','normal','',0,0,0,0,0,'[]'),(16345,'88.198.14.131','normal','',0,0,0,9,0,'{\"login\":[1654987618,1655061900,1655827502,1656284343,1656843544,1658251363,1659102477,1659266057,1659306869]}'),(16346,'178.128.101.194','normal','',0,0,0,0,11,'{\"nf\":[1654989800,1654989817,1654989832,1654989851,1654989865,1654989877,1654989893,1654989912,1654989930,1654989953,1654989979]}'),(16347,'185.220.101.152','normal','',0,0,0,0,0,'[]'),(16348,'199.249.230.74','normal','',0,0,0,1,0,'{\"login\":[1654999327]}'),(16349,'162.215.209.125','normal','',0,0,0,4,0,'{\"login\":[1655017730,1655588643,1655729707,1657500597]}'),(16350,'185.33.145.237','normal','',0,0,0,4,0,'{\"login\":[1655018923,1655052123,1655224141,1655404226]}'),(16351,'46.150.192.68','normal','',0,0,0,1,0,'{\"login\":[1655020916]}'),(16352,'38.18.35.237','normal','',0,0,0,0,0,'[]'),(16353,'194.126.177.16','normal','',0,0,0,1,0,'{\"login\":[1655037328]}'),(16354,'198.235.24.150','normal','',0,0,0,0,0,'[]'),(16355,'146.56.99.136','normal','',0,0,0,16,0,'{\"login\":[1655040315,1655398932,1656849554,1657486818,1657710760,1658013751,1658237575,1658276543,1659804583,1660120240,1660149675,1660998836,1662075524,1662366816,1662684802,1663117852]}'),(16356,'162.241.217.237','normal','',0,0,0,0,0,'[]'),(16357,'165.0.8.218','normal','',0,0,0,0,0,'[]'),(16358,'5.252.116.23','normal','',0,0,0,0,0,'[]'),(16359,'129.205.70.138','normal','',0,0,0,0,0,'[]'),(16360,'154.22.135.98','normal','',0,0,0,0,0,'[]'),(16361,'193.233.185.28','normal','',0,0,0,0,40,'{\"nf\":[1655047312,1655047355,1655047377,1655047386,1655047392,1655047428,1655047464,1655047516,1655047528,1655047651,1655047666,1655047679,1655047687,1655047695,1655047720,1655047742,1655047765,1655047798,1655047816,1655047847,1655047890,1655047920,1655047946,1655047994,1655048022,1655048075,1655048129,1655048175,1655048238,1655048264,1655048291,1655048323,1655048331,1655048359,1655048374,1655048385,1655048534,1655048565,1655048576,1655048590]}'),(16362,'68.183.71.174','normal','',0,0,0,21,0,'{\"login\":[1655048199,1655402461,1656548172,1656733359,1657189145,1657652853,1658015513,1658099292,1658185963,1658274954,1658523996,1659138925,1660736266,1661307721,1661373293,1662187837,1662309980,1662330411,1662896705,1663073419,1663170635]}'),(16363,'157.245.123.228','normal','',0,0,0,1,0,'{\"login\":[1657101296]}'),(16364,'164.92.66.133','normal','',0,0,0,0,0,'[]'),(16365,'114.119.139.224','normal','',0,0,0,0,0,'[]'),(16366,'163.123.142.178','normal','',0,0,0,0,0,'[]'),(16367,'107.189.31.181','normal','',0,0,0,0,0,'[]'),(16368,'185.220.101.54','normal','',0,0,0,0,0,'[]'),(16369,'194.26.192.172','normal','',0,0,0,0,0,'[]'),(16370,'46.22.129.99','normal','',0,0,0,1,0,'{\"login\":[1655054080]}'),(16371,'109.248.175.239','normal','',0,0,0,0,13,'{\"nf\":[1655056184,1655079517,1655281009,1655389945,1655405041,1655415307,1655433748,1655451142,1655621170,1655621801,1655665896,1655666515,1655674382]}'),(16372,'141.138.139.52','normal','',0,0,0,2,0,'{\"login\":[1655062555,1655218113]}'),(16373,'47.105.39.118','normal','',0,0,0,0,0,'[]'),(16374,'157.230.44.173','normal','',0,0,0,0,0,'[]'),(16375,'54.201.254.164','normal','',0,0,0,0,0,'[]'),(16376,'91.249.163.48','normal','',0,0,0,29,0,'{\"login\":[1655067789,1655232907,1655719533,1655775106,1655806590,1655823719,1655894540,1656747952,1656757782,1656809765,1657194281,1657309736,1657317807,1657393185,1657500226,1657861046,1658734373,1659124252,1659380786,1660427782,1660623700,1660750393,1661110916,1662534446,1662548383,1662672478,1662822103,1662930451,1662948708]}'),(16377,'23.101.125.6','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1655116858,0,1655116558,0,40,'{\"nf\":[1655116523,1655116528,1655116530,1655116532,1655116533,1655116535,1655116537,1655116539,1655116540,1655116542,1655116544,1655116545,1655116547,1655116549,1655116550,1655116552,1655116553,1655116555,1655116556,1655116557],\"login\":[]}'),(16378,'188.166.228.178','normal','',0,0,0,10,0,'{\"login\":[1655069757,1656551030,1656746642,1656842884,1656850890,1657403472,1657577238,1657587195,1657595967,1657677064]}'),(16379,'85.146.18.88','normal','',0,0,0,19,0,'{\"login\":[1655073060,1655442597,1655459587,1657627928,1657675408,1658326457,1659835945,1660665301,1660987836,1660993916,1661140827,1661303976,1661677586,1662080800,1662091475,1662186439,1662428075,1662820731,1663085499]}'),(16380,'128.199.105.129','normal','',0,0,0,0,24,'{\"nf\":[1655076110,1655076126,1655076146,1655076164,1655076182,1655076199,1655076215,1655076302,1655076374,1655076397,1655076417,1655076435,1655076451,1655076468,1655076491,1655076508,1655076522,1655076537,1655076554,1655076572,1655076586,1655076606,1655076632,1655076650]}'),(16381,'47.105.45.252','normal','',0,0,0,0,0,'[]'),(16382,'219.141.170.90','normal','',0,0,0,0,0,'[]'),(16383,'162.214.194.199','normal','',0,0,0,0,0,'[]'),(16384,'186.234.80.228','normal','',0,0,0,1,0,'{\"login\":[1655139855]}'),(16385,'130.61.35.60','normal','',0,0,0,0,0,'[]'),(16386,'102.221.83.23','normal','',0,0,0,0,0,'[]'),(16387,'165.232.175.4','normal','',0,0,0,0,0,'[]'),(16388,'114.119.151.1','normal','',0,0,0,0,0,'[]'),(16389,'188.166.61.228','normal','',0,0,0,21,0,'{\"login\":[1655150464,1655239643,1655742173,1656084819,1659577165,1659768078,1659825415,1660064497,1660071579,1660177789,1660475646,1661205965,1661222346,1661629115,1662045967,1662070221,1662253781,1662297649,1662368643,1662689827,1663126123]}'),(16390,'35.163.143.175','normal','',0,0,0,0,0,'[]'),(16391,'5.45.80.13','normal','',0,0,0,0,0,'[]'),(16392,'185.16.38.111','normal','',0,0,0,0,0,'[]'),(16393,'43.128.42.33','normal','',0,0,0,5,0,'{\"login\":[1655155278,1655377961,1655715496,1656199433,1656883672]}'),(16394,'105.209.234.174','normal','',0,0,0,0,0,'[]'),(16395,'102.182.188.76','normal','',0,0,0,0,0,'[]'),(16396,'85.91.237.106','normal','',0,0,0,26,0,'{\"login\":[1655169028,1655667719,1656168456,1656888945,1657049891,1657130703,1657249123,1657412157,1657721554,1657816683,1658499290,1658835563,1659782110,1660155915,1660215148,1660226106,1660288839,1660616888,1660780642,1660944251,1661436515,1661683907,1662309073,1662350567,1662658236,1663132861]}'),(16397,'54.36.148.106','normal','',0,0,0,0,0,'[]'),(16398,'77.65.213.168','normal','',0,0,0,21,0,'{\"login\":[1655176893,1655381061,1655658481,1656306849,1656789216,1657244716,1657428197,1658733567,1660108907,1660338644,1660707508,1661391383,1661512630,1661677490,1661682542,1661772866,1662263817,1662282437,1662681058,1663101846,1663164397]}'),(16399,'205.169.39.186','normal','',0,0,0,0,0,'[]'),(16400,'80.211.91.179','normal','',0,0,0,0,1,'{\"nf\":[1655188265]}'),(16401,'192.42.116.16','normal','',0,0,0,1,0,'{\"login\":[1655193282]}'),(16402,'72.11.157.73','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1655194872,0,1655194572,0,40,'{\"nf\":[1655194555,1655194556,1655194557,1655194558,1655194559,1655194560,1655194561,1655194562,1655194563,1655194563,1655194564,1655194565,1655194566,1655194567,1655194568,1655194568,1655194569,1655194570,1655194571,1655194572],\"login\":[]}'),(16403,'159.65.6.53','normal','',0,0,0,0,0,'[]'),(16404,'198.235.24.137','normal','',0,0,0,0,0,'[]'),(16405,'185.112.144.158','normal','',0,0,0,0,0,'[]'),(16406,'185.220.101.183','normal','',0,0,0,0,0,'[]'),(16407,'194.26.192.186','normal','',0,0,0,0,0,'[]'),(16408,'35.86.238.91','normal','',0,0,0,0,0,'[]'),(16409,'51.195.166.202','normal','',0,0,0,0,3,'{\"nf\":[1655205055,1655205057,1655205060]}'),(16410,'107.189.7.88','normal','',0,0,0,0,5,'{\"nf\":[1655205062,1655205064,1655205066,1655205068,1655205070]}'),(16411,'185.129.61.1','normal','',0,0,0,0,4,'{\"nf\":[1655205074,1655205075,1655205079,1655205081]}'),(16412,'199.249.230.165','normal','',0,0,0,0,4,'{\"nf\":[1655205083,1655205085,1655205088,1655205091]}'),(16413,'199.249.230.66','normal','',0,0,0,0,4,'{\"nf\":[1655205103,1655205105,1655205108,1655205110]}'),(16414,'185.119.81.96','normal','',0,0,0,104,0,'{\"login\":[1655205588,1655237411,1655364943,1655419155,1655428228,1655438626,1655599174,1655619473,1658436423,1658466521,1658491558,1658495989,1658516392,1658522472,1658563956,1658568282,1658580009,1658580518,1658581945,1658592990,1658593467,1658623848,1658624805,1658670450,1658948145,1658956962,1658969226,1658980933,1658984624,1659002035,1659012397,1659014026,1659019111,1659021663,1659055376,1659085359,1659089366,1659101060,1659159848,1659167345,1659182156,1659187825,1659202741,1659822294,1659848423,1659872550,1659895994,1659904649,1659904778,1659924460,1659929626,1659932614,1659934575,1659949230,1659961958,1659963774,1659975007,1659988571,1659995230,1660006114,1660015108,1660018316,1660056240,1660056316,1660962821,1660964645,1661043558,1661058611,1661071222,1661080625,1661094876,1661101843,1661101852,1661104935,1661146265,1661146771,1661154988,1661156141,1661181107,1661195567,1661197608,1661207109,1661217400,1662553706,1662619832,1662622127,1662632136,1662659655,1662666921,1662671247,1662675224,1662686219,1662689223,1662692612,1662707184,1662741369,1662747903,1662762132,1662796458,1662796502,1662809529,1662822444,1663146582,1663147772]}'),(16415,'17.121.112.108','normal','',0,0,0,0,0,'[]'),(16416,'185.220.101.164','normal','',0,0,0,0,2,'{\"nf\":[1655213143,1655213146]}'),(16417,'107.189.12.238','normal','',0,0,0,0,8,'{\"nf\":[1655213147,1655213152,1655213155,1655213159,1655213163,1655213165,1655213168,1655213172]}'),(16418,'168.119.137.173','normal','',0,0,0,4,0,'{\"login\":[1655214385,1655554580,1655735911,1655784205]}'),(16419,'198.235.24.147','normal','',0,0,0,0,0,'[]'),(16420,'45.55.142.225','normal','',0,0,0,0,0,'[]'),(16421,'39.103.198.203','normal','',0,0,0,0,0,'[]'),(16422,'18.237.208.159','normal','',0,0,0,0,0,'[]'),(16423,'18.236.149.168','normal','',0,0,0,0,0,'[]'),(16424,'52.37.2.63','normal','',0,0,0,0,0,'[]'),(16425,'192.99.9.92','normal','',0,0,0,0,0,'[]'),(16426,'198.235.24.29','normal','',0,0,0,0,0,'[]'),(16427,'144.217.64.134','normal','',0,0,0,0,0,'[]'),(16428,'194.36.98.189','normal','',0,0,0,0,0,'[]'),(16429,'154.16.20.90','normal','',0,0,0,0,0,'[]'),(16430,'184.107.95.101','normal','',0,0,0,0,0,'[]'),(16431,'54.36.148.27','normal','',0,0,0,0,0,'[]'),(16432,'89.221.213.13','normal','',0,0,0,0,0,'[]'),(16433,'3.6.240.212','normal','',0,0,0,0,0,'[]'),(16434,'3.6.240.212','normal','',0,0,0,0,0,'[]'),(16435,'13.52.66.251','normal','',0,0,0,0,0,'[]'),(16436,'83.167.244.174','normal','',0,0,0,0,0,'[]'),(16437,'200.33.79.10','normal','',0,0,0,0,0,'[]'),(16438,'50.28.55.212','normal','',0,0,0,0,0,'[]'),(16439,'45.55.12.128','normal','',0,0,0,0,0,'[]'),(16440,'179.191.86.91','normal','',0,0,0,0,0,'[]'),(16441,'104.130.222.196','normal','',0,0,0,0,0,'[]'),(16442,'69.167.136.118','normal','',0,0,0,0,0,'[]'),(16443,'41.216.203.225','normal','',0,0,0,0,0,'[]'),(16444,'114.119.144.233','normal','',0,0,0,0,0,'[]'),(16445,'102.165.84.39','normal','',0,0,0,0,0,'[]'),(16446,'154.16.105.16','normal','',0,0,0,0,0,'[]'),(16447,'8.26.182.141','normal','',0,0,0,0,0,'[]'),(16448,'37.187.132.157','normal','',0,0,0,0,0,'[]'),(16449,'85.128.143.29','normal','',0,0,0,1,0,'{\"login\":[1655275755]}'),(16450,'44.227.157.196','normal','',0,0,0,11,0,'{\"login\":[1655276119,1655312908,1655314528,1655333097,1656746895,1656750591,1656774520,1656818841,1657447457,1657475727,1657518390]}'),(16451,'5.182.210.6','normal','',0,0,0,6,0,'{\"login\":[1655276246,1655280248,1655294020,1655303905,1655342666,1655349944]}'),(16452,'78.47.125.157','normal','',0,0,0,5,0,'{\"login\":[1655276480,1655293799,1655297663,1655339840,1655345900]}'),(16453,'200.68.111.59','normal','',0,0,0,2,0,'{\"login\":[1655276901,1655324649]}'),(16454,'85.134.36.182','normal','',0,0,0,4,0,'{\"login\":[1655277126,1655291562,1655315944,1655345174]}'),(16455,'84.2.39.115','normal','',0,0,0,0,2,'{\"nf\":[1655277977,1661457201]}'),(16456,'20.121.187.231','normal','',0,0,0,6,0,'{\"login\":[1655278185,1655287930,1656762260,1656782565,1656804165,1656809676]}'),(16457,'34.86.86.83','normal','',0,0,0,1,0,'{\"login\":[1655278772]}'),(16458,'103.72.79.36','normal','',0,0,0,13,0,'{\"login\":[1655279139,1655316769,1656744874,1656761093,1656769172,1656781343,1656788517,1656789552,1657435181,1657492852,1657795118,1659386380,1659420326]}'),(16459,'5.255.138.5','normal','',0,0,0,6,0,'{\"login\":[1655279909,1655282453,1655288602,1655293123,1655298932,1655330948]}'),(16460,'3.218.234.186','normal','',0,0,0,5,0,'{\"login\":[1655280129,1655294687,1655299963,1655333335,1655352322]}'),(16461,'85.128.143.176','normal','',0,0,0,1,0,'{\"login\":[1655280432]}'),(16462,'157.230.45.193','normal','',0,0,0,39,0,'{\"login\":[1655280615,1655283337,1655289941,1655306290,1655321991,1655336719,1655341322,1655348858,1656759454,1656763217,1656768465,1656777809,1656778063,1656782391,1656799038,1656806638,1656830838,1657437877,1657439945,1657450010,1657485277,1657492129,1657507198,1657674799,1657684142,1657690841,1657712215,1657749525,1657778668,1659375787,1659733320,1660209115,1660635368,1660769123,1660897268,1661769690,1661778123,1661804539,1661806443]}'),(16463,'68.183.26.89','normal','',0,0,0,35,0,'{\"login\":[1655281238,1655282689,1655321228,1655323925,1655334750,1655339261,1655344375,1656759811,1656775501,1656784038,1656799210,1656800297,1656834625,1657440530,1657476594,1657675635,1657748925,1657751506,1657822579,1657841446,1657873616,1659362234,1659389671,1659403877,1660350117,1660596003,1661757416,1661763452,1661765181,1661769369,1661770927,1661775076,1661821235,1661831480,1661840190]}'),(16464,'85.128.143.138','normal','',0,0,0,2,0,'{\"login\":[1655281414,1655289378]}'),(16465,'208.113.136.199','normal','',0,0,0,2,0,'{\"login\":[1655283265,1655292451]}'),(16466,'91.204.46.196','normal','',0,0,0,8,0,'{\"login\":[1655283455,1655288269,1655293013,1655323578,1655343167,1655353299,1656785283,1656786738]}'),(16467,'44.197.192.5','normal','',0,0,0,6,0,'{\"login\":[1655284501,1655285527,1655291221,1655302642,1655333230,1655334379]}'),(16468,'104.236.127.138','normal','',0,0,0,1,0,'{\"login\":[1655284626]}'),(16469,'185.14.233.20','normal','',0,0,0,0,0,'[]'),(16470,'147.182.252.119','normal','',0,0,0,16,0,'{\"login\":[1655285149,1655306055,1655309796,1655310285,1655330502,1655335175,1655335411,1655339549,1655349477,1656748181,1656761207,1656764090,1656766774,1656783829,1657676610,1657812147]}'),(16471,'142.93.37.62','normal','',0,0,0,3,0,'{\"login\":[1655285318,1655289857,1655309725]}'),(16472,'143.198.148.198','normal','',0,0,0,6,0,'{\"login\":[1655285616,1655325603,1655351687,1656748690,1656766943,1656806489]}'),(16473,'164.90.130.220','normal','',0,0,0,4,0,'{\"login\":[1655286060,1655289691,1655324441,1655349064]}'),(16474,'171.244.16.103','normal','',0,0,0,0,0,'[]'),(16475,'178.128.45.230','normal','',0,0,0,5,0,'{\"login\":[1655286226,1655300228,1655319239,1655322874,1655341757]}'),(16476,'123.30.237.74','normal','',0,0,0,0,1,'{\"nf\":[1655286569]}'),(16477,'152.228.187.245','normal','',0,0,0,6,0,'{\"login\":[1655286624,1656749883,1656766361,1656769262,1656771985,1656807947]}'),(16478,'45.79.205.113','normal','',0,0,0,6,0,'{\"login\":[1655287033,1655289265,1655307168,1655310795,1655321676,1655350068]}'),(16479,'138.201.59.23','normal','',0,0,0,4,0,'{\"login\":[1655287371,1655341248,1655342802,1655346245]}'),(16480,'91.217.82.12','normal','',0,0,0,11,0,'{\"login\":[1655288155,1655294354,1655303560,1655330749,1655341972,1657653118,1657672064,1657758936,1657833311,1657844824,1657866132]}'),(16481,'95.110.232.134','normal','',0,0,0,11,0,'{\"login\":[1655288838,1655336515,1655337845,1659345377,1661776195,1661814469,1661816109,1661816671,1661827032,1661828841,1661829469]}'),(16482,'194.31.64.180','normal','',0,0,0,5,0,'{\"login\":[1655289059,1655314049,1655322584,1655346376,1655348640]}'),(16483,'34.226.71.159','normal','',0,0,0,2,0,'{\"login\":[1655289606,1655347793]}'),(16484,'62.151.176.253','normal','',0,0,0,5,0,'{\"login\":[1655290179,1655307597,1655314651,1655320223,1655329390]}'),(16485,'181.215.176.44','normal','',0,0,0,0,0,'[]'),(16486,'205.210.31.25','normal','',0,0,0,0,0,'[]'),(16487,'165.22.219.121','normal','',0,0,0,16,0,'{\"login\":[1655291337,1655297447,1655318056,1655333689,1656770078,1656783548,1656793196,1656803180,1657464620,1657708253,1657778087,1659998418,1661786470,1661799362,1661800888,1661806071]}'),(16488,'93.186.187.197','normal','',0,0,0,6,0,'{\"login\":[1655292084,1655298231,1655327882,1655331667,1655336037,1655339702]}'),(16489,'137.184.237.153','normal','',0,0,0,4,0,'{\"login\":[1655292289,1655302265,1655315699,1660488158]}'),(16490,'85.128.143.36','normal','',0,0,0,3,0,'{\"login\":[1655294907,1655331304,1655342045]}'),(16491,'41.94.150.15','normal','',0,0,0,14,0,'{\"login\":[1655295966,1655324977,1655338314,1655353168,1656748413,1656780743,1656796452,1657469414,1657493829,1657501899,1657728017,1657800288,1657808148,1659357632]}'),(16492,'18.192.43.3','normal','',0,0,0,3,0,'{\"login\":[1655296288,1655302823,1655324262]}'),(16493,'51.178.141.208','normal','',0,0,0,9,0,'{\"login\":[1655298586,1655323087,1655325763,1655338775,1655347100,1656749209,1657468286,1657499840,1657502358]}'),(16494,'165.22.253.243','normal','',0,0,0,3,0,'{\"login\":[1655299176,1655313603,1655322273]}'),(16495,'64.227.29.76','normal','',0,0,0,8,0,'{\"login\":[1655300105,1656752436,1656754196,1656771124,1656830032,1659361181,1659367247,1659388947]}'),(16496,'165.232.189.74','normal','',0,0,0,11,0,'{\"login\":[1655300574,1655335356,1655353398,1656767664,1656770835,1656771863,1656781215,1656804415,1656827074,1656830473,1657460753]}'),(16497,'34.126.95.124','normal','',0,0,0,3,0,'{\"login\":[1655300755,1655305977,1655344705]}'),(16498,'185.33.234.55','normal','',0,0,0,5,0,'{\"login\":[1655301018,1656772888,1656792585,1656801668,1656814126]}'),(16499,'13.245.0.5','normal','',0,0,0,0,0,'[]'),(16500,'54.36.149.39','normal','',0,0,0,0,0,'[]'),(16501,'41.169.29.3','normal','',0,0,0,0,1,'{\"nf\":[1655303314]}'),(16502,'40.81.141.116','normal','',0,0,0,4,0,'{\"login\":[1655303663,1655316860,1657448959,1657512981]}'),(16503,'148.59.62.104','normal','',0,0,0,3,0,'{\"login\":[1655304367,1655344815,1659357244]}'),(16504,'209.126.5.214','normal','',0,0,0,0,0,'[]'),(16505,'185.23.119.81','normal','',0,0,0,5,0,'{\"login\":[1655306898,1655316389,1655340036,1655346817,1655348351]}'),(16506,'45.158.14.218','normal','',0,0,0,21,0,'{\"login\":[1655308222,1655310910,1655311721,1655316659,1655348283,1656744775,1656751445,1656805032,1656815486,1656826677,1656830932,1657458538,1657487828,1657490037,1657747126,1657816667,1659360435,1659762965,1659884622,1660068163,1660100766]}'),(16507,'165.227.84.178','normal','',0,0,0,9,0,'{\"login\":[1655308351,1656761911,1656762970,1656771434,1656774333,1656787368,1657432789,1657438859,1657507941]}'),(16508,'167.71.184.141','normal','',0,0,0,1,0,'{\"login\":[1655310611]}'),(16509,'162.13.37.51','normal','',0,0,0,5,0,'{\"login\":[1655311596,1655316525,1655320509,1655334641,1655342321]}'),(16510,'128.199.120.47','normal','',0,0,0,3,0,'{\"login\":[1655311952,1655330840,1655343263]}'),(16511,'24.142.8.68','normal','',0,0,0,0,0,'[]'),(16512,'18.118.109.249','normal','',0,0,0,0,0,'[]'),(16513,'194.195.86.56','normal','',0,0,0,2,0,'{\"login\":[1655314710,1655322453]}'),(16514,'51.79.145.80','normal','',0,0,0,4,0,'{\"login\":[1655314875,1655315464,1655328003,1655335798]}'),(16515,'103.93.16.191','normal','',0,0,0,2,0,'{\"login\":[1660298733,1662072991]}'),(16516,'95.179.153.74','normal','',0,0,0,2,0,'{\"login\":[1655318617,1655345078]}'),(16517,'194.163.188.182','normal','',0,0,0,7,0,'{\"login\":[1655318733,1655329648,1655347443,1655348747,1656753564,1656759610,1656774213]}'),(16518,'5.149.248.91','normal','',0,0,0,3,0,'{\"login\":[1655319806,1655332866,1655336166]}'),(16519,'47.105.40.162','normal','',0,0,0,0,0,'[]'),(16520,'47.105.47.15','normal','',0,0,0,0,0,'[]'),(16521,'52.12.129.117','normal','',0,0,0,0,0,'[]'),(16522,'1.197.184.226','normal','',0,0,0,0,0,'[]'),(16523,'123.181.205.207','normal','',0,0,0,0,0,'[]'),(16524,'134.209.150.210','normal','',0,0,0,10,0,'{\"login\":[1655325194,1655326729,1656746034,1656785103,1656807380,1656808377,1657439584,1657460173,1657499534,1657500508]}'),(16525,'18.139.201.93','normal','',0,0,0,3,0,'{\"login\":[1655325419,1655326829,1655337088]}'),(16526,'51.68.228.248','normal','',0,0,0,1,0,'{\"login\":[1655326936]}'),(16527,'51.79.230.233','normal','',0,0,0,1,0,'{\"login\":[1655327087]}'),(16528,'202.218.138.15','normal','',0,0,0,4,0,'{\"login\":[1655327657,1655329910,1656779138,1656803922]}'),(16529,'143.198.98.181','normal','',0,0,0,1,0,'{\"login\":[1655332516]}'),(16530,'137.184.135.218','normal','',0,0,0,14,0,'{\"login\":[1655333933,1656762451,1656767561,1656770463,1656788321,1656795329,1656815846,1656820523,1657453572,1657454832,1657495576,1657500082,1657501754,1657504592]}'),(16531,'34.95.144.46','normal','',0,0,0,2,0,'{\"login\":[1655334163,1655351511]}'),(16532,'39.105.140.122','normal','',0,0,0,7,0,'{\"login\":[1655334306,1655340576,1655341195,1655345526,1656794867,1656806382,1656832572]}'),(16533,'167.99.48.188','normal','',0,0,0,3,0,'{\"login\":[1655334505,1655343997,1655348513]}'),(16534,'196.244.192.232','normal','',0,0,0,1,0,'{\"login\":[1655336998]}'),(16535,'177.55.116.250','normal','',0,0,0,5,0,'{\"login\":[1655337726,1656766151,1656818041,1659994531,1660564542]}'),(16536,'145.131.21.44','normal','',0,0,0,2,0,'{\"login\":[1655338202,1655346149]}'),(16537,'167.172.80.174','normal','',0,0,0,0,0,'[]'),(16538,'94.229.165.53','normal','',0,0,0,0,0,'[]'),(16539,'85.128.143.166','normal','',0,0,0,1,0,'{\"login\":[1655339938]}'),(16540,'85.128.143.73','normal','',0,0,0,1,0,'{\"login\":[1655341846]}'),(16541,'54.39.133.240','normal','',0,0,0,2,0,'{\"login\":[1655342918,1655346730]}'),(16542,'203.158.192.33','normal','',0,0,0,1,0,'{\"login\":[1655345789]}'),(16543,'137.116.88.232','normal','',0,0,0,0,0,'[]'),(16544,'109.250.220.221','normal','',0,0,0,1,0,'{\"login\":[1655368802]}'),(16545,'195.176.3.23','normal','',0,0,0,0,0,'[]'),(16546,'102.220.209.106','normal','',0,0,0,0,0,'[]'),(16547,'177.221.140.69','normal','',0,0,0,0,0,'[]'),(16548,'197.245.158.246','normal','',0,0,0,0,0,'[]'),(16549,'101.34.224.66','normal','',0,0,0,20,0,'{\"login\":[1655382939,1656082327,1657269922,1657302888,1657389144,1657477201,1657539949,1658056034,1658077463,1658097552,1658259438,1659090622,1659118030,1659144068,1659259692,1659327745,1659406836,1661184340,1661665901,1662337697]}'),(16550,'151.106.39.173','normal','',0,0,0,11,0,'{\"login\":[1655392936,1657293174,1657536421,1657557050,1657636253,1658372005,1658605144,1658641842,1659145352,1660320450,1660484081]}'),(16551,'162.241.24.101','normal','',0,0,0,0,0,'[]'),(16552,'45.113.122.66','normal','',0,0,0,0,0,'[]'),(16553,'89.40.2.177','normal','',0,0,0,2,0,'{\"login\":[1655403062,1655887594]}'),(16554,'41.5.44.227','normal','',0,0,0,0,0,'[]'),(16555,'17.121.115.121','normal','',0,0,0,0,0,'[]'),(16556,'197.94.233.167','normal','',0,0,0,0,0,'[]'),(16557,'17.121.112.160','normal','',0,0,0,0,0,'[]'),(16558,'17.121.113.208','normal','',0,0,0,0,0,'[]'),(16559,'17.121.114.62','normal','',0,0,0,0,0,'[]'),(16560,'17.121.115.170','normal','',0,0,0,0,0,'[]'),(16561,'182.253.221.198','normal','',0,0,0,5,0,'{\"login\":[1655413112,1655429421,1657274898,1657464388,1657585879]}'),(16562,'35.85.36.249','normal','',0,0,0,0,0,'[]'),(16563,'213.226.187.68','normal','',0,0,0,0,0,'[]'),(16564,'84.17.58.25','normal','',0,0,0,0,19,'{\"nf\":[1655427279,1655427284,1655427287,1655427289,1655427291,1655427293,1655427296,1655427298,1655427301,1655427311,1655427312,1655427314,1655427315,1655427318,1655427321,1655427322,1655427324,1655427325,1655427327]}'),(16565,'3.234.213.250','normal','',0,0,0,0,0,'[]'),(16566,'114.119.145.140','normal','',0,0,0,0,0,'[]'),(16567,'20.239.187.130','normal','',0,0,0,0,1,'{\"nf\":[1655436499]}'),(16568,'103.251.167.21','normal','',0,0,0,1,0,'{\"login\":[1655447270]}'),(16569,'154.0.173.16','normal','',0,0,0,0,0,'[]'),(16570,'5.161.117.251','normal','',0,0,0,0,0,'[]'),(16571,'103.171.180.139','normal','',0,0,0,0,0,'[]'),(16572,'179.27.210.49','normal','',0,0,0,0,0,'[]'),(16573,'41.13.204.162','normal','',0,0,0,0,0,'[]'),(16574,'105.233.104.112','normal','',0,0,0,0,0,'[]'),(16575,'193.56.254.36','normal','',0,0,0,1,0,'{\"login\":[1655467266]}'),(16576,'167.94.138.62','normal','',0,0,0,0,0,'[]'),(16577,'167.94.138.62','normal','',0,0,0,0,0,'[]'),(16578,'67.205.151.186','normal','',0,0,0,0,2,'{\"nf\":[1655478821,1655773982]}'),(16579,'46.28.105.123','normal','',0,0,0,0,0,'[]'),(16580,'23.101.28.144','normal','',0,0,0,0,0,'[]'),(16581,'158.247.196.135','normal','',0,0,0,0,0,'[]'),(16582,'46.28.105.97','normal','',0,0,0,0,0,'[]'),(16583,'47.90.51.130','normal','',0,0,0,0,0,'[]'),(16584,'158.69.5.136','normal','',0,0,0,0,0,'[]'),(16585,'192.99.232.210','normal','',0,0,0,0,0,'[]'),(16586,'64.250.91.98','normal','',0,0,0,0,0,'[]'),(16587,'207.109.170.12','normal','',0,0,0,0,0,'[]'),(16588,'205.204.89.186','normal','',0,0,0,0,1,'{\"nf\":[1660979295]}'),(16589,'205.204.89.186','normal','',0,0,0,0,0,'[]'),(16590,'217.70.32.30','normal','',0,0,0,0,1,'{\"nf\":[1660979087]}'),(16591,'185.12.56.133','normal','',0,0,0,0,0,'[]'),(16592,'195.210.46.44','normal','',0,0,0,0,0,'[]'),(16593,'46.183.10.120','normal','',0,0,0,0,0,'[]'),(16594,'202.174.114.89','normal','',0,0,0,0,0,'[]'),(16595,'213.236.3.11','normal','',0,0,0,0,0,'[]'),(16596,'54.188.107.96','normal','',0,0,0,0,0,'[]'),(16597,'205.210.31.12','normal','',0,0,0,0,0,'[]'),(16598,'205.210.31.20','normal','',0,0,0,0,0,'[]'),(16599,'154.0.165.146','normal','',0,0,0,0,0,'[]'),(16600,'129.205.167.104','normal','',0,0,0,0,0,'[]'),(16601,'54.36.149.26','normal','',0,0,0,0,0,'[]'),(16602,'78.137.164.230','normal','',0,0,0,0,0,'[]'),(16603,'138.201.81.253','normal','',0,0,0,0,0,'[]'),(16604,'122.114.222.141','normal','',0,0,0,3,0,'{\"login\":[1655545148,1655558140,1656270884]}'),(16605,'118.98.73.5','normal','',0,0,0,12,0,'{\"login\":[1655546484,1655811163,1657473806,1657509004,1657734771,1660336356,1660412244,1660615531,1661514959,1661675823,1662249324,1662317976]}'),(16606,'3.110.203.232','normal','',0,0,0,0,0,'[]'),(16607,'211.78.92.164','normal','',0,0,0,18,0,'{\"login\":[1655547660,1655581370,1655749893,1656008461,1657242557,1657335394,1657548692,1657762456,1658257942,1658506270,1659377437,1660382596,1660439937,1661240012,1661644012,1661713237,1661744834,1662037137]}'),(16608,'102.65.62.167','normal','',0,0,0,0,0,'[]'),(16609,'197.94.210.170','normal','',0,0,0,0,0,'[]'),(16610,'20.29.123.99','normal','',0,0,0,0,1,'{\"nf\":[1655557567]}'),(16611,'167.248.133.117','normal','',0,0,0,0,0,'[]'),(16612,'185.27.99.127','normal','',0,0,0,0,0,'[]'),(16613,'185.27.99.116','normal','',0,0,0,0,1,'{\"nf\":[1655559624]}'),(16614,'205.210.31.144','normal','',0,0,0,0,0,'[]'),(16615,'65.108.99.57','normal','',0,0,0,0,0,'[]'),(16616,'205.210.31.139','normal','',0,0,0,0,0,'[]'),(16617,'185.243.218.41','normal','',0,0,0,0,0,'[]'),(16618,'185.220.100.250','normal','',0,0,0,1,0,'{\"login\":[1655578830]}'),(16619,'169.0.250.161','normal','',0,0,0,0,0,'[]'),(16620,'205.210.31.11','normal','',0,0,0,0,0,'[]'),(16621,'103.130.219.13','normal','',0,0,0,9,0,'{\"login\":[1655589454,1656911775,1657680519,1658316607,1660154906,1660282491,1660948972,1661003835,1662737989]}'),(16622,'188.166.238.219','normal','',0,0,0,0,0,'[]'),(16623,'65.21.198.162','normal','',0,0,0,0,0,'[]'),(16624,'138.201.31.212','normal','',0,0,0,0,0,'[]'),(16625,'178.128.23.48','normal','',0,0,0,0,0,'[]'),(16626,'184.154.206.144','normal','',0,0,0,0,0,'[]'),(16627,'194.163.142.156','normal','',0,0,0,0,0,'[]'),(16628,'108.136.239.62','normal','',0,0,0,0,0,'[]'),(16629,'190.60.234.17','normal','',0,0,0,0,0,'[]'),(16630,'144.76.108.16','normal','',0,0,0,0,0,'[]'),(16631,'173.249.37.40','normal','',0,0,0,0,0,'[]'),(16632,'3.6.139.182','normal','',0,0,0,0,0,'[]'),(16633,'54.179.254.15','normal','',0,0,0,0,0,'[]'),(16634,'18.140.141.19','normal','',0,0,0,0,0,'[]'),(16635,'41.185.8.178','normal','',0,0,0,0,0,'[]'),(16636,'103.102.152.203','normal','',0,0,0,0,0,'[]'),(16637,'185.218.124.128','normal','',0,0,0,0,0,'[]'),(16638,'136.243.172.45','normal','',0,0,0,0,0,'[]'),(16639,'189.39.8.233','normal','',0,0,0,0,0,'[]'),(16640,'18.185.8.228','normal','',0,0,0,0,0,'[]'),(16641,'37.120.153.227','normal','',0,0,0,0,0,'[]'),(16642,'78.159.119.207','normal','',0,0,0,2,0,'{\"login\":[1662215096,1662295398]}'),(16643,'109.234.160.161','normal','',0,0,0,0,0,'[]'),(16644,'148.72.244.53','normal','',0,0,0,1,0,'{\"login\":[1657107366]}'),(16645,'159.69.61.132','normal','',0,0,0,0,0,'[]'),(16646,'110.40.133.172','normal','',0,0,0,0,0,'[]'),(16647,'18.179.138.139','normal','',0,0,0,0,0,'[]'),(16648,'192.64.113.147','normal','',0,0,0,0,0,'[]'),(16649,'178.63.21.49','normal','',0,0,0,0,0,'[]'),(16650,'139.162.114.19','normal','',0,0,0,0,0,'[]'),(16651,'51.210.207.85','normal','',0,0,0,0,0,'[]'),(16652,'3.139.67.3','normal','',0,0,0,0,0,'[]'),(16653,'184.168.123.132','normal','',0,0,0,0,0,'[]'),(16654,'188.125.174.55','normal','',0,0,0,2,0,'{\"login\":[1657100408,1657102325]}'),(16655,'34.84.100.155','normal','',0,0,0,0,0,'[]'),(16656,'45.32.99.35','normal','',0,0,0,0,0,'[]'),(16657,'103.8.25.74','normal','',0,0,0,0,0,'[]'),(16658,'45.87.42.158','normal','',0,0,0,0,0,'[]'),(16659,'114.119.152.119','normal','',0,0,0,0,0,'[]'),(16660,'2.59.156.10','normal','',0,0,0,0,0,'[]'),(16661,'63.250.32.158','normal','',0,0,0,0,0,'[]'),(16662,'103.159.85.59','normal','',0,0,0,0,0,'[]'),(16663,'104.130.209.86','normal','',0,0,0,0,0,'[]'),(16664,'209.126.25.70','normal','',0,0,0,0,0,'[]'),(16665,'35.221.223.33','normal','',0,0,0,0,0,'[]'),(16666,'5.134.124.102','normal','',0,0,0,0,0,'[]'),(16667,'3.218.44.3','normal','',0,0,0,0,0,'[]'),(16668,'185.239.40.66','normal','',0,0,0,0,0,'[]'),(16669,'138.201.44.50','normal','',0,0,0,0,0,'[]'),(16670,'51.178.136.33','normal','',0,0,0,0,0,'[]'),(16671,'154.12.225.160','normal','',0,0,0,0,0,'[]'),(16672,'13.250.27.112','normal','',0,0,0,0,0,'[]'),(16673,'103.145.50.162','normal','',0,0,0,1,0,'{\"login\":[1661076026]}'),(16674,'72.29.77.211','normal','',0,0,0,0,0,'[]'),(16675,'20.83.31.18','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1655648358,0,1655648058,0,20,'{\"nf\":[1655648028,1655648030,1655648031,1655648033,1655648035,1655648036,1655648038,1655648040,1655648041,1655648043,1655648044,1655648046,1655648047,1655648048,1655648050,1655648051,1655648052,1655648054,1655648055,1655648057]}'),(16676,'206.72.206.114','normal','',0,0,0,0,0,'[]'),(16677,'41.114.19.204','normal','',0,0,0,0,0,'[]'),(16678,'35.195.26.137','normal','',0,0,0,0,3,'{\"nf\":[1655655538,1655655549,1655655549]}'),(16679,'177.55.111.74','normal','',0,0,0,16,0,'{\"login\":[1655659152,1656101391,1656302328,1656786587,1657336678,1659356551,1659367104,1659391813,1659862402,1660120641,1660843326,1661758479,1661769838,1661779471,1661819821,1661836713]}'),(16680,'64.90.40.242','normal','',0,0,0,19,0,'{\"login\":[1655660488,1655670360,1655716164,1655901526,1656042751,1656887444,1657169289,1657254723,1657625258,1657661464,1658293936,1658350475,1658950295,1658992846,1659271337,1660296166,1660358500,1660459680,1660596806]}'),(16681,'157.0.140.186','normal','',0,0,0,0,0,'[]'),(16682,'5.161.112.32','normal','',0,0,0,5,0,'{\"login\":[1655674969,1655676282,1659772748,1660075553,1660169330]}'),(16683,'94.130.15.88','normal','',0,0,0,0,0,'[]'),(16684,'38.242.239.236','normal','',0,0,0,0,0,'[]'),(16685,'185.244.175.154','normal','',0,0,0,0,1,'{\"nf\":[1655698317]}'),(16686,'193.107.158.16','normal','',0,0,0,1,0,'{\"login\":[1660737335]}'),(16687,'107.180.107.145','normal','',0,0,0,0,0,'[]'),(16688,'45.117.169.47','normal','',0,0,0,0,0,'[]'),(16689,'62.171.175.151','normal','',0,0,0,0,0,'[]'),(16690,'39.98.207.234','normal','',0,0,0,1,0,'{\"login\":[1658933001]}'),(16691,'45.76.159.2','normal','',0,0,0,0,0,'[]'),(16692,'108.167.189.100','normal','',0,0,0,0,0,'[]'),(16693,'148.72.155.248','normal','',0,0,0,0,0,'[]'),(16694,'38.143.11.161','normal','',0,0,0,0,0,'[]'),(16695,'116.68.196.90','normal','',0,0,0,0,0,'[]'),(16696,'62.109.5.125','normal','',0,0,0,1,0,'{\"login\":[1660475261]}'),(16697,'15.236.252.50','normal','',0,0,0,0,0,'[]'),(16698,'35.84.186.79','normal','',0,0,0,0,0,'[]'),(16699,'37.49.230.160','normal','',0,0,0,0,1,'{\"nf\":[1655706920]}'),(16700,'5.188.62.174','normal','',0,0,0,5,0,'{\"login\":[1662782332,1662799169,1662802759,1662804453,1662959888]}'),(16701,'194.233.66.131','normal','',0,0,0,0,0,'[]'),(16702,'79.98.40.40','normal','',0,0,0,0,0,'[]'),(16703,'3.68.53.145','normal','',0,0,0,0,0,'[]'),(16704,'51.75.55.173','normal','',0,0,0,0,0,'[]'),(16705,'13.51.111.122','normal','',0,0,0,0,0,'[]'),(16706,'178.62.65.129','normal','',0,0,0,0,0,'[]'),(16707,'103.1.208.205','normal','',0,0,0,0,0,'[]'),(16708,'185.18.52.113','normal','',0,0,0,0,0,'[]'),(16709,'107.190.136.2','normal','',0,0,0,0,0,'[]'),(16710,'46.101.247.185','normal','',0,0,0,0,0,'[]'),(16711,'68.183.203.185','normal','',0,0,0,0,0,'[]'),(16712,'67.225.138.77','normal','',0,0,0,0,0,'[]'),(16713,'150.230.247.143','normal','',0,0,0,0,0,'[]'),(16714,'52.63.14.213','normal','',0,0,0,1,0,'{\"login\":[1657111626]}'),(16715,'197.242.156.134','normal','',0,0,0,0,0,'[]'),(16716,'159.253.19.237','normal','',0,0,0,0,0,'[]'),(16717,'188.166.237.51','normal','',0,0,0,1,0,'{\"login\":[1660046417]}'),(16718,'95.111.196.19','normal','',0,0,0,0,0,'[]'),(16719,'207.180.197.13','normal','',0,0,0,1,0,'{\"login\":[1662034583]}'),(16720,'15.164.120.211','normal','',0,0,0,0,0,'[]'),(16721,'37.49.230.33','normal','',0,0,0,0,0,'[]'),(16722,'20.109.101.102','normal','',0,0,0,1,0,'{\"login\":[1662225991]}'),(16723,'37.187.154.95','normal','',0,0,0,11,0,'{\"login\":[1655748507,1657053454,1658441096,1658664425,1658716605,1658723299,1658986769,1658994896,1659083145,1659111323,1659413794]}'),(16724,'193.239.232.101','normal','',0,0,0,0,0,'[]'),(16725,'198.235.24.32','normal','',0,0,0,0,0,'[]'),(16726,'20.101.71.221','normal','',0,0,0,18,0,'{\"login\":[1655772848,1655789171,1656156943,1656158208,1656852887,1657435448,1657451954,1658956334,1660232830,1660433801,1660486587,1661213886,1661259469,1661283683,1661336934,1661518927,1662315361,1663033439]}'),(16727,'65.108.40.25','normal','',0,0,0,0,0,'[]'),(16728,'168.90.199.155','normal','',0,0,0,0,0,'[]'),(16729,'185.220.101.45','normal','',0,0,0,0,0,'[]'),(16730,'23.154.177.8','normal','',0,0,0,1,0,'{\"login\":[1655800443]}'),(16731,'17.121.115.231','normal','',0,0,0,0,0,'[]'),(16732,'198.235.24.143','normal','',0,0,0,0,0,'[]'),(16733,'159.203.68.240','normal','',0,0,0,17,0,'{\"login\":[1655826089,1656264125,1657495472,1657678479,1658334569,1658650455,1660694021,1661185936,1661237726,1661640010,1661647072,1661709170,1662054833,1662396896,1662745604,1662767002,1662886438]}'),(16734,'114.119.135.96','normal','',0,0,0,0,0,'[]'),(16735,'197.89.167.4','normal','',0,0,0,0,0,'[]'),(16736,'8.26.182.142','normal','',0,0,0,0,0,'[]'),(16737,'41.198.138.75','normal','',0,0,0,1,0,'{\"login\":[1655842088]}'),(16738,'37.187.131.234','normal','',0,0,0,0,3,'{\"nf\":[1655849158,1657138764,1660982884]}'),(16739,'37.187.131.234','normal','',0,0,0,0,0,'[]'),(16740,'190.111.160.199','normal','',0,0,0,0,0,'[]'),(16741,'180.191.164.64','normal','',0,0,0,1,0,'{\"login\":[1655863263]}'),(16742,'154.54.249.206','normal','',0,0,0,0,4,'{\"nf\":[1660081258,1660791189,1661516875,1663010107]}'),(16743,'5.45.77.43','normal','',0,0,0,0,8,'{\"nf\":[1655867732,1655867735,1655867736,1655867738,1655867740,1655867741,1655867743,1655867745]}'),(16744,'102.39.143.188','normal','',0,0,0,0,0,'[]'),(16745,'164.90.217.101','normal','',0,0,0,12,0,'{\"login\":[1656745585,1657445738,1657492544,1657750903,1657797012,1657823266,1657870150,1659366386,1659376346,1661774143,1661794342,1661796499]}'),(16746,'52.27.4.133','normal','',0,0,0,0,0,'[]'),(16747,'62.210.125.188','normal','',0,0,0,0,0,'[]'),(16748,'77.138.35.239','normal','',0,0,0,1,0,'{\"login\":[1655957249]}'),(16749,'139.99.69.160','normal','',0,0,0,0,2,'{\"nf\":[1655962488,1655962490]}'),(16750,'164.151.16.2','normal','',0,0,0,0,0,'[]'),(16751,'54.36.148.149','normal','',0,0,0,0,0,'[]'),(16752,'54.36.148.155','normal','',0,0,0,0,0,'[]'),(16753,'209.97.161.203','normal','',0,0,0,0,0,'[]'),(16754,'40.76.177.77','normal','',0,0,0,0,0,'[]'),(16755,'217.25.40.254','normal','',0,0,0,0,0,'[]'),(16756,'85.10.194.228','normal','',0,0,0,0,0,'[]'),(16757,'208.97.186.101','normal','',0,0,0,0,0,'[]'),(16758,'168.167.247.19','normal','',0,0,0,0,0,'[]'),(16759,'54.150.65.110','normal','',0,0,0,0,0,'[]'),(16760,'217.79.179.7','normal','',0,0,0,1,0,'{\"login\":[1656013562]}'),(16761,'89.32.144.22','normal','',0,0,0,0,0,'[]'),(16762,'43.156.80.77','normal','',0,0,0,1,0,'{\"login\":[1661079046]}'),(16763,'104.198.210.147','normal','',0,0,0,0,0,'[]'),(16764,'114.119.153.114','normal','',0,0,0,0,0,'[]'),(16765,'74.125.213.51','normal','',0,0,0,0,1,'{\"nf\":[1656023140]}'),(16766,'94.237.73.119','normal','',0,0,0,0,0,'[]'),(16767,'185.207.155.13','normal','',0,0,0,0,0,'[]'),(16768,'95.177.163.31','normal','',0,0,0,0,2,'{\"nf\":[1656027304,1658156016]}'),(16769,'165.84.218.244','normal','',0,0,0,0,0,'[]'),(16770,'52.18.48.185','normal','',0,0,0,0,0,'[]'),(16771,'35.193.197.89','normal','',0,0,0,0,0,'[]'),(16772,'35.88.181.26','normal','',0,0,0,0,0,'[]'),(16773,'95.216.106.76','normal','',0,0,0,0,0,'[]'),(16774,'40.83.40.175','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1656979273,0,1656978973,0,20,'{\"nf\":[1656978862,1656978864,1656978866,1656978868,1656978870,1656978872,1656978874,1656978883,1656978888,1656978890,1656978945,1656978948,1656978950,1656978951,1656978954,1656978960,1656978961,1656978964,1656978966,1656978971]}'),(16775,'31.13.127.13','normal','',0,0,0,0,0,'[]'),(16776,'31.13.127.118','normal','',0,0,0,0,0,'[]'),(16777,'185.244.175.126','normal','',0,0,0,0,2,'{\"nf\":[1656044219,1656074153]}'),(16778,'108.179.192.195','normal','',0,0,0,0,0,'[]'),(16779,'104.161.21.131','normal','',0,0,0,0,0,'[]'),(16780,'162.240.54.19','normal','',0,0,0,0,0,'[]'),(16781,'31.172.67.60','normal','',0,0,0,1,0,'{\"login\":[1661162703]}'),(16782,'50.59.99.98','normal','',0,0,0,0,0,'[]'),(16783,'51.68.228.235','normal','',0,0,0,1,0,'{\"login\":[1661678709]}'),(16784,'17.121.112.233','normal','',0,0,0,0,0,'[]'),(16785,'51.79.144.41','normal','',0,0,0,0,0,'[]'),(16786,'186.234.80.141','normal','',0,0,0,0,0,'[]'),(16787,'131.196.236.148','normal','',0,0,0,1,0,'{\"login\":[1656098523]}'),(16788,'191.55.125.178','normal','',0,0,0,1,0,'{\"login\":[1656102476]}'),(16789,'201.131.68.50','normal','',0,0,0,1,0,'{\"login\":[1656102896]}'),(16790,'54.212.222.50','normal','',0,0,0,0,0,'[]'),(16791,'54.212.126.184','normal','',0,0,0,0,0,'[]'),(16792,'34.222.238.15','normal','',0,0,0,0,0,'[]'),(16793,'34.219.157.159','normal','',0,0,0,0,0,'[]'),(16794,'36.69.211.46','normal','',0,0,0,1,0,'{\"login\":[1656109692]}'),(16795,'114.119.152.47','normal','',0,0,0,0,0,'[]'),(16796,'109.228.18.65','normal','',0,0,0,0,0,'[]'),(16797,'31.13.127.2','normal','',0,0,0,0,0,'[]'),(16798,'197.162.210.59','normal','',0,0,0,1,0,'{\"login\":[1656129121]}'),(16799,'198.235.24.132','normal','',0,0,0,0,0,'[]'),(16800,'93.158.161.43','normal','',0,0,0,0,0,'[]'),(16801,'35.225.163.183','normal','',0,0,0,0,0,'[]'),(16802,'159.69.26.216','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1656166226,0,1656165926,0,20,'{\"nf\":[1656165789,1656165794,1656165799,1656165805,1656165824,1656165829,1656165834,1656165838,1656165845,1656165851,1656165865,1656165870,1656165875,1656165880,1656165884,1656165888,1656165904,1656165911,1656165918,1656165925]}'),(16803,'179.6.168.24','normal','',0,0,0,1,0,'{\"login\":[1656166197]}'),(16804,'173.249.33.41','normal','',0,0,0,0,0,'[]'),(16805,'205.210.31.2','normal','',0,0,0,0,0,'[]'),(16806,'65.21.253.99','normal','',0,0,0,0,0,'[]'),(16807,'103.101.160.37','normal','',0,0,0,0,0,'[]'),(16808,'91.121.237.231','normal','',0,0,0,0,0,'[]'),(16809,'114.119.136.139','normal','',0,0,0,0,0,'[]'),(16810,'83.150.212.43','normal','',0,0,0,0,0,'[]'),(16811,'162.55.236.154','normal','',0,0,0,0,0,'[]'),(16812,'185.51.188.53','normal','',0,0,0,0,0,'[]'),(16813,'68.183.15.215','normal','',0,0,0,1,0,'{\"login\":[1662986840]}'),(16814,'54.149.255.49','normal','',0,0,0,0,0,'[]'),(16815,'54.214.171.52','normal','',0,0,0,0,0,'[]'),(16816,'18.236.158.59','normal','',0,0,0,0,0,'[]'),(16817,'103.130.218.244','normal','',0,0,0,0,0,'[]'),(16818,'79.174.12.5','normal','',0,0,0,0,0,'[]'),(16819,'157.230.208.75','normal','',0,0,0,0,0,'[]'),(16820,'194.163.132.194','normal','',0,0,0,0,0,'[]'),(16821,'77.246.183.70','normal','',0,0,0,0,0,'[]'),(16822,'69.175.19.182','normal','',0,0,0,0,0,'[]'),(16823,'45.156.185.9','normal','',0,0,0,0,0,'[]'),(16824,'37.115.147.62','normal','',0,0,0,0,3,'{\"nf\":[1656209941,1656209942,1656209944]}'),(16825,'94.156.175.192','normal','',0,0,0,1,0,'{\"login\":[1661078533]}'),(16826,'46.161.11.189','normal','',0,0,0,0,0,'[]'),(16827,'65.21.126.121','normal','',0,0,0,0,0,'[]'),(16828,'109.248.175.84','normal','',0,0,0,0,2,'{\"nf\":[1656222434,1656284144]}'),(16829,'185.189.112.19','normal','',0,0,0,0,0,'[]'),(16830,'69.63.189.120','normal','',0,0,0,0,0,'[]'),(16831,'69.63.189.112','normal','',0,0,0,0,0,'[]'),(16832,'165.90.56.1','normal','',0,0,0,0,0,'[]'),(16833,'252.137.56.108','normal','',0,0,0,0,0,'[]'),(16834,'79.142.69.160','normal','',0,0,0,0,0,'[]'),(16835,'20.5.75.243','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1656258824,0,1656258524,0,20,'{\"nf\":[1656258415,1656258421,1656258426,1656258431,1656258438,1656258449,1656258453,1656258456,1656258461,1656258465,1656258470,1656258476,1656258482,1656258486,1656258491,1656258496,1656258500,1656258505,1656258510,1656258524]}'),(16836,'128.127.105.184','normal','',0,0,0,0,0,'[]'),(16837,'41.13.212.42','normal','',0,0,0,0,0,'[]'),(16838,'89.238.150.43','normal','',0,0,0,0,0,'[]'),(16839,'114.119.155.118','normal','',0,0,0,0,0,'[]'),(16840,'146.70.61.131','normal','',0,0,0,0,0,'[]'),(16841,'128.127.104.80','normal','',0,0,0,0,0,'[]'),(16842,'130.255.166.11','normal','',0,0,0,0,0,'[]'),(16843,'130.255.166.121','normal','',0,0,0,0,0,'[]'),(16844,'171.13.14.43','normal','',0,0,0,0,0,'[]'),(16845,'217.138.195.27','normal','',0,0,0,0,0,'[]'),(16846,'34.221.101.59','normal','',0,0,0,0,0,'[]'),(16847,'46.161.11.197','normal','',0,0,0,0,0,'[]'),(16848,'51.77.223.62','normal','',0,0,0,9,0,'{\"login\":[1656291060,1656568248,1656787240,1657136960,1657156131,1657275959,1657319033,1657341808,1657431304]}'),(16849,'185.183.106.3','normal','',0,0,0,0,0,'[]'),(16850,'185.156.174.115','normal','',0,0,0,0,0,'[]'),(16851,'194.36.111.59','normal','',0,0,0,0,0,'[]'),(16852,'184.75.221.59','normal','',0,0,0,0,0,'[]'),(16853,'184.75.223.219','normal','',0,0,0,0,0,'[]'),(16854,'5.161.41.208','normal','',0,0,0,0,7,'{\"nf\":[1656297554,1656297560,1656297564,1656297575,1656297580,1656297584,1656297588]}'),(16855,'149.210.203.82','normal','',0,0,0,0,0,'[]'),(16856,'35.246.215.141','normal','',0,0,0,0,0,'[]'),(16857,'162.240.63.228','normal','',0,0,0,0,0,'[]'),(16858,'41.71.12.25','normal','',0,0,0,0,2,'{\"nf\":[1656306951,1656307043]}'),(16859,'205.169.39.41','normal','',0,0,0,0,0,'[]'),(16860,'213.32.63.213','normal','',0,0,0,0,0,'[]'),(16861,'176.123.0.245','normal','',0,0,0,0,0,'[]'),(16862,'106.15.226.212','normal','',0,0,0,0,0,'[]'),(16863,'5.182.26.14','normal','',0,0,0,0,0,'[]'),(16864,'151.106.11.180','normal','',0,0,0,0,0,'[]'),(16865,'84.17.58.100','normal','',0,0,0,0,0,'[]'),(16866,'118.195.205.136','normal','',0,0,0,1,0,'{\"login\":[1657202830]}'),(16867,'178.162.204.238','normal','',0,0,0,0,0,'[]'),(16868,'89.58.16.24','normal','',0,0,0,0,1,'{\"nf\":[1656339744]}'),(16869,'54.36.148.252','normal','',0,0,0,0,0,'[]'),(16870,'146.70.115.139','normal','',0,0,0,0,0,'[]'),(16871,'197.245.215.241','normal','',0,0,0,0,0,'[]'),(16872,'213.152.161.101','normal','',0,0,0,0,0,'[]'),(16873,'82.102.27.171','normal','',0,0,0,0,0,'[]'),(16874,'200.239.9.155','normal','',0,0,0,0,0,'[]'),(16875,'82.102.23.131','normal','',0,0,0,0,0,'[]'),(16876,'185.81.157.148','normal','',0,0,0,0,0,'[]'),(16877,'146.70.61.139','normal','',0,0,0,0,0,'[]'),(16878,'104.254.90.195','normal','',0,0,0,0,0,'[]'),(16879,'213.152.161.25','normal','',0,0,0,0,0,'[]'),(16880,'165.0.78.98','normal','',0,0,0,0,0,'[]'),(16881,'69.63.189.116','normal','',0,0,0,0,0,'[]'),(16882,'69.63.189.4','normal','',0,0,0,0,0,'[]'),(16883,'213.152.187.200','normal','',0,0,0,0,0,'[]'),(16884,'54.202.17.92','normal','',0,0,0,0,0,'[]'),(16885,'213.152.162.15','normal','',0,0,0,0,0,'[]'),(16886,'213.152.186.163','normal','',0,0,0,0,0,'[]'),(16887,'52.27.194.27','normal','',0,0,0,0,0,'[]'),(16888,'34.217.135.67','normal','',0,0,0,0,0,'[]'),(16889,'35.89.203.202','normal','',0,0,0,0,0,'[]'),(16890,'146.70.115.219','normal','',0,0,0,0,0,'[]'),(16891,'213.152.162.99','normal','',0,0,0,0,0,'[]'),(16892,'192.99.37.133','normal','',0,0,0,0,0,'[]'),(16893,'213.152.161.117','normal','',0,0,0,0,0,'[]'),(16894,'213.152.161.40','normal','',0,0,0,0,0,'[]'),(16895,'199.249.230.7','normal','',0,0,0,0,0,'[]'),(16896,'139.28.218.235','normal','',0,0,0,0,0,'[]'),(16897,'46.183.220.203','normal','',0,0,0,0,0,'[]'),(16898,'141.98.102.179','normal','',0,0,0,0,0,'[]'),(16899,'213.152.161.249','normal','',0,0,0,0,0,'[]'),(16900,'89.238.166.235','normal','',0,0,0,0,0,'[]'),(16901,'213.152.162.170','normal','',0,0,0,0,0,'[]'),(16902,'185.206.225.59','normal','',0,0,0,0,0,'[]'),(16903,'184.75.214.163','normal','',0,0,0,0,0,'[]'),(16904,'68.235.48.108','normal','',0,0,0,0,0,'[]'),(16905,'213.152.187.195','normal','',0,0,0,0,0,'[]'),(16906,'104.254.90.235','normal','',0,0,0,0,0,'[]'),(16907,'20.210.233.63','normal','',0,0,0,0,4,'{\"nf\":[1656396128,1656396153,1656396172,1656396204]}'),(16908,'89.249.74.213','normal','',0,0,0,0,0,'[]'),(16909,'213.152.161.10','normal','',0,0,0,0,0,'[]'),(16910,'197.242.205.234','normal','',0,0,0,0,0,'[]'),(16911,'196.25.50.4','normal','',0,0,0,0,0,'[]'),(16912,'184.75.221.3','normal','',0,0,0,0,0,'[]'),(16913,'141.98.102.243','normal','',0,0,0,0,0,'[]'),(16914,'213.152.161.20','normal','',0,0,0,0,0,'[]'),(16915,'107.167.244.83','normal','',0,0,0,0,0,'[]'),(16916,'62.152.55.125','normal','',0,0,0,0,0,'[]'),(16917,'91.231.84.41','normal','',0,0,0,0,0,'[]'),(16918,'17.121.113.113','normal','',0,0,0,0,0,'[]'),(16919,'91.207.102.163','normal','',0,0,0,0,0,'[]'),(16920,'14.253.202.27','normal','',0,0,0,1,0,'{\"login\":[1656426655]}'),(16921,'102.67.178.215','normal','',0,0,0,0,0,'[]'),(16922,'185.195.237.203','normal','',0,0,0,0,0,'[]'),(16923,'213.152.187.220','normal','',0,0,0,0,0,'[]'),(16924,'86.105.9.67','normal','',0,0,0,0,0,'[]'),(16925,'95.15.189.2','normal','',0,0,0,1,0,'{\"login\":[1656436625]}'),(16926,'184.75.223.211','normal','',0,0,0,0,0,'[]'),(16927,'217.138.252.123','normal','',0,0,0,0,0,'[]'),(16928,'193.37.254.11','normal','',0,0,0,0,0,'[]'),(16929,'15.235.162.90','normal','',0,0,0,0,0,'[]'),(16930,'213.152.162.104','normal','',0,0,0,0,0,'[]'),(16931,'62.102.148.185','normal','',0,0,0,0,0,'[]'),(16932,'54.201.178.66','normal','',0,0,0,0,0,'[]'),(16933,'173.252.83.116','normal','',0,0,0,0,0,'[]'),(16934,'173.252.83.10','normal','',0,0,0,0,0,'[]'),(16935,'213.152.186.35','normal','',0,0,0,0,0,'[]'),(16936,'185.189.112.11','normal','',0,0,0,0,0,'[]'),(16937,'54.36.148.102','normal','',0,0,0,0,0,'[]'),(16938,'104.254.90.203','normal','',0,0,0,0,0,'[]'),(16939,'62.102.148.162','normal','',0,0,0,0,0,'[]'),(16940,'185.93.182.171','normal','',0,0,0,0,0,'[]'),(16941,'37.120.132.83','normal','',0,0,0,0,0,'[]'),(16942,'192.99.0.47','normal','',0,0,0,0,0,'[]'),(16943,'174.35.52.165','normal','',0,0,0,0,0,'[]'),(16944,'185.156.175.59','normal','',0,0,0,0,0,'[]'),(16945,'109.227.92.123','normal','',0,0,0,1,0,'{\"login\":[1656471707]}'),(16946,'185.156.175.35','normal','',0,0,0,0,0,'[]'),(16947,'84.39.117.57','normal','',0,0,0,0,0,'[]'),(16948,'62.102.148.158','normal','',0,0,0,0,0,'[]'),(16949,'104.254.90.187','normal','',0,0,0,0,0,'[]'),(16950,'213.152.161.149','normal','',0,0,0,0,0,'[]'),(16951,'213.152.161.170','normal','',0,0,0,0,0,'[]'),(16952,'213.152.162.10','normal','',0,0,0,0,0,'[]'),(16953,'198.203.28.43','normal','',0,0,0,0,0,'[]'),(16954,'46.183.217.11','normal','',0,0,0,0,0,'[]'),(16955,'104.254.90.243','normal','',0,0,0,0,0,'[]'),(16956,'192.30.89.67','normal','',0,0,0,0,0,'[]'),(16957,'66.45.252.138','normal','',0,0,0,0,0,'[]'),(16958,'149.28.131.162','normal','',0,0,0,0,0,'[]'),(16959,'213.152.161.229','normal','',0,0,0,0,0,'[]'),(16960,'185.119.81.98','normal','',0,0,0,163,0,'{\"login\":[1656490570,1656495945,1656501868,1656522907,1656528191,1656542063,1656545251,1656552453,1656559500,1656595307,1656610329,1656628903,1656635307,1656664005,1656665449,1656673644,1656699340,1656703714,1656705106,1656742187,1656754496,1656792212,1656806683,1656824662,1656825520,1656835642,1656842393,1656867895,1656876054,1656889575,1656893507,1656895640,1656901944,1656905105,1656907466,1656910367,1656937143,1656959850,1658408830,1658415290,1658447791,1658476438,1658491974,1658502782,1658506071,1658509392,1658515991,1658537118,1658561424,1658561430,1658572368,1658575146,1658594869,1658603064,1658611826,1658631535,1658645064,1658676147,1658677415,1658708385,1658739696,1658746880,1658774190,1658794456,1658813876,1658815666,1658819911,1658822455,1658825877,1658844058,1658852961,1658858309,1658862240,1658891331,1658894817,1658902534,1659712700,1659736582,1659762874,1659782824,1659788149,1659789185,1659793355,1659806732,1659812318,1659822515,1659835219,1659855105,1659869750,1659878793,1659894337,1659929192,1659941166,1659944090,1659957689,1660241465,1660275447,1660290364,1660293255,1660299033,1660303286,1660318948,1660319054,1660330459,1660341726,1660356308,1660367155,1660378639,1660380439,1660382079,1660394207,1660421936,1660425456,1660442371,1660444189,1660451013,1660461041,1660461963,1660463993,1660464356,1660470868,1660477782,1660490898,1660491209,1661017017,1661040588,1661048978,1661055847,1661063091,1661067865,1661072554,1661073231,1661074821,1661078274,1661143931,1661157933,1661166832,1661170981,1661174493,1661179221,1661199491,1661217697,1661239110,1661260925,1662904944,1662910993,1662911395,1662932643,1662943800,1662955905,1662977871,1662983731,1662988947,1663002812,1663005783,1663028711,1663030445,1663062211,1663069089,1663106990,1663132543,1663134411,1663145827]}'),(16961,'161.97.170.87','normal','',0,0,0,0,0,'[]'),(16962,'199.249.230.12','normal','',0,0,0,0,0,'[]'),(16963,'91.214.169.69','normal','',0,0,0,0,0,'[]'),(16964,'213.152.162.89','normal','',0,0,0,0,0,'[]'),(16965,'184.75.221.195','normal','',0,0,0,0,0,'[]'),(16966,'178.162.212.214','normal','',0,0,0,0,0,'[]'),(16967,'157.230.151.110','normal','',0,0,0,0,1,'{\"nf\":[1656498555]}'),(16968,'185.189.112.27','normal','',0,0,0,0,0,'[]'),(16969,'199.249.223.130','normal','',0,0,0,0,0,'[]'),(16970,'134.19.179.171','normal','',0,0,0,0,0,'[]'),(16971,'185.119.81.104','normal','',0,0,0,165,0,'{\"login\":[1656504805,1656517395,1656521102,1656526069,1656529248,1656531954,1656543045,1656568491,1656573916,1656576009,1656577051,1656586013,1656637536,1656665665,1656676346,1656684018,1656699762,1656707178,1656726160,1658170386,1658170985,1658180347,1658182849,1658187038,1658204671,1658206305,1658206331,1658218435,1658222198,1658231437,1658233372,1658233643,1658235394,1658235821,1658251965,1658260610,1658269457,1658301893,1658303673,1658310027,1658322253,1658329093,1658335937,1658339371,1658341880,1658343682,1658356973,1658361010,1658373446,1658392065,1658394616,1658395883,1658399692,1658400926,1658402420,1658407833,1658421245,1658421936,1658423955,1658424830,1658425288,1658427722,1658437516,1658440080,1658440298,1658440511,1658450160,1658454133,1658460202,1658465356,1658475893,1658476016,1658487464,1658487945,1658492525,1658502006,1658524590,1658527032,1658546423,1658547653,1658548876,1658549679,1658551902,1658552852,1658556702,1658565431,1658574438,1658593234,1658598086,1658599061,1658630978,1658642907,1658656251,1659178251,1659182034,1659206999,1659213862,1659217857,1659265403,1659277110,1659278922,1659288856,1659300206,1659302306,1659315796,1659316051,1659320165,1659365918,1659402069,1659402837,1659414455,1659446097,1659463732,1659480268,1659506246,1659506729,1659507311,1659526966,1659537757,1659556136,1659567900,1659576166,1659577169,1659578295,1659586900,1659587631,1659610518,1659636014,1659638168,1659638592,1659649083,1659666867,1659690909,1659721532,1659751397,1659765934,1659777208,1659796363,1659859377,1659863750,1659868854,1659869068,1659884545,1659915524,1659920229,1659931541,1659932596,1659974865,1660027116,1660034697,1660038900,1660045175,1660084251,1660084734,1660088703,1660101232,1660104882,1660117034,1660128623,1660129900,1660138046,1660143180,1660169632,1660185551,1663143181]}'),(16972,'35.200.116.155','normal','',0,0,0,0,0,'[]'),(16973,'185.119.81.107','normal','',0,0,0,252,0,'{\"login\":[1656505804,1656512526,1656541734,1656544877,1656549109,1656561980,1656570588,1656598205,1656605173,1656610779,1656636097,1656651636,1656676380,1656684696,1656695063,1656699973,1656705711,1656742433,1656746720,1656747791,1656749898,1656777026,1656779977,1656782454,1656797165,1656807055,1656850189,1656853334,1656884667,1656922165,1656922686,1656928421,1656930024,1656951847,1656985464,1656994946,1657001771,1657002080,1657006398,1657019703,1657030871,1657046156,1657059027,1657061732,1657062683,1657065078,1657067269,1657081577,1657083245,1657083731,1657094822,1657100188,1657103067,1657119335,1657123527,1657133380,1657136111,1657139513,1657140611,1657149535,1657152294,1657156910,1657160208,1657175834,1657177300,1657181854,1657183896,1657188998,1657196936,1657210241,1657215699,1657218953,1657221032,1657226504,1657233218,1657233569,1657246258,1657262622,1657275440,1657286853,1657385026,1657428065,1657438519,1657439625,1657471079,1657495875,1657497540,1657500848,1657503761,1657509758,1657521238,1657526114,1657554126,1657558492,1657570776,1657575527,1657607017,1657609094,1657613483,1658189878,1658198923,1658199175,1658222610,1658233067,1658263694,1658277593,1658283625,1658284032,1658310358,1658310525,1658338864,1658346815,1658353149,1658353826,1658355013,1658363285,1658398565,1658676925,1658678680,1658702250,1658717715,1658719728,1658725295,1658744262,1658761067,1658769132,1658774700,1658802096,1658806893,1658859476,1658881251,1658886768,1658918161,1658918535,1659210250,1659210257,1659214595,1659295735,1659307446,1659324501,1659346578,1659359340,1659370481,1659388254,1659397209,1659399537,1659403334,1659403465,1659411863,1659412906,1659416561,1659417875,1659426904,1659435666,1659446694,1659455983,1659456328,1659458984,1659464876,1659467343,1659468623,1659476762,1659485478,1659487452,1659487943,1659509235,1659516107,1659518054,1659518770,1659520827,1659526991,1659530220,1659530322,1659540192,1659562584,1659567694,1659611864,1659614614,1659623266,1659624308,1659631871,1659639437,1659653145,1659653307,1659653614,1659653889,1659655394,1659659564,1659665865,1659667845,1659689784,1661530200,1661545541,1661561571,1661568809,1661579150,1661586929,1661589453,1661621883,1661632394,1661646653,1661665500,1661669136,1661677024,1661693531,1661694989,1661716326,1661726573,1661732683,1661742809,1661775986,1661778283,1661798424,1661799343,1661804003,1661816645,1661844783,1661846258,1661857588,1661864608,1661894231,1661911363,1661920707,1661958014,1661990344,1662004478,1662010995,1662012645,1662015887,1662018122,1662031211,1662889514,1662893947,1662901044,1662901997,1662914597,1662928993,1662940728,1662945816,1662968139,1662991748,1663012134,1663013202,1663015779,1663018495,1663040076,1663048033,1663053391,1663075445,1663088228,1663151837,1663154981]}'),(16974,'141.193.111.154','normal','',0,0,0,0,0,'[]'),(16975,'185.119.81.108','normal','',0,0,0,326,0,'{\"login\":[1656508825,1656516758,1656517824,1656538944,1656557997,1656558498,1656570588,1656586117,1656587927,1656614652,1656615978,1656635718,1656654965,1656677597,1656692919,1656696758,1656727847,1656737668,1656739703,1657112703,1657122723,1657130058,1657135718,1657141836,1657147141,1657150103,1657158716,1657176116,1657192591,1657206167,1657209140,1657209942,1657213289,1657223585,1657224279,1657232815,1657247152,1657247561,1657254427,1657255128,1657265590,1657267817,1657271804,1657272779,1657292733,1657299120,1657324476,1657326445,1657339431,1657348691,1657352414,1657359119,1657361134,1657369046,1657369949,1657374865,1657376913,1657377008,1657380127,1657402866,1657406708,1657409288,1657413182,1657430470,1657434873,1657439777,1657442139,1657447442,1657449616,1657459198,1657471063,1657472742,1657473544,1657500158,1657502445,1657504083,1657523330,1657530221,1657532655,1657535293,1657536493,1657550648,1657552096,1657558242,1657566141,1657569311,1657570057,1657570869,1657574336,1657577312,1657578761,1657579178,1657588830,1657592862,1657601235,1657602670,1657616894,1658179389,1658196647,1658218616,1658237436,1658242757,1658244444,1658258199,1658264358,1658265221,1658326713,1658331685,1658353706,1658355225,1658359524,1658375945,1658380634,1658384391,1658389552,1658415201,1658424859,1658427385,1658439715,1658458293,1658463375,1658471177,1658503794,1658516702,1658539429,1658549218,1658553220,1658555847,1658570471,1658577089,1658580433,1658585615,1658592706,1658594729,1658601143,1658602398,1658626050,1658672809,1658678476,1658693649,1658694260,1658708906,1658715980,1658740961,1658769224,1658784248,1658807455,1658837328,1658857851,1658858221,1658875635,1658877414,1658900145,1658909548,1658925697,1659451640,1659452010,1659452868,1659456193,1659464602,1659467591,1659479331,1659481544,1659481833,1659482945,1659495727,1659513006,1659519143,1659520350,1659525384,1659527649,1659535104,1659536023,1659540621,1659540788,1659541170,1659543279,1659547605,1659547967,1659551605,1659552111,1659552494,1659554634,1659560074,1659568488,1659573633,1659574354,1659601954,1659603450,1659608000,1659608419,1659613369,1659617796,1659625460,1659630830,1659634220,1659640001,1659646223,1659648963,1659649624,1659650196,1659652152,1659659256,1659661485,1659671214,1659672509,1659673952,1659679241,1659687963,1659691210,1659697839,1659702045,1660238708,1660250954,1660260608,1660266282,1660283031,1660290514,1660291332,1660301844,1660342020,1660345364,1660349925,1660408669,1660421759,1660423364,1660443322,1660460342,1660491453,1660498992,1660548055,1660548267,1660566146,1660573229,1660578424,1660612107,1660612554,1660626408,1660629218,1660639976,1660643827,1660654508,1660659174,1660669032,1660669285,1660680789,1660716651,1660721473,1660746002,1660751383,1660755914,1660765165,1661348802,1661367045,1661373459,1661373551,1661379374,1661410567,1661420336,1661431287,1661443348,1661465822,1661467567,1661481848,1661485071,1661493192,1661494968,1661519028,1661522942,1661526948,1661797968,1661801400,1661822896,1661823156,1661852769,1661877273,1661884146,1661887559,1661897093,1661909812,1661922779,1661926431,1661950466,1661967270,1661968914,1661973646,1661991625,1661996673,1662036765,1662039755,1662341762,1662344596,1662381407,1662385368,1662447236,1662461183,1662465049,1662477015,1662477558,1662484653,1662499363,1662500705,1662501668,1662507317,1662514001,1662557125,1662571916,1662606397,1662620166,1662924602,1662939816,1662940504,1662970437,1662974105,1662977746,1662982394,1662995969,1663013471,1663029021,1663045057,1663067032,1663074365,1663085337,1663087442,1663097885,1663150574]}'),(16976,'162.240.31.221','normal','',0,0,0,0,0,'[]'),(16977,'118.98.64.188','normal','',0,0,0,0,0,'[]'),(16978,'203.130.215.66','normal','',0,0,0,0,0,'[]'),(16979,'87.101.92.171','normal','',0,0,0,0,0,'[]'),(16980,'146.70.76.43','normal','',0,0,0,0,0,'[]'),(16981,'185.156.174.155','normal','',0,0,0,0,0,'[]'),(16982,'17.121.114.123','normal','',0,0,0,0,0,'[]'),(16983,'178.170.39.182','normal','',0,0,0,0,2,'{\"nf\":[1656528340,1656528341]}'),(16984,'185.119.81.109','normal','',0,0,0,130,0,'{\"login\":[1656530663,1656534323,1656536352,1656547390,1656553955,1656562020,1656583699,1656624650,1656627566,1656650957,1656664245,1656667672,1656684554,1656686665,1656704343,1656706647,1656719950,1656764363,1656764474,1657622001,1657639534,1657648907,1657653883,1657663056,1657686052,1657687460,1657692316,1657693605,1657700070,1657722106,1657748685,1657793555,1657798587,1657825463,1657828823,1657840346,1657845465,1658679751,1658680613,1658704684,1658712670,1658715230,1658720486,1658726739,1658735778,1658736518,1658750279,1658751664,1658757583,1658763687,1658770033,1658778436,1658780188,1658784369,1658796879,1658801437,1658806637,1658806749,1658807172,1658817841,1658818935,1658837342,1658840457,1658859413,1658870225,1658877818,1658881235,1658890565,1658897708,1658898761,1658900669,1658902445,1658915426,1660228752,1660236635,1660257072,1660259615,1660266922,1660283822,1660312069,1660316558,1660341908,1660351725,1660368049,1660377155,1660387706,1660389060,1660412408,1660434050,1660434386,1660439439,1660447144,1660995538,1661013327,1661017908,1661020533,1661025428,1661052659,1661071365,1661078863,1661113947,1661114766,1661124972,1661144111,1661174598,1661176690,1661179273,1661196028,1661215605,1661226660,1661227553,1662788236,1662792923,1662823821,1662825603,1662835628,1662846193,1662858168,1662868393,1662883379,1662891138,1662907213,1662941922,1662973419,1662980842,1662984612,1662997546,1662999894,1663024668,1663035238]}'),(16985,'34.222.166.121','normal','',0,0,0,0,0,'[]'),(16986,'45.162.229.147','normal','',0,0,0,0,0,'[]'),(16987,'54.203.151.239','normal','',0,0,0,0,0,'[]'),(16988,'185.156.175.43','normal','',0,0,0,0,0,'[]'),(16989,'137.63.71.51','normal','',0,0,0,0,0,'[]'),(16990,'104.244.72.129','normal','',0,0,0,0,0,'[]'),(16991,'185.38.175.131','normal','',0,0,0,0,1,'{\"nf\":[1656544780]}'),(16992,'50.60.161.14','normal','',0,0,0,1,0,'{\"login\":[1656545804]}'),(16993,'124.126.78.154','normal','',0,0,0,0,0,'[]'),(16994,'213.152.162.84','normal','',0,0,0,0,0,'[]'),(16995,'14.250.154.241','normal','',0,0,0,1,0,'{\"login\":[1656553526]}'),(16996,'82.102.28.107','normal','',0,0,0,0,0,'[]'),(16997,'201.226.184.59','normal','',0,0,0,1,0,'{\"login\":[1656558650]}'),(16998,'141.98.101.133','normal','',0,0,0,0,0,'[]'),(16999,'185.104.184.43','normal','',0,0,0,0,0,'[]'),(17000,'96.47.229.59','normal','',0,0,0,0,0,'[]'),(17001,'54.36.120.197','normal','',0,0,0,0,1,'{\"nf\":[1656573509]}'),(17002,'213.152.186.168','normal','',0,0,0,0,0,'[]'),(17003,'154.51.140.185','normal','',0,0,0,0,2,'{\"nf\":[1656581379,1656581390]}'),(17004,'213.152.187.235','normal','',0,0,0,0,0,'[]'),(17005,'184.75.221.171','normal','',0,0,0,0,0,'[]'),(17006,'193.37.254.3','normal','',0,0,0,0,0,'[]'),(17007,'194.163.166.41','normal','',0,0,0,0,1,'{\"nf\":[1656595678]}'),(17008,'184.75.221.107','normal','',0,0,0,0,0,'[]'),(17009,'186.86.122.252','normal','',0,0,0,1,0,'{\"login\":[1656598564]}'),(17010,'184.75.223.227','normal','',0,0,0,0,0,'[]'),(17011,'184.75.223.203','normal','',0,0,0,0,0,'[]'),(17012,'54.36.148.110','normal','',0,0,0,0,0,'[]'),(17013,'194.187.251.115','normal','',0,0,0,0,0,'[]'),(17014,'213.152.161.240','normal','',0,0,0,0,0,'[]'),(17015,'46.183.216.163','normal','',0,0,0,0,0,'[]'),(17016,'54.68.239.93','normal','',0,0,0,0,0,'[]'),(17017,'34.208.248.157','normal','',0,0,0,0,0,'[]'),(17018,'35.88.82.171','normal','',0,0,0,0,0,'[]'),(17019,'134.19.179.203','normal','',0,0,0,0,0,'[]'),(17020,'62.102.148.189','normal','',0,0,0,0,0,'[]'),(17021,'89.249.74.218','normal','',0,0,0,0,0,'[]'),(17022,'109.248.175.180','normal','',0,0,0,0,8,'{\"nf\":[1656629768,1656643628,1656679773,1656779561,1656805853,1656824836,1656829509,1656887787]}'),(17023,'37.120.132.91','normal','',0,0,0,0,0,'[]'),(17024,'213.152.161.85','normal','',0,0,0,0,0,'[]'),(17025,'51.91.124.200','normal','',0,0,0,0,1,'{\"nf\":[1656641946]}'),(17026,'124.206.180.144','normal','',0,0,0,0,0,'[]'),(17027,'142.11.211.17','normal','',0,0,0,0,0,'[]'),(17028,'103.251.94.111','normal','',0,0,0,0,0,'[]'),(17029,'149.129.181.108','normal','',0,0,0,0,0,'[]'),(17030,'31.187.70.39','normal','',0,0,0,0,0,'[]'),(17031,'114.119.150.75','normal','',0,0,0,0,0,'[]'),(17032,'35.80.143.205','normal','',0,0,0,0,0,'[]'),(17033,'13.250.88.179','normal','',0,0,0,0,0,'[]'),(17034,'209.182.213.119','normal','',0,0,0,0,0,'[]'),(17035,'134.19.179.187','normal','',0,0,0,0,0,'[]'),(17036,'116.202.227.17','normal','',0,0,0,0,0,'[]'),(17037,'94.130.87.137','normal','',0,0,0,0,0,'[]'),(17038,'82.220.34.48','normal','',0,0,0,0,0,'[]'),(17039,'91.234.46.210','normal','',0,0,0,0,0,'[]'),(17040,'93.188.162.164','normal','',0,0,0,0,0,'[]'),(17041,'65.21.126.186','normal','',0,0,0,0,0,'[]'),(17042,'45.131.1.200','normal','',0,0,0,0,0,'[]'),(17043,'51.210.110.120','normal','',0,0,0,0,0,'[]'),(17044,'162.240.47.202','normal','',0,0,0,0,0,'[]'),(17045,'104.255.174.93','normal','',0,0,0,1,0,'{\"login\":[1660305564]}'),(17046,'13.81.175.147','normal','',0,0,0,0,0,'[]'),(17047,'185.226.118.123','normal','',0,0,0,0,0,'[]'),(17048,'120.77.14.104','normal','',0,0,0,0,0,'[]'),(17049,'162.214.76.126','normal','',0,0,0,2,0,'{\"login\":[1661156814,1662227636]}'),(17050,'5.189.150.204','normal','',0,0,0,0,0,'[]'),(17051,'54.37.155.140','normal','',0,0,0,0,0,'[]'),(17052,'179.43.154.200','normal','',0,0,0,0,1,'{\"nf\":[1656675489]}'),(17053,'164.46.102.114','normal','',0,0,0,0,0,'[]'),(17054,'198.12.250.252','normal','',0,0,0,0,0,'[]'),(17055,'109.205.181.182','normal','',0,0,0,0,0,'[]'),(17056,'207.148.116.39','normal','',0,0,0,0,0,'[]'),(17057,'54.153.45.214','normal','',0,0,0,0,0,'[]'),(17058,'94.182.133.73','normal','',0,0,0,0,0,'[]'),(17059,'17.121.112.85','normal','',0,0,0,0,0,'[]'),(17060,'209.126.84.9','normal','',0,0,0,0,0,'[]'),(17061,'85.234.145.160','normal','',0,0,0,0,0,'[]'),(17062,'81.169.155.238','normal','',0,0,0,0,0,'[]'),(17063,'185.153.8.103','normal','',0,0,0,1,0,'{\"login\":[1661678379]}'),(17064,'142.93.132.111','normal','',0,0,0,0,0,'[]'),(17065,'34.150.86.50','normal','',0,0,0,0,0,'[]'),(17066,'162.214.162.161','normal','',0,0,0,0,0,'[]'),(17067,'92.119.156.31','normal','',0,0,0,0,0,'[]'),(17068,'78.159.100.77','normal','',0,0,0,0,0,'[]'),(17069,'108.179.253.20','normal','',0,0,0,0,0,'[]'),(17070,'116.203.222.121','normal','',0,0,0,1,0,'{\"login\":[1661673414]}'),(17071,'130.61.143.194','normal','',0,0,0,1,0,'{\"login\":[1661082105]}'),(17072,'158.101.96.192','normal','',0,0,0,0,0,'[]'),(17073,'65.108.247.149','normal','',0,0,0,0,0,'[]'),(17074,'165.73.81.222','normal','',0,0,0,0,0,'[]'),(17075,'51.254.183.200','normal','',0,0,0,0,0,'[]'),(17076,'165.22.69.253','normal','',0,0,0,0,0,'[]'),(17077,'103.216.146.17','normal','',0,0,0,0,0,'[]'),(17078,'45.89.238.163','normal','',0,0,0,0,0,'[]'),(17079,'194.32.77.195','normal','',0,0,0,0,0,'[]'),(17080,'35.89.191.117','normal','',0,0,0,0,0,'[]'),(17081,'34.221.7.240','normal','',0,0,0,0,0,'[]'),(17082,'87.236.20.246','normal','',0,0,0,0,0,'[]'),(17083,'103.215.3.89','normal','',0,0,0,0,0,'[]'),(17084,'64.227.24.2','normal','',0,0,0,0,0,'[]'),(17085,'162.240.24.106','normal','',0,0,0,0,0,'[]'),(17086,'172.105.115.235','normal','',0,0,0,0,0,'[]'),(17087,'82.165.78.40','normal','',0,0,0,1,0,'{\"login\":[1661677485]}'),(17088,'66.29.138.73','normal','',0,0,0,1,0,'{\"login\":[1660472592]}'),(17089,'54.189.99.69','normal','',0,0,0,0,0,'[]'),(17090,'137.184.140.67','normal','',0,0,0,2,0,'{\"login\":[1657110567,1661079535]}'),(17091,'91.205.175.12','normal','',0,0,0,1,0,'{\"login\":[1657203673]}'),(17092,'38.242.220.10','normal','',0,0,0,0,0,'[]'),(17093,'54.39.13.86','normal','',0,0,0,0,1,'{\"nf\":[1656723572]}'),(17094,'157.90.162.182','normal','',0,0,0,0,1,'{\"nf\":[1656728027]}'),(17095,'185.119.81.101','normal','',0,0,0,178,0,'{\"login\":[1656734684,1656751100,1656751192,1656752886,1656784736,1656790940,1656799192,1656807171,1656807957,1656825800,1656833473,1656838434,1656849130,1656870503,1656898410,1656939434,1656956351,1656980133,1656986311,1657641706,1657655697,1657656267,1657677098,1657681281,1657686866,1657690825,1657696581,1657710831,1657743353,1657769792,1657778180,1657784453,1657791300,1657795147,1657821444,1657828151,1657844588,1657863317,1657867767,1657879157,1657917833,1657922784,1657938323,1657940813,1657942313,1657952795,1657958197,1657977728,1657996074,1657996093,1658004912,1658046066,1658048162,1658066103,1658085607,1658097613,1658101644,1658127038,1658135801,1658729162,1658735812,1658738719,1658742581,1658769867,1658833290,1658835850,1658837394,1658840589,1658841406,1658845609,1658850024,1658850114,1658884213,1658895805,1658944407,1658964854,1658965330,1658967352,1658971777,1658983241,1660552942,1660577767,1660580851,1660633909,1660639020,1660658429,1660659837,1660665475,1660667151,1660685341,1660693619,1660711803,1660717879,1660757846,1660771185,1660772665,1660782601,1660787364,1661197657,1661200105,1661215945,1661230479,1661247506,1661253887,1661270019,1661287379,1661295061,1661301426,1661347647,1661350930,1661363204,1661373529,1661388675,1661421908,1661422958,1661425298,1661430467,1661445585,1661451491,1661457620,1661463989,1661483872,1661487591,1661488804,1661506021,1661527536,1661552236,1661552484,1661573670,1661598122,1661600286,1661618453,1661623605,1661627905,1661647100,1661653286,1661665580,1662295208,1662318918,1662323066,1662325251,1662328028,1662338151,1662344233,1662348812,1662351362,1662369012,1662372006,1662372348,1662375180,1662401348,1662405936,1662406359,1662465597,1662474892,1662530451,1662831937,1662857277,1662861371,1662875139,1662904791,1662911443,1662916277,1662940490,1662941895,1662948070,1662961565,1662976993,1662992528,1663046292,1663046915,1663049666,1663063413,1663071319,1663094273,1663097929,1663122933,1663135493]}'),(17096,'35.198.94.155','normal','',0,0,0,6,0,'{\"login\":[1656742605,1656745488,1656792808,1656821227,1657435749,1657480417]}'),(17097,'104.131.111.139','normal','',0,0,0,8,0,'{\"login\":[1656742725,1656791546,1656792235,1656818725,1657441674,1657444172,1657462484,1657498251]}'),(17098,'159.89.132.193','normal','',0,0,0,6,0,'{\"login\":[1656742900,1656753665,1656765691,1656769350,1656795424,1656833860]}'),(17099,'31.24.159.204','normal','',0,0,0,18,0,'{\"login\":[1656743015,1656774543,1656776565,1656779971,1656784660,1656811301,1657436592,1657451854,1657463388,1657479320,1657480260,1657495905,1657514746,1657518894,1657836715,1657850901,1661770433,1661773382]}'),(17100,'165.232.177.194','normal','',0,0,0,18,0,'{\"login\":[1656743085,1656759020,1656771168,1656798105,1656833295,1657448525,1657491954,1657509207,1657519875,1657734553,1657801552,1657821885,1659347255,1659378731,1659401786,1659403619,1659958559,1660022338]}'),(17101,'43.128.48.55','normal','',0,0,0,6,0,'{\"login\":[1656743221,1656786997,1656794641,1656804056,1656828392,1656830367]}'),(17102,'89.253.238.83','normal','',0,0,0,14,0,'{\"login\":[1656743319,1656743732,1656763972,1656821302,1656834120,1657493275,1657513982,1657517544,1659386731,1659417835,1660211294,1660284297,1661775243,1661781166]}'),(17103,'148.72.214.212','normal','',0,0,0,23,0,'{\"login\":[1656743538,1656747238,1656764204,1656800530,1657430762,1657730379,1657736313,1657744689,1657755841,1657811454,1659897981,1660026824,1660191703,1660196052,1660377992,1660879282,1660888276,1661768747,1661774729,1661801013,1661816946,1661817812,1661827317]}'),(17104,'128.199.116.88','normal','',0,0,0,1,0,'{\"login\":[1656743617]}'),(17105,'93.158.161.41','normal','',0,0,0,0,0,'[]'),(17106,'185.208.79.197','normal','',0,0,0,16,0,'{\"login\":[1656744322,1656744537,1656753006,1656754929,1656819965,1656827172,1657450668,1657467812,1657469205,1657470827,1657485133,1657485453,1657511000,1657739877,1659410095,1659411949]}'),(17107,'148.72.244.104','normal','',0,0,0,7,0,'{\"login\":[1656744624,1656746085,1656757735,1656762104,1656778119,1656781411,1656791089]}'),(17108,'85.128.143.106','normal','',0,0,0,4,0,'{\"login\":[1656746161,1656782607,1656783405,1656797527]}'),(17109,'85.128.143.82','normal','',0,0,0,4,0,'{\"login\":[1656746434,1656765244,1656782322,1656802177]}'),(17110,'123.25.115.29','normal','',0,0,0,1,0,'{\"login\":[1656746640]}'),(17111,'123.25.115.88','normal','',0,0,0,0,0,'[]'),(17112,'142.93.34.8','normal','',0,0,0,9,0,'{\"login\":[1656748238,1656775906,1656801067,1657441873,1657447583,1657478518,1657487279,1657515139,1657864783]}'),(17113,'114.119.151.64','normal','',0,0,0,0,0,'[]'),(17114,'107.180.95.182','normal','',0,0,0,8,0,'{\"login\":[1656748581,1656759688,1656781074,1656805786,1656819214,1657447202,1657462188,1657502793]}'),(17115,'164.68.115.151','normal','',0,0,0,6,0,'{\"login\":[1656748983,1656756289,1656776732,1656799832,1656808139,1656821887]}'),(17116,'85.128.143.96','normal','',0,0,0,5,0,'{\"login\":[1656749075,1656755024,1656772059,1656783313,1656788969]}'),(17117,'54.36.183.167','normal','',0,0,0,4,0,'{\"login\":[1656750235,1656753248,1656783668,1656790166]}'),(17118,'66.42.58.107','normal','',0,0,0,1,0,'{\"login\":[1656750491]}'),(17119,'65.108.192.200','normal','',0,0,0,0,0,'[]'),(17120,'125.25.183.92','normal','',0,0,0,8,0,'{\"login\":[1656752305,1656764526,1656813539,1656814337,1656818910,1657479505,1657511756,1657514339]}'),(17121,'34.79.65.59','normal','',0,0,0,5,0,'{\"login\":[1656752611,1656810431,1657741610,1657806872,1657852798]}'),(17122,'5.134.122.60','normal','',0,0,0,0,0,'[]'),(17123,'144.76.199.47','normal','',0,0,0,32,0,'{\"login\":[1656753884,1656760263,1656760926,1656772629,1656778869,1656779321,1656779693,1656780241,1656781645,1656784222,1656798413,1656798865,1656802794,1656806221,1656810479,1656813830,1656819307,1656822531,1656832083,1657466302,1657473222,1657489531,1657698061,1657700483,1657701115,1657704536,1657806156,1657854222,1657876256,1659371220,1659372793,1659383045]}'),(17124,'34.238.194.108','normal','',0,0,0,5,0,'{\"login\":[1656754819,1656794523,1656797968,1656818154,1656823801]}'),(17125,'185.215.180.149','normal','',0,0,0,7,0,'{\"login\":[1656755363,1656799407,1656801344,1656808836,1656809183,1656816613,1656826356]}'),(17126,'100.20.25.67','normal','',0,0,0,3,0,'{\"login\":[1656756765,1656794415,1656819667]}'),(17127,'52.230.20.89','normal','',0,0,0,13,0,'{\"login\":[1656758101,1656778664,1656834395,1657456380,1657513311,1657662963,1657688012,1657757650,1657856906,1661760059,1661804010,1661822438,1661836407]}'),(17128,'172.93.99.250','normal','',0,0,0,0,0,'[]'),(17129,'69.12.68.106','normal','',0,0,0,25,0,'{\"login\":[1656759242,1656782144,1656796373,1656824668,1656825629,1656829537,1657430318,1657468589,1657486734,1657513149,1657513487,1657706159,1657829937,1657878240,1659397253,1660096825,1660293832,1660401098,1660638679,1661753720,1661761532,1661770613,1661778401,1661787489,1661837222]}'),(17130,'85.128.143.24','normal','',0,0,0,3,0,'{\"login\":[1656760002,1656802270,1656824242]}'),(17131,'161.97.106.24','normal','',0,0,0,0,0,'[]'),(17132,'85.128.143.12','normal','',0,0,0,5,0,'{\"login\":[1656763375,1656777909,1656819081,1656831168,1656833195]}'),(17133,'67.222.108.228','normal','',0,0,0,0,0,'[]'),(17134,'193.70.87.111','normal','',0,0,0,4,0,'{\"login\":[1656766484,1656813654,1656819455,1656824557]}'),(17135,'66.94.117.201','normal','',0,0,0,7,0,'{\"login\":[1656767778,1656778768,1656814956,1657433469,1657443465,1657485738,1657677658]}'),(17136,'192.169.179.17','normal','',0,0,0,7,0,'{\"login\":[1656768116,1657446799,1657487956,1657659299,1657673851,1657750282,1657766866]}'),(17137,'37.19.123.58','normal','',0,0,0,12,0,'{\"login\":[1656768396,1656773818,1656777442,1656800388,1657458757,1657464161,1657516314,1659349496,1659425393,1661777266,1661788112,1661813216]}'),(17138,'173.212.196.127','normal','',0,0,0,0,0,'[]'),(17139,'65.21.3.87','normal','',0,0,0,11,0,'{\"login\":[1656769744,1656786662,1656790059,1656795703,1657435990,1657445156,1657479655,1657480559,1657494682,1657502679,1657504919]}'),(17140,'82.143.163.38','normal','',0,0,0,5,0,'{\"login\":[1656769800,1656814049,1657452113,1657457662,1657476019]}'),(17141,'45.123.203.26','normal','',0,0,0,0,0,'[]'),(17142,'164.68.99.107','normal','',0,0,0,3,0,'{\"login\":[1656770567,1656785187,1656807102]}'),(17143,'91.224.23.225','normal','',0,0,0,0,0,'[]'),(17144,'128.199.195.211','normal','',0,0,0,4,0,'{\"login\":[1656771613,1656803080,1656815291,1656817177]}'),(17145,'128.199.11.139','normal','',0,0,0,8,0,'{\"login\":[1656773017,1656777646,1656795588,1656808583,1656816952,1657459216,1657461555,1657481434]}'),(17146,'45.79.139.225','normal','',0,0,0,4,0,'{\"login\":[1656773694,1656783180,1656788624,1656804485]}'),(17147,'144.126.211.180','normal','',0,0,0,3,0,'{\"login\":[1656774072,1656777163,1656801511]}'),(17148,'46.101.119.117','normal','',0,0,0,2,0,'{\"login\":[1656775828,1656781809]}'),(17149,'123.25.115.65','normal','',0,0,0,4,0,'{\"login\":[1657506506,1657810746,1657882333,1659398538]}'),(17150,'123.25.115.160','normal','',0,0,0,5,0,'{\"login\":[1656777558,1656833655,1657512663,1657665641,1659384562]}'),(17151,'161.97.88.147','normal','',0,0,0,4,0,'{\"login\":[1656778429,1656805572,1657483927,1657490103]}'),(17152,'129.232.128.66','normal','',0,0,0,0,0,'[]'),(17153,'103.74.120.192','normal','',0,0,0,0,0,'[]'),(17154,'207.154.234.6','normal','',0,0,0,0,0,'[]'),(17155,'85.128.143.155','normal','',0,0,0,2,0,'{\"login\":[1656782728,1656788081]}'),(17156,'199.192.28.232','normal','',0,0,0,1,0,'{\"login\":[1658153666]}'),(17157,'52.44.42.169','normal','',0,0,0,0,0,'[]'),(17158,'206.81.3.186','blocked','You have been locked out due to too many invalid login attempts.',1656789664,1656789364,0,5,0,'{\"login\":[1656789357,1656789358,1656789359,1656789361,1656789363]}'),(17159,'85.128.143.62','normal','',0,0,0,3,0,'{\"login\":[1656790712,1656805444,1656833535]}'),(17160,'217.66.226.212','normal','',0,0,0,5,0,'{\"login\":[1656791465,1656820682,1656827841,1657472798,1657493225]}'),(17161,'138.197.189.4','normal','',0,0,0,0,1,'{\"nf\":[1656794856]}'),(17162,'34.213.225.33','normal','',0,0,0,0,0,'[]'),(17163,'34.215.122.118','normal','',0,0,0,0,0,'[]'),(17164,'52.37.105.201','normal','',0,0,0,0,0,'[]'),(17165,'54.36.148.89','normal','',0,0,0,0,0,'[]'),(17166,'35.233.45.178','normal','',0,0,0,2,0,'{\"login\":[1656797271,1656816170]}'),(17167,'147.182.206.160','normal','',0,0,0,2,0,'{\"login\":[1656800976,1656827894]}'),(17168,'82.220.91.133','normal','',0,0,0,0,0,'[]'),(17169,'45.131.66.143','normal','',0,0,0,0,0,'[]'),(17170,'159.223.55.187','normal','',0,0,0,0,0,'[]'),(17171,'35.195.83.14','normal','',0,0,0,0,0,'[]'),(17172,'159.65.71.177','normal','',0,0,0,0,0,'[]'),(17173,'123.25.115.141','normal','',0,0,0,4,0,'{\"login\":[1656813743,1656815429,1659349248,1659381600]}'),(17174,'74.208.244.150','normal','',0,0,0,0,0,'[]'),(17175,'74.208.244.150','normal','',0,0,0,0,0,'[]'),(17176,'91.103.219.229','normal','',0,0,0,0,0,'[]'),(17177,'69.61.33.116','normal','',0,0,0,0,0,'[]'),(17178,'69.61.33.116','normal','',0,0,0,0,0,'[]'),(17179,'95.179.129.150','normal','',0,0,0,0,0,'[]'),(17180,'50.62.177.5','normal','',0,0,0,0,0,'[]'),(17181,'167.179.86.33','normal','',0,0,0,0,0,'[]'),(17182,'209.235.237.91','normal','',0,0,0,0,0,'[]'),(17183,'185.202.178.200','normal','',0,0,0,0,0,'[]'),(17184,'185.202.178.200','normal','',0,0,0,0,0,'[]'),(17185,'62.67.203.35','normal','',0,0,0,0,0,'[]'),(17186,'62.67.203.35','normal','',0,0,0,0,0,'[]'),(17187,'64.225.115.204','normal','',0,0,0,0,0,'[]'),(17188,'159.65.131.173','normal','',0,0,0,0,0,'[]'),(17189,'159.65.131.173','normal','',0,0,0,0,0,'[]'),(17190,'67.227.130.24','normal','',0,0,0,0,0,'[]'),(17191,'67.227.130.24','normal','',0,0,0,0,0,'[]'),(17192,'43.240.113.88','normal','',0,0,0,0,0,'[]'),(17193,'27.254.86.9','normal','',0,0,0,0,0,'[]'),(17194,'27.254.86.9','normal','',0,0,0,0,0,'[]'),(17195,'103.130.212.57','normal','',0,0,0,2,0,'{\"login\":[1660300379,1661156250]}'),(17196,'50.63.13.221','normal','',0,0,0,0,0,'[]'),(17197,'147.189.135.64','normal','',0,0,0,0,0,'[]'),(17198,'103.113.24.254','normal','',0,0,0,0,1,'{\"nf\":[1660978819]}'),(17199,'159.223.69.184','normal','',0,0,0,13,0,'{\"login\":[1656829334,1656835162,1657672869,1657760649,1657779852,1659357713,1659362006,1659367862,1659368383,1659374128,1661763834,1661792393,1661810698]}'),(17200,'96.8.117.115','normal','',0,0,0,0,0,'[]'),(17201,'51.79.186.188','normal','',0,0,0,3,0,'{\"login\":[1657470671,1657496694,1657501107]}'),(17202,'165.22.107.130','normal','',0,0,0,0,0,'[]'),(17203,'85.128.143.120','normal','',0,0,0,0,0,'[]'),(17204,'185.142.159.154','normal','',0,0,0,0,0,'[]'),(17205,'85.128.143.85','normal','',0,0,0,1,0,'{\"login\":[1656824322]}'),(17206,'195.201.195.185','normal','You have been locked out due to too many invalid login attempts.',1656827238,1656826938,0,0,5,'{\"nf\":[1662590784,1662590785,1662590786,1662590790,1662590792],\"login\":[]}'),(17207,'103.171.181.53','normal','',0,0,0,0,0,'[]'),(17208,'84.242.125.234','normal','',0,0,0,0,0,'[]'),(17209,'23.226.67.134','normal','',0,0,0,0,0,'[]'),(17210,'45.126.210.82','normal','',0,0,0,0,0,'[]'),(17211,'104.248.80.191','normal','',0,0,0,0,0,'[]'),(17212,'165.227.181.87','normal','',0,0,0,15,0,'{\"login\":[1656832867,1657444250,1657493453,1657506158,1657809446,1657875516,1659354714,1659380341,1659420060,1660092792,1660144819,1660157142,1660340256,1660483012,1660677562]}'),(17213,'206.188.197.36','normal','',0,0,0,0,0,'[]'),(17214,'129.232.133.146','normal','',0,0,0,0,0,'[]'),(17215,'51.210.156.151','normal','',0,0,0,0,0,'[]'),(17216,'3.233.62.231','normal','',0,0,0,0,0,'[]'),(17217,'51.159.105.232','normal','',0,0,0,3,0,'{\"login\":[1661074024,1662042826,1662300971]}'),(17218,'107.180.104.175','normal','',0,0,0,0,0,'[]'),(17219,'34.146.223.96','normal','',0,0,0,0,0,'[]'),(17220,'110.40.133.236','normal','',0,0,0,0,0,'[]'),(17221,'20.214.8.177','normal','',0,0,0,0,1,'{\"nf\":[1656842356]}'),(17222,'103.152.248.132','normal','',0,0,0,0,0,'[]'),(17223,'92.223.85.60','normal','',0,0,0,0,6,'{\"nf\":[1656842696,1656842698,1656842701,1656843210,1656843215,1656843218]}'),(17224,'119.12.232.32','normal','',0,0,0,0,0,'[]'),(17225,'146.88.237.18','normal','',0,0,0,0,0,'[]'),(17226,'51.79.144.103','normal','',0,0,0,0,0,'[]'),(17227,'43.231.112.120','normal','',0,0,0,0,0,'[]'),(17228,'201.76.164.146','normal','',0,0,0,4,0,'{\"login\":[1656848215,1657109590,1657985688,1658223193]}'),(17229,'103.93.17.114','normal','',0,0,0,0,0,'[]'),(17230,'18.156.208.83','normal','',0,0,0,0,0,'[]'),(17231,'198.37.123.126','normal','',0,0,0,0,0,'[]'),(17232,'134.209.37.211','normal','',0,0,0,0,0,'[]'),(17233,'207.46.13.72','normal','',0,0,0,0,0,'[]'),(17234,'114.119.141.127','normal','',0,0,0,0,0,'[]'),(17235,'35.88.208.38','normal','',0,0,0,0,0,'[]'),(17236,'213.152.161.35','normal','',0,0,0,0,0,'[]'),(17237,'40.127.65.92','normal','',0,0,0,0,8,'{\"nf\":[1656890868,1656890870,1656890871,1656890871,1656890872,1656890872,1656890873,1656890874]}'),(17238,'52.173.147.112','normal','',0,0,0,0,9,'{\"nf\":[1656892742,1656892743,1656892743,1656892744,1656892744,1656892744,1656892745,1656892745,1656955708]}'),(17239,'213.152.161.244','normal','',0,0,0,0,0,'[]'),(17240,'103.28.114.34','normal','',0,0,0,2,0,'{\"login\":[1656897988,1657129132]}'),(17241,'20.230.127.186','normal','',0,0,0,0,0,'[]'),(17242,'141.98.102.235','normal','',0,0,0,0,0,'[]'),(17243,'20.55.26.141','normal','',0,0,0,0,92,'{\"nf\":[1656907899,1656907900,1656908050,1656908096,1656908213,1656908321,1656908476,1656908604,1656908665,1656908751,1656909151,1656910195,1656910423,1656910551,1656910713,1656910786,1656910901,1656911053,1656911170,1656911298,1656911421,1656911636,1656911639,1656911769,1656912274,1656912275,1656912350,1656912469,1656912595,1656912672,1656912847,1656912878,1656912969,1656913160,1656913161,1656913337,1656913452,1656913532,1656913628,1656913823,1656913927,1656914065,1656914122,1656914351,1656914393,1656914482,1656914657,1656914806,1656914994,1656915060,1656915231,1656915272,1656915303,1656915321,1656915355,1656915570,1656915624,1656915764,1656915862,1656915895,1656915946,1656916104,1656916190,1656916293,1656916448,1656916482,1656916512,1656916594,1656916774,1656916915,1656917041,1656917079,1656917154,1656917365,1656917446,1656917679,1656917681,1656917682,1656917685,1656917687,1656917689,1656917690,1656917691,1656917693,1656917694,1656917695,1656917696,1656917697,1656917698,1656917701,1656917703,1656917704]}'),(17244,'213.152.186.24','normal','',0,0,0,0,0,'[]'),(17245,'79.142.76.244','normal','',0,0,0,0,0,'[]'),(17246,'134.19.179.235','normal','',0,0,0,0,0,'[]'),(17247,'102.130.164.146','normal','',0,0,0,0,0,'[]'),(17248,'199.249.230.37','normal','',0,0,0,0,0,'[]'),(17249,'37.120.155.179','normal','',0,0,0,0,0,'[]'),(17250,'199.249.230.42','normal','',0,0,0,0,0,'[]'),(17251,'185.200.117.131','normal','',0,0,0,0,0,'[]'),(17252,'184.75.221.43','normal','',0,0,0,0,0,'[]'),(17253,'54.36.148.17','normal','',0,0,0,0,0,'[]'),(17254,'72.14.201.99','normal','',0,0,0,0,0,'[]'),(17255,'128.199.114.174','normal','',0,0,0,0,0,'[]'),(17256,'62.102.148.154','normal','',0,0,0,0,0,'[]'),(17257,'184.75.221.211','normal','',0,0,0,0,0,'[]'),(17258,'159.223.186.76','normal','',0,0,0,0,0,'[]'),(17259,'54.201.59.24','normal','',0,0,0,0,0,'[]'),(17260,'31.210.66.35','normal','',0,0,0,2,0,'{\"login\":[1661681138,1662265274]}'),(17261,'178.128.23.81','normal','',0,0,0,0,0,'[]'),(17262,'66.249.65.134','normal','',0,0,0,0,0,'[]'),(17263,'114.119.149.23','normal','',0,0,0,0,0,'[]'),(17264,'217.138.195.19','normal','',0,0,0,0,0,'[]'),(17265,'121.41.14.130','normal','',0,0,0,0,0,'[]'),(17266,'195.225.76.130','normal','',0,0,0,0,0,'[]'),(17267,'47.96.255.60','normal','',0,0,0,0,0,'[]'),(17268,'40.77.167.64','normal','',0,0,0,0,0,'[]'),(17269,'93.158.91.245','normal','',0,0,0,0,0,'[]'),(17270,'93.158.91.235','normal','',0,0,0,0,1,'{\"nf\":[1662596350]}'),(17271,'93.158.91.242','normal','',0,0,0,0,1,'{\"nf\":[1656984331]}'),(17272,'93.158.92.13','normal','',0,0,0,0,0,'[]'),(17273,'185.119.81.97','normal','',0,0,0,171,0,'{\"login\":[1656986015,1656994449,1657013693,1657017751,1657045368,1657052778,1657053185,1657061686,1657080339,1657101535,1657101607,1657119241,1657148619,1657163034,1657167629,1657171509,1657179936,1657192646,1657197528,1657620641,1657629818,1657647497,1657649918,1657657582,1657657689,1657662041,1657666954,1657694387,1657699387,1657734499,1657762311,1657762907,1657768200,1657794116,1657818536,1657823654,1657830650,1657847109,1657862181,1657862948,1657863987,1657864392,1657869163,1657883424,1657883912,1657886703,1657889454,1657895383,1657903593,1657915466,1657918647,1657918989,1657928150,1657931535,1657942340,1657950303,1657951968,1657960596,1657975356,1657977195,1657984586,1657987391,1657995344,1657996603,1658018322,1658020374,1658021288,1658035059,1658064099,1658064614,1658064617,1658070394,1658087352,1658099658,1658100636,1658108165,1658113841,1658703085,1658706222,1658718069,1658743489,1658747003,1658775452,1658787606,1658803244,1658856848,1658861060,1658866308,1658871855,1658871980,1658878932,1658890747,1658900874,1658908388,1658920544,1658953431,1658954330,1658969964,1658971229,1658985331,1658987367,1659006052,1659017606,1659023706,1659031840,1659038837,1659052948,1659055671,1659056654,1659058259,1659058743,1659059960,1659076767,1659087801,1659088867,1659092308,1659095614,1659098432,1659098933,1659105463,1659123293,1659127471,1659127730,1659128384,1659129569,1659142772,1659153006,1659163593,1659167930,1659173458,1659175458,1659176440,1659187888,1659190683,1662003471,1662031466,1662050069,1662051845,1662065396,1662077688,1662077786,1662081245,1662084043,1662136693,1662176760,1662181023,1662192224,1662193063,1662236688,1662253033,1662284765,1662287432,1662304843,1662336602,1662348451,1662377254,1662389385,1662399281,1662439511,1662458413,1662461945,1662482245,1662521943,1662523370,1662530225,1662530471,1662532189,1662553638,1662567984,1662569159,1662607802]}'),(17274,'109.248.175.251','normal','',0,0,0,0,1,'{\"nf\":[1656986604]}'),(17275,'192.227.67.225','normal','',0,0,0,0,0,'[]'),(17276,'34.84.55.69','normal','',0,0,0,0,0,'[]'),(17277,'194.233.69.10','normal','',0,0,0,0,0,'[]'),(17278,'3.0.232.3','normal','',0,0,0,0,0,'[]'),(17279,'68.70.163.34','normal','',0,0,0,0,0,'[]'),(17280,'164.132.163.199','normal','',0,0,0,0,0,'[]'),(17281,'207.246.79.201','normal','',0,0,0,0,0,'[]'),(17282,'47.220.66.34','normal','',0,0,0,0,0,'[]'),(17283,'203.175.162.96','normal','',0,0,0,0,0,'[]'),(17284,'62.102.148.164','normal','',0,0,0,0,0,'[]'),(17285,'185.55.226.252','normal','',0,0,0,0,0,'[]'),(17286,'178.159.37.30','normal','',0,0,0,0,0,'[]'),(17287,'178.18.90.151','normal','',0,0,0,0,0,'[]'),(17288,'51.195.106.101','normal','',0,0,0,0,0,'[]'),(17289,'23.19.67.78','normal','',0,0,0,0,0,'[]'),(17290,'104.243.26.114','normal','',0,0,0,1,0,'{\"login\":[1661676882]}'),(17291,'108.170.7.26','normal','',0,0,0,1,0,'{\"login\":[1657104272]}'),(17292,'20.216.11.238','normal','',0,0,0,0,0,'[]'),(17293,'185.119.81.103','normal','',0,0,0,160,0,'{\"login\":[1657010789,1657028208,1657035705,1657070383,1657116304,1657137050,1657138661,1657143420,1657151056,1657156270,1657160590,1657162332,1657162508,1657175787,1657196425,1657200502,1657215281,1657239035,1657245684,1657264136,1657264293,1657629925,1657638515,1657649219,1657659068,1657659603,1657674574,1657682967,1657685654,1657696351,1657740993,1657743753,1657787905,1657796196,1657816144,1657826901,1657829010,1657829997,1657837793,1657853645,1658937193,1658957379,1658968790,1658974394,1658989156,1658999691,1659008083,1659012920,1659014279,1659018931,1659036967,1659043471,1659046861,1659069803,1659105389,1659122553,1659138611,1659188073,1659718289,1659751202,1659770203,1659776361,1659794843,1659836829,1659879116,1659906475,1659920679,1659921088,1659930502,1660231227,1660241409,1660244641,1660254291,1660281407,1660297343,1660302950,1660313158,1660353333,1660379759,1660418288,1660435839,1660439712,1660453909,1660456372,1660458486,1660463508,1660478563,1661004264,1661006703,1661014098,1661030671,1661063515,1661109267,1661134775,1661148284,1661149508,1661151774,1661158043,1661160210,1661171683,1661177825,1661191809,1661212416,1661213152,1661221138,1661273796,1661293192,1661301518,1661310234,1661316614,1661348357,1661365715,1661394862,1661403893,1661415990,1661448556,1661462743,1661470868,1661471413,1661474653,1661474719,1661477952,1661500937,1661501249,1661531750,1661543224,1661557886,1661560361,1661601044,1661606050,1661606657,1661624152,1661656224,1661661317,1661686166,1661707704,1661712094,1661717005,1661720516,1661720684,1661721760,1661739737,1661754950,1662025608,1662048805,1662060846,1662078517,1662102715,1662112654,1662121397,1662129264,1662134850,1662136647,1662155095,1662192961,1662208916,1662247778,1662254137,1662278435,1662287507]}'),(17294,'144.91.118.151','normal','',0,0,0,5,0,'{\"login\":[1657506927,1657657571,1657745258,1657848199,1659404163]}'),(17295,'213.152.161.5','normal','',0,0,0,0,0,'[]'),(17296,'185.132.82.182','normal','',0,0,0,0,0,'[]'),(17297,'103.231.91.59','normal','',0,0,0,0,0,'[]'),(17298,'161.97.108.69','normal','',0,0,0,0,0,'[]'),(17299,'20.62.114.118','normal','',0,0,0,0,1,'{\"nf\":[1657020581]}'),(17300,'149.28.86.46','normal','',0,0,0,0,0,'[]'),(17301,'37.120.217.243','normal','',0,0,0,0,0,'[]'),(17302,'185.191.171.7','normal','',0,0,0,0,0,'[]'),(17303,'185.191.171.10','normal','',0,0,0,0,1,'{\"nf\":[1661684227]}'),(17304,'17.121.115.94','normal','',0,0,0,0,0,'[]'),(17305,'134.19.179.195','normal','',0,0,0,0,0,'[]'),(17306,'148.66.133.91','normal','',0,0,0,0,0,'[]'),(17307,'34.229.124.29','normal','',0,0,0,0,0,'[]'),(17308,'184.75.221.179','normal','',0,0,0,0,0,'[]'),(17309,'37.59.41.114','normal','',0,0,0,0,0,'[]'),(17310,'51.68.11.199','normal','',0,0,0,0,0,'[]'),(17311,'51.68.11.199','normal','',0,0,0,0,0,'[]'),(17312,'138.197.161.71','normal','',0,0,0,0,0,'[]'),(17313,'165.227.104.122','normal','',0,0,0,0,0,'[]'),(17314,'208.180.150.73','normal','',0,0,0,0,0,'[]'),(17315,'107.180.107.177','normal','',0,0,0,0,0,'[]'),(17316,'107.180.107.177','normal','',0,0,0,0,0,'[]'),(17317,'185.46.123.38','normal','',0,0,0,0,0,'[]'),(17318,'217.67.22.56','normal','',0,0,0,0,1,'{\"nf\":[1660978964]}'),(17319,'217.67.22.56','normal','',0,0,0,0,0,'[]'),(17320,'52.184.199.10','normal','',0,0,0,0,0,'[]'),(17321,'118.27.18.136','normal','',0,0,0,0,0,'[]'),(17322,'166.62.43.205','normal','',0,0,0,0,1,'{\"nf\":[1660978932]}'),(17323,'139.59.13.55','normal','',0,0,0,0,0,'[]'),(17324,'185.119.81.105','normal','',0,0,0,166,0,'{\"login\":[1657035934,1657036965,1657037767,1657040634,1657049074,1657053742,1657082154,1657100414,1657113569,1657122581,1657132902,1657144952,1657171584,1657199259,1657204829,1657241460,1657271571,1657273467,1657277958,1657622295,1657622596,1657626621,1657626658,1657626661,1657627892,1657635307,1657639158,1657675996,1657737052,1657745553,1657754868,1657787349,1657820756,1657825874,1657843574,1657845303,1657866789,1657887738,1657895014,1657897875,1657900835,1657926411,1657954700,1657956745,1657992138,1657999224,1658002217,1658002327,1658013767,1658013887,1658029155,1658032720,1658039138,1658061120,1658068325,1659449164,1659451834,1659459892,1659466975,1659476399,1659489592,1659516834,1659550672,1659554982,1659574937,1659578732,1659601768,1659608336,1659626443,1659642015,1659703031,1659712912,1659718912,1659722709,1659723352,1659728592,1659757956,1659766134,1659779303,1659792415,1659806646,1659819226,1659841123,1659851873,1659857344,1659867147,1659876034,1659878407,1659889661,1659890057,1659917273,1659961386,1659972683,1659980322,1659993803,1659994465,1660016451,1660019489,1660026540,1660043140,1660047721,1660084841,1660092570,1660106811,1660151911,1660155358,1660155759,1660158462,1660191433,1660194161,1660975473,1660978047,1660984880,1660989562,1660993022,1661022947,1661069264,1661100014,1661101682,1661107966,1661109537,1661122366,1661157572,1661158680,1661166044,1661176192,1661184522,1661186050,1661198255,1661201548,1661211236,1661243858,1661274503,1661286270,1661326985,1661332670,1661334377,1661344848,1661363142,1661391421,1661404728,1661410228,1661414403,1661417053,1661423998,1661437974,1661441837,1661451812,1661471403,1661549973,1661561342,1661563076,1661563525,1661570937,1661596086,1661596997,1661600753,1661635082,1661684939,1661693387,1661704830,1661705801,1661721759,1661746529,1661756278,1661758329]}'),(17325,'5.9.9.29','normal','',0,0,0,0,11,'{\"nf\":[1657036065,1657036069,1657036072,1657036077,1657036080,1657036084,1657036087,1657036091,1657036094,1657036098,1657036107]}'),(17326,'105.242.37.30','normal','',0,0,0,0,0,'[]'),(17327,'62.221.194.237','normal','',0,0,0,0,13,'{\"nf\":[1657048420,1657048421,1657048422,1657048423,1657048424,1657048425,1657048426,1657048427,1657048429,1657048430,1657048431,1657048432,1657048433]}'),(17328,'45.134.212.206','normal','',0,0,0,0,0,'[]'),(17329,'146.70.76.35','normal','',0,0,0,0,0,'[]'),(17330,'185.200.116.211','normal','',0,0,0,0,0,'[]'),(17331,'185.119.81.106','normal','',0,0,0,107,0,'{\"login\":[1657054551,1657058940,1657067655,1657072781,1657075370,1657083864,1657087477,1657110879,1657146145,1657147725,1657155554,1657157208,1657161179,1657180408,1657187873,1657225687,1657259471,1657276005,1657279493,1657297708,1657297888,1657957723,1657970304,1657971229,1657979559,1657997328,1657998866,1658011159,1658053515,1658060829,1658081335,1658116066,1658492000,1658498726,1658502808,1658508017,1658528315,1658551204,1658569306,1658571471,1658598899,1658604429,1658626976,1658632072,1658682699,1658692787,1658714192,1658788310,1658790367,1658796558,1658806076,1658811918,1658855645,1658859718,1658876710,1658880436,1658892848,1658920544,1658924707,1658924858,1658935553,1658939162,1658941089,1658948314,1658948473,1658978139,1658980471,1658983979,1659786675,1659810824,1659821658,1659835980,1659845788,1659847543,1659857024,1659880423,1659887039,1659888942,1659897309,1659912646,1659931345,1659970586,1659973270,1659987326,1659993270,1660003860,1661468937,1661470064,1661491067,1661510773,1661514647,1661515378,1661537066,1661537661,1661558650,1661569546,1661581011,1661593533,1661596072,1661625930,1661638905,1661658030,1661672451,1661672516,1661679805,1661681087,1661687001]}'),(17332,'54.36.149.21','normal','',0,0,0,0,0,'[]'),(17333,'193.37.254.35','normal','',0,0,0,0,0,'[]'),(17334,'61.239.146.123','normal','',0,0,0,2,0,'{\"login\":[1657066452,1657118932]}'),(17335,'203.57.114.81','normal','',0,0,0,0,0,'[]'),(17336,'62.102.148.156','normal','',0,0,0,0,0,'[]'),(17337,'81.169.134.92','normal','',0,0,0,0,13,'{\"nf\":[1657070425,1657070426,1657070427,1657070430,1657070431,1657070432,1657070433,1657070434,1657070435,1657070436,1657070437,1657070439,1657070440]}'),(17338,'109.228.61.136','normal','',0,0,0,0,0,'[]'),(17339,'173.212.229.48','normal','',0,0,0,0,0,'[]'),(17340,'162.241.120.248','normal','',0,0,0,0,0,'[]'),(17341,'203.57.51.8','normal','',0,0,0,0,0,'[]'),(17342,'91.185.215.207','normal','',0,0,0,0,0,'[]'),(17343,'188.126.94.233','normal','',0,0,0,0,0,'[]'),(17344,'5.44.174.110','normal','',0,0,0,0,0,'[]'),(17345,'51.75.143.127','normal','',0,0,0,1,0,'{\"login\":[1657443302]}'),(17346,'190.60.234.22','normal','',0,0,0,0,0,'[]'),(17347,'197.89.117.198','normal','',0,0,0,0,0,'[]'),(17348,'20.114.231.252','normal','',0,0,0,0,8,'{\"nf\":[1657092308,1657092310,1657092310,1657092311,1657092313,1657092313,1657092314,1657092315]}'),(17349,'50.62.35.246','normal','',0,0,0,0,13,'{\"nf\":[1657093258,1657093259,1657093262,1657093265,1657093266,1657093268,1657093270,1657093272,1657093273,1657093278,1657093279,1657093281,1657093283]}'),(17350,'199.249.230.22','normal','',0,0,0,0,0,'[]'),(17351,'105.184.82.246','normal','',0,0,0,0,0,'[]'),(17352,'66.249.77.17','normal','',0,0,0,0,0,'[]'),(17353,'185.200.116.219','normal','',0,0,0,0,0,'[]'),(17354,'213.152.161.15','normal','',0,0,0,0,0,'[]'),(17355,'194.187.251.155','normal','',0,0,0,0,0,'[]'),(17356,'173.44.55.179','normal','',0,0,0,0,0,'[]'),(17357,'20.7.16.29','normal','',0,0,0,0,8,'{\"nf\":[1657124292,1657124293,1657124293,1657124293,1657124294,1657124294,1657124295,1657124295]}'),(17358,'184.75.223.195','normal','',0,0,0,0,0,'[]'),(17359,'194.187.251.91','normal','',0,0,0,0,0,'[]'),(17360,'64.42.179.59','normal','',0,0,0,0,0,'[]'),(17361,'134.19.179.179','normal','',0,0,0,0,0,'[]'),(17362,'203.138.99.129','normal','',0,0,0,0,1,'{\"nf\":[1657141272]}'),(17363,'197.234.166.127','normal','',0,0,0,0,2,'{\"nf\":[1657142109,1657142112]}'),(17364,'20.29.25.183','normal','',0,0,0,0,1,'{\"nf\":[1657142306]}'),(17365,'91.207.57.115','normal','',0,0,0,0,0,'[]'),(17366,'134.19.179.243','normal','',0,0,0,0,0,'[]'),(17367,'205.169.39.179','normal','',0,0,0,0,0,'[]'),(17368,'66.249.77.1','normal','',0,0,0,0,0,'[]'),(17369,'66.249.77.31','normal','',0,0,0,0,0,'[]'),(17370,'66.249.72.65','normal','',0,0,0,0,0,'[]'),(17371,'185.200.116.203','normal','',0,0,0,0,0,'[]'),(17372,'66.249.77.21','normal','',0,0,0,0,0,'[]'),(17373,'62.102.148.160','normal','',0,0,0,0,0,'[]'),(17374,'95.111.250.181','normal','',0,0,0,1,0,'{\"login\":[1661157722]}'),(17375,'213.152.161.219','normal','',0,0,0,0,0,'[]'),(17376,'154.215.31.155','normal','',0,0,0,0,0,'[]'),(17377,'31.3.152.100','normal','',0,0,0,0,0,'[]'),(17378,'220.144.246.44','normal','',0,0,0,0,0,'[]'),(17379,'106.14.141.22','normal','',0,0,0,1,0,'{\"login\":[1658234002]}'),(17380,'20.150.150.251','normal','',0,0,0,0,4,'{\"nf\":[1657172595,1657172608,1657172620,1657172633]}'),(17381,'45.79.35.71','normal','',0,0,0,0,0,'[]'),(17382,'213.152.187.230','normal','',0,0,0,0,0,'[]'),(17383,'162.241.225.246','normal','',0,0,0,0,0,'[]'),(17384,'217.151.98.163','normal','',0,0,0,0,0,'[]'),(17385,'84.39.116.180','normal','',0,0,0,0,0,'[]'),(17386,'193.29.57.101','normal','',0,0,0,0,0,'[]'),(17387,'46.182.4.115','normal','',0,0,0,1,0,'{\"login\":[1661683910]}'),(17388,'51.15.164.106','normal','',0,0,0,0,0,'[]'),(17389,'103.254.153.99','normal','',0,0,0,0,0,'[]'),(17390,'34.105.17.129','normal','',0,0,0,0,0,'[]'),(17391,'213.152.162.149','normal','',0,0,0,0,0,'[]'),(17392,'217.64.127.195','normal','',0,0,0,0,0,'[]'),(17393,'101.0.73.142','normal','',0,0,0,1,0,'{\"login\":[1661167525]}'),(17394,'197.86.201.237','normal','',0,0,0,0,0,'[]'),(17395,'52.12.231.211','normal','',0,0,0,0,0,'[]'),(17396,'34.220.23.155','normal','',0,0,0,0,0,'[]'),(17397,'35.90.125.63','normal','',0,0,0,0,0,'[]'),(17398,'167.86.76.203','normal','',0,0,0,0,0,'[]'),(17399,'167.99.84.109','normal','',0,0,0,0,0,'[]'),(17400,'184.75.223.235','normal','',0,0,0,0,0,'[]'),(17401,'52.8.12.232','normal','',0,0,0,0,0,'[]'),(17402,'184.72.11.23','normal','',0,0,0,0,0,'[]'),(17403,'54.183.122.205','normal','',0,0,0,0,0,'[]'),(17404,'54.177.105.93','normal','',0,0,0,0,0,'[]'),(17405,'54.219.120.252','normal','',0,0,0,0,0,'[]'),(17406,'52.53.236.58','normal','',0,0,0,0,0,'[]'),(17407,'13.56.163.38','normal','',0,0,0,0,0,'[]'),(17408,'13.57.213.154','normal','',0,0,0,0,0,'[]'),(17409,'13.56.210.125','normal','',0,0,0,0,0,'[]'),(17410,'50.18.72.195','normal','',0,0,0,0,0,'[]'),(17411,'47.243.64.228','normal','',0,0,0,0,0,'[]'),(17412,'128.199.239.11','normal','',0,0,0,0,0,'[]'),(17413,'54.36.148.202','normal','',0,0,0,0,0,'[]'),(17414,'213.152.162.5','normal','',0,0,0,0,0,'[]'),(17415,'146.56.179.237','normal','',0,0,0,0,0,'[]'),(17416,'102.217.78.85','normal','',0,0,0,0,1,'{\"nf\":[1657258785]}'),(17417,'8.219.122.150','normal','',0,0,0,0,0,'[]'),(17418,'64.227.187.183','normal','',0,0,0,0,0,'[]'),(17419,'104.131.189.63','normal','',0,0,0,0,0,'[]'),(17420,'41.13.204.244','normal','',0,0,0,0,0,'[]'),(17421,'105.233.52.97','normal','',0,0,0,0,0,'[]'),(17422,'128.199.60.20','normal','',0,0,0,0,0,'[]'),(17423,'193.37.254.27','normal','',0,0,0,0,0,'[]'),(17424,'162.210.103.41','normal','',0,0,0,0,0,'[]'),(17425,'20.119.57.81','normal','',0,0,0,0,6,'{\"nf\":[1657297202,1657297202,1657297202,1657297204,1657297206,1657297207]}'),(17426,'17.121.115.130','normal','',0,0,0,0,0,'[]'),(17427,'194.99.104.35','normal','',0,0,0,0,0,'[]'),(17428,'161.35.36.28','normal','',0,0,0,0,1,'{\"nf\":[1657303960]}'),(17429,'213.152.187.215','normal','',0,0,0,0,0,'[]'),(17430,'114.119.137.70','normal','',0,0,0,0,0,'[]'),(17431,'35.167.41.34','normal','',0,0,0,0,0,'[]'),(17432,'5.45.207.147','normal','',0,0,0,0,0,'[]'),(17433,'104.254.90.251','normal','',0,0,0,0,0,'[]'),(17434,'213.152.162.79','normal','',0,0,0,0,0,'[]'),(17435,'184.75.221.163','normal','',0,0,0,0,0,'[]'),(17436,'213.152.162.94','normal','',0,0,0,0,0,'[]'),(17437,'91.90.192.96','normal','',0,0,0,0,0,'[]'),(17438,'176.34.219.12','normal','',0,0,0,0,0,'[]'),(17439,'193.37.254.19','normal','',0,0,0,0,0,'[]'),(17440,'185.9.19.107','normal','',0,0,0,0,0,'[]'),(17441,'192.145.126.115','normal','',0,0,0,0,0,'[]'),(17442,'136.243.174.161','normal','',0,0,0,0,0,'[]'),(17443,'138.68.189.204','normal','',0,0,0,0,15,'{\"nf\":[1657346565,1657346568,1657346569,1657346571,1657346573,1657346575,1657346576,1657346578,1657346579,1657346581,1657346583,1657346585,1657346587,1657346588,1657346590]}'),(17444,'43.132.125.196','normal','',0,0,0,0,0,'[]'),(17445,'192.241.240.50','normal','',0,0,0,0,1,'{\"nf\":[1657352493]}'),(17446,'185.156.175.51','normal','',0,0,0,0,0,'[]'),(17447,'120.41.45.199','normal','',0,0,0,0,0,'[]'),(17448,'54.36.148.66','normal','',0,0,0,0,0,'[]'),(17449,'54.36.148.217','normal','',0,0,0,0,0,'[]'),(17450,'80.67.10.139','normal','',0,0,0,0,0,'[]'),(17451,'54.36.148.136','normal','',0,0,0,0,0,'[]'),(17452,'138.197.158.8','normal','',0,0,0,0,0,'[]'),(17453,'173.252.83.9','normal','',0,0,0,0,0,'[]'),(17454,'173.252.83.7','normal','',0,0,0,0,0,'[]'),(17455,'45.79.20.174','normal','',0,0,0,0,0,'[]'),(17456,'162.219.176.3','normal','',0,0,0,0,0,'[]'),(17457,'35.87.238.234','normal','',0,0,0,0,0,'[]'),(17458,'54.244.217.241','normal','',0,0,0,0,0,'[]'),(17459,'34.222.87.66','normal','',0,0,0,0,0,'[]'),(17460,'54.214.121.254','normal','',0,0,0,0,0,'[]'),(17461,'35.217.10.228','normal','',0,0,0,0,1,'{\"nf\":[1657400031]}'),(17462,'18.195.88.0','normal','',0,0,0,0,0,'[]'),(17463,'41.147.1.55','normal','',0,0,0,0,0,'[]'),(17464,'94.237.78.222','normal','',0,0,0,0,0,'[]'),(17465,'85.208.48.155','normal','',0,0,0,0,0,'[]'),(17466,'213.152.161.165','normal','',0,0,0,0,0,'[]'),(17467,'162.0.224.206','normal','',0,0,0,1,0,'{\"login\":[1662207738]}'),(17468,'188.126.94.205','normal','',0,0,0,0,0,'[]'),(17469,'66.249.66.81','normal','',0,0,0,0,0,'[]'),(17470,'66.249.66.9','normal','',0,0,0,0,0,'[]'),(17471,'185.217.71.147','normal','',0,0,0,0,0,'[]'),(17472,'20.248.187.75','normal','',0,0,0,0,1,'{\"nf\":[1657427841]}'),(17473,'159.223.103.242','normal','',0,0,0,4,0,'{\"login\":[1657429783,1657441378,1657468905,1657498897]}'),(17474,'44.196.156.147','normal','',0,0,0,9,0,'{\"login\":[1657430206,1657432357,1657450391,1657454371,1657469755,1657470083,1657472932,1657488609,1657508812]}'),(17475,'162.241.69.106','normal','',0,0,0,8,3,'{\"login\":[1657430597,1657469642,1657488301,1657490506,1657738645,1660051576,1661798148,1661802909],\"nf\":[1660075211,1660075224,1660075294]}'),(17476,'80.241.222.79','normal','',0,0,0,8,0,'{\"login\":[1657431992,1657433755,1657439274,1657450064,1657474664,1657478088,1657798898,1657831313]}'),(17477,'197.94.223.110','normal','',0,0,0,0,0,'[]'),(17478,'77.222.62.40','normal','',0,0,0,2,0,'{\"login\":[1657433164,1657475624]}'),(17479,'104.131.99.36','normal','',0,0,0,3,0,'{\"login\":[1657433928,1657461433,1657464003]}'),(17480,'51.91.74.140','normal','',0,0,0,6,0,'{\"login\":[1657434089,1657475505,1657476752,1657479191,1657497540,1657515985]}'),(17481,'165.22.222.213','normal','',0,0,0,7,0,'{\"login\":[1657434232,1657451737,1657692789,1657763160,1657774331,1657862179,1657880992]}'),(17482,'74.208.233.243','normal','',0,0,0,7,0,'{\"login\":[1657434343,1657477641,1657486847,1657520211,1657758246,1657846192,1659413113]}'),(17483,'209.58.173.138','normal','',0,0,0,0,0,'[]'),(17484,'128.199.245.39','normal','',0,0,0,2,0,'{\"login\":[1657434705,1657491104]}'),(17485,'3.69.142.142','normal','',0,0,0,2,0,'{\"login\":[1657434867,1657485916]}'),(17486,'88.150.159.38','normal','',0,0,0,3,0,'{\"login\":[1657435344,1657436786,1657477067]}'),(17487,'185.206.225.51','normal','',0,0,0,0,0,'[]'),(17488,'178.128.2.114','normal','',0,0,0,20,0,'{\"login\":[1657435499,1657480839,1657495449,1657505520,1657650493,1657818626,1657840838,1659353785,1660454678,1660463044,1660471635,1661767320,1661775605,1661781409,1661783949,1661786818,1661800192,1661807556,1661829317,1661834453]}'),(17489,'14.232.245.48','normal','',0,0,0,16,0,'{\"login\":[1657436324,1657458056,1657491441,1657770034,1659373772,1659875818,1660259957,1660506265,1660589356,1660619176,1661758239,1661764129,1661788793,1661801503,1661801626,1661822876]}'),(17490,'95.111.227.138','normal','',0,0,0,6,0,'{\"login\":[1657437082,1657456550,1657470532,1657494078,1657494430,1657498122]}'),(17491,'159.65.143.63','normal','',0,0,0,2,0,'{\"login\":[1657438027,1657473091]}'),(17492,'137.184.123.124','normal','',0,0,0,3,0,'{\"login\":[1657438306,1657449433,1659375087]}'),(17493,'165.22.214.184','normal','',0,0,0,19,0,'{\"login\":[1657438470,1657445452,1657457501,1657476110,1657481293,1657482409,1657668361,1657885680,1659365455,1659420052,1659754320,1660041138,1660362832,1660398569,1661757336,1661785407,1661789051,1661789944,1661814747]}'),(17494,'125.198.34.251','normal','',0,0,0,0,0,'[]'),(17495,'15.184.185.174','normal','',0,0,0,2,0,'{\"login\":[1657440044,1657459046]}'),(17496,'128.199.152.152','normal','',0,0,0,13,0,'{\"login\":[1657440241,1657447817,1657450955,1657481585,1657497323,1657500409,1657511254,1657519845,1657851607,1657878964,1659350770,1659405645,1659408722]}'),(17497,'31.7.68.165','normal','',0,0,0,4,0,'{\"login\":[1657440894,1657484968,1657504809,1657511932]}'),(17498,'34.88.138.128','normal','',0,0,0,2,0,'{\"login\":[1657441279,1657475362]}'),(17499,'83.242.12.65','normal','',0,0,0,4,0,'{\"login\":[1657441562,1657491722,1657760101,1657798298]}'),(17500,'118.166.166.221','normal','',0,0,0,3,0,'{\"login\":[1657442673,1657461879,1657516769]}'),(17501,'43.129.188.233','normal','',0,0,0,3,0,'{\"login\":[1657442854,1657746498,1662108338]}'),(17502,'54.36.220.73','normal','',0,0,0,8,0,'{\"login\":[1657444841,1657474948,1657483307,1657487650,1657656624,1659362699,1659368555,1659385204]}'),(17503,'38.107.221.148','normal','',0,0,0,0,0,'[]'),(17504,'144.217.242.57','normal','',0,0,0,2,0,'{\"login\":[1657445915,1657486467]}'),(17505,'136.243.174.82','normal','',0,0,0,9,0,'{\"login\":[1657446071,1657452113,1657466599,1657507769,1659353194,1659356696,1659389297,1659956705,1660079526]}'),(17506,'82.220.34.6','normal','',0,0,0,4,0,'{\"login\":[1657446372,1657451409,1657480978,1657483084]}'),(17507,'114.132.250.235','normal','',0,0,0,0,0,'[]'),(17508,'43.204.51.98','normal','',0,0,0,5,0,'{\"login\":[1657449637,1657454139,1657479913,1657482957,1657743353]}'),(17509,'139.59.6.100','normal','',0,0,0,10,0,'{\"login\":[1657451128,1657455271,1657459985,1657465880,1657479803,1657490628,1657490786,1657492730,1657516481,1657720349]}'),(17510,'188.166.46.26','normal','',0,0,0,10,0,'{\"login\":[1657452931,1657503292,1657703768,1659399825,1660037771,1661757784,1661783115,1661784929,1661801718,1661807944]}'),(17511,'167.71.36.2','normal','',0,0,0,11,0,'{\"login\":[1657455674,1657468410,1657494989,1657505813,1657719205,1657838725,1660558577,1661758805,1661768043,1661784728,1661824184]}'),(17512,'69.10.41.86','normal','',0,0,0,0,0,'[]'),(17513,'52.77.118.221','normal','',0,0,0,4,0,'{\"login\":[1657458453,1657484288,1657506358,1657511487]}'),(17514,'131.72.236.28','normal','',0,0,0,4,0,'{\"login\":[1657459351,1657473695,1657491529,1657505378]}'),(17515,'66.249.66.83','normal','',0,0,0,0,0,'[]'),(17516,'194.233.71.201','normal','',0,0,0,2,0,'{\"login\":[1657460476,1657810102]}'),(17517,'220.85.221.65','normal','',0,0,0,9,0,'{\"login\":[1657462663,1657489168,1657696725,1657769375,1659376799,1659396661,1661791616,1661824925,1661831067]}'),(17518,'67.202.20.83','normal','',0,0,0,3,0,'{\"login\":[1657463130,1657508369,1661675031]}'),(17519,'65.21.176.215','normal','',0,0,0,2,0,'{\"login\":[1657466051,1657475205]}'),(17520,'35.155.127.246','normal','',0,0,0,3,0,'{\"login\":[1657466751,1657470362,1657517088]}'),(17521,'185.58.41.77','normal','',0,0,0,5,0,'{\"login\":[1657468127,1657469002,1657473411,1657502551,1657519516]}'),(17522,'45.77.207.194','normal','',0,0,0,1,0,'{\"login\":[1661072571]}'),(17523,'104.131.4.21','normal','',0,0,0,0,4,'{\"nf\":[1657473779,1657473783,1657473784,1657473786]}'),(17524,'103.41.204.254','normal','',0,0,0,2,0,'{\"login\":[1657476214,1657484712]}'),(17525,'45.77.72.137','normal','',0,0,0,6,0,'{\"login\":[1657477556,1657488749,1657499668,1657509970,1657512532,1657884313]}'),(17526,'213.152.162.165','normal','',0,0,0,0,0,'[]'),(17527,'113.161.250.131','normal','',0,0,0,4,0,'{\"login\":[1657481108,1657497701,1657500947,1657710387]}'),(17528,'46.214.219.45','normal','',0,0,0,0,3,'{\"nf\":[1657481675,1657481677,1657481678]}'),(17529,'35.89.195.9','normal','',0,0,0,0,0,'[]'),(17530,'3.67.138.72','normal','',0,0,0,1,0,'{\"login\":[1657487120]}'),(17531,'209.236.119.42','normal','',0,0,0,13,0,'{\"login\":[1657493009,1659345458,1659410626,1660094826,1660172107,1660883869,1661773712,1661803027,1661815835,1661815953,1661833129,1661835071,1661836540]}'),(17532,'159.89.190.199','normal','',0,0,0,0,0,'[]'),(17533,'61.61.97.136','normal','',0,0,0,4,0,'{\"login\":[1657496213,1659378930,1659400611,1659889032]}'),(17534,'65.52.67.200','normal','',0,0,0,8,0,'{\"login\":[1657497414,1657512008,1657825938,1657838076,1659810163,1660300936,1660901607,1660928026]}'),(17535,'85.128.143.215','normal','',0,0,0,2,0,'{\"login\":[1657497789,1657502939]}'),(17536,'41.78.241.66','normal','',0,0,0,5,0,'{\"login\":[1657498621,1657683321,1657713929,1657789393,1657858147]}'),(17537,'20.0.107.152','normal','',0,0,0,0,1,'{\"nf\":[1657499449]}'),(17538,'109.248.175.109','normal','',0,0,0,0,3,'{\"nf\":[1657508311,1657841782,1657853720]}'),(17539,'51.158.105.7','normal','',0,0,0,0,0,'[]'),(17540,'135.125.207.25','normal','',0,0,0,0,0,'[]'),(17541,'166.0.234.42','normal','',0,0,0,0,0,'[]'),(17542,'51.159.57.26','normal','',0,0,0,1,0,'{\"login\":[1662257919]}'),(17543,'77.73.131.23','normal','',0,0,0,0,2,'{\"nf\":[1657533443,1657533444]}'),(17544,'190.123.220.185','normal','',0,0,0,0,0,'[]'),(17545,'134.209.105.240','normal','',0,0,0,0,0,'[]'),(17546,'149.210.249.72','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1657554977,0,1657554677,0,20,'{\"nf\":[1657554651,1657554653,1657554654,1657554655,1657554656,1657554657,1657554661,1657554662,1657554663,1657554665,1657554666,1657554667,1657554668,1657554669,1657554670,1657554671,1657554672,1657554673,1657554676,1657554677]}'),(17547,'41.116.207.77','normal','',0,0,0,0,1,'{\"nf\":[1657567788]}'),(17548,'196.6.235.245','normal','',0,0,0,0,0,'[]'),(17549,'18.237.125.194','normal','',0,0,0,0,0,'[]'),(17550,'102.182.126.111','normal','',0,0,0,0,0,'[]'),(17551,'91.223.106.228','normal','',0,0,0,0,0,'[]'),(17552,'185.191.171.16','normal','',0,0,0,0,0,'[]'),(17553,'185.191.171.18','normal','',0,0,0,0,1,'{\"nf\":[1658233663]}'),(17554,'114.119.138.27','normal','',0,0,0,0,0,'[]'),(17555,'186.234.80.121','normal','',0,0,0,1,0,'{\"login\":[1662158910]}'),(17556,'167.172.79.125','normal','',0,0,0,1,0,'{\"login\":[1661676259]}'),(17557,'20.203.137.38','normal','',0,0,0,0,11,'{\"nf\":[1657614029,1657614032,1657614034,1657614035,1657614036,1657614037,1657614041,1657614042,1660696561,1660696563,1661451316]}'),(17558,'54.36.148.230','normal','',0,0,0,0,0,'[]'),(17559,'154.16.95.7','normal','',0,0,0,0,0,'[]'),(17560,'183.89.188.229','normal','',0,0,0,0,0,'[]'),(17561,'113.160.206.1','normal','',0,0,0,0,1,'{\"nf\":[1657618293]}'),(17562,'51.255.57.128','normal','',0,0,0,0,0,'[]'),(17563,'3.7.69.105','normal','',0,0,0,0,0,'[]'),(17564,'194.87.84.193','normal','',0,0,0,0,4,'{\"nf\":[1657628924,1657628940,1657628955,1657628970]}'),(17565,'196.19.240.67','normal','',0,0,0,0,0,'[]'),(17566,'17.121.113.169','normal','',0,0,0,0,0,'[]'),(17567,'103.90.235.70','normal','',0,0,0,0,0,'[]'),(17568,'180.250.158.201','normal','',0,0,0,0,1,'{\"nf\":[1657637910]}'),(17569,'50.62.177.156','normal','',0,0,0,0,1,'{\"nf\":[1657637925]}'),(17570,'64.13.232.18','normal','',0,0,0,0,1,'{\"nf\":[1657637941]}'),(17571,'139.162.174.230','normal','',0,0,0,0,0,'[]'),(17572,'129.205.177.197','normal','',0,0,0,0,0,'[]'),(17573,'38.242.231.67','normal','',0,0,0,1,0,'{\"login\":[1657654836]}'),(17574,'161.35.131.133','normal','',0,0,0,0,0,'[]'),(17575,'18.237.95.231','normal','',0,0,0,0,0,'[]'),(17576,'134.19.179.139','normal','',0,0,0,0,0,'[]'),(17577,'82.102.27.163','normal','',0,0,0,0,0,'[]'),(17578,'192.99.15.17','normal','',0,0,0,0,0,'[]'),(17579,'93.158.91.196','normal','',0,0,0,0,0,'[]'),(17580,'93.158.91.187','normal','',0,0,0,0,1,'{\"nf\":[1657695690]}'),(17581,'93.158.91.233','normal','',0,0,0,0,0,'[]'),(17582,'137.74.1.82','normal','',0,0,0,5,0,'{\"login\":[1657697408,1657728622,1657739252,1657768695,1657863451]}'),(17583,'13.234.239.162','normal','',0,0,0,2,0,'{\"login\":[1657698848,1657726147]}'),(17584,'213.152.161.234','normal','',0,0,0,0,0,'[]'),(17585,'208.97.186.100','normal','',0,0,0,2,0,'{\"login\":[1657705327,1657707470]}'),(17586,'134.19.179.155','normal','',0,0,0,0,0,'[]'),(17587,'103.20.60.203','normal','',0,0,0,3,0,'{\"login\":[1657712743,1657727375,1657780572]}'),(17588,'103.242.233.26','normal','',0,0,0,14,0,'{\"login\":[1657713303,1657759475,1657819962,1657827936,1659346332,1659392788,1659400222,1660372982,1660390735,1660523453,1660570590,1660760799,1661798469,1661804735]}'),(17589,'185.247.138.130','normal','',0,0,0,3,0,'{\"login\":[1657714528,1657754532,1657839448]}'),(17590,'66.42.60.161','normal','',0,0,0,1,0,'{\"login\":[1657716219]}'),(17591,'185.191.171.34','normal','',0,0,0,0,0,'[]'),(17592,'99.192.226.104','normal','',0,0,0,2,0,'{\"login\":[1657716829,1657733984]}'),(17593,'165.227.223.62','normal','',0,0,0,5,0,'{\"login\":[1657717443,1657777416,1657813368,1657817330,1659373856]}'),(17594,'213.160.71.98','normal','',0,0,0,1,0,'{\"login\":[1657720854]}'),(17595,'116.202.193.250','normal','',0,0,0,10,0,'{\"login\":[1657721463,1659387483,1659395510,1659401379,1659902404,1660198212,1660227110,1660250120,1660383056,1660615839]}'),(17596,'213.152.161.69','normal','',0,0,0,0,0,'[]'),(17597,'161.97.152.7','normal','',0,0,0,5,0,'{\"login\":[1657722067,1657786857,1659880222,1659893534,1660220254]}'),(17598,'198.11.179.79','normal','',0,0,0,6,0,'{\"login\":[1657723782,1659348928,1659382750,1659393513,1659396508,1659420488]}'),(17599,'16.170.93.95','normal','',0,0,0,3,0,'{\"login\":[1657724404,1657735699,1657763793]}'),(17600,'134.122.40.81','normal','',0,0,0,8,0,'{\"login\":[1657729152,1657761986,1657767512,1659355228,1659355503,1661756082,1661793663,1661821536]}'),(17601,'208.97.190.149','normal','',0,0,0,1,0,'{\"login\":[1657729734]}'),(17602,'103.163.246.98','normal','',0,0,0,9,0,'{\"login\":[1657731549,1657824542,1659429551,1659792766,1660432666,1660811735,1661826126,1661838812,1661839670]}'),(17603,'217.69.32.81','normal','',0,0,0,4,0,'{\"login\":[1657732118,1657732726,1657783699,1657826590]}'),(17604,'217.160.108.95','normal','',0,0,0,1,0,'{\"login\":[1657735064]}'),(17605,'213.152.187.225','normal','',0,0,0,0,0,'[]'),(17606,'110.238.119.21','normal','',0,0,0,11,0,'{\"login\":[1657737438,1659388455,1659402190,1660233958,1660592704,1660645216,1661755079,1661790379,1661794146,1661831697,1661839354]}'),(17607,'52.53.147.38','normal','',0,0,0,3,0,'{\"login\":[1657740398,1657771163,1657845552]}'),(17608,'41.13.196.113','normal','',0,0,0,0,0,'[]'),(17609,'64.46.27.251','normal','',0,0,0,0,0,'[]'),(17610,'167.71.222.146','normal','',0,0,0,2,0,'{\"login\":[1657744045,1659347415]}'),(17611,'197.94.0.93','normal','',0,0,0,0,0,'[]'),(17612,'54.69.238.15','normal','',0,0,0,0,0,'[]'),(17613,'34.220.184.218','normal','',0,0,0,0,0,'[]'),(17614,'35.88.126.29','normal','',0,0,0,0,0,'[]'),(17615,'198.74.48.68','normal','',0,0,0,0,8,'{\"nf\":[1657749233,1657749236,1657749238,1657749239,1657749241,1657749243,1657749244,1657749246]}'),(17616,'95.111.252.220','normal','',0,0,0,6,0,'{\"login\":[1657752676,1657819205,1659352538,1659360792,1659396797,1659417969]}'),(17617,'40.77.167.62','normal','',0,0,0,0,0,'[]'),(17618,'169.150.190.14','normal','',0,0,0,0,0,'[]'),(17619,'103.11.188.43','normal','',0,0,0,8,0,'{\"login\":[1657757033,1657770592,1657823928,1657858852,1659716099,1660240785,1660605902,1660773289]}'),(17620,'20.239.177.42','normal','',0,0,0,0,1,'{\"nf\":[1657759690]}'),(17621,'104.248.139.32','normal','',0,0,0,18,0,'{\"login\":[1657761342,1657883596,1659387285,1659392036,1659417061,1659964370,1660380540,1660517655,1660579729,1660715348,1661767536,1661787279,1661790510,1661820407,1661829022,1661832181,1661832659,1661841068]}'),(17622,'52.58.125.130','normal','',0,0,0,2,0,'{\"login\":[1657764430,1657880272]}'),(17623,'141.98.102.227','normal','',0,0,0,0,0,'[]'),(17624,'199.249.230.32','normal','',0,0,0,0,0,'[]'),(17625,'45.32.193.37','normal','',0,0,0,1,0,'{\"login\":[1657766215]}'),(17626,'85.128.143.212','normal','',0,0,0,1,0,'{\"login\":[1657768081]}'),(17627,'114.119.136.44','normal','',0,0,0,0,0,'[]'),(17628,'47.52.170.248','normal','',0,0,0,1,0,'{\"login\":[1657771826]}'),(17629,'72.167.190.75','normal','',0,0,0,0,0,'[]'),(17630,'135.181.210.230','normal','',0,0,0,1,0,'{\"login\":[1657774972]}'),(17631,'20.151.73.19','normal','',0,0,0,2,0,'{\"login\":[1657775636,1657842870]}'),(17632,'199.249.230.17','normal','',0,0,0,0,0,'[]'),(17633,'94.130.98.234','normal','',0,0,0,7,0,'{\"login\":[1657776762,1657847540,1657849513,1659351084,1659351691,1659360085,1659360695]}'),(17634,'34.88.101.71','normal','',0,0,0,1,0,'{\"login\":[1657791916]}'),(17635,'104.248.41.101','normal','',0,0,0,13,0,'{\"login\":[1657792607,1657877547,1659363883,1659370843,1660494666,1661756587,1661778566,1661791012,1661810370,1661814878,1661817937,1661820245,1661824031]}'),(17636,'134.19.179.163','normal','',0,0,0,0,0,'[]'),(17637,'35.165.79.118','normal','',0,0,0,2,0,'{\"login\":[1657804210,1657805481]}'),(17638,'138.68.97.29','normal','',0,0,0,1,0,'{\"login\":[1657804812]}'),(17639,'178.162.204.214','normal','',0,0,0,0,0,'[]'),(17640,'135.181.182.84','normal','',0,0,0,0,0,'[]'),(17641,'197.90.196.11','normal','',0,0,0,0,0,'[]'),(17642,'134.19.179.147','normal','',0,0,0,0,0,'[]'),(17643,'54.36.149.18','normal','',0,0,0,0,0,'[]'),(17644,'165.227.203.182','normal','',0,0,0,2,0,'{\"login\":[1657814742,1659384975]}'),(17645,'51.77.150.108','normal','',0,0,0,1,0,'{\"login\":[1657815388]}'),(17646,'185.220.101.172','normal','',0,0,0,0,0,'[]'),(17647,'157.55.187.44','normal','',0,0,0,0,0,'[]'),(17648,'199.249.230.2','normal','',0,0,0,0,0,'[]'),(17649,'194.87.84.7','normal','',0,0,0,0,32,'{\"nf\":[1657822207,1657822232,1657822262,1657822290,1657822321,1657822353,1657822417,1657822481,1657822512,1657822544,1657822575,1657822607,1657822638,1657822669,1657822701,1657822733,1657822765,1657822797,1657822828,1657822862,1657822894,1657822927,1657822959,1657822990,1657823021,1657823052,1657823084,1657823116,1657823149,1657823181,1657823214,1657823246]}'),(17650,'213.152.162.74','normal','',0,0,0,0,0,'[]'),(17651,'35.240.7.218','normal','',0,0,0,2,0,'{\"login\":[1657825868,1658266091]}'),(17652,'64.42.179.67','normal','',0,0,0,0,0,'[]'),(17653,'213.152.161.30','normal','',0,0,0,0,0,'[]'),(17654,'34.222.112.27','normal','',0,0,0,0,0,'[]'),(17655,'34.219.225.199','normal','',0,0,0,0,0,'[]'),(17656,'18.237.223.20','normal','',0,0,0,0,0,'[]'),(17657,'65.108.125.120','normal','',0,0,0,0,0,'[]'),(17658,'34.217.85.120','normal','',0,0,0,0,0,'[]'),(17659,'54.189.182.50','normal','',0,0,0,0,0,'[]'),(17660,'146.70.94.3','normal','',0,0,0,0,0,'[]'),(17661,'178.162.209.171','normal','',0,0,0,0,0,'[]'),(17662,'34.78.193.250','normal','',0,0,0,0,0,'[]'),(17663,'107.167.244.67','normal','',0,0,0,0,0,'[]'),(17664,'91.121.39.221','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1657841041,0,1657840741,0,20,'{\"nf\":[1657840714,1657840715,1657840717,1657840719,1657840721,1657840722,1657840724,1657840725,1657840727,1657840728,1657840729,1657840730,1657840732,1657840733,1657840735,1657840737,1657840738,1657840739,1657840740,1657840741]}'),(17665,'173.44.55.155','normal','',0,0,0,0,0,'[]'),(17666,'192.30.89.27','normal','',0,0,0,0,0,'[]'),(17667,'193.148.16.211','normal','',0,0,0,0,0,'[]'),(17668,'192.155.80.158','normal','',0,0,0,0,9,'{\"nf\":[1657854693,1657854697,1657854698,1657854699,1657854701,1657854702,1657854703,1657854704,1657854705]}'),(17669,'213.152.162.181','normal','',0,0,0,0,0,'[]'),(17670,'3.6.19.63','normal','',0,0,0,1,0,'{\"login\":[1657855487]}'),(17671,'37.120.210.211','normal','',0,0,0,0,0,'[]'),(17672,'37.120.210.219','normal','',0,0,0,0,0,'[]'),(17673,'62.102.148.130','normal','',0,0,0,0,0,'[]'),(17674,'141.98.102.187','normal','',0,0,0,0,0,'[]'),(17675,'143.198.176.106','normal','',0,0,0,1,0,'{\"login\":[1657867501]}'),(17676,'45.77.69.20','normal','',0,0,0,1,0,'{\"login\":[1657868207]}'),(17677,'103.39.135.198','normal','',0,0,0,3,0,'{\"login\":[1657868868,1659352143,1660206903]}'),(17678,'41.13.196.167','normal','',0,0,0,0,0,'[]'),(17679,'170.81.42.223','normal','',0,0,0,1,0,'{\"login\":[1657876892]}'),(17680,'107.167.244.51','normal','',0,0,0,0,0,'[]'),(17681,'213.152.187.205','normal','',0,0,0,0,0,'[]'),(17682,'102.223.106.58','normal','',0,0,0,0,0,'[]'),(17683,'78.141.205.199','normal','',0,0,0,1,0,'{\"login\":[1657886288]}'),(17684,'213.152.161.211','normal','',0,0,0,0,0,'[]'),(17685,'17.121.112.151','normal','',0,0,0,0,0,'[]'),(17686,'50.62.177.81','normal','',0,0,0,0,0,'[]'),(17687,'164.132.5.116','normal','',0,0,0,0,1,'{\"nf\":[1657895652]}'),(17688,'173.208.234.154','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1657899518,0,1657899218,0,20,'{\"nf\":[1657899181,1657899183,1657899186,1657899188,1657899190,1657899191,1657899193,1657899195,1657899198,1657899199,1657899201,1657899203,1657899205,1657899206,1657899207,1657899211,1657899212,1657899214,1657899215,1657899217]}'),(17689,'109.237.100.22','normal','',0,0,0,0,7,'{\"nf\":[1657903187,1659331757,1659331757,1659808396,1659808400,1662011313,1662011313]}'),(17690,'109.237.100.22','normal','',0,0,0,0,1,'{\"nf\":[1657903187]}'),(17691,'102.65.66.81','normal','',0,0,0,0,0,'[]'),(17692,'185.119.81.99','normal','',0,0,0,116,0,'{\"login\":[1657910665,1657911236,1657915463,1657917677,1657921665,1657935543,1657940543,1657942503,1657951580,1657953384,1657956391,1657970013,1657977062,1657982582,1657986086,1657998686,1657998867,1658020047,1658023614,1658044195,1658052240,1658052400,1658055999,1658067396,1658076328,1658079254,1658082320,1658086955,1658090304,1658098296,1658099412,1658099945,1658101988,1658105236,1658106211,1658113795,1658127189,1659199798,1659201563,1659204931,1659210864,1659247561,1659251438,1659252761,1659309324,1659327131,1659337735,1659345862,1659354051,1659360543,1659380430,1659400271,1659400920,1659402250,1659417291,1659419194,1659950489,1659965560,1659985002,1659990511,1660019074,1660020664,1660020724,1660061395,1660076486,1660085586,1660110738,1660113610,1660122237,1660131806,1660158172,1660177609,1660184082,1660192578,1661990199,1661994210,1662016920,1662017330,1662026182,1662038071,1662052290,1662054106,1662084972,1662144249,1662146150,1662170411,1662183857,1662199005,1662209925,1662220103,1662222132,1662223606,1662811950,1662823637,1662833724,1662863333,1662865786,1662868881,1662893155,1662893420,1662900110,1662907259,1662913521,1662944014,1663003318,1663006554,1663012705,1663026922,1663059042,1663060991,1663077171,1663088286,1663114041,1663134232,1663138003,1663154499]}'),(17693,'139.59.111.55','normal','',0,0,0,0,0,'[]'),(17694,'85.202.169.213','normal','',0,0,0,0,9,'{\"nf\":[1657913917,1657913921,1657913924,1657913928,1657913930,1657913933,1657913938,1657913952,1657913961]}'),(17695,'35.88.108.54','normal','',0,0,0,0,0,'[]'),(17696,'62.102.148.187','normal','',0,0,0,0,0,'[]'),(17697,'64.42.179.35','normal','',0,0,0,0,0,'[]'),(17698,'213.152.162.154','normal','',0,0,0,0,0,'[]'),(17699,'23.226.67.135','normal','',0,0,0,0,0,'[]'),(17700,'185.191.171.41','normal','',0,0,0,0,0,'[]'),(17701,'66.249.66.59','normal','',0,0,0,0,0,'[]'),(17702,'66.249.66.80','normal','',0,0,0,0,0,'[]'),(17703,'66.249.66.55','normal','',0,0,0,0,0,'[]'),(17704,'213.152.186.40','normal','',0,0,0,0,0,'[]'),(17705,'213.152.187.210','normal','',0,0,0,0,0,'[]'),(17706,'213.152.186.19','normal','',0,0,0,0,0,'[]'),(17707,'51.158.123.167','normal','',0,0,0,0,0,'[]'),(17708,'109.248.175.192','normal','',0,0,0,0,1,'{\"nf\":[1657964628]}'),(17709,'51.158.121.220','normal','',0,0,0,0,0,'[]'),(17710,'51.158.126.196','normal','',0,0,0,0,0,'[]'),(17711,'152.89.160.131','normal','',0,0,0,0,0,'[]'),(17712,'51.15.208.157','normal','',0,0,0,0,0,'[]'),(17713,'51.158.103.7','normal','',0,0,0,0,0,'[]'),(17714,'51.158.126.144','normal','',0,0,0,0,0,'[]'),(17715,'186.234.80.100','normal','',0,0,0,0,0,'[]'),(17716,'163.172.160.131','normal','',0,0,0,0,1,'{\"nf\":[1657968848]}'),(17717,'195.206.105.203','normal','',0,0,0,0,0,'[]'),(17718,'192.185.4.108','normal','',0,0,0,0,0,'[]'),(17719,'92.119.178.3','normal','',0,0,0,0,0,'[]'),(17720,'217.151.98.168','normal','',0,0,0,0,0,'[]'),(17721,'188.125.174.135','normal','',0,0,0,0,0,'[]'),(17722,'156.96.151.132','normal','',0,0,0,0,0,'[]'),(17723,'64.42.179.51','normal','',0,0,0,0,0,'[]'),(17724,'213.152.162.69','normal','',0,0,0,0,0,'[]'),(17725,'51.15.132.144','normal','',0,0,0,0,1,'{\"nf\":[1657990399]}'),(17726,'62.102.148.166','normal','',0,0,0,0,0,'[]'),(17727,'82.79.240.207','normal','',0,0,0,0,1,'{\"nf\":[1662037267]}'),(17728,'194.187.251.163','normal','',0,0,0,0,0,'[]'),(17729,'35.161.82.6','normal','',0,0,0,0,0,'[]'),(17730,'5.9.55.228','normal','',0,0,0,0,1,'{\"nf\":[1658011097]}'),(17731,'82.102.27.195','normal','',0,0,0,0,0,'[]'),(17732,'185.156.174.27','normal','',0,0,0,0,0,'[]'),(17733,'54.36.149.62','normal','',0,0,0,0,0,'[]'),(17734,'198.71.228.27','normal','',0,0,0,0,0,'[]'),(17735,'45.162.228.171','normal','',0,0,0,0,0,'[]'),(17736,'54.36.148.15','normal','',0,0,0,0,0,'[]'),(17737,'217.160.48.108','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1658811127,0,1658810827,0,63,'{\"nf\":[1659056380,1659056388],\"login\":[]}'),(17738,'205.210.31.32','normal','',0,0,0,0,0,'[]'),(17739,'41.144.77.38','normal','',0,0,0,0,0,'[]'),(17740,'167.94.138.60','normal','',0,0,0,0,0,'[]'),(17741,'114.119.145.25','normal','',0,0,0,0,0,'[]'),(17742,'199.249.230.47','normal','',0,0,0,0,0,'[]'),(17743,'92.204.138.148','normal','',0,0,0,0,0,'[]'),(17744,'185.156.175.171','normal','',0,0,0,0,0,'[]'),(17745,'173.211.108.133','normal','',0,0,0,0,0,'[]'),(17746,'54.185.126.87','normal','',0,0,0,0,0,'[]'),(17747,'169.1.54.245','normal','',0,0,0,0,0,'[]'),(17748,'46.19.137.116','normal','',0,0,0,0,0,'[]'),(17749,'213.152.186.173','normal','',0,0,0,0,0,'[]'),(17750,'83.68.102.49','normal','',0,0,0,0,0,'[]'),(17751,'124.221.186.26','normal','',0,0,0,0,0,'[]'),(17752,'186.234.80.98','normal','',0,0,0,0,0,'[]'),(17753,'45.33.109.165','normal','',0,0,0,0,8,'{\"nf\":[1658117335,1658117339,1658117344,1658117345,1658117347,1658117349,1658117351,1658117352]}'),(17754,'167.86.114.163','normal','',0,0,0,0,0,'[]'),(17755,'41.116.208.177','normal','',0,0,0,0,0,'[]'),(17756,'198.211.125.40','normal','',0,0,0,1,0,'{\"login\":[1662100034]}'),(17757,'213.178.225.84','normal','',0,0,0,0,0,'[]'),(17758,'213.152.161.138','normal','',0,0,0,0,0,'[]'),(17759,'105.244.230.93','normal','',0,0,0,0,0,'[]'),(17760,'185.191.171.38','normal','',0,0,0,0,0,'[]'),(17761,'119.12.233.87','normal','',0,0,0,0,0,'[]'),(17762,'104.227.120.210','normal','',0,0,0,0,0,'[]'),(17763,'140.82.28.154','normal','',0,0,0,0,0,'[]'),(17764,'199.244.88.222','normal','',0,0,0,0,0,'[]'),(17765,'198.46.81.49','normal','',0,0,0,1,0,'{\"login\":[1658165464]}'),(17766,'192.99.201.91','normal','',0,0,0,11,0,'{\"login\":[1658166288,1658193804,1659375408,1660307860,1660315638,1660699567,1661532486,1662025441,1662101702,1662667634,1662699621]}'),(17767,'159.69.118.32','normal','',0,0,0,3,0,'{\"login\":[1658169712,1658176556,1659265011]}'),(17768,'172.104.24.14','normal','',0,0,0,5,0,'{\"login\":[1658173930,1658336819,1658581086,1659097054,1659844237]}'),(17769,'164.92.74.90','normal','',0,0,0,0,0,'[]'),(17770,'108.61.201.78','normal','',0,0,0,1,0,'{\"login\":[1658179930]}'),(17771,'62.102.148.152','normal','',0,0,0,0,0,'[]'),(17772,'172.104.156.149','normal','',0,0,0,10,0,'{\"login\":[1658187666,1660791712,1661317739,1661689326,1661719267,1661773876,1662416005,1662708157,1663034528,1663048454]}'),(17773,'47.110.72.238','normal','',0,0,0,13,0,'{\"login\":[1658189399,1658278649,1658364388,1658423564,1659209777,1659740527,1660323991,1660719110,1660735638,1661615401,1662554764,1662817984,1663056945]}'),(17774,'103.176.178.98','normal','',0,0,0,4,0,'{\"login\":[1658190293,1659791521,1660411041,1660453650]}'),(17775,'104.238.111.16','normal','',0,0,0,2,0,'{\"login\":[1658194696,1658383982]}'),(17776,'47.105.73.13','normal','',0,0,0,18,0,'{\"login\":[1658197336,1658307948,1658814805,1659121771,1659272396,1659805787,1660215798,1660274970,1660421729,1660607444,1660614180,1661109718,1661130745,1662159039,1662691083,1662937644,1662970680,1663055873]}'),(17777,'35.219.66.183','normal','',0,0,0,2,0,'{\"login\":[1662105426,1662152919]}'),(17778,'50.116.43.78','normal','',0,0,0,7,0,'{\"login\":[1658201728,1658939219,1660689655,1660728849,1660771274,1661085543,1661248496]}'),(17779,'162.215.96.27','normal','',0,0,0,0,0,'[]'),(17780,'146.59.165.75','normal','',0,0,0,3,0,'{\"login\":[1658204302,1658265051,1658303670]}'),(17781,'68.235.52.36','normal','',0,0,0,0,0,'[]'),(17782,'108.179.253.75','normal','',0,0,0,0,0,'[]'),(17783,'138.68.90.29','normal','',0,0,0,10,0,'{\"login\":[1658208471,1658253437,1658470341,1659128691,1659397209,1660004098,1660373476,1660708644,1661636988,1661716212]}'),(17784,'35.194.93.63','normal','',0,0,0,0,0,'[]'),(17785,'173.231.246.253','normal','',0,0,0,1,0,'{\"login\":[1658213376]}'),(17786,'213.151.33.40','normal','',0,0,0,9,0,'{\"login\":[1658214971,1658330968,1658688318,1660741432,1661103702,1661227107,1661262626,1662372347,1662815231]}'),(17787,'137.184.33.6','normal','',0,0,0,8,0,'{\"login\":[1658215775,1658247997,1658252401,1659293803,1659749948,1660219245,1660312219,1660454870]}'),(17788,'41.13.243.18','normal','',0,0,0,0,3,'{\"nf\":[1658220903,1658220908,1658220910]}'),(17789,'85.193.83.223','normal','',0,0,0,1,0,'{\"login\":[1658225664]}'),(17790,'34.128.64.47','normal','',0,0,0,0,0,'[]'),(17791,'157.230.127.126','normal','',0,0,0,19,0,'{\"login\":[1658227379,1658376460,1658690309,1659757026,1659834772,1660705237,1660731295,1660792525,1661107323,1661187509,1661682220,1661720182,1662059890,1662087434,1662340446,1663009595,1663046409,1663096674,1663097963]}'),(17792,'162.214.127.28','normal','',0,0,0,1,0,'{\"login\":[1658228170]}'),(17793,'51.178.178.230','normal','',0,0,0,11,0,'{\"login\":[1658229011,1658739422,1659333785,1659579349,1660106773,1660340940,1660751256,1661241529,1661406573,1661435419,1661627439]}'),(17794,'178.18.248.127','normal','',0,0,0,10,0,'{\"login\":[1658229847,1658386067,1658672498,1659989583,1660304624,1660745865,1660945428,1660990260,1661252398,1661628469]}'),(17795,'192.30.89.75','normal','',0,0,0,0,0,'[]'),(17796,'208.167.242.136','normal','',0,0,0,1,0,'{\"login\":[1658234979]}'),(17797,'17.121.112.205','normal','',0,0,0,0,0,'[]'),(17798,'209.182.195.110','normal','',0,0,0,11,0,'{\"login\":[1658236703,1659784438,1659796218,1660073567,1660211248,1660239505,1661339740,1661362055,1662148450,1662533127,1662946470]}'),(17799,'68.235.35.124','normal','',0,0,0,0,0,'[]'),(17800,'114.119.144.64','normal','',0,0,0,0,0,'[]'),(17801,'47.100.89.18','normal','',0,0,0,1,0,'{\"login\":[1658239303]}'),(17802,'108.62.123.30','normal','',0,0,0,1,0,'{\"login\":[1658244512]}'),(17803,'141.138.141.251','normal','',0,0,0,2,0,'{\"login\":[1658245382,1658389229]}'),(17804,'146.70.61.147','normal','',0,0,0,0,0,'[]'),(17805,'18.233.105.103','normal','',0,0,0,1,0,'{\"login\":[1658247128]}'),(17806,'34.134.161.50','normal','',0,0,0,9,0,'{\"login\":[1658248870,1658323682,1658432263,1660069590,1660997592,1661685596,1661764409,1661987232,1662197538]}'),(17807,'34.83.181.22','normal','',0,0,0,0,1,'{\"nf\":[1658249704]}'),(17808,'64.42.179.43','normal','',0,0,0,0,0,'[]'),(17809,'102.39.151.94','normal','',0,0,0,0,0,'[]'),(17810,'209.208.79.12','normal','',0,0,0,1,0,'{\"login\":[1658252919]}'),(17811,'35.166.231.47','normal','',0,0,0,0,0,'[]'),(17812,'54.36.148.151','normal','',0,0,0,0,0,'[]'),(17813,'202.29.236.140','normal','',0,0,0,34,0,'{\"login\":[1658253942,1658458144,1658710592,1658718674,1658987766,1659334800,1659372627,1659401303,1659414490,1659817410,1659979445,1660088795,1660318051,1660328487,1660534773,1660558208,1660581058,1660706376,1660932378,1660947783,1660961105,1661137029,1661180629,1661431048,1661506471,1661677812,1662015498,1662034215,1662110885,1662774942,1662933311,1663105794,1663139702,1663157895]}'),(17814,'192.145.236.202','normal','',0,0,0,2,0,'{\"login\":[1658254953,1658586303]}'),(17815,'199.249.230.27','normal','',0,0,0,0,0,'[]'),(17816,'213.152.161.133','normal','',0,0,0,0,0,'[]'),(17817,'151.106.117.15','normal','',0,0,0,2,0,'{\"login\":[1658256445,1661536344]}'),(17818,'198.235.24.140','normal','',0,0,0,0,0,'[]'),(17819,'188.165.198.224','normal','',0,0,0,27,0,'{\"login\":[1658260439,1658362231,1658508576,1658677506,1658842128,1659079963,1659127406,1659143427,1659360402,1659362572,1659381449,1660234173,1660346756,1660566233,1660715957,1661201271,1661647399,1661648452,1661988720,1662219874,1662566487,1662734162,1662778979,1662811121,1662921934,1663001164,1663035614]}'),(17820,'105.225.97.3','normal','',0,0,0,0,0,'[]'),(17821,'202.21.38.119','normal','',0,0,0,15,0,'{\"login\":[1658260943,1658558423,1658569729,1659997820,1660172481,1660536145,1660671063,1660712089,1661643363,1661659334,1662200167,1662204067,1662284575,1662386388,1662731627]}'),(17822,'192.145.239.32','normal','',0,0,0,1,0,'{\"login\":[1658262482]}'),(17823,'173.236.184.128','normal','',0,0,0,13,0,'{\"login\":[1658266602,1659100310,1659409623,1659742875,1659789162,1660101459,1660240814,1660364360,1661158054,1661528471,1661662404,1662314475,1662828970]}'),(17824,'2.58.47.203','normal','',0,0,0,0,0,'[]'),(17825,'110.40.244.196','normal','',0,0,0,15,0,'{\"login\":[1658267636,1658443357,1658460420,1658548691,1658736308,1659816243,1660138709,1660594171,1661002581,1661652181,1661675924,1661736394,1661743813,1662407847,1662967858]}'),(17826,'52.138.180.227','normal','',0,0,0,15,0,'{\"login\":[1658268157,1658279705,1658673507,1659017187,1659600761,1660240161,1660343265,1660458479,1660767921,1661325752,1661645696,1661652263,1662287836,1662414175,1662892272]}'),(17827,'54.254.128.23','normal','',0,0,0,3,0,'{\"login\":[1658268680,1658359024,1658368720]}'),(17828,'130.61.249.194','normal','',0,0,0,3,0,'{\"login\":[1658272865,1658535084,1658749305]}'),(17829,'75.119.157.181','normal','',0,0,0,14,0,'{\"login\":[1658275484,1658308490,1658449013,1658658744,1658728655,1659119900,1659386136,1659785605,1660243384,1660950236,1660992694,1661348123,1662157694,1663069044]}'),(17830,'199.217.112.250','normal','',0,0,0,3,0,'{\"login\":[1658278122,1658297436,1658352607]}'),(17831,'121.4.71.138','normal','',0,0,0,1,0,'{\"login\":[1658279177]}'),(17832,'192.99.36.59','normal','',0,0,0,0,0,'[]'),(17833,'61.216.92.193','normal','',0,0,0,0,0,'[]'),(17834,'195.206.105.227','normal','',0,0,0,0,0,'[]'),(17835,'213.152.161.181','normal','',0,0,0,0,0,'[]'),(17836,'2.51.71.113','normal','',0,0,0,0,0,'[]'),(17837,'54.212.51.193','normal','',0,0,0,0,0,'[]'),(17838,'54.212.51.193','normal','',0,0,0,0,0,'[]'),(17839,'45.77.168.67','normal','',0,0,0,2,0,'{\"login\":[1658300532,1658329842]}'),(17840,'51.195.148.190','normal','',0,0,0,11,0,'{\"login\":[1658301582,1658941330,1659007457,1660157931,1660290904,1661010094,1662257115,1662383563,1662670052,1662761874,1662781709]}'),(17841,'81.90.180.151','normal','',0,0,0,3,0,'{\"login\":[1658305259,1658550983,1658843453]}'),(17842,'167.172.173.146','normal','',0,0,0,0,0,'[]'),(17843,'185.70.251.64','normal','',0,0,0,5,0,'{\"login\":[1658309026,1658390283,1658400211,1658509719,1658567652]}'),(17844,'159.223.80.149','normal','',0,0,0,5,0,'{\"login\":[1658309570,1658640542,1658809838,1658818650,1659329793]}'),(17845,'105.185.158.137','normal','',0,0,0,0,0,'[]'),(17846,'197.89.35.32','normal','',0,0,0,0,0,'[]'),(17847,'51.38.192.91','normal','',0,0,0,6,0,'{\"login\":[1658320398,1660748646,1660957439,1662535754,1662717942,1662957724]}'),(17848,'109.250.220.66','normal','',0,0,0,2,0,'{\"login\":[1658322037,1659432975]}'),(17849,'196.251.238.32','normal','',0,0,0,0,0,'[]'),(17850,'85.191.40.94','normal','',0,0,0,15,0,'{\"login\":[1658325897,1658414780,1658468179,1658743377,1658937098,1659390343,1659800974,1660512128,1660521362,1660608775,1660738786,1660935980,1662050942,1662254884,1662741796]}'),(17851,'77.111.247.60','normal','',0,0,0,0,1,'{\"nf\":[1658326335]}'),(17852,'114.119.131.35','normal','',0,0,0,0,0,'[]'),(17853,'212.193.0.9','normal','',0,0,0,0,1,'{\"nf\":[1658337272]}'),(17854,'156.146.49.162','normal','',0,0,0,0,0,'[]'),(17855,'102.65.66.224','normal','',0,0,0,0,0,'[]'),(17856,'167.99.15.50','normal','',0,0,0,0,7,'{\"nf\":[1658345561,1663027271,1663027325,1663027342,1663027371,1663027377,1663027393]}'),(17857,'217.21.87.243','normal','',0,0,0,6,0,'{\"login\":[1658346298,1658735502,1659593311,1662231867,1662235033,1662404302]}'),(17858,'35.91.73.158','normal','',0,0,0,0,0,'[]'),(17859,'54.148.141.99','normal','',0,0,0,0,0,'[]'),(17860,'178.238.229.54','normal','',0,0,0,0,0,'[]'),(17861,'185.200.116.131','normal','',0,0,0,0,0,'[]'),(17862,'3.226.249.32','normal','',0,0,0,1,0,'{\"login\":[1658356894]}'),(17863,'82.165.18.75','normal','',0,0,0,0,0,'[]'),(17864,'66.175.232.148','normal','',0,0,0,8,0,'{\"login\":[1658363306,1659107994,1659270279,1660374608,1660425339,1661324861,1661414836,1661427830]}'),(17865,'207.46.13.194','normal','',0,0,0,0,0,'[]'),(17866,'37.115.203.192','normal','',0,0,0,0,3,'{\"nf\":[1658372218,1658372228,1658372236]}'),(17867,'51.210.245.7','normal','',0,0,0,0,0,'[]'),(17868,'35.187.58.136','normal','',0,0,0,14,0,'{\"login\":[1658378641,1658638518,1659301772,1659383436,1660327377,1660570271,1661112114,1661255527,1661419190,1661618237,1661620627,1661623406,1661994674,1662163092]}'),(17869,'85.128.143.97','normal','',0,0,0,0,0,'[]'),(17870,'35.221.173.218','normal','',0,0,0,0,3,'{\"nf\":[1658379483,1658379485,1658379487]}'),(17871,'35.221.173.218','normal','',0,0,0,0,0,'[]'),(17872,'164.92.205.132','normal','',0,0,0,0,0,'[]'),(17873,'3.110.180.253','normal','',0,0,0,0,0,'[]'),(17874,'106.52.120.186','normal','',0,0,0,8,0,'{\"login\":[1658382930,1658686326,1659718321,1660685374,1661078215,1662410549,1662661795,1663169687]}'),(17875,'94.23.158.175','normal','',0,0,0,0,0,'[]'),(17876,'146.190.48.16','normal','',0,0,0,0,9,'{\"nf\":[1658385925,1658385928,1658385929,1658385930,1658385931,1658385932,1658385933,1658385934,1658385937]}'),(17877,'15.206.206.125','normal','',0,0,0,2,0,'{\"login\":[1658387121,1658444492]}'),(17878,'41.147.198.153','normal','',0,0,0,0,0,'[]'),(17879,'54.36.110.109','normal','',0,0,0,1,0,'{\"login\":[1662095723]}'),(17880,'41.147.0.105','normal','',0,0,0,0,0,'[]'),(17881,'45.13.132.210','normal','',0,0,0,7,0,'{\"login\":[1658399115,1659277733,1659986228,1660426619,1661537856,1661698740,1662240480]}'),(17882,'130.255.166.213','normal','',0,0,0,0,0,'[]'),(17883,'130.255.166.235','normal','',0,0,0,0,1,'{\"nf\":[1658411983]}'),(17884,'82.102.23.139','normal','',0,0,0,0,0,'[]'),(17885,'199.247.1.2','normal','',0,0,0,2,0,'{\"login\":[1658418141,1658730547]}'),(17886,'222.254.34.75','normal','',0,0,0,1,0,'{\"login\":[1658422499]}'),(17887,'159.69.119.237','normal','',0,0,0,3,0,'{\"login\":[1658427856,1658434465,1658479927]}'),(17888,'72.167.32.172','normal','',0,0,0,0,3,'{\"nf\":[1658433847,1658433850,1658433852]}'),(17889,'54.245.4.34','normal','',0,0,0,0,0,'[]'),(17890,'114.119.144.65','normal','',0,0,0,0,0,'[]'),(17891,'185.244.175.128','normal','',0,0,0,0,3,'{\"nf\":[1658441761,1658464673,1658533180]}'),(17892,'109.248.148.195','normal','',0,0,0,0,0,'[]'),(17893,'209.58.183.78','normal','',0,0,0,0,0,'[]'),(17894,'82.223.104.73','normal','',0,0,0,7,0,'{\"login\":[1658445617,1658707386,1659309966,1659436943,1659850174,1660131316,1660226799]}'),(17895,'197.245.68.181','normal','',0,0,0,0,0,'[]'),(17896,'173.236.242.233','normal','',0,0,0,14,0,'{\"login\":[1658454705,1658970866,1658978404,1659370494,1659373329,1659606364,1660219932,1660781492,1661384897,1661636667,1661660380,1661669293,1662031288,1662143324]}'),(17897,'149.56.26.54','normal','',0,0,0,18,0,'{\"login\":[1658456997,1658537322,1658562511,1658645151,1658647178,1659258614,1659279612,1659400613,1659407528,1659980138,1660004801,1660171427,1660577015,1660731914,1661185132,1661290945,1661388130,1662917659]}'),(17898,'199.223.115.233','normal','',0,0,0,3,0,'{\"login\":[1658461554,1658811701,1658836869]}'),(17899,'67.20.76.220','normal','',0,0,0,0,0,'[]'),(17900,'151.106.116.118','normal','',0,0,0,5,0,'{\"login\":[1658474308,1659985560,1661408625,1662022562,1662923334]}'),(17901,'23.226.65.86','normal','',0,0,0,0,0,'[]'),(17902,'198.235.24.135','normal','',0,0,0,0,0,'[]'),(17903,'20.222.3.95','normal','',0,0,0,0,0,'[]'),(17904,'102.220.115.175','normal','',0,0,0,0,0,'[]'),(17905,'197.234.163.186','normal','',0,0,0,0,0,'[]'),(17906,'159.65.148.179','normal','',0,0,0,1,0,'{\"login\":[1658483324]}'),(17907,'103.163.139.202','normal','',0,0,0,8,0,'{\"login\":[1658486721,1658491254,1658662415,1659087418,1659371210,1660184304,1660590212,1661073479]}'),(17908,'193.122.144.61','normal','',0,0,0,0,0,'[]'),(17909,'47.107.242.103','normal','',0,0,0,10,0,'{\"login\":[1658492396,1658806672,1659002145,1659015011,1659140225,1659995052,1660659520,1662713037,1662797643,1663122039]}'),(17910,'35.200.7.37','normal','',0,0,0,1,0,'{\"login\":[1658501070]}'),(17911,'20.7.207.108','normal','',0,0,0,0,7,'{\"nf\":[1658494301,1658494301,1658494302,1658494302,1658494304,1658494306,1658494307]}'),(17912,'95.216.98.112','normal','',0,0,0,1,0,'{\"login\":[1658502713]}'),(17913,'52.64.252.126','normal','',0,0,0,0,0,'[]'),(17914,'5.161.94.144','normal','',0,0,0,0,0,'[]'),(17915,'78.46.142.172','normal','',0,0,0,0,1,'{\"nf\":[1658511283]}'),(17916,'65.21.105.105','normal','',0,0,0,7,0,'{\"login\":[1658511971,1658957352,1658958368,1661403425,1661730267,1662227552,1663112471]}'),(17917,'169.1.242.249','normal','',0,0,0,0,0,'[]'),(17918,'17.121.115.242','normal','',0,0,0,0,0,'[]'),(17919,'54.36.148.34','normal','',0,0,0,0,0,'[]'),(17920,'54.186.69.210','normal','',0,0,0,0,0,'[]'),(17921,'18.237.138.7','normal','',0,0,0,0,0,'[]'),(17922,'61.191.56.132','normal','',0,0,0,0,1,'{\"nf\":[1658526634]}'),(17923,'183.247.199.131','normal','',0,0,0,0,1,'{\"nf\":[1658526634]}'),(17924,'173.252.83.17','normal','',0,0,0,0,0,'[]'),(17925,'147.135.70.193','normal','',0,0,0,3,0,'{\"login\":[1658530620,1659286816,1659337854]}'),(17926,'54.36.149.45','normal','',0,0,0,0,0,'[]'),(17927,'207.188.158.117','normal','',0,0,0,8,0,'{\"login\":[1658533962,1658709421,1659304813,1659759348,1660564901,1661329490,1661379568,1661616820]}'),(17928,'98.183.191.54','normal','',0,0,0,0,0,'[]'),(17929,'65.109.26.102','normal','',0,0,0,0,0,'[]'),(17930,'165.0.101.123','normal','',0,0,0,0,1,'{\"nf\":[1658546612]}'),(17931,'104.215.121.103','normal','',0,0,0,0,0,'[]'),(17932,'47.101.53.150','normal','',0,0,0,6,0,'{\"login\":[1658561488,1658700281,1659288846,1659388170,1659623859,1659820819]}'),(17933,'102.132.184.136','normal','',0,0,0,0,0,'[]'),(17934,'102.65.62.32','normal','',0,0,0,0,0,'[]'),(17935,'178.128.155.75','normal','',0,0,0,0,2,'{\"nf\":[1658579074,1658579075]}'),(17936,'178.128.155.75','normal','',0,0,0,0,1,'{\"nf\":[1658579074]}'),(17937,'94.130.110.204','normal','',0,0,0,2,0,'{\"login\":[1658584213,1658817354]}'),(17938,'108.167.157.72','normal','',0,0,0,0,0,'[]'),(17939,'91.238.164.173','normal','',0,0,0,0,0,'[]'),(17940,'207.154.248.39','normal','',0,0,0,14,0,'{\"login\":[1658591413,1659992304,1660466997,1661144616,1661243074,1661326706,1661333203,1661715203,1661769487,1662213963,1662693566,1662752583,1662914709,1663161561]}'),(17941,'91.211.220.41','normal','',0,0,0,1,0,'{\"login\":[1658602189]}'),(17942,'102.165.81.6','normal','',0,0,0,0,0,'[]'),(17943,'34.220.22.128','normal','',0,0,0,0,0,'[]'),(17944,'43.251.132.46','normal','',0,0,0,1,0,'{\"login\":[1658614062]}'),(17945,'66.249.64.128','normal','',0,0,0,0,0,'[]'),(17946,'1.117.250.215','normal','',0,0,0,10,0,'{\"login\":[1658617051,1658816715,1659005314,1660147521,1660165137,1660553469,1660574316,1661693393,1662359694,1663091255]}'),(17947,'185.244.175.112','normal','',0,0,0,0,1,'{\"nf\":[1658620375]}'),(17948,'205.210.31.133','normal','',0,0,0,0,0,'[]'),(17949,'130.61.30.164','normal','',0,0,0,0,13,'{\"nf\":[1658633998,1658634002,1658634003,1658634004,1658634005,1658634007,1658634009,1658634010,1658634011,1658634012,1658634014,1658634015,1658634016]}'),(17950,'205.210.31.141','normal','',0,0,0,0,0,'[]'),(17951,'124.220.24.137','normal','',0,0,0,0,0,'[]'),(17952,'42.200.109.156','normal','',0,0,0,1,0,'{\"login\":[1660657216]}'),(17953,'66.249.64.147','normal','',0,0,0,0,0,'[]'),(17954,'13.235.61.220','normal','',0,0,0,0,0,'[]'),(17955,'144.217.135.145','normal','',0,0,0,0,2,'{\"nf\":[1658657902,1658657929]}'),(17956,'149.56.160.133','normal','',0,0,0,0,0,'[]'),(17957,'35.88.37.155','normal','',0,0,0,0,0,'[]'),(17958,'47.111.116.44','normal','',0,0,0,6,0,'{\"login\":[1658666430,1659089553,1660556872,1661159310,1661624057,1663072320]}'),(17959,'185.119.81.100','normal','',0,0,0,39,0,'{\"login\":[1658682341,1658692080,1658723458,1658726053,1658735886,1658749383,1658751745,1658770381,1658796810,1658817305,1658834670,1658842349,1658848089,1658853521,1658854002,1658879503,1658897377,1658907674,1658919947,1658924394,1658949862,1658961480,1658972093,1658977478,1658995030,1659016963,1659019981,1659020693,1659025098,1659026741,1659026859,1659057726,1659067294,1659084625,1659088378,1659088469,1659090119,1659099439,1659107686]}'),(17960,'195.201.127.82','normal','',0,0,0,0,0,'[]'),(17961,'116.203.177.8','normal','',0,0,0,0,0,'[]'),(17962,'185.252.31.179','normal','',0,0,0,1,0,'{\"login\":[1662987955]}'),(17963,'34.219.31.36','normal','',0,0,0,0,0,'[]'),(17964,'18.237.130.183','normal','',0,0,0,0,0,'[]'),(17965,'35.91.195.118','normal','',0,0,0,0,0,'[]'),(17966,'120.27.133.69','normal','',0,0,0,3,0,'{\"login\":[1658695288,1659419312,1662303128]}'),(17967,'20.29.211.7','normal','',0,0,0,0,4,'{\"nf\":[1658701937,1658701947,1658701951,1658701954]}'),(17968,'178.32.215.167','normal','',0,0,0,0,2,'{\"nf\":[1658702526,1660683831]}'),(17969,'198.235.24.30','normal','',0,0,0,0,0,'[]'),(17970,'114.119.149.205','normal','',0,0,0,0,0,'[]'),(17971,'109.248.175.61','normal','',0,0,0,0,1,'{\"nf\":[1658723351]}'),(17972,'24.41.60.59','normal','',0,0,0,0,0,'[]'),(17973,'34.140.112.46','normal','',0,0,0,0,0,'[]'),(17974,'184.75.221.35','normal','',0,0,0,0,0,'[]'),(17975,'186.234.80.248','normal','',0,0,0,0,0,'[]'),(17976,'50.87.144.56','normal','',0,0,0,0,0,'[]'),(17977,'8.142.173.121','normal','',0,0,0,7,0,'{\"login\":[1658742226,1659981510,1660066578,1660347925,1661115829,1661538603,1662901184]}'),(17978,'144.126.140.17','normal','',0,0,0,1,0,'{\"login\":[1662040402]}'),(17979,'178.128.1.41','normal','',0,0,0,0,0,'[]'),(17980,'217.170.197.26','normal','',0,0,0,0,0,'[]'),(17981,'41.147.0.248','normal','',0,0,0,0,0,'[]'),(17982,'165.0.104.73','normal','',0,0,0,0,2,'{\"nf\":[1658762287,1658762289]}'),(17983,'46.210.108.195','normal','',0,0,0,0,0,'[]'),(17984,'17.121.113.223','normal','',0,0,0,0,1,'{\"nf\":[1658776457]}'),(17985,'102.65.220.114','normal','',0,0,0,0,1,'{\"nf\":[1658777127]}'),(17986,'65.52.15.44','normal','',0,0,0,0,1,'{\"nf\":[1658784855]}'),(17987,'20.225.182.228','blocked','You have been locked out due to too many invalid login attempts.',1658791242,1658790942,0,5,0,'{\"login\":[1658790937,1658790938,1658790939,1658790941,1658790942]}'),(17988,'198.204.249.10','normal','',0,0,0,0,6,'{\"nf\":[1658795499,1658795501,1658795502,1658795503,1658795504,1658795505]}'),(17989,'206.189.121.132','normal','',0,0,0,0,2,'{\"nf\":[1658797116,1660854837]}'),(17990,'135.181.150.177','normal','',0,0,0,0,1,'{\"nf\":[1658799192]}'),(17991,'61.191.56.104','normal','',0,0,0,0,1,'{\"nf\":[1658809397]}'),(17992,'67.205.43.169','normal','',0,0,0,2,0,'{\"login\":[1658813565,1659787981]}'),(17993,'198.235.24.35','normal','',0,0,0,0,0,'[]'),(17994,'41.13.232.162','normal','',0,0,0,0,1,'{\"nf\":[1658815792]}'),(17995,'41.147.0.107','normal','',0,0,0,0,1,'{\"nf\":[1658815925]}'),(17996,'41.147.0.83','normal','',0,0,0,0,1,'{\"nf\":[1658815940]}'),(17997,'35.88.103.71','normal','',0,0,0,0,0,'[]'),(17998,'35.167.143.97','normal','',0,0,0,0,0,'[]'),(17999,'35.164.209.216','normal','',0,0,0,0,0,'[]'),(18000,'35.91.200.7','normal','',0,0,0,0,0,'[]'),(18001,'40.66.45.48','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659004199,0,1659003899,0,21,'{\"nf\":[1658820695,1659003681,1659003690,1659003699,1659003707,1659003720,1659003730,1659003739,1659003750,1659003802,1659003815,1659003824,1659003834,1659003842,1659003848,1659003854,1659003863,1659003870,1659003878,1659003888,1659003898]}'),(18002,'205.210.31.28','normal','',0,0,0,0,0,'[]'),(18003,'102.65.60.160','normal','',0,0,0,0,0,'[]'),(18004,'175.178.125.173','normal','',0,0,0,10,0,'{\"login\":[1658827754,1659305843,1659307897,1660100392,1660334082,1661615165,1661732306,1662223194,1662288915,1662336778]}'),(18005,'114.119.143.174','normal','',0,0,0,0,0,'[]'),(18006,'119.237.81.29','normal','',0,0,0,4,0,'{\"login\":[1658837526,1660446167,1661634012,1662973546]}'),(18007,'94.130.39.106','normal','',0,0,0,0,3,'{\"nf\":[1658857956,1658857963,1658857968]}'),(18008,'159.89.92.122','normal','',0,0,0,0,0,'[]'),(18009,'35.91.248.56','normal','',0,0,0,0,0,'[]'),(18010,'83.169.33.117','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1658884875,0,1658884575,0,20,'{\"nf\":[1658884552,1658884555,1658884556,1658884557,1658884558,1658884559,1658884560,1658884561,1658884562,1658884563,1658884564,1658884565,1658884566,1658884567,1658884569,1658884570,1658884571,1658884573,1658884574,1658884575]}'),(18011,'58.221.154.46','normal','',0,0,0,0,2,'{\"nf\":[1658901370,1659003688]}'),(18012,'102.65.66.166','normal','',0,0,0,0,0,'[]'),(18013,'197.89.38.194','normal','',0,0,0,0,0,'[]'),(18014,'54.67.120.37','normal','',0,0,0,0,0,'[]'),(18015,'54.176.225.207','normal','',0,0,0,0,0,'[]'),(18016,'54.153.124.210','normal','',0,0,0,0,0,'[]'),(18017,'54.151.75.225','normal','',0,0,0,0,0,'[]'),(18018,'54.219.137.243','normal','',0,0,0,0,0,'[]'),(18019,'54.219.96.226','normal','',0,0,0,0,0,'[]'),(18020,'18.144.26.233','normal','',0,0,0,0,0,'[]'),(18021,'13.56.247.58','normal','',0,0,0,0,0,'[]'),(18022,'13.52.212.27','normal','',0,0,0,0,0,'[]'),(18023,'3.101.62.100','normal','',0,0,0,0,0,'[]'),(18024,'105.233.90.192','normal','',0,0,0,0,1,'{\"nf\":[1658917400]}'),(18025,'41.113.20.110','normal','',0,0,0,0,0,'[]'),(18026,'31.31.201.12','normal','',0,0,0,0,0,'[]'),(18027,'41.13.198.15','normal','',0,0,0,0,0,'[]'),(18028,'3.111.36.47','normal','',0,0,0,0,0,'[]'),(18029,'192.99.15.34','normal','',0,0,0,0,0,'[]'),(18030,'46.4.119.58','normal','',0,0,0,0,0,'[]'),(18031,'114.119.149.169','normal','',0,0,0,0,0,'[]'),(18032,'54.36.148.101','normal','',0,0,0,0,0,'[]'),(18033,'142.93.41.19','normal','',0,0,0,5,0,'{\"login\":[1658954319,1660235516,1660510826,1660774650,1661429979]}'),(18034,'104.248.55.1','normal','',0,0,0,11,0,'{\"login\":[1658965632,1659415182,1659608371,1659769242,1660005512,1660794981,1660972135,1661289131,1661327580,1661996169,1662345946]}'),(18035,'20.219.96.102','blocked','You have been locked out due to too many invalid login attempts.',1658969358,1658969058,0,5,0,'{\"login\":[1658969053,1658969054,1658969055,1658969056,1658969057]}'),(18036,'35.91.42.210','normal','',0,0,0,0,0,'[]'),(18037,'35.154.134.193','normal','',0,0,0,1,0,'{\"login\":[1658975157]}'),(18038,'41.116.151.132','normal','',0,0,0,0,0,'[]'),(18039,'102.39.42.133','normal','',0,0,0,0,0,'[]'),(18040,'54.36.149.93','normal','',0,0,0,0,0,'[]'),(18041,'45.149.227.225','normal','',0,0,0,0,1,'{\"nf\":[1659001856]}'),(18042,'102.182.71.82','normal','',0,0,0,0,0,'[]'),(18043,'120.196.188.21','normal','',0,0,0,0,1,'{\"nf\":[1659003685]}'),(18044,'58.246.58.150','normal','',0,0,0,0,1,'{\"nf\":[1659014688]}'),(18045,'8.31.2.47','normal','',0,0,0,0,0,'[]'),(18046,'41.177.39.52','normal','',0,0,0,0,0,'[]'),(18047,'5.161.122.49','normal','',0,0,0,0,0,'[]'),(18048,'54.36.148.103','normal','',0,0,0,0,0,'[]'),(18049,'54.36.148.107','normal','',0,0,0,0,0,'[]'),(18050,'52.37.26.162','normal','',0,0,0,0,0,'[]'),(18051,'137.226.113.44','normal','',0,0,0,0,0,'[]'),(18052,'3.93.231.152','normal','',0,0,0,0,0,'[]'),(18053,'34.142.250.79','normal','',0,0,0,0,0,'[]'),(18054,'51.142.180.225','normal','',0,0,0,0,1,'{\"nf\":[1659079089]}'),(18055,'85.128.143.84','normal','',0,0,0,0,0,'[]'),(18056,'162.214.169.49','normal','',0,0,0,0,0,'[]'),(18057,'188.166.27.62','normal','',0,0,0,0,0,'[]'),(18058,'20.151.202.218','normal','',0,0,0,0,1,'{\"nf\":[1659080283]}'),(18059,'103.239.222.228','normal','',0,0,0,0,0,'[]'),(18060,'149.28.106.55','normal','',0,0,0,0,0,'[]'),(18061,'79.137.65.179','normal','',0,0,0,0,0,'[]'),(18062,'37.48.76.105','normal','',0,0,0,0,0,'[]'),(18063,'103.175.206.43','normal','',0,0,0,1,0,'{\"login\":[1660308084]}'),(18064,'134.122.5.88','normal','',0,0,0,0,0,'[]'),(18065,'198.235.24.152','normal','',0,0,0,0,0,'[]'),(18066,'153.126.161.120','normal','',0,0,0,0,0,'[]'),(18067,'139.180.214.95','normal','',0,0,0,0,0,'[]'),(18068,'149.255.62.23','normal','',0,0,0,0,0,'[]'),(18069,'110.173.134.237','normal','',0,0,0,0,0,'[]'),(18070,'185.169.54.80','normal','',0,0,0,0,0,'[]'),(18071,'95.217.35.220','normal','',0,0,0,0,0,'[]'),(18072,'212.16.185.37','normal','',0,0,0,0,0,'[]'),(18073,'162.0.216.67','normal','',0,0,0,2,0,'{\"login\":[1662091678,1662204992]}'),(18074,'188.68.47.126','normal','',0,0,0,0,0,'[]'),(18075,'107.191.60.190','normal','',0,0,0,0,0,'[]'),(18076,'64.90.36.102','normal','',0,0,0,10,0,'{\"login\":[1659094907,1659285796,1660162011,1660402831,1660985408,1661281918,1662230810,1662319712,1662352419,1662549648]}'),(18077,'207.244.251.52','normal','',0,0,0,1,0,'{\"login\":[1662260370]}'),(18078,'161.97.100.231','normal','',0,0,0,2,0,'{\"login\":[1661158281,1662149340]}'),(18079,'194.233.89.214','normal','',0,0,0,0,0,'[]'),(18080,'82.165.241.48','normal','',0,0,0,0,0,'[]'),(18081,'104.28.210.51','normal','',0,0,0,0,0,'[]'),(18082,'198.244.203.125','normal','',0,0,0,0,0,'[]'),(18083,'54.226.161.203','normal','',0,0,0,0,5,'{\"nf\":[1659100283,1659100356,1659100358,1659145740,1659145742]}'),(18084,'172.104.234.191','normal','',0,0,0,0,10,'{\"nf\":[1659100290,1659100291,1659100291,1659100292,1659100293,1659100294,1659100296,1659100297,1659100298,1659100299]}'),(18085,'172.104.234.191','normal','',0,0,0,0,0,'[]'),(18086,'139.162.49.49','normal','',0,0,0,0,0,'[]'),(18087,'45.79.72.76','normal','',0,0,0,0,0,'[]'),(18088,'146.19.168.86','normal','',0,0,0,0,1,'{\"nf\":[1659100353]}'),(18089,'185.215.180.207','normal','',0,0,0,0,0,'[]'),(18090,'112.72.98.140','normal','',0,0,0,0,0,'[]'),(18091,'75.119.139.106','normal','',0,0,0,0,0,'[]'),(18092,'176.227.172.42','normal','',0,0,0,0,0,'[]'),(18093,'119.8.58.8','normal','',0,0,0,0,0,'[]'),(18094,'205.196.80.195','normal','',0,0,0,0,0,'[]'),(18095,'149.57.128.18','normal','',0,0,0,0,0,'[]'),(18096,'139.162.40.223','normal','',0,0,0,0,0,'[]'),(18097,'137.184.209.117','normal','',0,0,0,1,0,'{\"login\":[1662083256]}'),(18098,'45.90.60.192','normal','',0,0,0,0,0,'[]'),(18099,'186.200.22.130','normal','',0,0,0,0,0,'[]'),(18100,'17.121.113.226','normal','',0,0,0,0,0,'[]'),(18101,'176.53.216.52','normal','',0,0,0,0,0,'[]'),(18102,'89.104.110.229','normal','',0,0,0,0,0,'[]'),(18103,'185.191.171.37','normal','',0,0,0,0,0,'[]'),(18104,'185.191.171.9','normal','',0,0,0,0,0,'[]'),(18105,'121.4.79.217','normal','',0,0,0,0,0,'[]'),(18106,'130.255.166.223','normal','',0,0,0,0,1,'{\"nf\":[1661878818]}'),(18107,'130.255.166.224','normal','',0,0,0,0,1,'{\"nf\":[1659129033]}'),(18108,'193.106.31.154','normal','',0,0,0,0,0,'[]'),(18109,'173.252.83.4','normal','',0,0,0,0,0,'[]'),(18110,'173.252.83.20','normal','',0,0,0,0,0,'[]'),(18111,'65.108.43.234','normal','',0,0,0,0,2,'{\"nf\":[1659136605,1659189660]}'),(18112,'43.241.73.45','normal','',0,0,0,0,0,'[]'),(18113,'65.108.233.223','normal','',0,0,0,0,11,'{\"nf\":[1659145100,1659145104,1659145105,1659145107,1659202130,1659202132,1659202133,1659202135,1659236460,1659236464,1659236468]}'),(18114,'198.245.64.194','normal','',0,0,0,0,0,'[]'),(18115,'185.234.69.220','normal','',0,0,0,0,0,'[]'),(18116,'205.210.31.140','normal','',0,0,0,0,0,'[]'),(18117,'35.192.104.56','normal','',0,0,0,2,0,'{\"login\":[1659149229,1661102465]}'),(18118,'109.228.50.190','normal','',0,0,0,0,0,'[]'),(18119,'193.176.230.19','normal','',0,0,0,0,0,'[]'),(18120,'185.36.231.125','normal','',0,0,0,0,0,'[]'),(18121,'148.251.15.53','normal','',0,0,0,0,0,'[]'),(18122,'54.249.241.32','normal','',0,0,0,0,0,'[]'),(18123,'185.243.49.16','normal','',0,0,0,0,0,'[]'),(18124,'62.90.101.113','normal','',0,0,0,2,0,'{\"login\":[1660916659,1661691041]}'),(18125,'209.250.240.234','normal','',0,0,0,0,0,'[]'),(18126,'185.221.182.21','normal','',0,0,0,0,0,'[]'),(18127,'103.67.235.9','normal','',0,0,0,0,0,'[]'),(18128,'184.171.244.176','normal','',0,0,0,0,0,'[]'),(18129,'3.95.131.147','normal','',0,0,0,0,0,'[]'),(18130,'54.146.50.88','normal','',0,0,0,0,0,'[]'),(18131,'213.165.237.48','normal','',0,0,0,2,0,'{\"login\":[1662121577,1662235522]}'),(18132,'136.243.83.14','normal','',0,0,0,0,3,'{\"nf\":[1659176192,1659176195,1659176197]}'),(18133,'162.240.35.180','normal','',0,0,0,0,0,'[]'),(18134,'162.214.202.3','normal','',0,0,0,0,0,'[]'),(18135,'50.116.52.189','normal','',0,0,0,0,0,'[]'),(18136,'185.182.89.35','normal','',0,0,0,0,0,'[]'),(18137,'193.176.230.188','normal','',0,0,0,2,0,'{\"login\":[1661157248,1662221039]}'),(18138,'41.13.224.133','normal','',0,0,0,0,0,'[]'),(18139,'66.249.66.79','normal','',0,0,0,0,0,'[]'),(18140,'82.166.23.245','normal','',0,0,0,6,0,'{\"login\":[1659200378,1659314109,1660205560,1662005149,1662322337,1662353335]}'),(18141,'89.104.110.106','normal','',0,0,0,0,0,'[]'),(18142,'89.104.101.120','normal','',0,0,0,0,0,'[]'),(18143,'45.90.63.149','normal','',0,0,0,0,0,'[]'),(18144,'35.165.127.49','normal','',0,0,0,0,0,'[]'),(18145,'35.87.28.113','normal','',0,0,0,0,0,'[]'),(18146,'52.32.19.184','normal','',0,0,0,0,0,'[]'),(18147,'43.251.134.246','normal','',0,0,0,1,0,'{\"login\":[1659214000]}'),(18148,'198.235.24.151','normal','',0,0,0,0,0,'[]'),(18149,'198.235.24.145','normal','',0,0,0,0,0,'[]'),(18150,'212.38.40.215','normal','',0,0,0,1,0,'{\"login\":[1661955147]}'),(18151,'62.171.133.125','normal','',0,0,0,1,0,'{\"login\":[1662116832]}'),(18152,'197.189.200.74','normal','',0,0,0,0,0,'[]'),(18153,'152.32.211.172','normal','',0,0,0,0,0,'[]'),(18154,'185.21.41.45','normal','',0,0,0,0,0,'[]'),(18155,'37.46.128.180','normal','',0,0,0,1,0,'{\"login\":[1661686703]}'),(18156,'111.42.175.236','normal','',0,0,0,0,2,'{\"nf\":[1659247111,1659481429]}'),(18157,'144.126.159.38','normal','',0,0,0,0,0,'[]'),(18158,'167.71.106.216','normal','',0,0,0,0,0,'[]'),(18159,'18.185.215.191','normal','',0,0,0,0,0,'[]'),(18160,'138.68.84.97','normal','',0,0,0,13,0,'{\"login\":[1659253259,1660125607,1661527652,1661687299,1661781333,1662049594,1662113561,1662206665,1662286742,1662378861,1662389258,1662557348,1662701946]}'),(18161,'102.65.60.77','normal','',0,0,0,0,1,'{\"nf\":[1659255184]}'),(18162,'103.152.164.156','normal','',0,0,0,0,0,'[]'),(18163,'199.116.251.26','normal','',0,0,0,0,0,'[]'),(18164,'15.222.219.63','normal','',0,0,0,0,0,'[]'),(18165,'45.12.112.236','normal','',0,0,0,0,0,'[]'),(18166,'77.246.183.77','normal','',0,0,0,0,0,'[]'),(18167,'64.227.41.216','normal','',0,0,0,0,0,'[]'),(18168,'20.77.70.135','normal','',0,0,0,0,0,'[]'),(18169,'162.142.125.213','normal','',0,0,0,0,0,'[]'),(18170,'191.96.168.237','normal','',0,0,0,0,1,'{\"nf\":[1659281369]}'),(18171,'106.15.38.206','normal','',0,0,0,7,0,'{\"login\":[1659287836,1659417949,1660291961,1661134498,1661197409,1662116237,1662668855]}'),(18172,'209.141.55.120','normal','',0,0,0,0,0,'[]'),(18173,'114.119.136.199','normal','',0,0,0,0,0,'[]'),(18174,'92.204.239.23','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659299926,0,1659299626,0,20,'{\"nf\":[1659299601,1659299605,1659299606,1659299607,1659299608,1659299609,1659299611,1659299612,1659299613,1659299614,1659299615,1659299616,1659299617,1659299618,1659299621,1659299622,1659299623,1659299624,1659299625,1659299626]}'),(18175,'178.128.46.160','normal','',0,0,0,0,30,'{\"nf\":[1659301818,1659301820,1659301821,1659301823,1659301824,1659301826,1659301828,1659301829,1659301831,1659301833,1659301835,1659301836,1659301838,1659301841,1659301842,1660823907,1660823909,1660823911,1660823913,1660823915,1660823916,1660823917,1660823919,1660823921,1660823922,1660823924,1660823925,1660823927,1660823928,1660823930]}'),(18176,'120.237.144.57','normal','',0,0,0,0,1,'{\"nf\":[1659310860]}'),(18177,'139.162.192.26','normal','',0,0,0,0,0,'[]'),(18178,'162.240.79.15','normal','',0,0,0,0,0,'[]'),(18179,'128.199.60.194','normal','',0,0,0,0,0,'[]'),(18180,'20.207.80.198','normal','',0,0,0,1,0,'{\"login\":[1662240355]}'),(18181,'198.235.24.154','normal','',0,0,0,0,0,'[]'),(18182,'8.218.129.235','normal','',0,0,0,0,0,'[]'),(18183,'209.124.88.143','normal','',0,0,0,0,0,'[]'),(18184,'67.205.143.236','normal','',0,0,0,1,0,'{\"login\":[1662113425]}'),(18185,'103.67.235.82','normal','',0,0,0,0,0,'[]'),(18186,'91.215.191.57','normal','',0,0,0,0,0,'[]'),(18187,'109.248.175.199','normal','',0,0,0,0,1,'{\"nf\":[1659321686]}'),(18188,'54.168.111.47','normal','',0,0,0,0,0,'[]'),(18189,'65.21.96.3','normal','',0,0,0,0,0,'[]'),(18190,'162.214.155.200','normal','',0,0,0,0,0,'[]'),(18191,'207.180.231.222','normal','',0,0,0,0,0,'[]'),(18192,'34.91.56.52','normal','',0,0,0,0,0,'[]'),(18193,'103.8.26.65','normal','',0,0,0,0,0,'[]'),(18194,'107.180.95.70','normal','',0,0,0,0,0,'[]'),(18195,'208.109.39.235','normal','',0,0,0,1,0,'{\"login\":[1662101632]}'),(18196,'50.87.144.155','normal','',0,0,0,0,0,'[]'),(18197,'65.21.192.124','normal','',0,0,0,0,0,'[]'),(18198,'192.210.196.65','normal','',0,0,0,1,0,'{\"login\":[1662041607]}'),(18199,'3.93.133.131','normal','',0,0,0,0,0,'[]'),(18200,'192.115.100.180','normal','',0,0,0,2,0,'{\"login\":[1661076507,1661168173]}'),(18201,'54.219.199.91','normal','',0,0,0,0,0,'[]'),(18202,'54.215.212.127','normal','',0,0,0,0,0,'[]'),(18203,'50.18.140.47','normal','',0,0,0,0,0,'[]'),(18204,'179.127.29.102','normal','',0,0,0,2,0,'{\"login\":[1661083684,1662873233]}'),(18205,'103.121.90.150','normal','',0,0,0,0,0,'[]'),(18206,'72.29.76.78','normal','',0,0,0,0,0,'[]'),(18207,'185.208.79.215','normal','',0,0,0,1,0,'{\"login\":[1661075533]}'),(18208,'209.145.54.196','normal','',0,0,0,0,0,'[]'),(18209,'105.27.194.202','normal','',0,0,0,0,0,'[]'),(18210,'162.241.74.44','normal','',0,0,0,0,0,'[]'),(18211,'124.223.196.102','normal','',0,0,0,0,0,'[]'),(18212,'78.135.106.150','normal','',0,0,0,0,0,'[]'),(18213,'89.163.140.178','normal','',0,0,0,0,0,'[]'),(18214,'197.221.183.4','normal','',0,0,0,0,0,'[]'),(18215,'196.61.106.223','normal','',0,0,0,0,0,'[]'),(18216,'41.71.7.151','normal','',0,0,0,0,0,'[]'),(18217,'104.219.251.247','normal','',0,0,0,2,0,'{\"login\":[1661166881,1662238598]}'),(18218,'139.59.61.39','normal','',0,0,0,0,0,'[]'),(18219,'209.182.208.49','normal','',0,0,0,5,0,'{\"login\":[1659345087,1659390081,1659394735,1659955859,1659990718]}'),(18220,'94.23.61.165','normal','',0,0,0,12,0,'{\"login\":[1659345169,1659362568,1659368801,1659966432,1659967436,1660077656,1660118611,1661797970,1661799156,1661803740,1661807430,1661809210]}'),(18221,'93.105.85.38','normal','',0,0,0,2,0,'{\"login\":[1659345225,1659395929]}'),(18222,'15.235.10.33','normal','',0,0,0,0,0,'[]'),(18223,'194.1.192.3','normal','',0,0,0,10,0,'{\"login\":[1659345513,1659350381,1659352512,1659430865,1661753653,1661787897,1661798446,1661812379,1661814986,1661843152]}'),(18224,'103.174.102.106','normal','',0,0,0,5,0,'{\"login\":[1659345522,1659363545,1659383213,1659384841,1659401453]}'),(18225,'90.156.169.12','normal','',0,0,0,0,0,'[]'),(18226,'54.38.243.68','normal','',0,0,0,1,0,'{\"login\":[1659345750]}'),(18227,'74.208.30.51','normal','',0,0,0,0,0,'[]'),(18228,'139.162.217.184','normal','',0,0,0,4,0,'{\"login\":[1659345808,1659357649,1659388471,1661792124]}'),(18229,'92.51.165.108','normal','',0,0,0,2,0,'{\"login\":[1659345911,1659348015]}'),(18230,'91.228.7.63','normal','',0,0,0,8,0,'{\"login\":[1659345969,1659347603,1659377662,1659381745,1659383617,1659399656,1659415738,1659995832]}'),(18231,'213.108.59.21','normal','',0,0,0,4,0,'{\"login\":[1659346043,1659380497,1659381428,1659419394]}'),(18232,'141.94.102.163','normal','',0,0,0,14,0,'{\"login\":[1659346163,1659348608,1659360012,1659387094,1659411051,1660136607,1660443594,1660503372,1660573573,1660905937,1661759386,1661769974,1661777489,1661806798]}'),(18233,'181.119.55.215','normal','',0,0,0,3,0,'{\"login\":[1659346334,1659364455,1659398895]}'),(18234,'202.61.243.250','normal','',0,0,0,2,0,'{\"login\":[1659346498,1659379435]}'),(18235,'206.189.24.64','normal','',0,0,0,6,0,'{\"login\":[1659346520,1659349160,1659379456,1659379797,1661805886,1661835998]}'),(18236,'23.22.155.159','normal','',0,0,0,2,0,'{\"login\":[1659346672,1659408439]}'),(18237,'195.201.151.44','normal','',0,0,0,5,0,'{\"login\":[1659346770,1659391410,1659410875,1659412274,1659412948]}'),(18238,'199.250.222.187','normal','',0,0,0,2,0,'{\"login\":[1659346839,1659412698]}'),(18239,'188.68.47.144','normal','',0,0,0,9,0,'{\"login\":[1659346969,1659401075,1659428397,1659711884,1660140740,1660305763,1660480216,1660512024,1660529391]}'),(18240,'162.43.118.40','normal','',0,0,0,2,0,'{\"login\":[1659347093,1659370013]}'),(18241,'152.231.89.82','normal','',0,0,0,3,0,'{\"login\":[1659347308,1659397373,1659411445]}'),(18242,'85.128.143.131','normal','',0,0,0,3,0,'{\"login\":[1659347480,1659360895,1659378371]}'),(18243,'198.27.67.100','normal','',0,0,0,4,0,'{\"login\":[1659347695,1659978483,1660090897,1660114629]}'),(18244,'102.130.122.245','normal','',0,0,0,3,0,'{\"login\":[1659347779,1659354249,1659366778]}'),(18245,'144.22.229.32','normal','',0,0,0,2,0,'{\"login\":[1659347975,1659415363]}'),(18246,'46.31.17.29','normal','',0,0,0,14,0,'{\"login\":[1659348131,1659351249,1659353496,1659407474,1659424881,1661752935,1661755871,1661757523,1661760958,1661764241,1661786562,1661829931,1661838957,1661842454]}'),(18247,'85.128.143.183','normal','',0,0,0,1,0,'{\"login\":[1659348373]}'),(18248,'85.128.143.183','normal','',0,0,0,0,0,'[]'),(18249,'18.135.39.227','normal','',0,0,0,5,0,'{\"login\":[1659348681,1659371588,1659377917,1659699749,1659737441]}'),(18250,'103.124.93.16','normal','',0,0,0,0,0,'[]'),(18251,'103.242.233.169','normal','',0,0,0,15,0,'{\"login\":[1659348970,1659395211,1659410433,1659424884,1659429104,1661761023,1661761147,1661761677,1661772129,1661790131,1661796031,1661799204,1661818460,1661819890,1661829101]}'),(18252,'100.20.76.9','normal','',0,0,0,1,0,'{\"login\":[1659349352]}'),(18253,'183.239.61.204','normal','',0,0,0,0,1,'{\"nf\":[1659349482]}'),(18254,'103.35.165.250','normal','',0,0,0,4,0,'{\"login\":[1659349649,1659366061,1660229401,1661780074]}'),(18255,'93.177.120.10','normal','',0,0,0,0,0,'[]'),(18256,'65.2.41.43','normal','',0,0,0,1,0,'{\"login\":[1659349761]}'),(18257,'40.77.107.136','normal','',0,0,0,5,0,'{\"login\":[1659349998,1659356205,1659369838,1659378819,1659413940]}'),(18258,'136.243.104.68','normal','',0,0,0,4,0,'{\"login\":[1659350199,1659375871,1659398740,1659409673]}'),(18259,'43.155.83.110','normal','',0,0,0,4,0,'{\"login\":[1659350272,1659366004,1661753448,1661757204]}'),(18260,'3.109.219.71','normal','',0,0,0,4,0,'{\"login\":[1659350464,1659384305,1659386523,1659411645]}'),(18261,'65.0.214.114','normal','',0,0,0,3,0,'{\"login\":[1659350557,1659364142,1659390317]}'),(18262,'85.128.143.133','normal','',0,0,0,2,0,'{\"login\":[1659350866,1659352726]}'),(18263,'128.199.116.18','normal','',0,0,0,6,0,'{\"login\":[1659351235,1659368906,1659388593,1659401876,1659404817,1659412395]}'),(18264,'64.227.66.200','normal','',0,0,0,8,0,'{\"login\":[1659351518,1659354162,1659360769,1659362837,1659368683,1659370441,1659376047,1659379742]}'),(18265,'46.246.30.15','normal','',0,0,0,3,0,'{\"login\":[1659351553,1659356641,1659377615]}'),(18266,'188.166.103.30','normal','',0,0,0,16,0,'{\"login\":[1659351787,1659376276,1659376601,1659385949,1659393866,1659394237,1659395126,1659416168,1659421840,1660031480,1660286666,1661766275,1661780199,1661803535,1661810099,1661812798]}'),(18267,'116.203.155.54','normal','',0,0,0,1,0,'{\"login\":[1659351881]}'),(18268,'167.172.162.150','normal','',0,0,0,2,0,'{\"login\":[1659352023,1659385474]}'),(18269,'165.22.252.1','normal','',0,0,0,5,0,'{\"login\":[1659352469,1659360351,1659383213,1661755153,1661759184]}'),(18270,'106.15.125.138','normal','',0,0,0,6,0,'{\"login\":[1659352821,1659379053,1659390689,1659414673,1659419704,1659426155]}'),(18271,'142.132.179.124','normal','',0,0,0,3,0,'{\"login\":[1659352880,1659371987,1659421654]}'),(18272,'143.244.175.50','normal','',0,0,0,0,0,'[]'),(18273,'103.41.206.160','normal','',0,0,0,8,0,'{\"login\":[1659353035,1659695885,1660972263,1660976721,1661772874,1661775937,1661805802,1661827470]}'),(18274,'176.117.58.42','normal','',0,0,0,3,0,'{\"login\":[1659353093,1659381248,1659398126]}'),(18275,'162.212.153.74','normal','',0,0,0,6,0,'{\"login\":[1659353321,1659357117,1659361050,1659361320,1659380947,1659385708]}'),(18276,'139.59.17.116','normal','',0,0,0,5,0,'{\"login\":[1659353599,1659363218,1659366492,1659390855,1661758136]}'),(18277,'194.163.159.137','normal','',0,0,0,1,0,'{\"login\":[1659353674]}'),(18278,'185.225.33.6','normal','',0,0,0,2,0,'{\"login\":[1659353943,1659392143]}'),(18279,'46.182.4.118','normal','',0,0,0,0,0,'[]'),(18280,'37.97.151.201','normal','',0,0,0,5,0,'{\"login\":[1659354368,1659375956,1659404531,1659407204,1659430932]}'),(18281,'139.59.1.125','normal','',0,0,0,3,0,'{\"login\":[1659354469,1659358732,1659369026]}'),(18282,'20.214.110.123','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659354905,0,1659354605,0,20,'{\"nf\":[1659354566,1659354569,1659354571,1659354573,1659354575,1659354577,1659354579,1659354581,1659354583,1659354585,1659354587,1659354589,1659354590,1659354592,1659354594,1659354596,1659354598,1659354600,1659354601,1659354604]}'),(18283,'65.20.73.134','normal','',0,0,0,9,0,'{\"login\":[1659354714,1659367715,1659688186,1659692006,1659745808,1659965375,1660073861,1660087111,1660416599]}'),(18284,'173.236.145.21','normal','',0,0,0,4,0,'{\"login\":[1659354875,1659363476,1659383919,1659390196]}'),(18285,'49.12.114.46','normal','',0,0,0,1,0,'{\"login\":[1659355022]}'),(18286,'217.182.80.203','normal','',0,0,0,8,0,'{\"login\":[1659355134,1659373935,1659379329,1659428325,1660056912,1660081396,1660185200,1660388173]}'),(18287,'167.114.152.164','normal','',0,0,0,3,0,'{\"login\":[1659355592,1659374758,1659418226]}'),(18288,'88.99.23.215','normal','',0,0,0,0,0,'[]'),(18289,'82.223.101.167','normal','',0,0,0,5,0,'{\"login\":[1659356049,1659364795,1659383409,1659384755,1659385267]}'),(18290,'82.223.84.147','normal','',0,0,0,2,0,'{\"login\":[1659356095,1659361593]}'),(18291,'185.207.105.157','normal','',0,0,0,6,0,'{\"login\":[1659356342,1659359157,1659359712,1660002395,1660165618,1660169948]}'),(18292,'177.55.116.243','normal','',0,0,0,2,0,'{\"login\":[1659356944,1659357012]}'),(18293,'192.169.177.50','normal','',0,0,0,1,0,'{\"login\":[1659357439]}'),(18294,'41.147.1.118','normal','',0,0,0,0,0,'[]'),(18295,'206.189.224.210','normal','',0,0,0,2,0,'{\"login\":[1659357937,1659390587]}'),(18296,'47.104.85.137','normal','',0,0,0,1,0,'{\"login\":[1659357978]}'),(18297,'185.120.147.145','normal','',0,0,0,5,0,'{\"login\":[1659358455,1659380642,1659396403,1659407640,1659419561]}'),(18298,'103.180.120.27','normal','',0,0,0,6,0,'{\"login\":[1659358677,1659422552,1659788530,1659853500,1660003743,1660005092]}'),(18299,'85.214.145.212','normal','',0,0,0,0,0,'[]'),(18300,'217.115.123.175','normal','',0,0,0,1,0,'{\"login\":[1659359047]}'),(18301,'157.90.30.157','normal','',0,0,0,2,0,'{\"login\":[1659359233,1659366283]}'),(18302,'54.207.156.247','normal','',0,0,0,1,0,'{\"login\":[1659359415]}'),(18303,'39.103.168.88','normal','',0,0,0,0,0,'[]'),(18304,'99.79.153.136','normal','',0,0,0,1,0,'{\"login\":[1659359437]}'),(18305,'198.27.83.9','normal','',0,0,0,8,0,'{\"login\":[1659359547,1659403424,1661759493,1661776588,1661784853,1661803882,1661813367,1661834910]}'),(18306,'46.149.118.68','normal','',0,0,0,3,4,'{\"login\":[1659359760,1659402807,1660064327],\"nf\":[1659996383,1659996520,1659996589,1659996695]}'),(18307,'188.68.47.147','normal','',0,0,0,5,0,'{\"login\":[1659359901,1659418695,1660023788,1660217974,1660474459]}'),(18308,'3.71.168.49','normal','',0,0,0,5,0,'{\"login\":[1659360222,1659364107,1659390004,1659408618,1659410247]}'),(18309,'150.95.113.161','normal','',0,0,0,1,0,'{\"login\":[1660479856]}'),(18310,'62.221.192.233','normal','',0,0,0,6,0,'{\"login\":[1659360518,1659370682,1659380730,1659431360,1659771538,1659942395]}'),(18311,'41.13.216.150','normal','',0,0,0,0,0,'[]'),(18312,'3.34.143.209','normal','',0,0,0,1,0,'{\"login\":[1659361429]}'),(18313,'20.199.109.10','normal','',0,0,0,9,0,'{\"login\":[1659361647,1659405358,1661779182,1661784061,1661790084,1661791936,1661798822,1661827775,1661830113]}'),(18314,'159.65.153.51','normal','',0,0,0,1,0,'{\"login\":[1659361755]}'),(18315,'3.132.132.55','normal','',0,0,0,1,0,'{\"login\":[1659361836]}'),(18316,'167.71.216.69','normal','',0,0,0,2,0,'{\"login\":[1659361972,1659372535]}'),(18317,'103.163.210.25','normal','',0,0,0,1,0,'{\"login\":[1659362928]}'),(18318,'165.22.95.235','normal','',0,0,0,13,0,'{\"login\":[1659363024,1659385377,1659396795,1659780053,1660491743,1661776702,1661786223,1661790678,1661793152,1661806924,1661807670,1661833251,1661835552]}'),(18319,'52.179.81.192','normal','',0,0,0,1,0,'{\"login\":[1659363171]}'),(18320,'46.101.157.99','normal','',0,0,0,0,0,'[]'),(18321,'68.183.85.231','normal','',0,0,0,7,0,'{\"login\":[1659363703,1659394928,1659408864,1659984486,1660138692,1660224783,1661807807]}'),(18322,'77.68.77.20','normal','',0,0,0,2,0,'{\"login\":[1659363722,1659394986]}'),(18323,'119.3.108.48','normal','',0,0,0,2,0,'{\"login\":[1659364012,1659399147]}'),(18324,'3.109.185.18','normal','',0,0,0,1,0,'{\"login\":[1659364569]}'),(18325,'197.159.35.28','normal','',0,0,0,12,0,'{\"login\":[1659364704,1659367818,1659408290,1661759612,1661760630,1661764561,1661765150,1661765467,1661768623,1661775169,1661819420,1661821881]}'),(18326,'82.223.197.56','normal','',0,0,0,5,0,'{\"login\":[1659364895,1659365026,1659375440,1659398358,1659405203]}'),(18327,'139.59.23.52','normal','',0,0,0,2,0,'{\"login\":[1659365104,1659387733]}'),(18328,'51.210.154.175','normal','',0,0,0,3,0,'{\"login\":[1659365306,1659368306,1659398630]}'),(18329,'3.97.19.232','normal','',0,0,0,6,0,'{\"login\":[1659365526,1659377009,1659381911,1659404965,1659831668,1659963332]}'),(18330,'5.101.157.78','normal','',0,0,0,1,0,'{\"login\":[1659365623]}'),(18331,'207.246.112.174','normal','',0,0,0,3,0,'{\"login\":[1659365713,1659380189,1659383657]}'),(18332,'62.109.4.231','normal','',0,0,0,2,0,'{\"login\":[1659366212,1659397942]}'),(18333,'88.198.223.18','normal','',0,0,0,2,0,'{\"login\":[1659366679,1659373021]}'),(18334,'157.90.135.167','normal','',0,0,0,9,0,'{\"login\":[1659366878,1659378572,1659383988,1659394370,1659400020,1659419216,1660670196,1661783725,1661826697]}'),(18335,'217.170.198.10','normal','',0,0,0,7,0,'{\"login\":[1659366963,1659372093,1659417453,1659750025,1659835933,1660174241,1660236176]}'),(18336,'121.4.181.173','normal','',0,0,0,5,0,'{\"login\":[1659367307,1659402291,1661754943,1661797682,1661812965]}'),(18337,'165.232.179.48','normal','',0,0,0,2,0,'{\"login\":[1659367423,1659375243]}'),(18338,'173.255.226.101','normal','',0,0,0,2,0,'{\"login\":[1659367576,1659379126]}'),(18339,'139.162.13.84','normal','',0,0,0,0,0,'[]'),(18340,'178.254.0.80','normal','',0,0,0,2,0,'{\"login\":[1659368015,1659368143]}'),(18341,'51.255.38.239','normal','',0,0,0,5,0,'{\"login\":[1659368190,1659373315,1660148918,1660440789,1661833878]}'),(18342,'217.170.198.19','normal','',0,0,0,4,0,'{\"login\":[1659368978,1659394521,1659911215,1660130579]}'),(18343,'92.54.13.201','normal','',0,0,0,7,0,'{\"login\":[1659369214,1659385928,1659387169,1659424324,1661762104,1661776075,1661842964]}'),(18344,'89.252.184.47','normal','',0,0,0,1,0,'{\"login\":[1659371135]}'),(18345,'139.59.82.215','normal','',0,0,0,3,0,'{\"login\":[1659371266,1659371623,1659992019]}'),(18346,'198.244.143.200','normal','',0,0,0,2,0,'{\"login\":[1659371467,1659379229]}'),(18347,'138.201.202.6','normal','',0,0,0,8,0,'{\"login\":[1659371788,1659374760,1659376884,1659386830,1659405422,1659416591,1659417623,1659703724]}'),(18348,'217.174.249.31','normal','',0,0,0,2,0,'{\"login\":[1659372401,1659396997]}'),(18349,'85.128.143.107','normal','',0,0,0,1,0,'{\"login\":[1659372499]}'),(18350,'93.189.28.229','normal','',0,0,0,9,0,'{\"login\":[1659373197,1659377791,1659382981,1659404398,1659418334,1659729039,1660016384,1660128569,1660180797]}'),(18351,'194.233.71.9','normal','',0,0,0,12,0,'{\"login\":[1659373651,1659377121,1659412118,1659426855,1661765338,1661766610,1661787567,1661789133,1661800537,1661812661,1661838291,1661840731]}'),(18352,'120.76.129.140','normal','',0,0,0,6,0,'{\"login\":[1659374167,1661772012,1661801335,1661804313,1661822316,1661824401]}'),(18353,'217.170.198.14','normal','',0,0,0,3,0,'{\"login\":[1659374408,1659977304,1660028377]}'),(18354,'85.128.143.179','normal','',0,0,0,1,0,'{\"login\":[1659374942]}'),(18355,'104.248.181.192','normal','',0,0,0,2,0,'{\"login\":[1659375144,1659409514]}'),(18356,'207.180.235.153','normal','',0,0,0,1,0,'{\"login\":[1659375456]}'),(18357,'5.45.126.26','normal','',0,0,0,1,0,'{\"login\":[1659376145]}'),(18358,'46.31.145.178','normal','',0,0,0,2,0,'{\"login\":[1659376665,1659382020]}'),(18359,'209.126.7.189','normal','',0,0,0,3,0,'{\"login\":[1659377509,1659386161,1659416915]}'),(18360,'47.241.36.131','normal','',0,0,0,2,0,'{\"login\":[1659377982,1659413804]}'),(18361,'217.170.198.17','normal','',0,0,0,14,0,'{\"login\":[1659378071,1659393258,1659403194,1659404631,1659405835,1659407368,1659409403,1660247770,1661775674,1661778845,1661785520,1661800043,1661807067,1661825374]}'),(18362,'178.128.201.59','normal','',0,0,0,2,0,'{\"login\":[1659379643,1659420570]}'),(18363,'197.94.16.181','normal','',0,0,0,0,0,'[]'),(18364,'185.119.98.5','normal','',0,0,0,1,0,'{\"login\":[1659379934]}'),(18365,'103.112.138.19','normal','',0,0,0,4,0,'{\"login\":[1659380331,1660485857,1660681216,1661827857]}'),(18366,'85.128.143.94','normal','',0,0,0,2,0,'{\"login\":[1659380831,1659381084]}'),(18367,'82.165.240.113','normal','',0,0,0,2,0,'{\"login\":[1659381109,1659388220]}'),(18368,'128.199.146.81','normal','',0,0,0,2,0,'{\"login\":[1659382189,1659391647]}'),(18369,'68.168.221.155','normal','',0,0,0,5,0,'{\"login\":[1659382401,1661759915,1661763998,1661770711,1661786335]}'),(18370,'79.139.60.88','normal','',0,0,0,4,0,'{\"login\":[1659382492,1659389060,1659393119,1659400947]}'),(18371,'173.208.143.189','normal','',0,0,0,1,0,'{\"login\":[1659382848]}'),(18372,'5.45.207.123','normal','',0,0,0,0,0,'[]'),(18373,'34.202.164.200','normal','',0,0,0,1,0,'{\"login\":[1659383827]}'),(18374,'207.180.215.170','normal','',0,0,0,3,0,'{\"login\":[1659384097,1661773243,1661797851]}'),(18375,'5.252.97.34','normal','',0,0,0,1,0,'{\"login\":[1659384171]}'),(18376,'62.151.176.85','normal','',0,0,0,2,0,'{\"login\":[1659384614,1659415221]}'),(18377,'35.165.182.22','normal','',0,0,0,0,0,'[]'),(18378,'102.220.209.178','normal','',0,0,0,0,2,'{\"nf\":[1659384885,1659384885]}'),(18379,'35.87.23.179','normal','',0,0,0,0,0,'[]'),(18380,'18.202.0.130','normal','',0,0,0,2,0,'{\"login\":[1659385586,1659392402]}'),(18381,'165.232.190.145','normal','',0,0,0,15,0,'{\"login\":[1659385860,1659392698,1659724819,1660036157,1660303337,1660526455,1660628907,1660748205,1660802989,1660941354,1661765566,1661781681,1661785869,1661797522,1661817236]}'),(18382,'5.9.250.2','normal','',0,0,0,1,0,'{\"login\":[1659386231]}'),(18383,'204.44.192.94','normal','',0,0,0,3,0,'{\"login\":[1659386432,1659387370,1659394122]}'),(18384,'77.68.20.250','normal','',0,0,0,6,0,'{\"login\":[1659409915,1661764971,1661768342,1661774281,1661786863,1661823153]}'),(18385,'77.68.20.250','normal','',0,0,0,1,0,'{\"login\":[1659388153]}'),(18386,'139.59.70.221','normal','',0,0,0,11,0,'{\"login\":[1659388760,1659391601,1659404264,1659951367,1660187381,1660298537,1660325566,1660652191,1660950169,1661805363,1661844018]}'),(18387,'5.196.120.19','normal','',0,0,0,2,0,'{\"login\":[1659389132,1659393018]}'),(18388,'104.207.132.35','normal','',0,0,0,10,0,'{\"login\":[1659389753,1659400267,1659720470,1659758598,1659849066,1660025296,1660070038,1660315574,1660337855,1660438111]}'),(18389,'52.6.141.80','normal','',0,0,0,1,0,'{\"login\":[1659391384]}'),(18390,'3.8.204.6','normal','',0,0,0,2,0,'{\"login\":[1659392882,1659401596]}'),(18391,'93.177.102.125','normal','',0,0,0,2,0,'{\"login\":[1659393395,1659412798]}'),(18392,'144.91.94.253','normal','',0,0,0,4,0,'{\"login\":[1659393562,1659417123,1659979640,1659988223]}'),(18393,'185.206.62.34','normal','',0,0,0,2,0,'{\"login\":[1659393800,1659960342]}'),(18394,'178.172.217.12','normal','',0,0,0,3,0,'{\"login\":[1659394000,1659395364,1660055122]}'),(18395,'209.126.6.141','normal','',0,0,0,4,0,'{\"login\":[1659395654,1659407780,1659430619,1661811965]}'),(18396,'142.93.225.233','normal','',0,0,0,11,0,'{\"login\":[1659395750,1659937919,1659973942,1660449153,1660781633,1660834181,1661753828,1661762411,1661762643,1661765787,1661778777]}'),(18397,'164.92.143.73','normal','',0,0,0,4,0,'{\"login\":[1659396238,1661777807,1661806187,1661811429]}'),(18398,'62.217.82.194','normal','',0,0,0,1,0,'{\"login\":[1659397159]}'),(18399,'74.208.27.234','normal','',0,0,0,3,0,'{\"login\":[1659397750,1659402010,1659416055]}'),(18400,'99.79.49.33','normal','',0,0,0,2,0,'{\"login\":[1659399258,1659406653]}'),(18401,'147.139.178.177','normal','',0,0,0,4,0,'{\"login\":[1659401225,1659997123,1660007856,1661785746]}'),(18402,'120.77.234.12','normal','',0,0,0,1,0,'{\"login\":[1659402960]}'),(18403,'173.249.0.74','normal','',0,0,0,0,9,'{\"nf\":[1659405942,1659405944,1659405945,1659405946,1659405946,1659405947,1659405948,1659405949,1659405950]}'),(18404,'176.9.113.101','normal','',0,0,0,10,0,'{\"login\":[1659406021,1659426680,1660029927,1660202525,1660659357,1660958989,1660967810,1661774031,1661841760,1661842787]}'),(18405,'18.136.221.229','normal','',0,0,0,2,0,'{\"login\":[1659406119,1659414756]}'),(18406,'82.165.68.54','normal','',0,0,0,1,0,'{\"login\":[1659406250]}'),(18407,'13.212.213.43','normal','',0,0,0,1,0,'{\"login\":[1659407009]}'),(18408,'217.170.198.11','normal','',0,0,0,2,0,'{\"login\":[1659409238,1661752590]}'),(18409,'162.240.79.36','normal','',0,0,0,3,0,'{\"login\":[1659409828,1659915644,1660071943]}'),(18410,'89.248.107.108','normal','',0,0,0,1,0,'{\"login\":[1659410314]}'),(18411,'193.41.226.193','normal','',0,0,0,1,0,'{\"login\":[1659410731]}'),(18412,'15.164.99.31','normal','',0,0,0,1,0,'{\"login\":[1659411108]}'),(18413,'146.59.195.109','normal','',0,0,0,6,0,'{\"login\":[1659411303,1659419123,1659980830,1661792642,1661795948,1661829763]}'),(18414,'128.199.173.239','normal','',0,0,0,1,0,'{\"login\":[1659412397]}'),(18415,'143.110.180.247','normal','',0,0,0,1,0,'{\"login\":[1659413236]}'),(18416,'178.62.248.106','normal','',0,0,0,1,0,'{\"login\":[1659413556]}'),(18417,'193.70.57.215','normal','',0,0,0,1,0,'{\"login\":[1659414491]}'),(18418,'45.32.100.211','normal','',0,0,0,3,0,'{\"login\":[1659415397,1660707462,1660777359]}'),(18419,'217.160.91.205','normal','',0,0,0,1,0,'{\"login\":[1659416467]}'),(18420,'198.235.24.156','normal','',0,0,0,0,0,'[]'),(18421,'13.235.203.220','normal','',0,0,0,1,0,'{\"login\":[1659418527]}'),(18422,'117.217.56.177','normal','',0,0,0,0,0,'[]'),(18423,'151.80.27.168','normal','',0,0,0,5,0,'{\"login\":[1659420756,1659422913,1659983272,1660088993,1660204698]}'),(18424,'34.79.22.100','normal','',0,0,0,1,0,'{\"login\":[1659421340]}'),(18425,'103.15.50.213','normal','',0,0,0,1,0,'{\"login\":[1659421351]}'),(18426,'102.23.196.106','normal','',0,0,0,0,0,'[]'),(18427,'68.183.201.49','normal','',0,0,0,2,0,'{\"login\":[1661760846,1661814030]}'),(18428,'68.183.201.49','normal','',0,0,0,0,0,'[]'),(18429,'68.183.201.49','normal','',0,0,0,1,0,'{\"login\":[1659422306]}'),(18430,'192.185.83.219','normal','',0,0,0,0,0,'[]'),(18431,'68.65.121.137','normal','',0,0,0,0,0,'[]'),(18432,'17.121.112.177','normal','',0,0,0,0,0,'[]'),(18433,'156.155.177.19','normal','',0,0,0,0,0,'[]'),(18434,'65.21.200.121','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659451175,0,1659450875,0,20,'{\"nf\":[1659450742,1659450748,1659450753,1659450759,1659450764,1659450771,1659450776,1659450782,1659450793,1659450797,1659450803,1659450807,1659450814,1659450818,1659450827,1659450840,1659450855,1659450864,1659450868,1659450875]}'),(18435,'81.31.147.146','normal','',0,0,0,0,0,'[]'),(18436,'198.71.227.28','normal','',0,0,0,0,0,'[]'),(18437,'142.93.191.101','normal','',0,0,0,0,0,'[]'),(18438,'117.173.149.211','normal','',0,0,0,0,1,'{\"nf\":[1659465724]}'),(18439,'198.57.247.179','normal','',0,0,0,0,0,'[]'),(18440,'31.13.103.12','normal','',0,0,0,0,0,'[]'),(18441,'31.13.103.19','normal','',0,0,0,0,0,'[]'),(18442,'31.13.103.5','normal','',0,0,0,0,0,'[]'),(18443,'118.193.43.151','normal','',0,0,0,0,0,'[]'),(18444,'156.155.4.98','normal','',0,0,0,0,0,'[]'),(18445,'192.30.89.51','normal','',0,0,0,0,0,'[]'),(18446,'185.191.171.12','normal','',0,0,0,0,0,'[]'),(18447,'164.46.53.212','normal','',0,0,0,0,0,'[]'),(18448,'114.119.152.134','normal','',0,0,0,0,0,'[]'),(18449,'50.87.152.102','normal','',0,0,0,0,0,'[]'),(18450,'173.249.52.35','normal','',0,0,0,2,0,'{\"login\":[1661682124,1662133500]}'),(18451,'194.233.82.114','normal','',0,0,0,1,0,'{\"login\":[1660659917]}'),(18452,'92.204.40.196','normal','',0,0,0,0,0,'[]'),(18453,'23.88.117.102','normal','',0,0,0,0,0,'[]'),(18454,'23.254.231.169','normal','',0,0,0,1,0,'{\"login\":[1662234755]}'),(18455,'132.148.165.91','normal','',0,0,0,1,0,'{\"login\":[1662300158]}'),(18456,'209.205.218.106','normal','',0,0,0,0,0,'[]'),(18457,'38.105.209.111','normal','',0,0,0,0,0,'[]'),(18458,'192.187.109.82','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659515335,0,1659515035,0,38,'{\"nf\":[1659944787,1659944789,1659944792,1659944793,1659944795,1659944797,1659944799,1659944802,1659944804,1659944806,1659944808,1659944810,1659944812,1659944813,1659944815,1659944817,1659944819,1659944821],\"login\":[]}'),(18459,'120.41.45.194','normal','',0,0,0,0,0,'[]'),(18460,'23.235.216.192','normal','',0,0,0,0,0,'[]'),(18461,'196.22.251.126','normal','',0,0,0,0,0,'[]'),(18462,'205.185.116.25','normal','',0,0,0,0,0,'[]'),(18463,'144.208.71.49','normal','',0,0,0,0,0,'[]'),(18464,'194.59.165.88','normal','',0,0,0,1,0,'{\"login\":[1662296241]}'),(18465,'65.0.99.145','normal','',0,0,0,0,0,'[]'),(18466,'34.218.44.38','normal','',0,0,0,0,0,'[]'),(18467,'153.92.220.249','normal','',0,0,0,0,0,'[]'),(18468,'162.241.253.132','normal','',0,0,0,0,0,'[]'),(18469,'94.231.103.165','normal','',0,0,0,0,0,'[]'),(18470,'185.244.175.213','normal','',0,0,0,0,2,'{\"nf\":[1659584655,1659746925]}'),(18471,'212.1.212.13','normal','',0,0,0,0,0,'[]'),(18472,'20.38.2.17','normal','',0,0,0,0,0,'[]'),(18473,'68.178.224.133','normal','',0,0,0,0,0,'[]'),(18474,'54.36.149.91','normal','',0,0,0,0,0,'[]'),(18475,'162.215.255.220','normal','',0,0,0,0,0,'[]'),(18476,'185.191.171.3','normal','',0,0,0,0,0,'[]'),(18477,'64.111.109.64','normal','',0,0,0,0,1,'{\"nf\":[1659611463]}'),(18478,'197.94.76.200','normal','',0,0,0,0,0,'[]'),(18479,'162.241.253.114','normal','',0,0,0,0,0,'[]'),(18480,'162.241.252.191','normal','',0,0,0,0,0,'[]'),(18481,'35.206.253.134','normal','',0,0,0,0,0,'[]'),(18482,'35.213.167.52','normal','',0,0,0,0,2,'{\"nf\":[1659619752,1659619752]}'),(18483,'41.177.39.26','normal','',0,0,0,0,0,'[]'),(18484,'50.62.176.227','normal','',0,0,0,0,0,'[]'),(18485,'54.36.149.50','normal','',0,0,0,0,0,'[]'),(18486,'85.236.38.40','normal','',0,0,0,0,0,'[]'),(18487,'66.249.93.83','normal','',0,0,0,0,8,'{\"nf\":[1659634695,1660288891,1661711112,1661791415,1661845253,1662552349,1662667678,1662730789]}'),(18488,'105.185.156.7','normal','',0,0,0,0,0,'[]'),(18489,'91.151.93.210','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659642207,0,1659641907,0,20,'{\"nf\":[1659641882,1659641885,1659641886,1659641887,1659641888,1659641890,1659641891,1659641892,1659641893,1659641894,1659641896,1659641897,1659641898,1659641899,1659641901,1659641902,1659641903,1659641904,1659641905,1659641906]}'),(18490,'184.168.119.143','normal','',0,0,0,0,0,'[]'),(18491,'52.89.142.147','normal','',0,0,0,0,0,'[]'),(18492,'185.156.172.172','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659648066,0,1659647766,0,40,'{\"nf\":[1659647742,1659647746,1659647747,1659647747,1659647748,1659647749,1659647750,1659647753,1659647753,1659647755,1659647755,1659647757,1659647758,1659647759,1659647760,1659647761,1659647762,1659647763,1659647764,1659647765],\"login\":[]}'),(18493,'68.65.120.246','normal','',0,0,0,0,0,'[]'),(18494,'47.245.56.195','normal','',0,0,0,0,0,'[]'),(18495,'8.142.80.20','normal','',0,0,0,0,0,'[]'),(18496,'54.245.43.8','normal','',0,0,0,0,1,'{\"nf\":[1659667081]}'),(18497,'162.241.252.230','normal','',0,0,0,1,0,'{\"login\":[1662141463]}'),(18498,'107.167.84.10','normal','',0,0,0,0,0,'[]'),(18499,'150.238.47.218','normal','',0,0,0,0,0,'[]'),(18500,'174.138.166.202','normal','',0,0,0,0,0,'[]'),(18501,'152.160.235.235','normal','',0,0,0,0,0,'[]'),(18502,'13.251.52.232','normal','',0,0,0,0,0,'[]'),(18503,'185.201.148.115','normal','',0,0,0,1,0,'{\"login\":[1660473916]}'),(18504,'107.180.120.61','normal','',0,0,0,0,0,'[]'),(18505,'185.69.152.173','normal','',0,0,0,0,0,'[]'),(18506,'114.119.130.13','normal','',0,0,0,0,0,'[]'),(18507,'209.205.211.242','normal','',0,0,0,1,0,'{\"login\":[1661682404]}'),(18508,'178.62.4.53','normal','',0,0,0,0,0,'[]'),(18509,'45.113.122.166','normal','',0,0,0,0,0,'[]'),(18510,'217.160.92.125','normal','',0,0,0,0,0,'[]'),(18511,'162.241.225.123','normal','',0,0,0,0,0,'[]'),(18512,'185.105.187.186','normal','',0,0,0,0,0,'[]'),(18513,'198.251.78.146','normal','',0,0,0,0,0,'[]'),(18514,'167.86.119.137','normal','',0,0,0,0,0,'[]'),(18515,'162.142.125.220','normal','',0,0,0,0,0,'[]'),(18516,'103.171.181.149','normal','',0,0,0,0,0,'[]'),(18517,'17.121.112.239','normal','',0,0,0,0,0,'[]'),(18518,'58.19.47.33','normal','',0,0,0,0,0,'[]'),(18519,'35.163.40.176','normal','',0,0,0,0,0,'[]'),(18520,'162.241.203.142','normal','',0,0,0,0,0,'[]'),(18521,'103.42.110.5','normal','',0,0,0,0,0,'[]'),(18522,'205.210.31.131','normal','',0,0,0,0,0,'[]'),(18523,'198.71.235.45','normal','',0,0,0,0,0,'[]'),(18524,'5.189.188.22','normal','',0,0,0,0,1,'{\"nf\":[1659741501]}'),(18525,'66.249.64.135','normal','',0,0,0,0,0,'[]'),(18526,'104.251.215.159','normal','',0,0,0,0,0,'[]'),(18527,'210.17.253.74','normal','',0,0,0,2,0,'{\"login\":[1659746410,1659810567]}'),(18528,'85.128.143.116','normal','',0,0,0,0,0,'[]'),(18529,'114.119.134.121','normal','',0,0,0,0,0,'[]'),(18530,'207.46.13.43','normal','',0,0,0,0,0,'[]'),(18531,'18.232.92.14','normal','',0,0,0,0,1,'{\"nf\":[1659759705]}'),(18532,'54.36.148.197','normal','',0,0,0,0,0,'[]'),(18533,'52.87.255.167','normal','',0,0,0,0,2,'{\"nf\":[1659771642,1659771644]}'),(18534,'162.251.80.21','normal','',0,0,0,0,0,'[]'),(18535,'212.33.207.173','normal','',0,0,0,0,0,'[]'),(18536,'80.67.52.2','normal','',0,0,0,0,3,'{\"nf\":[1659781705,1659781705,1662090785]}'),(18537,'92.204.211.16','normal','',0,0,0,0,0,'[]'),(18538,'205.210.31.159','normal','',0,0,0,0,0,'[]'),(18539,'192.99.35.94','normal','',0,0,0,0,0,'[]'),(18540,'45.32.241.82','normal','',0,0,0,0,3,'{\"nf\":[1659795083,1659795086,1659795088]}'),(18541,'185.4.133.25','normal','',0,0,0,0,0,'[]'),(18542,'205.210.31.136','normal','',0,0,0,0,0,'[]'),(18543,'51.83.96.160','normal','',0,0,0,0,0,'[]'),(18544,'20.38.169.200','normal','',0,0,0,0,1,'{\"nf\":[1659805462]}'),(18545,'134.122.112.76','normal','',0,0,0,7,0,'{\"login\":[1659805734,1660684954,1660785814,1660870179,1661759684,1661820825,1661825667]}'),(18546,'17.121.115.62','normal','',0,0,0,0,0,'[]'),(18547,'208.113.170.107','normal','',0,0,0,0,0,'[]'),(18548,'92.205.11.150','normal','',0,0,0,0,0,'[]'),(18549,'3.216.27.170','normal','',0,0,0,0,0,'[]'),(18550,'3.216.27.170','normal','',0,0,0,0,0,'[]'),(18551,'35.86.249.169','normal','',0,0,0,0,0,'[]'),(18552,'162.241.218.16','normal','',0,0,0,0,0,'[]'),(18553,'198.235.24.18','normal','',0,0,0,0,0,'[]'),(18554,'185.191.171.20','normal','',0,0,0,0,0,'[]'),(18555,'50.18.230.169','normal','',0,0,0,0,0,'[]'),(18556,'185.22.109.61','normal','',0,0,0,0,0,'[]'),(18557,'205.210.31.30','normal','',0,0,0,0,0,'[]'),(18558,'192.169.151.52','normal','',0,0,0,0,0,'[]'),(18559,'121.5.231.252','normal','',0,0,0,0,0,'[]'),(18560,'92.205.2.199','normal','',0,0,0,0,0,'[]'),(18561,'93.158.91.206','normal','',0,0,0,0,0,'[]'),(18562,'93.158.91.204','normal','',0,0,0,0,0,'[]'),(18563,'198.235.24.23','normal','',0,0,0,0,0,'[]'),(18564,'87.250.224.99','normal','',0,0,0,0,0,'[]'),(18565,'124.221.247.28','normal','',0,0,0,0,0,'[]'),(18566,'40.113.32.222','blocked','You have been locked out due to too many invalid login attempts.',1659857746,1659857446,0,5,0,'{\"login\":[1659857442,1659857443,1659857444,1659857445,1659857445]}'),(18567,'150.95.83.147','normal','',0,0,0,0,0,'[]'),(18568,'135.181.143.101','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659872686,0,1659872386,0,20,'{\"nf\":[1659872259,1659872269,1659872273,1659872278,1659872282,1659872288,1659872292,1659872297,1659872308,1659872313,1659872319,1659872324,1659872331,1659872336,1659872343,1659872355,1659872366,1659872375,1659872379,1659872386]}'),(18569,'202.157.184.124','normal','',0,0,0,0,18,'{\"nf\":[1659900248,1659900251,1659900253,1659900254,1659900256,1659900258,1659900260,1659900262,1659900264,1659900265,1659900267,1659900269,1659900270,1659900272,1659900274,1659900278,1659900280,1659900282]}'),(18570,'41.157.181.149','normal','',0,0,0,0,1,'{\"nf\":[1659906815]}'),(18571,'27.102.114.202','normal','',0,0,0,0,0,'[]'),(18572,'34.146.111.82','normal','',0,0,0,0,0,'[]'),(18573,'184.168.98.207','normal','',0,0,0,0,0,'[]'),(18574,'8.218.143.243','normal','',0,0,0,0,0,'[]'),(18575,'83.143.116.3','normal','',0,0,0,0,0,'[]'),(18576,'103.240.88.28','normal','',0,0,0,0,0,'[]'),(18577,'76.236.30.200','normal','',0,0,0,0,0,'[]'),(18578,'165.232.179.25','normal','',0,0,0,0,0,'[]'),(18579,'34.140.61.10','normal','',0,0,0,0,0,'[]'),(18580,'103.56.160.120','normal','',0,0,0,0,0,'[]'),(18581,'41.193.202.154','normal','',0,0,0,0,0,'[]'),(18582,'162.241.217.168','normal','',0,0,0,0,0,'[]'),(18583,'197.221.1.21','normal','',0,0,0,0,0,'[]'),(18584,'125.227.29.249','normal','',0,0,0,1,0,'{\"login\":[1662644362]}'),(18585,'198.57.247.176','normal','',0,0,0,0,0,'[]'),(18586,'212.164.86.4','normal','',0,0,0,2,0,'{\"login\":[1660302083,1661070378]}'),(18587,'162.241.226.109','normal','',0,0,0,0,0,'[]'),(18588,'102.65.60.254','normal','',0,0,0,0,0,'[]'),(18589,'8.210.174.93','normal','',0,0,0,0,0,'[]'),(18590,'77.111.247.73','normal','',0,0,0,0,1,'{\"nf\":[1659946849]}'),(18591,'103.171.181.192','normal','',0,0,0,1,0,'{\"login\":[1662219976]}'),(18592,'107.180.247.212','normal','',0,0,0,1,0,'{\"login\":[1661159899]}'),(18593,'186.234.80.237','normal','',0,0,0,0,0,'[]'),(18594,'43.250.142.134','normal','',0,0,0,0,0,'[]'),(18595,'104.248.144.120','normal','',0,0,0,3,0,'{\"login\":[1659955037,1661771722,1661772786]}'),(18596,'128.199.205.115','normal','',0,0,0,1,0,'{\"login\":[1660299539]}'),(18597,'87.107.144.155','normal','',0,0,0,0,0,'[]'),(18598,'46.231.204.7','normal','',0,0,0,1,0,'{\"login\":[1659957542]}'),(18599,'47.57.186.73','normal','',0,0,0,0,0,'[]'),(18600,'207.246.87.81','normal','',0,0,0,2,0,'{\"login\":[1659959422,1660146921]}'),(18601,'74.208.182.236','normal','',0,0,0,0,0,'[]'),(18602,'208.109.25.159','normal','',0,0,0,0,0,'[]'),(18603,'91.191.209.74','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1659967860,0,1659967560,0,20,'{\"nf\":[1659967529,1659967533,1659967534,1659967535,1659967537,1659967538,1659967539,1659967542,1659967543,1659967544,1659967546,1659967547,1659967548,1659967550,1659967551,1659967553,1659967554,1659967555,1659967556,1659967559]}'),(18604,'68.178.227.157','normal','',0,0,0,0,0,'[]'),(18605,'45.55.36.245','normal','',0,0,0,1,0,'{\"login\":[1659969536]}'),(18606,'188.68.47.51','normal','',0,0,0,3,0,'{\"login\":[1659970642,1660163466,1660406143]}'),(18607,'171.244.134.21','normal','',0,0,0,4,0,'{\"login\":[1659972814,1660085174,1661760503,1661819679]}'),(18608,'185.224.138.159','normal','',0,0,0,0,0,'[]'),(18609,'139.162.215.220','normal','',0,0,0,1,0,'{\"login\":[1659986986]}'),(18610,'111.230.202.147','normal','',0,0,0,7,0,'{\"login\":[1659988233,1660438695,1662310889,1662759307,1662803026,1662919100,1663086946]}'),(18611,'65.108.200.32','normal','',0,0,0,8,0,'{\"login\":[1659989464,1660009247,1660034568,1660176443,1660330539,1660385606,1660497561,1660662995]}'),(18612,'35.91.34.113','normal','',0,0,0,0,0,'[]'),(18613,'54.149.104.141','normal','',0,0,0,0,0,'[]'),(18614,'34.212.33.86','normal','',0,0,0,0,0,'[]'),(18615,'184.72.200.143','normal','',0,0,0,0,2,'{\"nf\":[1659992766,1659992774]}'),(18616,'116.203.69.223','normal','',0,0,0,1,0,'{\"login\":[1659993256]}'),(18617,'159.65.44.109','normal','',0,0,0,0,3,'{\"nf\":[1659996280,1659996330,1662770058]}'),(18618,'146.71.79.26','normal','',0,0,0,0,4,'{\"nf\":[1659996296,1659996318,1659996396,1659996405]}'),(18619,'46.4.11.106','normal','',0,0,0,9,0,'{\"login\":[1660001062,1660102719,1660429937,1660457451,1660488821,1660847767,1661802066,1661825053,1661830253]}'),(18620,'114.119.139.191','normal','',0,0,0,0,0,'[]'),(18621,'184.168.121.5','normal','',0,0,0,2,0,'{\"login\":[1661081614,1661163215]}'),(18622,'13.78.225.32','normal','',0,0,0,7,0,'{\"login\":[1660002704,1660976924,1660989051,1661516531,1661524441,1662411449,1662424345]}'),(18623,'35.236.69.208','normal','',0,0,0,19,0,'{\"login\":[1660006468,1660017856,1660049747,1660193906,1660269710,1660435371,1660500485,1660609196,1660752393,1660790027,1661754022,1661773127,1661774931,1661775493,1661783241,1661802209,1661809072,1661818228,1661831857]}'),(18624,'45.148.121.211','normal','',0,0,0,0,0,'[]'),(18625,'85.25.93.236','normal','',0,0,0,0,0,'[]'),(18626,'162.241.224.101','normal','',0,0,0,0,0,'[]'),(18627,'35.154.174.98','normal','',0,0,0,0,0,'[]'),(18628,'62.171.171.174','normal','',0,0,0,0,0,'[]'),(18629,'102.222.180.244','normal','',0,0,0,0,0,'[]'),(18630,'136.243.131.69','normal','',0,0,0,13,0,'{\"login\":[1660042776,1660062496,1660355226,1660427310,1660451912,1660509175,1661794466,1661796261,1661798351,1661817076,1661826536,1661828073,1661842600]}'),(18631,'175.178.70.82','normal','',0,0,0,3,0,'{\"login\":[1660044525,1660408735,1661841613]}'),(18632,'69.163.206.93','normal','',0,0,0,1,0,'{\"login\":[1660045500]}'),(18633,'175.41.136.116','normal','',0,0,0,0,0,'[]'),(18634,'20.124.64.84','normal','',0,0,0,0,0,'[]'),(18635,'17.121.113.136','normal','',0,0,0,0,0,'[]'),(18636,'151.236.59.220','normal','',0,0,0,9,0,'{\"login\":[1660053336,1660200349,1661763522,1661767129,1661771478,1661772612,1661779965,1661791714,1661818938]}'),(18637,'161.97.87.231','normal','',0,0,0,0,10,'{\"nf\":[1660059907,1660059908,1660059909,1660059918,1660059925,1660059927,1660059928,1660059929,1660059930,1660059931]}'),(18638,'134.19.179.131','normal','',0,0,0,0,0,'[]'),(18639,'185.141.171.155','normal','',0,0,0,5,0,'{\"login\":[1660060658,1660838738,1661793931,1661830765,1661845453]}'),(18640,'203.229.18.229','normal','',0,0,0,0,0,'[]'),(18641,'195.250.67.106','normal','',0,0,0,2,0,'{\"login\":[1660072573,1661291879]}'),(18642,'66.249.64.134','normal','',0,0,0,0,0,'[]'),(18643,'66.249.64.157','normal','',0,0,0,0,0,'[]'),(18644,'54.185.213.43','normal','',0,0,0,0,0,'[]'),(18645,'212.227.213.151','normal','',0,0,0,0,2,'{\"nf\":[1660081614,1660153486]}'),(18646,'139.196.152.3','normal','',0,0,0,0,0,'[]'),(18647,'103.154.177.165','normal','',0,0,0,0,0,'[]'),(18648,'45.79.125.125','normal','',0,0,0,0,1,'{\"nf\":[1660087793]}'),(18649,'194.163.163.116','normal','',0,0,0,0,1,'{\"nf\":[1660096456]}'),(18650,'103.173.226.33','normal','',0,0,0,0,0,'[]'),(18651,'20.84.83.10','normal','',0,0,0,0,4,'{\"nf\":[1660102602,1660102614,1660102617,1660102619]}'),(18652,'114.119.150.16','normal','',0,0,0,0,0,'[]'),(18653,'206.189.182.64','normal','',0,0,0,3,0,'{\"login\":[1660104662,1660622432,1660874666]}'),(18654,'67.20.76.214','normal','',0,0,0,0,0,'[]'),(18655,'192.185.82.97','normal','',0,0,0,0,0,'[]'),(18656,'51.159.21.239','normal','',0,0,0,0,1,'{\"nf\":[1660106993]}'),(18657,'185.124.87.51','normal','',0,0,0,1,0,'{\"login\":[1660108603]}'),(18658,'202.131.237.197','normal','',0,0,0,4,0,'{\"login\":[1660112643,1660919135,1661782271,1661814568]}'),(18659,'18.117.191.254','normal','',0,0,0,0,0,'[]'),(18660,'116.203.244.49','normal','',0,0,0,0,0,'[]'),(18661,'102.132.196.28','normal','',0,0,0,0,0,'[]'),(18662,'201.244.123.76','normal','',0,0,0,3,0,'{\"login\":[1660116650,1660421884,1660829651]}'),(18663,'161.35.103.104','normal','',0,0,0,0,0,'[]'),(18664,'87.106.15.138','normal','',0,0,0,0,1,'{\"nf\":[1660117465]}'),(18665,'198.199.81.163','normal','',0,0,0,0,0,'[]'),(18666,'162.55.89.76','normal','',0,0,0,12,0,'{\"login\":[1660124607,1660279456,1660335435,1660514806,1660655829,1661765693,1661792749,1661793329,1661808045,1661822113,1661823900,1661825820]}'),(18667,'41.147.200.25','normal','',0,0,0,0,0,'[]'),(18668,'108.163.148.29','normal','',0,0,0,0,0,'[]'),(18669,'108.163.148.29','normal','',0,0,0,1,0,'{\"login\":[1660126799]}'),(18670,'108.163.148.29','normal','',0,0,0,0,0,'[]'),(18671,'50.62.30.223','normal','',0,0,0,0,1,'{\"nf\":[1660127950]}'),(18672,'66.29.130.139','normal','',0,0,0,1,0,'{\"login\":[1661675649]}'),(18673,'66.249.70.165','normal','',0,0,0,0,0,'[]'),(18674,'203.136.180.43','normal','',0,0,0,0,0,'[]'),(18675,'144.126.136.150','normal','',0,0,0,0,0,'[]'),(18676,'165.232.190.217','normal','',0,0,0,0,0,'[]'),(18677,'120.78.173.254','normal','',0,0,0,3,0,'{\"login\":[1660132636,1660910306,1661844730]}'),(18678,'197.97.192.210','normal','',0,0,0,0,1,'{\"nf\":[1660136919]}'),(18679,'167.248.133.120','normal','',0,0,0,0,0,'[]'),(18680,'205.185.121.69','normal','',0,0,0,0,0,'[]'),(18681,'103.120.223.116','normal','',0,0,0,0,0,'[]'),(18682,'197.94.76.119','normal','',0,0,0,0,0,'[]'),(18683,'185.204.197.163','normal','',0,0,0,2,0,'{\"login\":[1660155171,1660257466]}'),(18684,'102.66.168.27','normal','',0,0,0,0,1,'{\"nf\":[1660158743]}'),(18685,'37.97.128.245','normal','',0,0,0,2,0,'{\"login\":[1660159264,1661773939]}'),(18686,'157.245.125.190','normal','',0,0,0,0,0,'[]'),(18687,'35.90.155.58','normal','',0,0,0,0,0,'[]'),(18688,'188.221.5.40','normal','',0,0,0,0,1,'{\"nf\":[1660168558]}'),(18689,'217.160.70.250','normal','',0,0,0,0,7,'{\"nf\":[1660171837,1660226873,1660239752,1660347252,1660347255,1660347257,1660347259]}'),(18690,'139.59.77.216','normal','',0,0,0,0,2,'{\"nf\":[1660172391,1662769651]}'),(18691,'115.165.166.162','normal','',0,0,0,0,3,'{\"nf\":[1661591985,1661591987,1661591989]}'),(18692,'54.36.148.40','normal','',0,0,0,0,0,'[]'),(18693,'193.36.225.37','normal','',0,0,0,0,0,'[]'),(18694,'95.216.64.209','normal','',0,0,0,8,0,'{\"login\":[1660178613,1660477329,1660552721,1660625644,1661752680,1661758355,1661776274,1661776829]}'),(18695,'114.119.153.171','normal','',0,0,0,0,0,'[]'),(18696,'165.22.202.216','normal','',0,0,0,7,0,'{\"login\":[1660182988,1660699801,1660735658,1661782430,1661808554,1661821092,1661836883]}'),(18697,'54.184.122.79','normal','',0,0,0,0,0,'[]'),(18698,'162.241.230.118','normal','',0,0,0,0,0,'[]'),(18699,'105.186.90.248','normal','',0,0,0,0,0,'[]'),(18700,'105.186.90.248','normal','',0,0,0,0,0,'[]'),(18701,'163.172.110.175','normal','',0,0,0,0,0,'[]'),(18702,'167.71.79.130','normal','',0,0,0,0,1,'{\"nf\":[1660200998]}'),(18703,'105.248.192.193','normal','',0,0,0,0,0,'[]'),(18704,'87.236.194.131','normal','',0,0,0,2,0,'{\"login\":[1660213482,1660352700]}'),(18705,'66.249.70.162','normal','',0,0,0,0,0,'[]'),(18706,'169.1.134.104','normal','',0,0,0,0,1,'{\"nf\":[1660215075]}'),(18707,'136.243.137.121','normal','',0,0,0,3,0,'{\"login\":[1660222500,1660446340,1660666585]}'),(18708,'144.91.68.32','normal','',0,0,0,0,0,'[]'),(18709,'66.249.70.167','normal','',0,0,0,0,0,'[]'),(18710,'105.185.172.249','normal','',0,0,0,0,0,'[]'),(18711,'46.161.11.182','normal','',0,0,0,0,0,'[]'),(18712,'46.20.146.41','normal','',0,0,0,6,0,'{\"login\":[1660238471,1660798715,1661783476,1661801976,1661840020,1661845051]}'),(18713,'23.95.97.22','normal','',0,0,0,0,2,'{\"nf\":[1660242658,1660242659]}'),(18714,'207.154.208.104','normal','',0,0,0,4,0,'{\"login\":[1660245370,1660711370,1661778221,1661831318]}'),(18715,'34.215.175.251','normal','',0,0,0,0,0,'[]'),(18716,'20.249.57.94','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1660251413,0,1660251113,0,20,'{\"nf\":[1660251055,1660251063,1660251065,1660251068,1660251070,1660251073,1660251075,1660251079,1660251081,1660251084,1660251088,1660251091,1660251093,1660251096,1660251098,1660251101,1660251104,1660251108,1660251110,1660251113]}'),(18717,'134.0.115.12','normal','',0,0,0,2,0,'{\"login\":[1660252521,1661767364]}'),(18718,'177.101.127.172','normal','',0,0,0,3,0,'{\"login\":[1660262360,1660945687,1660954516]}'),(18719,'207.180.212.225','normal','',0,0,0,6,0,'{\"login\":[1660264807,1660582820,1661772395,1661781504,1661830397,1661837380]}'),(18720,'77.88.5.160','normal','',0,0,0,0,0,'[]'),(18721,'211.176.125.70','normal','',0,0,0,0,0,'[]'),(18722,'192.99.178.20','normal','',0,0,0,0,0,'[]'),(18723,'202.172.28.182','normal','',0,0,0,0,0,'[]'),(18724,'114.119.143.77','normal','',0,0,0,0,0,'[]'),(18725,'85.25.210.251','normal','',0,0,0,2,0,'{\"login\":[1660289073,1660756575]}'),(18726,'159.223.112.190','normal','',0,0,0,0,0,'[]'),(18727,'185.244.175.47','normal','',0,0,0,0,3,'{\"nf\":[1660290524,1660293530,1660440119]}'),(18728,'105.233.39.81','normal','',0,0,0,0,0,'[]'),(18729,'175.103.49.13','normal','',0,0,0,0,0,'[]'),(18730,'102.65.66.16','normal','',0,0,0,0,1,'{\"nf\":[1660294353]}'),(18731,'65.108.72.55','normal','',0,0,0,4,0,'{\"login\":[1660308164,1661758992,1661764670,1661804373]}'),(18732,'120.78.15.126','normal','',0,0,0,7,0,'{\"login\":[1660329608,1660946596,1660982970,1661011341,1661684232,1662676167,1663089842]}'),(18733,'183.67.21.196','normal','',0,0,0,0,0,'[]'),(18734,'216.226.146.44','normal','',0,0,0,0,0,'[]'),(18735,'8.210.12.2','normal','',0,0,0,0,0,'[]'),(18736,'194.233.67.171','normal','',0,0,0,1,0,'{\"login\":[1662173643]}'),(18737,'217.61.128.209','normal','',0,0,0,4,0,'{\"login\":[1660347652,1660403635,1660520471,1660739788]}'),(18738,'69.164.220.126','normal','',0,0,0,0,0,'[]'),(18739,'65.108.124.153','normal','',0,0,0,0,0,'[]'),(18740,'66.180.204.204','normal','',0,0,0,0,0,'[]'),(18741,'178.128.57.37','normal','',0,0,0,0,0,'[]'),(18742,'172.105.121.47','normal','',0,0,0,0,0,'[]'),(18743,'172.105.121.47','normal','',0,0,0,0,0,'[]'),(18744,'66.45.234.42','normal','',0,0,0,0,0,'[]'),(18745,'178.33.114.104','normal','',0,0,0,0,0,'[]'),(18746,'151.8.21.12','normal','',0,0,0,0,0,'[]'),(18747,'151.8.21.12','normal','',0,0,0,0,0,'[]'),(18748,'200.150.202.207','normal','',0,0,0,0,0,'[]'),(18749,'182.50.151.3','normal','',0,0,0,0,0,'[]'),(18750,'31.7.76.17','normal','',0,0,0,0,1,'{\"nf\":[1660979203]}'),(18751,'103.63.213.181','normal','',0,0,0,0,0,'[]'),(18752,'173.252.83.16','normal','',0,0,0,0,0,'[]'),(18753,'173.252.83.22','normal','',0,0,0,0,0,'[]'),(18754,'47.243.124.0','normal','',0,0,0,0,0,'[]'),(18755,'147.182.203.161','normal','',0,0,0,0,0,'[]'),(18756,'114.119.130.221','normal','',0,0,0,0,0,'[]'),(18757,'93.158.161.35','normal','',0,0,0,0,0,'[]'),(18758,'51.91.29.218','normal','',0,0,0,0,0,'[]'),(18759,'158.69.26.40','normal','',0,0,0,0,0,'[]'),(18760,'65.108.233.244','normal','',0,0,0,0,0,'[]'),(18761,'161.97.84.212','normal','',0,0,0,6,0,'{\"login\":[1660375423,1661757942,1661764883,1661766924,1661787724,1661823383]}'),(18762,'178.62.232.252','normal','',0,0,0,0,3,'{\"nf\":[1660377900,1660377904,1660377905]}'),(18763,'198.235.24.20','normal','',0,0,0,0,0,'[]'),(18764,'20.218.100.232','normal','',0,0,0,0,2,'{\"nf\":[1660384691,1660429837]}'),(18765,'190.107.177.243','normal','',0,0,0,2,0,'{\"login\":[1662004262,1662124165]}'),(18766,'51.210.137.3','normal','',0,0,0,0,2,'{\"nf\":[1660385954,1660385957]}'),(18767,'102.132.196.227','normal','',0,0,0,0,0,'[]'),(18768,'82.145.215.206','normal','',0,0,0,0,5,'{\"nf\":[1660389374,1660452412,1660551198,1660788812,1660877684]}'),(18769,'35.154.14.214','normal','',0,0,0,1,0,'{\"login\":[1660393330]}'),(18770,'54.36.149.33','normal','',0,0,0,0,0,'[]'),(18771,'207.46.13.183','normal','',0,0,0,0,0,'[]'),(18772,'132.148.120.165','normal','',0,0,0,0,0,'[]'),(18773,'72.167.51.232','normal','',0,0,0,0,0,'[]'),(18774,'50.62.176.231','normal','',0,0,0,0,0,'[]'),(18775,'87.247.245.132','normal','',0,0,0,0,0,'[]'),(18776,'148.72.56.195','normal','',0,0,0,0,0,'[]'),(18777,'5.187.54.112','normal','',0,0,0,0,0,'[]'),(18778,'217.112.181.224','normal','',0,0,0,0,0,'[]'),(18779,'132.148.120.164','normal','',0,0,0,0,0,'[]'),(18780,'47.100.93.225','normal','',0,0,0,0,0,'[]'),(18781,'157.7.189.226','normal','',0,0,0,0,0,'[]'),(18782,'52.184.198.106','normal','',0,0,0,0,0,'[]'),(18783,'52.184.198.106','normal','',0,0,0,0,0,'[]'),(18784,'209.59.151.212','normal','',0,0,0,0,0,'[]'),(18785,'209.59.151.212','normal','',0,0,0,0,0,'[]'),(18786,'112.175.114.37','normal','',0,0,0,0,0,'[]'),(18787,'50.62.176.142','normal','',0,0,0,0,0,'[]'),(18788,'195.74.38.67','normal','',0,0,0,0,0,'[]'),(18789,'75.103.66.27','normal','',0,0,0,0,0,'[]'),(18790,'27.254.38.7','normal','',0,0,0,0,0,'[]'),(18791,'62.169.211.119','normal','',0,0,0,0,0,'[]'),(18792,'107.180.121.63','normal','',0,0,0,0,0,'[]'),(18793,'138.128.59.173','normal','',0,0,0,0,0,'[]'),(18794,'197.91.253.194','normal','',0,0,0,0,0,'[]'),(18795,'173.231.60.196','normal','',0,0,0,0,1,'{\"nf\":[1660494040]}'),(18796,'17.121.114.137','normal','',0,0,0,0,0,'[]'),(18797,'20.222.16.101','normal','',0,0,0,0,2,'{\"nf\":[1660427370,1660427397]}'),(18798,'193.123.111.167','normal','',0,0,0,0,0,'[]'),(18799,'103.252.225.173','normal','',0,0,0,0,0,'[]'),(18800,'124.223.197.100','normal','',0,0,0,0,0,'[]'),(18801,'43.251.132.12','normal','',0,0,0,2,0,'{\"login\":[1660444930,1660784075]}'),(18802,'192.81.211.161','blocked','You have been locked out due to too many invalid login attempts.',1660450425,1660450125,0,5,0,'{\"login\":[1660450052,1660450084,1660450104,1660450115,1660450124]}'),(18803,'201.150.35.113','normal','',0,0,0,0,0,'[]'),(18804,'197.221.14.43','normal','',0,0,0,0,0,'[]'),(18805,'83.143.133.78','normal','',0,0,0,0,0,'[]'),(18806,'5.134.4.180','normal','',0,0,0,0,0,'[]'),(18807,'51.222.29.254','normal','',0,0,0,0,0,'[]'),(18808,'102.38.50.130','normal','',0,0,0,0,0,'[]'),(18809,'119.59.120.22','normal','',0,0,0,0,0,'[]'),(18810,'41.147.0.211','normal','',0,0,0,0,0,'[]'),(18811,'15.236.68.152','normal','',0,0,0,1,0,'{\"login\":[1660468731]}'),(18812,'100.20.122.14','normal','',0,0,0,0,1,'{\"nf\":[1660481750]}'),(18813,'167.94.138.120','normal','',0,0,0,0,0,'[]'),(18814,'159.203.108.168','normal','',0,0,0,0,0,'[]'),(18815,'102.182.4.221','normal','',0,0,0,0,0,'[]'),(18816,'20.99.139.35','normal','',0,0,0,0,0,'[]'),(18817,'174.140.235.248','normal','',0,0,0,0,0,'[]'),(18818,'102.132.206.200','normal','',0,0,0,0,0,'[]'),(18819,'54.39.243.100','normal','',0,0,0,0,0,'[]'),(18820,'47.243.133.42','normal','',0,0,0,0,0,'[]'),(18821,'20.108.45.142','normal','',0,0,0,0,1,'{\"nf\":[1660501957]}'),(18822,'178.159.37.54','normal','',0,0,0,0,0,'[]'),(18823,'34.221.47.237','normal','',0,0,0,0,0,'[]'),(18824,'34.219.126.53','normal','',0,0,0,0,0,'[]'),(18825,'198.27.68.131','normal','',0,0,0,0,4,'{\"nf\":[1660512400,1660512404,1660512406,1660512407]}'),(18826,'173.212.231.5','normal','',0,0,0,0,1,'{\"nf\":[1660513293]}'),(18827,'173.212.231.5','normal','',0,0,0,0,0,'[]'),(18828,'51.159.37.21','normal','',0,0,0,0,0,'[]'),(18829,'114.119.151.82','normal','',0,0,0,0,0,'[]'),(18830,'41.133.114.244','normal','',0,0,0,0,0,'[]'),(18831,'205.210.31.35','normal','',0,0,0,0,0,'[]'),(18832,'197.94.253.46','normal','',0,0,0,0,0,'[]'),(18833,'102.182.201.13','normal','',0,0,0,0,0,'[]'),(18834,'207.46.13.52','normal','',0,0,0,0,0,'[]'),(18835,'197.94.85.35','normal','',0,0,0,0,0,'[]'),(18836,'41.13.243.185','normal','',0,0,0,0,0,'[]'),(18837,'159.89.192.232','normal','',0,0,0,0,1,'{\"nf\":[1660596326]}'),(18838,'35.163.251.20','normal','',0,0,0,0,0,'[]'),(18839,'152.89.196.13','normal','',0,0,0,0,72,'{\"nf\":[1660612651,1660638919,1660663738,1660665920,1660666036,1660690364,1660692770,1660713430,1660731022,1660755269,1660756489,1660758110,1660775129,1660775187,1660775884,1660792028,1660792784,1660793487,1660794234,1660794684,1660798143,1660799233,1660812554,1660815699,1660817172,1662514167,1662536183,1662539535,1662540904,1662541592,1662541596,1662541603,1662541952,1662542041,1662542354,1662542462,1662542688,1662543371,1662543410,1662543426,1662544040,1662544128,1662544519,1662544932,1662612782,1662613794,1662613997,1662614559,1662614807,1662615947,1662615950,1662617567,1662622045,1662622929,1662623721,1662624188,1662624195,1662683842,1662684620,1662684621,1662688307,1662688839,1662689147,1662690383,1662692108,1662692936,1662696795,1662705740,1662772599,1662795125,1662943444,1663117423]}'),(18840,'51.159.30.34','normal','',0,0,0,0,0,'[]'),(18841,'198.235.24.130','normal','',0,0,0,0,0,'[]'),(18842,'20.77.117.70','normal','',0,0,0,0,0,'[]'),(18843,'47.242.90.62','normal','',0,0,0,0,0,'[]'),(18844,'65.21.35.182','normal','',0,0,0,0,1,'{\"nf\":[1660629261]}'),(18845,'54.152.21.178','normal','',0,0,0,1,0,'{\"login\":[1660632015]}'),(18846,'209.141.34.187','normal','',0,0,0,0,0,'[]'),(18847,'165.73.103.16','normal','',0,0,0,0,0,'[]'),(18848,'17.121.115.115','normal','',0,0,0,0,0,'[]'),(18849,'169.0.76.122','normal','',0,0,0,0,0,'[]'),(18850,'20.150.214.62','normal','',0,0,0,0,1,'{\"nf\":[1660655579]}'),(18851,'18.221.30.68','normal','',0,0,0,0,1,'{\"nf\":[1660658929]}'),(18852,'66.249.70.189','normal','',0,0,0,0,0,'[]'),(18853,'192.30.89.59','normal','',0,0,0,0,0,'[]'),(18854,'133.242.58.20','normal','',0,0,0,0,3,'{\"nf\":[1660666185,1660666247,1660666290]}'),(18855,'102.165.86.32','normal','',0,0,0,0,0,'[]'),(18856,'197.89.38.33','normal','',0,0,0,0,0,'[]'),(18857,'197.92.137.174','normal','',0,0,0,0,0,'[]'),(18858,'197.89.40.143','normal','',0,0,0,0,0,'[]'),(18859,'112.213.88.115','normal','',0,0,0,0,0,'[]'),(18860,'112.213.88.115','normal','',0,0,0,0,0,'[]'),(18861,'51.79.157.69','normal','',0,0,0,0,0,'[]'),(18862,'72.167.190.90','normal','',0,0,0,0,0,'[]'),(18863,'47.89.208.119','normal','',0,0,0,0,0,'[]'),(18864,'23.229.5.66','normal','',0,0,0,0,0,'[]'),(18865,'65.108.16.51','normal','',0,0,0,0,1,'{\"nf\":[1660978898]}'),(18866,'50.62.176.214','normal','',0,0,0,0,0,'[]'),(18867,'50.62.176.214','normal','',0,0,0,0,0,'[]'),(18868,'79.170.44.155','normal','',0,0,0,0,0,'[]'),(18869,'83.217.74.163','normal','',0,0,0,0,1,'{\"nf\":[1660979188]}'),(18870,'50.62.177.67','normal','',0,0,0,0,0,'[]'),(18871,'200.4.140.32','normal','',0,0,0,0,0,'[]'),(18872,'200.4.140.32','normal','',0,0,0,0,0,'[]'),(18873,'164.77.172.194','normal','',0,0,0,0,0,'[]'),(18874,'124.222.206.16','normal','',0,0,0,0,0,'[]'),(18875,'54.188.179.44','normal','',0,0,0,0,0,'[]'),(18876,'8.210.168.243','normal','',0,0,0,0,0,'[]'),(18877,'45.173.240.6','normal','',0,0,0,0,0,'[]'),(18878,'103.81.249.53','normal','',0,0,0,0,0,'[]'),(18879,'65.108.99.24','normal','',0,0,0,0,1,'{\"nf\":[1660708182]}'),(18880,'178.238.233.172','normal','',0,0,0,1,0,'{\"login\":[1660713244]}'),(18881,'74.220.219.183','normal','',0,0,0,0,0,'[]'),(18882,'206.72.197.170','normal','',0,0,0,0,0,'[]'),(18883,'168.119.180.95','normal','',0,0,0,0,0,'[]'),(18884,'198.23.149.41','normal','',0,0,0,0,0,'[]'),(18885,'197.94.65.82','normal','',0,0,0,0,0,'[]'),(18886,'36.67.122.42','normal','',0,0,0,2,0,'{\"login\":[1661954671,1662109427]}'),(18887,'35.240.95.136','normal','',0,0,0,0,0,'[]'),(18888,'197.94.232.251','normal','',0,0,0,0,0,'[]'),(18889,'164.90.152.238','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1660740801,0,1660740501,0,20,'{\"nf\":[1660740466,1660740469,1660740470,1660740472,1660740473,1660740475,1660740477,1660740478,1660740480,1660740482,1660740483,1660740485,1660740486,1660740488,1660740490,1660740491,1660740494,1660740497,1660740499,1660740501]}'),(18890,'101.188.69.128','normal','',0,0,0,0,0,'[]'),(18891,'114.119.141.146','normal','',0,0,0,0,0,'[]'),(18892,'65.108.103.96','normal','',0,0,0,0,0,'[]'),(18893,'128.199.100.142','normal','',0,0,0,3,0,'{\"login\":[1660749516,1661422447,1662302037]}'),(18894,'178.159.37.95','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1660759916,0,1660759616,0,40,'{\"nf\":[1660759534,1660759539,1660759544,1660759548,1660759552,1660759559,1660759563,1660759566,1660759570,1660759574,1660759580,1660759584,1660759588,1660759592,1660759596,1660759603,1660759607,1660759609,1660759613,1660759616],\"login\":[]}'),(18895,'208.113.153.235','normal','',0,0,0,7,0,'{\"login\":[1660764584,1660956222,1660970922,1661250842,1662299831,1663020318,1663143835]}'),(18896,'35.92.49.63','normal','',0,0,0,0,0,'[]'),(18897,'82.180.160.23','normal','',0,0,0,0,1,'{\"nf\":[1660769079]}'),(18898,'122.160.46.61','normal','',0,0,0,0,0,'[]'),(18899,'138.68.190.172','normal','',0,0,0,0,0,'[]'),(18900,'138.68.190.172','normal','',0,0,0,0,0,'[]'),(18901,'103.93.160.210','normal','',0,0,0,0,0,'[]'),(18902,'132.148.121.150','normal','',0,0,0,0,0,'[]'),(18903,'132.148.121.150','normal','',0,0,0,0,0,'[]'),(18904,'177.55.108.130','normal','',0,0,0,0,0,'[]'),(18905,'194.63.235.189','normal','',0,0,0,0,0,'[]'),(18906,'132.148.120.152','normal','',0,0,0,0,1,'{\"nf\":[1660979053]}'),(18907,'201.248.64.234','normal','',0,0,0,0,0,'[]'),(18908,'201.248.64.234','normal','',0,0,0,0,0,'[]'),(18909,'103.58.149.162','normal','',0,0,0,0,0,'[]'),(18910,'66.175.44.36','normal','',0,0,0,0,0,'[]'),(18911,'66.175.44.36','normal','',0,0,0,0,0,'[]'),(18912,'193.106.249.142','normal','',0,0,0,0,0,'[]'),(18913,'72.167.56.2','normal','',0,0,0,0,0,'[]'),(18914,'192.99.101.79','normal','',0,0,0,0,0,'[]'),(18915,'102.65.63.9','normal','',0,0,0,0,1,'{\"nf\":[1660807889]}'),(18916,'107.182.129.189','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1660815969,0,1660815669,0,20,'{\"nf\":[1660815617,1660815621,1660815623,1660815625,1660815630,1660815632,1660815634,1660815637,1660815643,1660815645,1660815648,1660815650,1660815654,1660815656,1660815659,1660815660,1660815663,1660815665,1660815666,1660815668]}'),(18917,'34.76.203.195','normal','',0,0,0,0,3,'{\"nf\":[1660819032,1660819048,1660819048]}'),(18918,'65.20.73.236','normal','',0,0,0,4,0,'{\"login\":[1660820568,1660914708,1661763779,1661767483]}'),(18919,'89.25.109.154','normal','',0,0,0,0,4,'{\"nf\":[1660821682,1660821693,1660821694,1660821808]}'),(18920,'105.4.1.9','normal','',0,0,0,0,0,'[]'),(18921,'20.238.46.201','normal','',0,0,0,0,1,'{\"nf\":[1660836832]}'),(18922,'85.146.27.185','normal','',0,0,0,2,0,'{\"login\":[1660852192,1661839771]}'),(18923,'35.166.199.14','normal','',0,0,0,0,0,'[]'),(18924,'34.213.203.220','normal','',0,0,0,0,0,'[]'),(18925,'54.214.176.205','normal','',0,0,0,0,0,'[]'),(18926,'54.184.56.119','normal','',0,0,0,0,0,'[]'),(18927,'173.249.58.188','normal','',0,0,0,0,0,'[]'),(18928,'114.119.141.30','normal','',0,0,0,0,0,'[]'),(18929,'178.128.209.28','normal','',0,0,0,0,0,'[]'),(18930,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18931,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18932,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18933,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18934,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18935,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18936,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18937,'34.220.255.147','normal','',0,0,0,0,1,'{\"nf\":[1660884519]}'),(18938,'41.193.251.201','normal','',0,0,0,0,0,'[]'),(18939,'134.209.151.162','normal','',0,0,0,1,0,'{\"login\":[1662151178]}'),(18940,'142.44.160.158','normal','',0,0,0,0,0,'[]'),(18941,'41.71.7.166','normal','',0,0,0,0,0,'[]'),(18942,'192.185.81.201','normal','',0,0,0,0,0,'[]'),(18943,'52.47.99.122','normal','',0,0,0,0,0,'[]'),(18944,'102.222.180.178','normal','',0,0,0,0,0,'[]'),(18945,'197.245.233.213','normal','',0,0,0,0,0,'[]'),(18946,'156.155.177.72','normal','',0,0,0,0,0,'[]'),(18947,'47.243.96.23','normal','',0,0,0,0,0,'[]'),(18948,'185.244.175.80','normal','',0,0,0,0,2,'{\"nf\":[1660916270,1660940787]}'),(18949,'199.244.88.227','normal','',0,0,0,0,0,'[]'),(18950,'16.162.48.190','normal','',0,0,0,0,0,'[]'),(18951,'20.228.205.116','normal','',0,0,0,0,4,'{\"nf\":[1660926039,1661898338,1662745360,1662856523]}'),(18952,'80.76.51.29','normal','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1660927786,0,1660927486,0,25,'{\"nf\":[1662149887,1662149894,1662149901,1662149910,1662149923],\"login\":[]}'),(18953,'17.121.112.18','normal','',0,0,0,0,0,'[]'),(18954,'111.221.83.63','normal','',0,0,0,0,0,'[]'),(18955,'72.167.190.21','normal','',0,0,0,0,0,'[]'),(18956,'132.148.121.133','normal','',0,0,0,0,0,'[]'),(18957,'132.148.121.133','normal','',0,0,0,0,0,'[]'),(18958,'50.62.176.172','normal','',0,0,0,0,0,'[]'),(18959,'148.66.146.7','normal','',0,0,0,0,0,'[]'),(18960,'173.45.79.122','normal','',0,0,0,0,0,'[]'),(18961,'50.62.177.141','normal','',0,0,0,0,0,'[]'),(18962,'179.83.208.25','normal','',0,0,0,0,0,'[]'),(18963,'69.49.99.148','normal','',0,0,0,0,0,'[]'),(18964,'77.68.64.26','normal','',0,0,0,0,0,'[]'),(18965,'77.68.64.26','normal','',0,0,0,0,0,'[]'),(18966,'198.71.235.5','normal','',0,0,0,0,0,'[]'),(18967,'198.71.235.5','normal','',0,0,0,0,0,'[]'),(18968,'180.149.241.246','normal','',0,0,0,0,0,'[]'),(18969,'35.86.222.193','normal','',0,0,0,0,13,'{\"nf\":[1660937564,1660937571,1660937577,1660937582,1660937588,1660937594,1660937604,1660937618,1660937625,1660937631,1660937645,1660937651,1660937661]}'),(18970,'34.217.191.124','normal','',0,0,0,0,0,'[]'),(18971,'212.33.197.207','normal','',0,0,0,0,0,'[]'),(18972,'78.46.195.141','normal','',0,0,0,0,1,'{\"nf\":[1660953914]}'),(18973,'43.231.112.85','normal','',0,0,0,0,0,'[]'),(18974,'2.144.4.112','normal','',0,0,0,0,0,'[]'),(18975,'14.225.254.199','normal','',0,0,0,3,0,'{\"login\":[1660963314,1661795796,1661808788]}'),(18976,'147.78.47.233','normal','You have been locked out due to too many invalid login attempts.',1660964303,1660964003,0,19,3,'{\"nf\":[1662117479,1662117481],\"login\":[1662324306,1662325333,1662333370,1662333526,1662334962,1662350885,1662496737,1662496822,1662499924,1662547670,1662565036,1662570880,1662579843,1662589119,1662592192,1662595355,1662598361,1662618454,1662633922]}'),(18977,'209.141.49.169','normal','',0,0,0,0,0,'[]'),(18978,'67.20.115.90','normal','',0,0,0,0,0,'[]'),(18979,'47.111.84.214','normal','',0,0,0,2,0,'{\"login\":[1662147117,1662172355]}'),(18980,'114.119.146.219','normal','',0,0,0,0,0,'[]'),(18981,'192.254.250.163','normal','',0,0,0,0,0,'[]'),(18982,'149.255.62.30','normal','',0,0,0,1,0,'{\"login\":[1661072109]}'),(18983,'88.208.243.74','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1660975512,0,1660975212,0,20,'{\"nf\":[1660975179,1660975184,1660975185,1660975187,1660975188,1660975190,1660975191,1660975193,1660975194,1660975196,1660975197,1660975199,1660975201,1660975202,1660975204,1660975206,1660975207,1660975208,1660975210,1660975212]}'),(18984,'182.50.132.116','normal','',0,0,0,0,1,'{\"nf\":[1660978829]}'),(18985,'193.28.86.94','normal','',0,0,0,0,1,'{\"nf\":[1660978862]}'),(18986,'50.62.177.21','normal','',0,0,0,0,1,'{\"nf\":[1660978896]}'),(18987,'139.199.28.65','normal','',0,0,0,0,2,'{\"nf\":[1660978917,1660979387]}'),(18988,'46.32.225.208','normal','',0,0,0,0,1,'{\"nf\":[1660978919]}'),(18989,'112.78.2.90','normal','',0,0,0,0,1,'{\"nf\":[1660978955]}'),(18990,'92.222.97.173','normal','',0,0,0,0,1,'{\"nf\":[1660978976]}'),(18991,'72.167.190.56','normal','',0,0,0,0,1,'{\"nf\":[1660978999]}'),(18992,'72.167.190.13','normal','',0,0,0,0,1,'{\"nf\":[1660979010]}'),(18993,'103.73.66.241','normal','',0,0,0,0,1,'{\"nf\":[1660979021]}'),(18994,'114.34.235.74','normal','',0,0,0,0,1,'{\"nf\":[1660979040]}'),(18995,'101.133.138.186','normal','',0,0,0,0,1,'{\"nf\":[1660979043]}'),(18996,'103.6.196.125','normal','',0,0,0,0,1,'{\"nf\":[1660979068]}'),(18997,'213.171.202.26','normal','',0,0,0,0,1,'{\"nf\":[1660979087]}'),(18998,'67.205.132.8','normal','',0,0,0,0,1,'{\"nf\":[1660979145]}'),(18999,'72.167.190.73','normal','',0,0,0,0,1,'{\"nf\":[1660979156]}'),(19000,'138.68.247.242','normal','',0,0,0,0,1,'{\"nf\":[1660979168]}'),(19001,'198.71.225.153','normal','',0,0,0,0,1,'{\"nf\":[1660979179]}'),(19002,'190.105.238.62','normal','',0,0,0,0,1,'{\"nf\":[1660979214]}'),(19003,'181.177.201.171','normal','',0,0,0,0,1,'{\"nf\":[1660979249]}'),(19004,'50.62.177.29','normal','',0,0,0,0,0,'[]'),(19005,'45.135.128.243','normal','',0,0,0,0,1,'{\"nf\":[1660979280]}'),(19006,'52.163.92.84','normal','',0,0,0,0,1,'{\"nf\":[1660979297]}'),(19007,'50.62.176.44','normal','',0,0,0,0,1,'{\"nf\":[1660979328]}'),(19008,'192.169.82.134','normal','',0,0,0,0,1,'{\"nf\":[1660979335]}'),(19009,'199.192.21.226','normal','',0,0,0,0,1,'{\"nf\":[1660979358]}'),(19010,'101.99.3.34','normal','',0,0,0,0,1,'{\"nf\":[1660979372]}'),(19011,'35.237.59.170','normal','',0,0,0,0,1,'{\"nf\":[1660979397]}'),(19012,'208.113.204.51','normal','',0,0,0,0,1,'{\"nf\":[1660979404]}'),(19013,'49.50.100.233','normal','',0,0,0,0,1,'{\"nf\":[1660979407]}'),(19014,'103.159.4.98','normal','',0,0,0,0,0,'[]'),(19015,'13.126.36.87','normal','',0,0,0,2,0,'{\"login\":[1662106375,1662142252]}'),(19016,'169.255.146.189','normal','',0,0,0,0,0,'[]'),(19017,'20.55.19.86','normal','',0,0,0,0,0,'[]'),(19018,'47.242.240.89','normal','',0,0,0,0,0,'[]'),(19019,'15.235.168.187','normal','',0,0,0,0,0,'[]'),(19020,'93.113.110.128','normal','',0,0,0,0,0,'[]'),(19021,'41.117.146.70','normal','',0,0,0,0,0,'[]'),(19022,'54.36.149.67','normal','',0,0,0,0,0,'[]'),(19023,'65.0.121.60','normal','',0,0,0,0,0,'[]'),(19024,'194.87.218.22','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1661020668,0,1661020368,0,20,'{\"nf\":[1661020332,1661020335,1661020336,1661020338,1661020340,1661020341,1661020342,1661020344,1661020345,1661020347,1661020349,1661020350,1661020351,1661020352,1661020355,1661020359,1661020361,1661020362,1661020364,1661020368]}'),(19025,'18.237.139.80','normal','',0,0,0,0,0,'[]'),(19026,'91.205.230.79','normal','',0,0,0,3,0,'{\"login\":[1661165604,1662071401,1662216297]}'),(19027,'37.46.134.198','normal','',0,0,0,0,0,'[]'),(19028,'124.222.127.109','normal','',0,0,0,1,0,'{\"login\":[1661952457]}'),(19029,'190.169.30.9','normal','',0,0,0,0,0,'[]'),(19030,'62.171.155.105','normal','',0,0,0,0,0,'[]'),(19031,'188.134.68.55','normal','',0,0,0,0,0,'[]'),(19032,'175.103.49.12','normal','',0,0,0,1,0,'{\"login\":[1661164368]}'),(19033,'94.152.128.19','normal','',0,0,0,0,0,'[]'),(19034,'27.254.194.202','normal','',0,0,0,1,0,'{\"login\":[1661070761]}'),(19035,'132.148.121.160','normal','',0,0,0,0,0,'[]'),(19036,'132.148.121.160','normal','',0,0,0,0,0,'[]'),(19037,'64.29.146.186','normal','',0,0,0,0,0,'[]'),(19038,'138.128.162.250','normal','',0,0,0,0,0,'[]'),(19039,'138.128.162.250','normal','',0,0,0,0,0,'[]'),(19040,'54.37.124.143','normal','',0,0,0,0,0,'[]'),(19041,'94.246.96.52','normal','',0,0,0,0,0,'[]'),(19042,'132.148.121.2','normal','',0,0,0,0,0,'[]'),(19043,'200.220.149.28','normal','',0,0,0,0,0,'[]'),(19044,'97.74.232.121','normal','',0,0,0,0,0,'[]'),(19045,'97.74.232.121','normal','',0,0,0,0,0,'[]'),(19046,'102.182.203.8','normal','',0,0,0,0,0,'[]'),(19047,'20.219.146.75','normal','',0,0,0,0,1,'{\"nf\":[1661191802]}'),(19048,'102.132.217.113','normal','',0,0,0,0,1,'{\"nf\":[1661103124]}'),(19049,'157.55.39.33','normal','',0,0,0,0,0,'[]'),(19050,'115.50.199.105','normal','',0,0,0,0,0,'[]'),(19051,'180.126.50.154','normal','',0,0,0,0,0,'[]'),(19052,'110.244.7.115','normal','',0,0,0,0,0,'[]'),(19053,'35.88.252.242','normal','',0,0,0,0,0,'[]'),(19054,'66.249.93.81','normal','',0,0,0,0,6,'{\"nf\":[1661114424,1661858988,1661862528,1662371653,1662397800,1662963714]}'),(19055,'44.234.187.82','normal','',0,0,0,0,0,'[]'),(19056,'138.68.104.176','normal','',0,0,0,0,8,'{\"nf\":[1661129303,1661129305,1661129306,1661129307,1661129308,1661129310,1661129311,1661129312]}'),(19057,'139.180.212.28','normal','',0,0,0,0,0,'[]'),(19058,'13.57.214.36','normal','',0,0,0,0,0,'[]'),(19059,'54.241.218.43','normal','',0,0,0,0,0,'[]'),(19060,'54.176.15.184','normal','',0,0,0,0,0,'[]'),(19061,'54.183.57.138','normal','',0,0,0,0,0,'[]'),(19062,'13.57.15.18','normal','',0,0,0,0,0,'[]'),(19063,'54.215.91.121','normal','',0,0,0,0,0,'[]'),(19064,'54.67.19.104','normal','',0,0,0,0,0,'[]'),(19065,'13.56.209.234','normal','',0,0,0,0,0,'[]'),(19066,'54.215.59.7','normal','',0,0,0,0,0,'[]'),(19067,'5.255.253.142','normal','',0,0,0,0,0,'[]'),(19068,'142.54.224.196','normal','',0,0,0,0,0,'[]'),(19069,'51.89.21.65','normal','',0,0,0,0,0,'[]'),(19070,'144.76.41.70','normal','',0,0,0,0,0,'[]'),(19071,'43.205.111.23','normal','',0,0,0,1,0,'{\"login\":[1661172156]}'),(19072,'62.171.157.68','normal','',0,0,0,0,0,'[]'),(19073,'161.97.163.71','normal','',0,0,0,2,0,'{\"login\":[1661155814,1662138711]}'),(19074,'75.119.148.105','normal','',0,0,0,1,0,'{\"login\":[1661161555]}'),(19075,'18.180.123.202','normal','',0,0,0,1,0,'{\"login\":[1661162138]}'),(19076,'34.79.206.104','normal','',0,0,0,2,0,'{\"login\":[1661166203,1662222523]}'),(19077,'41.116.191.32','normal','',0,0,0,0,0,'[]'),(19078,'173.249.43.72','normal','',0,0,0,1,0,'{\"login\":[1661171312]}'),(19079,'41.13.228.196','normal','',0,0,0,0,0,'[]'),(19080,'148.251.126.69','normal','',0,0,0,0,0,'[]'),(19081,'128.199.178.73','normal','',0,0,0,0,0,'[]'),(19082,'114.119.140.221','normal','',0,0,0,0,0,'[]'),(19083,'5.154.253.151','normal','',0,0,0,0,0,'[]'),(19084,'34.218.59.194','normal','',0,0,0,0,0,'[]'),(19085,'54.200.32.207','normal','',0,0,0,0,0,'[]'),(19086,'54.189.33.207','normal','',0,0,0,0,0,'[]'),(19087,'35.92.75.236','normal','',0,0,0,0,0,'[]'),(19088,'47.96.74.105','normal','',0,0,0,3,0,'{\"login\":[1661206753,1661641677,1662944973]}'),(19089,'61.162.220.97','normal','',0,0,0,0,0,'[]'),(19090,'178.128.219.45','normal','',0,0,0,0,0,'[]'),(19091,'108.167.189.36','normal','',0,0,0,0,0,'[]'),(19092,'3.111.66.132','normal','',0,0,0,0,0,'[]'),(19093,'192.185.4.161','normal','',0,0,0,0,0,'[]'),(19094,'54.38.45.49','normal','',0,0,0,0,0,'[]'),(19095,'50.87.224.231','normal','',0,0,0,0,0,'[]'),(19096,'157.55.39.59','normal','',0,0,0,0,0,'[]'),(19097,'175.103.49.11','normal','',0,0,0,0,0,'[]'),(19098,'105.9.116.13','normal','',0,0,0,0,0,'[]'),(19099,'103.157.146.210','normal','',0,0,0,1,0,'{\"login\":[1662225132]}'),(19100,'197.229.2.248','normal','',0,0,0,0,0,'[]'),(19101,'41.177.109.114','normal','',0,0,0,0,0,'[]'),(19102,'197.96.43.36','normal','',0,0,0,0,0,'[]'),(19103,'35.237.124.168','normal','',0,0,0,0,0,'[]'),(19104,'190.60.234.18','normal','',0,0,0,0,0,'[]'),(19105,'128.199.128.114','normal','',0,0,0,1,0,'{\"login\":[1662165817]}'),(19106,'114.119.152.108','normal','',0,0,0,0,0,'[]'),(19107,'41.71.80.24','normal','',0,0,0,0,0,'[]'),(19108,'34.220.8.125','normal','',0,0,0,0,0,'[]'),(19109,'244.152.91.214','normal','',0,0,0,0,0,'[]'),(19110,'105.247.85.250','normal','',0,0,0,0,0,'[]'),(19111,'135.181.79.106','normal','',0,0,0,0,0,'[]'),(19112,'173.252.95.7','normal','',0,0,0,0,0,'[]'),(19113,'173.252.95.13','normal','',0,0,0,0,0,'[]'),(19114,'197.89.181.103','normal','',0,0,0,0,0,'[]'),(19115,'43.251.134.178','normal','',0,0,0,1,0,'{\"login\":[1661338879]}'),(19116,'34.209.90.140','normal','',0,0,0,0,0,'[]'),(19117,'114.119.129.198','normal','',0,0,0,0,0,'[]'),(19118,'54.200.106.47','normal','',0,0,0,0,0,'[]'),(19119,'35.236.65.65','normal','',0,0,0,0,1,'{\"nf\":[1661350987]}'),(19120,'103.103.175.102','normal','',0,0,0,1,0,'{\"login\":[1661351770]}'),(19121,'178.62.69.67','normal','',0,0,0,0,6,'{\"nf\":[1661360705,1661360712,1661360714,1661360715,1661360717,1661360718]}'),(19122,'195.74.80.147','normal','',0,0,0,0,1,'{\"nf\":[1661367761]}'),(19123,'54.36.149.48','normal','',0,0,0,0,0,'[]'),(19124,'34.218.210.47','normal','',0,0,0,0,0,'[]'),(19125,'41.71.7.142','normal','',0,0,0,0,0,'[]'),(19126,'197.94.37.163','normal','',0,0,0,0,0,'[]'),(19127,'114.119.137.211','normal','',0,0,0,0,0,'[]'),(19128,'17.121.114.22','normal','',0,0,0,0,0,'[]'),(19129,'149.202.172.82','normal','',0,0,0,0,2,'{\"nf\":[1661456832,1661456880]}'),(19130,'18.237.147.233','normal','',0,0,0,0,0,'[]'),(19131,'20.68.104.160','normal','',0,0,0,0,3,'{\"nf\":[1661472456,1661472465,1661472466]}'),(19132,'65.109.24.4','normal','',0,0,0,0,0,'[]'),(19133,'149.56.150.176','normal','',0,0,0,0,2,'{\"nf\":[1661478656,1661478667]}'),(19134,'149.56.160.198','normal','',0,0,0,0,0,'[]'),(19135,'65.109.8.219','normal','',0,0,0,0,0,'[]'),(19136,'194.32.229.3','normal','',0,0,0,0,0,'[]'),(19137,'159.223.237.60','normal','',0,0,0,0,0,'[]'),(19138,'196.61.103.172','normal','',0,0,0,0,0,'[]'),(19139,'114.119.151.103','normal','',0,0,0,0,0,'[]'),(19140,'198.46.81.40','normal','',0,0,0,0,0,'[]'),(19141,'109.234.161.93','normal','',0,0,0,1,0,'{\"login\":[1661688023]}'),(19142,'65.108.238.110','normal','',0,0,0,0,0,'[]'),(19143,'104.244.122.22','normal','',0,0,0,0,0,'[]'),(19144,'184.73.178.142','normal','',0,0,0,0,0,'[]'),(19145,'192.163.194.31','normal','',0,0,0,0,0,'[]'),(19146,'209.97.173.182','normal','',0,0,0,0,0,'[]'),(19147,'51.38.38.73','normal','',0,0,0,0,0,'[]'),(19148,'67.225.129.159','normal','',0,0,0,0,0,'[]'),(19149,'23.111.177.2','normal','',0,0,0,0,0,'[]'),(19150,'194.42.98.8','normal','',0,0,0,0,0,'[]'),(19151,'67.20.112.84','normal','',0,0,0,0,0,'[]'),(19152,'172.81.118.57','normal','',0,0,0,0,0,'[]'),(19153,'64.227.40.128','normal','',0,0,0,0,0,'[]'),(19154,'162.0.216.181','normal','',0,0,0,0,0,'[]'),(19155,'195.5.116.247','normal','',0,0,0,1,0,'{\"login\":[1662143949]}'),(19156,'170.106.116.175','normal','',0,0,0,1,0,'{\"login\":[1662117970]}'),(19157,'81.88.53.17','normal','',0,0,0,0,0,'[]'),(19158,'46.4.123.139','normal','',0,0,0,0,0,'[]'),(19159,'144.208.127.172','normal','',0,0,0,0,0,'[]'),(19160,'185.73.222.35','normal','',0,0,0,0,0,'[]'),(19161,'58.84.42.250','normal','',0,0,0,0,0,'[]'),(19162,'164.92.199.45','normal','',0,0,0,0,0,'[]'),(19163,'209.182.197.148','normal','',0,0,0,0,0,'[]'),(19164,'185.51.135.106','normal','',0,0,0,0,0,'[]'),(19165,'203.128.6.226','normal','',0,0,0,0,0,'[]'),(19166,'54.36.148.32','normal','',0,0,0,0,0,'[]'),(19167,'66.249.70.191','normal','',0,0,0,0,0,'[]'),(19168,'66.249.70.160','normal','',0,0,0,0,0,'[]'),(19169,'198.89.121.56','normal','',0,0,0,0,0,'[]'),(19170,'78.135.87.2','normal','',0,0,0,0,0,'[]'),(19171,'66.29.131.126','normal','',0,0,0,1,0,'{\"login\":[1661951755]}'),(19172,'51.79.83.97','normal','',0,0,0,0,0,'[]'),(19173,'15.235.133.202','normal','',0,0,0,1,0,'{\"login\":[1662074601]}'),(19174,'38.242.151.122','normal','',0,0,0,0,0,'[]'),(19175,'185.51.188.49','normal','',0,0,0,0,0,'[]'),(19176,'3.111.137.29','normal','',0,0,0,0,0,'[]'),(19177,'45.76.154.199','normal','',0,0,0,0,0,'[]'),(19178,'37.251.155.50','normal','',0,0,0,1,0,'{\"login\":[1661679596]}'),(19179,'93.189.38.67','normal','',0,0,0,0,0,'[]'),(19180,'207.244.233.103','normal','',0,0,0,0,0,'[]'),(19181,'88.99.66.27','normal','',0,0,0,0,0,'[]'),(19182,'8.210.102.36','normal','',0,0,0,0,0,'[]'),(19183,'205.210.31.36','normal','',0,0,0,0,0,'[]'),(19184,'5.144.130.29','normal','',0,0,0,0,0,'[]'),(19185,'13.232.14.6','normal','',0,0,0,0,0,'[]'),(19186,'139.59.73.237','normal','',0,0,0,0,0,'[]'),(19187,'162.214.105.251','normal','',0,0,0,0,0,'[]'),(19188,'199.188.207.230','normal','',0,0,0,0,0,'[]'),(19189,'164.68.109.14','normal','',0,0,0,0,0,'[]'),(19190,'185.110.191.98','normal','',0,0,0,0,0,'[]'),(19191,'54.201.40.33','normal','',0,0,0,0,0,'[]'),(19192,'147.135.70.183','normal','',0,0,0,0,0,'[]'),(19193,'119.18.49.33','normal','',0,0,0,0,0,'[]'),(19194,'187.103.250.210','normal','',0,0,0,0,2,'{\"nf\":[1661573225,1661573268]}'),(19195,'91.103.219.224','normal','',0,0,0,2,0,'{\"login\":[1662027521,1662243941]}'),(19196,'185.51.188.46','normal','',0,0,0,1,0,'{\"login\":[1661685175]}'),(19197,'208.97.169.69','normal','',0,0,0,0,0,'[]'),(19198,'199.193.119.12','normal','',0,0,0,0,0,'[]'),(19199,'104.168.245.160','normal','',0,0,0,0,0,'[]'),(19200,'190.92.159.48','normal','',0,0,0,0,0,'[]'),(19201,'45.251.112.118','normal','',0,0,0,0,0,'[]'),(19202,'5.135.141.158','normal','',0,0,0,2,0,'{\"login\":[1661675355,1662164608]}'),(19203,'103.130.216.98','normal','',0,0,0,0,0,'[]'),(19204,'15.235.15.122','normal','',0,0,0,0,0,'[]'),(19205,'185.225.33.99','normal','',0,0,0,0,0,'[]'),(19206,'162.215.217.77','normal','',0,0,0,0,0,'[]'),(19207,'17.121.114.73','normal','',0,0,0,0,0,'[]'),(19208,'39.107.137.177','normal','',0,0,0,0,0,'[]'),(19209,'161.97.151.184','normal','',0,0,0,0,0,'[]'),(19210,'45.252.250.41','normal','',0,0,0,0,0,'[]'),(19211,'120.138.19.247','normal','',0,0,0,0,0,'[]'),(19212,'87.236.20.43','normal','',0,0,0,0,0,'[]'),(19213,'45.56.68.13','normal','',0,0,0,0,0,'[]'),(19214,'203.112.72.51','normal','',0,0,0,2,0,'{\"login\":[1662129554,1662161150]}'),(19215,'162.241.141.142','normal','',0,0,0,0,0,'[]'),(19216,'148.251.235.251','normal','',0,0,0,0,0,'[]'),(19217,'124.158.12.149','normal','',0,0,0,0,0,'[]'),(19218,'184.171.164.162','normal','',0,0,0,0,0,'[]'),(19219,'45.130.104.53','normal','',0,0,0,0,0,'[]'),(19220,'51.38.80.81','normal','',0,0,0,0,0,'[]'),(19221,'131.255.7.10','normal','',0,0,0,0,0,'[]'),(19222,'199.167.148.197','normal','',0,0,0,0,0,'[]'),(19223,'177.52.160.29','normal','',0,0,0,0,0,'[]'),(19224,'172.105.154.117','normal','',0,0,0,0,0,'[]'),(19225,'143.198.67.208','normal','',0,0,0,1,0,'{\"login\":[1662077881]}'),(19226,'13.229.65.44','normal','',0,0,0,0,0,'[]'),(19227,'195.201.130.119','normal','',0,0,0,0,0,'[]'),(19228,'103.55.39.43','normal','',0,0,0,0,0,'[]'),(19229,'51.77.134.89','normal','',0,0,0,0,0,'[]'),(19230,'202.131.224.26','normal','',0,0,0,0,0,'[]'),(19231,'89.252.156.220','normal','',0,0,0,0,0,'[]'),(19232,'85.95.146.83','normal','',0,0,0,0,0,'[]'),(19233,'185.190.140.51','normal','',0,0,0,0,13,'{\"nf\":[1661588766,1661588768,1661588770,1661588771,1661588773,1661588774,1661588775,1661588777,1661588778,1661588779,1661588780,1661588781,1661588782]}'),(19234,'34.243.8.143','normal','',0,0,0,0,0,'[]'),(19235,'62.171.186.70','normal','',0,0,0,0,0,'[]'),(19236,'202.182.104.237','normal','',0,0,0,0,0,'[]'),(19237,'132.145.108.242','normal','',0,0,0,0,1,'{\"nf\":[1661590784]}'),(19238,'124.70.98.118','normal','',0,0,0,0,0,'[]'),(19239,'79.137.64.70','normal','',0,0,0,0,0,'[]'),(19240,'107.152.47.82','normal','',0,0,0,1,0,'{\"login\":[1661692735]}'),(19241,'103.15.51.101','normal','',0,0,0,0,0,'[]'),(19242,'199.250.208.120','normal','',0,0,0,0,0,'[]'),(19243,'5.63.9.54','normal','',0,0,0,1,0,'{\"login\":[1661681493]}'),(19244,'198.136.61.181','normal','',0,0,0,0,0,'[]'),(19245,'97.79.239.127','normal','',0,0,0,1,0,'{\"login\":[1662119152]}'),(19246,'103.171.180.148','normal','',0,0,0,1,0,'{\"login\":[1662066892]}'),(19247,'46.182.4.116','normal','',0,0,0,0,0,'[]'),(19248,'95.179.244.82','normal','',0,0,0,1,0,'{\"login\":[1661687346]}'),(19249,'196.203.63.40','normal','',0,0,0,0,0,'[]'),(19250,'185.156.175.60','normal','',0,0,0,0,0,'[]'),(19251,'87.98.137.177','normal','',0,0,0,0,0,'[]'),(19252,'51.79.242.130','normal','',0,0,0,0,0,'[]'),(19253,'185.215.199.172','normal','',0,0,0,0,0,'[]'),(19254,'196.61.100.19','normal','',0,0,0,0,0,'[]'),(19255,'128.199.159.238','normal','',0,0,0,0,0,'[]'),(19256,'54.38.73.235','normal','',0,0,0,3,0,'{\"login\":[1661615063,1662104313,1662147169]}'),(19257,'124.223.196.50','normal','',0,0,0,0,0,'[]'),(19258,'105.0.7.156','normal','',0,0,0,0,0,'[]'),(19259,'35.85.145.67','normal','',0,0,0,0,0,'[]'),(19260,'34.218.229.70','normal','',0,0,0,0,0,'[]'),(19261,'54.218.248.222','normal','',0,0,0,0,0,'[]'),(19262,'18.236.112.136','normal','',0,0,0,0,0,'[]'),(19263,'207.188.152.209','normal','',0,0,0,1,0,'{\"login\":[1661635649]}'),(19264,'5.45.207.146','normal','',0,0,0,0,0,'[]'),(19265,'116.202.49.153','normal','',0,0,0,0,0,'[]'),(19266,'137.220.51.100','normal','',0,0,0,0,0,'[]'),(19267,'45.76.150.105','normal','',0,0,0,0,0,'[]'),(19268,'13.233.55.217','normal','',0,0,0,0,0,'[]'),(19269,'114.119.131.235','normal','',0,0,0,0,0,'[]'),(19270,'70.34.213.124','normal','',0,0,0,1,0,'{\"login\":[1661693102]}'),(19271,'178.239.172.7','normal','',0,0,0,0,0,'[]'),(19272,'136.243.78.165','normal','',0,0,0,0,0,'[]'),(19273,'38.242.134.36','normal','',0,0,0,2,0,'{\"login\":[1661678062,1661687001]}'),(19274,'162.240.211.236','normal','',0,0,0,1,0,'{\"login\":[1662245903]}'),(19275,'67.207.93.202','normal','',0,0,0,0,0,'[]'),(19276,'203.118.155.133','normal','',0,0,0,1,0,'{\"login\":[1662218607]}'),(19277,'154.53.50.182','normal','',0,0,0,3,0,'{\"login\":[1661677171,1662086611,1662146252]}'),(19278,'200.147.58.28','normal','',0,0,0,0,0,'[]'),(19279,'194.163.148.48','normal','',0,0,0,0,0,'[]'),(19280,'208.97.186.102','normal','',0,0,0,0,0,'[]'),(19281,'38.242.208.110','normal','',0,0,0,1,0,'{\"login\":[1661673732]}'),(19282,'13.229.140.23','normal','',0,0,0,2,0,'{\"login\":[1661676560,1661680798]}'),(19283,'152.89.234.145','normal','',0,0,0,1,0,'{\"login\":[1661679020]}'),(19284,'91.201.215.19','normal','',0,0,0,1,0,'{\"login\":[1661679339]}'),(19285,'103.27.63.56','normal','',0,0,0,2,0,'{\"login\":[1661682712,1661955332]}'),(19286,'142.132.230.128','normal','',0,0,0,1,0,'{\"login\":[1661683013]}'),(19287,'51.79.30.143','normal','',0,0,0,1,0,'{\"login\":[1661684539]}'),(19288,'185.224.198.55','normal','',0,0,0,1,0,'{\"login\":[1661686032]}'),(19289,'72.167.40.72','normal','',0,0,0,0,0,'[]'),(19290,'18.228.157.212','normal','',0,0,0,0,0,'[]'),(19291,'157.245.45.127','normal','',0,0,0,0,0,'[]'),(19292,'45.32.251.180','normal','',0,0,0,0,0,'[]'),(19293,'3.8.114.227','normal','',0,0,0,0,0,'[]'),(19294,'172.105.71.7','normal','',0,0,0,0,0,'[]'),(19295,'74.208.18.17','normal','',0,0,0,0,0,'[]'),(19296,'66.249.66.19','normal','',0,0,0,0,0,'[]'),(19297,'102.132.200.139','normal','',0,0,0,0,0,'[]'),(19298,'213.152.161.118','normal','',0,0,0,0,0,'[]'),(19299,'20.38.12.4','normal','',0,0,0,0,5,'{\"nf\":[1661709574,1661709577,1661709581,1661709585,1661709588]}'),(19300,'185.244.175.30','normal','',0,0,0,0,3,'{\"nf\":[1661720128,1661740893,1661778959]}'),(19301,'34.220.167.1','normal','',0,0,0,0,0,'[]'),(19302,'17.121.114.101','normal','',0,0,0,0,0,'[]'),(19303,'147.78.47.249','normal','',0,0,0,0,5,'{\"nf\":[1661727548,1661727552,1662829108,1662829111,1662829116]}'),(19304,'152.32.168.168','normal','',0,0,0,3,0,'{\"login\":[1661752773,1661821697,1661831229]}'),(19305,'165.22.200.76','normal','',0,0,0,6,0,'{\"login\":[1661753151,1661771139,1661777734,1661789675,1661803389,1661839143]}'),(19306,'107.170.147.229','normal','',0,0,0,5,0,'{\"login\":[1661753209,1661756768,1661762728,1661815425,1661845253]}'),(19307,'213.165.68.99','normal','',0,0,0,4,0,'{\"login\":[1661753546,1661795148,1661814168,1661820937]}'),(19308,'217.170.198.16','normal','',0,0,0,2,0,'{\"login\":[1661753906,1661755503]}'),(19309,'103.130.218.163','normal','',0,0,0,3,0,'{\"login\":[1661754357,1661791253,1661792042]}'),(19310,'77.68.75.246','normal','',0,0,0,6,0,'{\"login\":[1661754438,1661781762,1661797123,1661800589,1661836997,1661841350]}'),(19311,'40.77.104.142','normal','',0,0,0,3,0,'{\"login\":[1661754601,1661770333,1661815155]}'),(19312,'208.113.235.82','normal','',0,0,0,6,0,'{\"login\":[1661754722,1661767611,1661768163,1661794948,1661809581,1661811826]}'),(19313,'34.172.131.247','normal','',0,0,0,3,0,'{\"login\":[1661755281,1661767751,1661785169]}'),(19314,'148.251.78.9','normal','',0,0,0,10,0,'{\"login\":[1661755961,1661757081,1661765921,1661777152,1661819262,1661827157,1661834595,1661836232,1661843685,1661844210]}'),(19315,'159.223.51.109','normal','',0,0,0,2,0,'{\"login\":[1661756143,1661837730]}'),(19316,'167.172.18.15','normal','',0,0,0,2,0,'{\"login\":[1661756403,1661770997]}'),(19317,'51.140.205.50','normal','',0,0,0,0,9,'{\"nf\":[1661756492,1661756496,1661756521,1661756525,1661756528,1661756532,1661756570,1661756629,1661756635]}'),(19318,'77.222.57.72','normal','',0,0,0,3,0,'{\"login\":[1661756643,1661758913,1661762222]}'),(19319,'159.69.157.235','normal','',0,0,0,5,0,'{\"login\":[1661756995,1661785301,1661788566,1661792254,1661809311]}'),(19320,'135.181.35.131','normal','',0,0,0,0,1,'{\"nf\":[1661759308]}'),(19321,'165.22.214.166','normal','',0,0,0,1,0,'{\"login\":[1661759810]}'),(19322,'161.97.117.21','normal','',0,0,0,1,0,'{\"login\":[1661835669]}'),(19323,'34.125.68.105','normal','',0,0,0,4,0,'{\"login\":[1661761652,1661782220,1661808319,1661815704]}'),(19324,'139.60.30.13','normal','',0,0,0,3,0,'{\"login\":[1661761938,1661781582,1661820510]}'),(19325,'80.77.225.13','normal','',0,0,0,3,0,'{\"login\":[1661763082,1661769173,1661776493]}'),(19326,'103.160.78.178','normal','',0,0,0,3,0,'{\"login\":[1661763655,1661810509,1661818815]}'),(19327,'85.128.143.95','normal','',0,0,0,1,0,'{\"login\":[1661764715]}'),(19328,'181.214.152.11','normal','',0,0,0,8,0,'{\"login\":[1661766060,1661781107,1661791356,1661802823,1661810230,1661818087,1661820666,1661824473]}'),(19329,'213.147.125.107','normal','',0,0,0,5,0,'{\"login\":[1661766508,1661774596,1661781871,1661796177,1661840538]}'),(19330,'70.37.161.251','normal','',0,0,0,2,0,'{\"login\":[1661766867,1661813919]}'),(19331,'54.213.131.154','normal','',0,0,0,1,0,'{\"login\":[1661767055]}'),(19332,'143.198.161.92','normal','',0,0,0,2,0,'{\"login\":[1661768485,1661786657]}'),(19333,'185.85.188.254','normal','',0,0,0,6,0,'{\"login\":[1661769279,1661777936,1661788909,1661792356,1661799832,1661816387]}'),(19334,'194.60.201.70','normal','',0,0,0,8,0,'{\"login\":[1661770040,1661775877,1661792927,1661808419,1661808688,1661823583,1661832504,1661843830]}'),(19335,'185.70.94.183','normal','',0,0,0,7,0,'{\"login\":[1661770143,1661776364,1661780520,1661788234,1661804952,1661828673,1661834763]}'),(19336,'13.126.254.135','normal','',0,0,0,6,0,'{\"login\":[1661770833,1661773025,1661794017,1661813515,1661821405,1661828219]}'),(19337,'159.69.75.178','normal','',0,0,0,5,0,'{\"login\":[1661772274,1661793452,1661796588,1661805215,1661811577]}'),(19338,'85.128.143.112','normal','',0,0,0,1,0,'{\"login\":[1661773292]}'),(19339,'36.93.7.178','normal','',0,0,0,2,0,'{\"login\":[1661776981,1661811737]}'),(19340,'34.176.45.106','normal','',0,0,0,3,0,'{\"login\":[1661777325,1661794678,1661800287]}'),(19341,'192.241.158.94','normal','',0,0,0,3,0,'{\"login\":[1661778686,1661789381,1661795274]}'),(19342,'85.128.143.55','normal','',0,0,0,2,0,'{\"login\":[1661779041,1661795508]}'),(19343,'185.191.171.4','normal','',0,0,0,0,0,'[]'),(19344,'13.235.237.114','normal','',0,0,0,4,0,'{\"login\":[1661780596,1661794779,1661808885,1661809793]}'),(19345,'185.210.92.239','normal','',0,0,0,2,0,'{\"login\":[1661780869,1661783854]}'),(19346,'212.77.32.166','normal','',0,0,0,7,0,'{\"login\":[1661780959,1661782550,1661782893,1661791794,1661793535,1661795369,1661804489]}'),(19347,'137.184.224.10','normal','',0,0,0,2,0,'{\"login\":[1661783383,1661799947]}'),(19348,'185.185.85.130','normal','',0,0,0,1,0,'{\"login\":[1661784079]}'),(19349,'40.77.107.181','normal','',0,0,0,4,0,'{\"login\":[1661786993,1661791480,1661804114,1661840374]}'),(19350,'90.156.168.79','normal','',0,0,0,5,0,'{\"login\":[1661787229,1661797330,1661821982,1661823318,1661839550]}'),(19351,'52.58.225.188','normal','',0,0,0,2,0,'{\"login\":[1661789255,1661794258]}'),(19352,'165.227.169.86','normal','',0,0,0,1,0,'{\"login\":[1661789488]}'),(19353,'162.241.121.36','normal','',0,0,0,1,0,'{\"login\":[1661790257]}'),(19354,'5.175.45.158','normal','',0,0,0,1,0,'{\"login\":[1661790480]}'),(19355,'46.38.249.150','normal','',0,0,0,3,0,'{\"login\":[1661794591,1661795649,1661803254]}'),(19356,'185.10.198.9','normal','',0,0,0,3,0,'{\"login\":[1661796839,1661816813,1661822702]}'),(19357,'85.128.143.150','normal','',0,0,0,1,0,'{\"login\":[1661798910]}'),(19358,'54.37.23.176','normal','',0,0,0,3,0,'{\"login\":[1661799585,1661811355,1661817575]}'),(19359,'46.4.81.203','normal','',0,0,0,2,0,'{\"login\":[1661801291,1661829705]}'),(19360,'101.43.63.214','normal','',0,0,0,1,0,'{\"login\":[1661801870]}'),(19361,'54.149.198.238','normal','',0,0,0,0,0,'[]'),(19362,'124.221.205.249','normal','',0,0,0,5,0,'{\"login\":[1661812271,1661819550,1661822595,1661824658,1661828573]}'),(19363,'13.124.211.4','normal','',0,0,0,4,0,'{\"login\":[1661815511,1661820095,1661827583,1661834074]}'),(19364,'192.185.4.46','normal','',0,0,0,0,1,'{\"nf\":[1662442141]}'),(19365,'20.169.19.209','normal','',0,0,0,0,7,'{\"nf\":[1661830936,1661830940,1661830941,1661830944,1661830945,1661830947,1661830948]}'),(19366,'114.119.148.208','normal','',0,0,0,0,0,'[]'),(19367,'135.181.250.89','normal','',0,0,0,0,0,'[]'),(19368,'184.169.255.94','normal','',0,0,0,0,0,'[]'),(19369,'66.249.93.85','normal','',0,0,0,0,10,'{\"nf\":[1661845253,1661871705,1661958480,1662042605,1662386100,1662397799,1662447328,1662467326,1662480628,1662730788]}'),(19370,'146.232.199.253','normal','',0,0,0,0,0,'[]'),(19371,'41.76.132.114','normal','',0,0,0,0,0,'[]'),(19372,'105.184.33.61','normal','',0,0,0,0,0,'[]'),(19373,'20.169.16.125','normal','',0,0,0,0,0,'[]'),(19374,'54.190.61.241','normal','',0,0,0,0,0,'[]'),(19375,'114.119.130.178','normal','',0,0,0,0,0,'[]'),(19376,'168.138.147.77','normal','',0,0,0,0,1,'{\"nf\":[1661930460]}'),(19377,'34.219.60.247','normal','',0,0,0,0,0,'[]'),(19378,'212.16.164.132','normal','',0,0,0,0,1,'{\"nf\":[1661935577]}'),(19379,'13.92.194.185','normal','',0,0,0,0,1,'{\"nf\":[1661938488]}'),(19380,'41.60.102.219','normal','',0,0,0,0,0,'[]'),(19381,'139.59.228.23','normal','',0,0,0,0,0,'[]'),(19382,'92.205.110.137','normal','',0,0,0,0,0,'[]'),(19383,'69.30.242.170','normal','',0,0,0,0,0,'[]'),(19384,'61.219.171.85','normal','',0,0,0,1,0,'{\"login\":[1662261592]}'),(19385,'194.35.120.82','normal','',0,0,0,0,0,'[]'),(19386,'72.52.228.2','normal','',0,0,0,0,0,'[]'),(19387,'216.48.178.76','normal','',0,0,0,0,0,'[]'),(19388,'175.103.49.10','normal','',0,0,0,1,0,'{\"login\":[1662206899]}'),(19389,'142.93.203.19','normal','',0,0,0,0,0,'[]'),(19390,'13.56.159.58','normal','',0,0,0,0,0,'[]'),(19391,'81.161.229.59','normal','',0,0,0,0,0,'[]'),(19392,'105.185.155.239','normal','',0,0,0,0,0,'[]'),(19393,'102.141.161.120','normal','',0,0,0,0,0,'[]'),(19394,'34.209.148.211','normal','',0,0,0,0,0,'[]'),(19395,'35.87.198.181','normal','',0,0,0,0,0,'[]'),(19396,'18.237.66.149','normal','',0,0,0,0,0,'[]'),(19397,'149.56.29.121','normal','',0,0,0,1,1,'{\"nf\":[1661980660],\"login\":[1662104538]}'),(19398,'208.67.106.91','normal','',0,0,0,0,4,'{\"nf\":[1661984417,1661984428,1662406005,1662406017]}'),(19399,'107.173.248.162','normal','',0,0,0,0,0,'[]'),(19400,'81.19.140.13','normal','',0,0,0,0,1,'{\"nf\":[1661993118]}'),(19401,'81.19.140.13','normal','',0,0,0,0,1,'{\"nf\":[1661993118]}'),(19402,'207.180.231.208','normal','',0,0,0,1,0,'{\"login\":[1662006568]}'),(19403,'23.239.3.24','normal','',0,0,0,1,0,'{\"login\":[1662016421]}'),(19404,'105.224.233.96','normal','',0,0,0,0,0,'[]'),(19405,'165.0.74.34','normal','',0,0,0,0,0,'[]'),(19406,'135.181.207.166','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1662018688,0,1662018388,0,20,'{\"nf\":[1662018194,1662018197,1662018200,1662018215,1662018218,1662018224,1662018233,1662018242,1662018245,1662018261,1662018264,1662018267,1662018274,1662018275,1662018281,1662018309,1662018310,1662018330,1662018335,1662018388]}'),(19407,'197.245.68.13','normal','',0,0,0,0,0,'[]'),(19408,'105.225.42.184','normal','',0,0,0,0,1,'{\"nf\":[1662019383]}'),(19409,'54.190.183.202','normal','',0,0,0,0,1,'{\"nf\":[1662020215]}'),(19410,'18.236.116.90','normal','',0,0,0,0,0,'[]'),(19411,'173.212.240.76','normal','',0,0,0,1,0,'{\"login\":[1662021591]}'),(19412,'194.163.179.2','normal','',0,0,0,1,0,'{\"login\":[1662025706]}'),(19413,'114.119.130.253','normal','',0,0,0,0,0,'[]'),(19414,'82.118.29.88','blocked','You have been locked out due to too many invalid login attempts.',1662041242,1662040942,0,5,0,'{\"login\":[1662040937,1662040938,1662040939,1662040940,1662040941]}'),(19415,'45.139.10.72','normal','',0,0,0,0,2,'{\"nf\":[1662049274,1662295003]}'),(19416,'106.14.30.59','normal','',0,0,0,0,7,'{\"nf\":[1662049512,1662318528,1662318533,1662407217,1662428906,1662428907,1662939404]}'),(19417,'193.202.110.17','normal','',0,0,0,0,13,'{\"nf\":[1662053687,1662054615,1662071713,1662194791,1662241749,1662279470,1662386787,1662395977,1662426737,1662635014,1662655489,1662681232,1662968520]}'),(19418,'20.213.114.115','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1662056448,0,1662056148,0,20,'{\"nf\":[1662056098,1662056100,1662056102,1662056105,1662056107,1662056109,1662056112,1662056114,1662056115,1662056117,1662056120,1662056122,1662056131,1662056132,1662056135,1662056141,1662056142,1662056144,1662056146,1662056148]}'),(19419,'142.93.5.147','normal','',0,0,0,0,4,'{\"nf\":[1662058123,1662294413,1662370070,1662403891]}'),(19420,'41.177.109.242','normal','',0,0,0,0,0,'[]'),(19421,'78.46.90.183','normal','',0,0,0,0,4,'{\"nf\":[1662062680,1662126269,1662226258,1662245797]}'),(19422,'35.89.26.8','normal','',0,0,0,0,0,'[]'),(19423,'35.85.138.207','normal','',0,0,0,0,0,'[]'),(19424,'34.211.58.165','normal','',0,0,0,0,0,'[]'),(19425,'35.90.121.229','normal','',0,0,0,0,0,'[]'),(19426,'162.241.24.23','normal','',0,0,0,0,2,'{\"nf\":[1662068993,1662304362]}'),(19427,'156.235.189.78','normal','',0,0,0,0,1,'{\"nf\":[1662072375]}'),(19428,'45.124.87.180','normal','',0,0,0,0,3,'{\"nf\":[1662074990,1662074995,1662426217]}'),(19429,'47.242.250.194','normal','',0,0,0,0,3,'{\"nf\":[1662083561,1662083561,1662247276]}'),(19430,'173.212.246.178','normal','',0,0,0,0,0,'[]'),(19431,'185.216.113.80','normal','',0,0,0,0,3,'{\"nf\":[1662091726,1662135728,1662378642]}'),(19432,'93.188.2.5','normal','',0,0,0,0,6,'{\"nf\":[1662092735,1662092739,1662215470,1662313660,1662394553,1662592445]}'),(19433,'5.196.26.210','normal','',0,0,0,0,3,'{\"nf\":[1662211501,1662568219,1662632508]}'),(19434,'17.121.114.77','normal','',0,0,0,0,0,'[]'),(19435,'194.163.35.152','normal','',0,0,0,1,0,'{\"login\":[1662097884]}'),(19436,'193.202.110.30','normal','',0,0,0,0,16,'{\"nf\":[1662101851,1662137452,1662197618,1662203312,1662206927,1662224867,1662313450,1662319814,1662365712,1662366806,1662379496,1662381246,1662630084,1662666667,1662682069,1662697560]}'),(19437,'88.99.240.227','normal','',0,0,0,1,0,'{\"login\":[1662102425]}'),(19438,'41.164.31.226','normal','',0,0,0,0,0,'[]'),(19439,'141.94.74.98','normal','',0,0,0,1,0,'{\"login\":[1662103678]}'),(19440,'114.119.137.82','normal','',0,0,0,0,0,'[]'),(19441,'45.222.27.243','normal','',0,0,0,0,0,'[]'),(19442,'194.233.73.0','normal','',0,0,0,1,0,'{\"login\":[1662114503]}'),(19443,'45.222.124.38','normal','',0,0,0,1,0,'{\"login\":[1662115644]}'),(19444,'20.242.85.96','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1662117260,0,1662116960,0,20,'{\"nf\":[1662116901,1662116902,1662116904,1662116906,1662116907,1662116909,1662116911,1662116914,1662116915,1662116917,1662116941,1662116943,1662116946,1662116947,1662116949,1662116950,1662116953,1662116956,1662116958,1662116959]}'),(19445,'108.167.189.76','normal','',0,0,0,0,7,'{\"nf\":[1662118427,1662119337,1662138450,1662144742,1662218833,1662232535,1662417409]}'),(19446,'108.167.189.22','normal','',0,0,0,0,6,'{\"nf\":[1662120271,1662120273,1662241859,1662286674,1662310146,1662540465]}'),(19447,'105.233.66.117','normal','',0,0,0,0,0,'[]'),(19448,'102.69.132.125','normal','',0,0,0,0,0,'[]'),(19449,'195.201.201.63','normal','',0,0,0,0,0,'[]'),(19450,'195.201.201.60','normal','',0,0,0,0,0,'[]'),(19451,'195.201.201.61','normal','',0,0,0,0,2,'{\"nf\":[1662124957,1662396946]}'),(19452,'195.201.201.62','normal','',0,0,0,0,2,'{\"nf\":[1662124957,1662396945]}'),(19453,'103.1.238.36','normal','',0,0,0,1,0,'{\"login\":[1662125664]}'),(19454,'107.189.2.3','normal','',0,0,0,0,4,'{\"nf\":[1662126577,1662241820,1662241833,1662664237]}'),(19455,'108.167.133.21','normal','',0,0,0,0,3,'{\"nf\":[1662131012,1662647815,1662647820]}'),(19456,'159.223.94.52','normal','',0,0,0,1,0,'{\"login\":[1662134893]}'),(19457,'193.202.110.23','normal','',0,0,0,0,4,'{\"nf\":[1662136648,1662312238,1662373895,1662426828]}'),(19458,'209.145.54.181','normal','',0,0,0,1,0,'{\"login\":[1662137558]}'),(19459,'34.76.63.113','normal','',0,0,0,3,0,'{\"login\":[1662138091,1662883541,1663018159]}'),(19460,'162.212.131.138','normal','',0,0,0,0,5,'{\"nf\":[1662139538,1662233301,1662249742,1662294736,1662416915]}'),(19461,'144.76.55.212','normal','',0,0,0,1,0,'{\"login\":[1662140524]}'),(19462,'43.252.212.214','normal','',0,0,0,0,6,'{\"nf\":[1662141780,1662164168,1662229267,1662245891,1662245896,1662625054]}'),(19463,'185.43.220.16','normal','',0,0,0,2,0,'{\"login\":[1662143123,1662233394]}'),(19464,'81.88.49.11','normal','',0,0,0,0,2,'{\"nf\":[1662145410,1662395622]}'),(19465,'54.38.145.151','normal','',0,0,0,1,0,'{\"login\":[1662145456]}'),(19466,'112.213.89.168','normal','',0,0,0,2,0,'{\"login\":[1662147828,1662162324]}'),(19467,'185.169.252.32','normal','',0,0,0,1,0,'{\"login\":[1662148543]}'),(19468,'51.79.176.106','normal','',0,0,0,1,0,'{\"login\":[1662150177]}'),(19469,'64.227.160.56','normal','',0,0,0,2,0,'{\"login\":[1662152006,1662239460]}'),(19470,'34.221.114.107','normal','',0,0,0,0,0,'[]'),(19471,'160.153.155.15','normal','',0,0,0,0,1,'{\"nf\":[1662158110]}'),(19472,'78.128.8.8','normal','',0,0,0,1,0,'{\"login\":[1662159990]}'),(19473,'173.252.127.13','normal','',0,0,0,0,0,'[]'),(19474,'31.13.127.17','normal','',0,0,0,0,0,'[]'),(19475,'31.13.127.22','normal','',0,0,0,0,0,'[]'),(19476,'103.152.164.103','normal','',0,0,0,1,0,'{\"login\":[1662176398]}'),(19477,'8.210.68.127','normal','',0,0,0,0,6,'{\"nf\":[1662180125,1662297397,1662297401,1662372709,1662372711,1662603161]}'),(19478,'135.181.248.204','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1662182592,0,1662182292,0,20,'{\"nf\":[1662182174,1662182179,1662182185,1662182189,1662182196,1662182201,1662182203,1662182205,1662182207,1662182239,1662182244,1662182249,1662182254,1662182257,1662182261,1662182262,1662182274,1662182281,1662182288,1662182292]}'),(19479,'207.188.152.47','normal','',0,0,0,1,0,'{\"login\":[1662183657]}'),(19480,'207.148.113.34','normal','',0,0,0,0,2,'{\"nf\":[1662185187,1662386878]}'),(19481,'193.202.110.24','normal','',0,0,0,0,6,'{\"nf\":[1662188550,1662211337,1662249129,1662347281,1662352008,1662667276]}'),(19482,'173.252.83.3','normal','',0,0,0,0,0,'[]'),(19483,'173.252.83.118','normal','',0,0,0,0,0,'[]'),(19484,'114.119.136.234','normal','',0,0,0,0,0,'[]'),(19485,'51.79.70.225','normal','',0,0,0,0,4,'{\"nf\":[1662201907,1662243310,1662342992,1662561571]}'),(19486,'207.46.13.176','normal','',0,0,0,0,0,'[]'),(19487,'23.100.7.152','normal','',0,0,0,0,1,'{\"nf\":[1662204187]}'),(19488,'94.31.85.87','normal','',0,0,0,0,0,'[]'),(19489,'87.107.161.195','normal','',0,0,0,1,0,'{\"login\":[1662209764]}'),(19490,'79.139.61.190','normal','',0,0,0,1,0,'{\"login\":[1662210688]}'),(19491,'199.244.88.218','normal','',0,0,0,0,0,'[]'),(19492,'93.157.100.49','normal','',0,0,0,0,4,'{\"nf\":[1662217005,1662217005,1662652370,1662672604]}'),(19493,'185.244.175.156','normal','',0,0,0,6,0,'{\"login\":[1662225410,1662231926,1662326698,1662333891,1662343170,1662350794]}'),(19494,'17.121.112.29','normal','',0,0,0,0,0,'[]'),(19495,'160.153.156.34','normal','',0,0,0,0,2,'{\"nf\":[1662228374,1662228377]}'),(19496,'103.180.120.176','normal','',0,0,0,2,0,'{\"login\":[1662228493,1662259259]}'),(19497,'123.30.139.93','normal','',0,0,0,0,1,'{\"nf\":[1662229247]}'),(19498,'139.180.208.212','normal','',0,0,0,1,0,'{\"login\":[1662229877]}'),(19499,'103.130.216.111','normal','',0,0,0,1,0,'{\"login\":[1662232687]}'),(19500,'71.19.150.197','normal','',0,0,0,0,1,'{\"nf\":[1662232845]}'),(19501,'46.161.27.155','normal','',0,0,0,20,4,'{\"nf\":[1662235570,1662235571,1662769143,1662769146],\"login\":[1662332634,1662334716,1662335039,1662335355,1662335432,1662349203,1662496064,1662496340,1662496980,1662586041,1662609835,1662612594,1662621716,1662639982,1662644994,1662660634,1662676587,1662696719,1662706202,1662709429]}'),(19502,'103.166.182.177','normal','',0,0,0,2,0,'{\"login\":[1662236246,1662247930]}'),(19503,'35.90.23.54','normal','',0,0,0,0,0,'[]'),(19504,'148.72.246.134','normal','',0,0,0,0,2,'{\"nf\":[1662239204,1662960650]}'),(19505,'162.55.12.243','normal','',0,0,0,1,0,'{\"login\":[1662254413]}'),(19506,'156.155.57.110','normal','',0,0,0,0,0,'[]'),(19507,'85.95.248.49','normal','',0,0,0,0,0,'[]'),(19508,'192.185.4.133','normal','',0,0,0,0,2,'{\"nf\":[1662280590,1662365698]}'),(19509,'198.46.81.36','normal','',0,0,0,0,0,'[]'),(19510,'101.53.148.172','normal','',0,0,0,0,0,'[]'),(19511,'198.71.235.49','normal','',0,0,0,0,1,'{\"nf\":[1662289087]}'),(19512,'45.137.195.114','normal','',0,0,0,0,0,'[]'),(19513,'61.222.243.149','normal','',0,0,0,1,0,'{\"login\":[1662884797]}'),(19514,'20.92.87.77','normal','',0,0,0,0,8,'{\"nf\":[1662298794,1662298799,1662381522,1662381536,1662381546,1662381560,1662453458,1662453466]}'),(19515,'209.97.172.236','normal','',0,0,0,0,2,'{\"nf\":[1662299263,1662539984]}'),(19516,'195.202.64.249','normal','',0,0,0,0,0,'[]'),(19517,'64.68.203.173','normal','',0,0,0,0,0,'[]'),(19518,'104.248.31.191','normal','',0,0,0,0,0,'[]'),(19519,'67.227.144.242','normal','',0,0,0,0,2,'{\"nf\":[1662316556,1662695825]}'),(19520,'208.109.226.82','normal','',0,0,0,0,1,'{\"nf\":[1662318352]}'),(19521,'35.162.212.163','normal','',0,0,0,0,0,'[]'),(19522,'35.86.82.44','normal','',0,0,0,0,0,'[]'),(19523,'35.89.63.66','normal','',0,0,0,0,0,'[]'),(19524,'46.161.27.153','normal','',0,0,0,21,0,'{\"login\":[1662332970,1662333853,1662347902,1662348759,1662495385,1662496792,1662498426,1662576967,1662601237,1662604085,1662624735,1662627873,1662648151,1662651290,1662654422,1662666947,1662673367,1662683259,1662693506,1662699940,1662712617]}'),(19525,'46.161.27.156','normal','',0,0,0,17,2,'{\"login\":[1662334554,1662348361,1662496271,1662498946,1662499752,1662562417,1662567976,1662573940,1662582952,1662615541,1662636960,1662657537,1662670085,1662679943,1662686721,1662690182,1662703074],\"nf\":[1663118093,1663118095]}'),(19526,'198.235.24.181','normal','',0,0,0,0,0,'[]'),(19527,'81.88.49.4','normal','',0,0,0,0,1,'{\"nf\":[1662335096]}'),(19528,'159.223.173.153','normal','',0,0,0,0,0,'[]'),(19529,'81.88.49.10','normal','',0,0,0,0,1,'{\"nf\":[1662339725]}'),(19530,'45.78.9.73','normal','',0,0,0,0,0,'[]'),(19531,'52.172.249.199','normal','',0,0,0,0,1,'{\"nf\":[1662361491]}'),(19532,'196.251.238.60','normal','',0,0,0,0,0,'[]'),(19533,'196.251.238.60','normal','',0,0,0,0,0,'[]'),(19534,'105.226.30.116','normal','',0,0,0,0,0,'[]'),(19535,'103.142.255.1','normal','',0,0,0,1,0,'{\"login\":[1662370487]}'),(19536,'116.92.222.106','normal','',0,0,0,0,2,'{\"nf\":[1662372665,1662770214]}'),(19537,'41.87.201.181','normal','',0,0,0,0,0,'[]'),(19538,'23.231.12.241','normal','',0,0,0,0,0,'[]'),(19539,'51.103.45.197','normal','',0,0,0,0,4,'{\"nf\":[1662378611,1662438234,1662480140,1662532259]}'),(19540,'43.251.134.54','normal','',0,0,0,1,0,'{\"login\":[1662381669]}'),(19541,'196.19.244.250','normal','',0,0,0,0,0,'[]'),(19542,'81.88.49.15','normal','',0,0,0,0,1,'{\"nf\":[1662395630]}'),(19543,'78.135.107.79','normal','',0,0,0,0,2,'{\"nf\":[1662398461,1662428082]}'),(19544,'205.210.31.172','normal','',0,0,0,0,0,'[]'),(19545,'77.68.93.72','normal','',0,0,0,0,1,'{\"nf\":[1662406488]}'),(19546,'54.213.227.216','normal','',0,0,0,0,0,'[]'),(19547,'35.206.153.39','normal','',0,0,0,0,0,'[]'),(19548,'20.169.38.26','normal','',0,0,0,0,1,'{\"nf\":[1662429637]}'),(19549,'3.67.39.56','normal','',0,0,0,0,1,'{\"nf\":[1662436010]}'),(19550,'41.71.10.82','normal','',0,0,0,0,0,'[]'),(19551,'223.247.178.167','normal','',0,0,0,0,0,'[]'),(19552,'105.224.233.252','normal','',0,0,0,0,0,'[]'),(19553,'64.246.165.50','normal','',0,0,0,0,0,'[]'),(19554,'195.8.221.247','normal','',0,0,0,0,0,'[]'),(19555,'195.8.221.247','normal','',0,0,0,0,0,'[]'),(19556,'171.244.141.175','normal','',0,0,0,0,0,'[]'),(19557,'46.242.238.35','normal','',0,0,0,0,0,'[]'),(19558,'103.27.34.44','normal','',0,0,0,0,0,'[]'),(19559,'185.112.158.36','normal','',0,0,0,0,0,'[]'),(19560,'91.142.254.95','normal','',0,0,0,0,0,'[]'),(19561,'66.175.52.110','normal','',0,0,0,0,0,'[]'),(19562,'149.210.196.80','normal','',0,0,0,0,0,'[]'),(19563,'149.210.196.80','normal','',0,0,0,0,0,'[]'),(19564,'182.50.132.107','normal','',0,0,0,0,0,'[]'),(19565,'132.148.120.34','normal','',0,0,0,0,0,'[]'),(19566,'81.88.49.9','normal','',0,0,0,0,1,'{\"nf\":[1662445524]}'),(19567,'82.118.29.236','normal','',0,0,0,0,0,'[]'),(19568,'178.62.58.77','normal','',0,0,0,0,1,'{\"nf\":[1662479942]}'),(19569,'102.39.153.247','normal','',0,0,0,0,0,'[]'),(19570,'102.39.153.247','normal','',0,0,0,0,0,'[]'),(19571,'52.38.13.175','normal','',0,0,0,0,0,'[]'),(19572,'152.160.242.242','normal','',0,0,0,0,0,'[]'),(19573,'103.28.36.108','normal','',0,0,0,0,1,'{\"nf\":[1662531091]}'),(19574,'184.168.101.41','normal','',0,0,0,0,1,'{\"nf\":[1662531097]}'),(19575,'47.242.237.21','normal','',0,0,0,0,3,'{\"nf\":[1662532508,1662582492,1662582497]}'),(19576,'104.198.20.109','normal','',0,0,0,0,1,'{\"nf\":[1662534402]}'),(19577,'165.232.187.231','normal','',0,0,0,0,1,'{\"nf\":[1662534459]}'),(19578,'162.215.117.164','normal','',0,0,0,0,1,'{\"nf\":[1662534807]}'),(19579,'123.56.21.243','normal','',0,0,0,0,2,'{\"nf\":[1662536394,1662536401]}'),(19580,'69.49.241.76','normal','',0,0,0,0,1,'{\"nf\":[1662538524]}'),(19581,'104.248.88.192','normal','',0,0,0,0,2,'{\"nf\":[1662541356,1662685651]}'),(19582,'161.35.79.185','normal','',0,0,0,0,1,'{\"nf\":[1662544932]}'),(19583,'103.143.206.78','normal','',0,0,0,0,1,'{\"nf\":[1662546293]}'),(19584,'103.143.206.78','normal','',0,0,0,0,1,'{\"nf\":[1662546293]}'),(19585,'34.222.146.106','normal','',0,0,0,0,0,'[]'),(19586,'139.162.215.14','normal','',0,0,0,0,0,'[]'),(19587,'188.40.126.140','normal','',0,0,0,0,1,'{\"nf\":[1662566078]}'),(19588,'197.229.2.96','normal','',0,0,0,0,2,'{\"nf\":[1662566131,1662566132]}'),(19589,'43.242.128.33','normal','',0,0,0,0,1,'{\"nf\":[1662567291]}'),(19590,'20.246.89.31','normal','',0,0,0,0,1,'{\"nf\":[1662569149]}'),(19591,'38.242.217.26','normal','',0,0,0,0,2,'{\"nf\":[1662575277,1662616575]}'),(19592,'154.53.48.175','normal','',0,0,0,0,1,'{\"nf\":[1662577932]}'),(19593,'51.254.215.154','normal','',0,0,0,0,4,'{\"nf\":[1662583757,1662583823,1662583837,1662583859]}'),(19594,'176.9.89.109','normal','',0,0,0,0,2,'{\"nf\":[1662590935,1662935498]}'),(19595,'178.254.0.82','normal','',0,0,0,0,2,'{\"nf\":[1662586301,1662649093]}'),(19596,'178.60.58.81','normal','',0,0,0,0,6,'{\"nf\":[1662586684,1662586688,1662589195,1662601106,1662692247,1662692249]}'),(19597,'51.79.17.76','normal','',0,0,0,0,1,'{\"nf\":[1662593078]}'),(19598,'93.158.91.252','normal','',0,0,0,0,0,'[]'),(19599,'93.158.91.249','normal','',0,0,0,0,1,'{\"nf\":[1662596350]}'),(19600,'35.247.97.136','normal','',0,0,0,0,0,'[]'),(19601,'103.92.27.198','normal','',0,0,0,0,0,'[]'),(19602,'156.67.216.171','normal','',0,0,0,0,3,'{\"nf\":[1662603535,1662603537,1662935333]}'),(19603,'162.241.203.232','normal','',0,0,0,0,0,'[]'),(19604,'162.241.224.182','normal','',0,0,0,0,0,'[]'),(19605,'67.20.76.247','normal','',0,0,0,0,0,'[]'),(19606,'162.241.62.127','normal','',0,0,0,0,1,'{\"nf\":[1662613864]}'),(19607,'87.117.225.32','normal','',0,0,0,0,0,'[]'),(19608,'128.199.203.239','normal','',0,0,0,0,0,'[]'),(19609,'208.109.76.101','normal','',0,0,0,0,1,'{\"nf\":[1662620298]}'),(19610,'207.244.246.140','normal','',0,0,0,0,0,'[]'),(19611,'103.27.238.234','normal','',0,0,0,0,0,'[]'),(19612,'18.224.85.64','normal','',0,0,0,0,0,'[]'),(19613,'68.183.53.120','normal','',0,0,0,0,2,'{\"nf\":[1662623993,1662656903]}'),(19614,'103.148.156.230','normal','',0,0,0,0,0,'[]'),(19615,'82.165.88.225','normal','',0,0,0,0,1,'{\"nf\":[1662629200]}'),(19616,'45.85.146.176','normal','',0,0,0,0,0,'[]'),(19617,'207.46.13.172','normal','',0,0,0,0,0,'[]'),(19618,'46.253.243.143','normal','',0,0,0,0,5,'{\"nf\":[1662632960,1662632961,1662632962,1662632966,1662632969]}'),(19619,'52.144.59.143','normal','',0,0,0,0,0,'[]'),(19620,'122.132.222.224','normal','',0,0,0,0,0,'[]'),(19621,'185.104.44.133','normal','',0,0,0,0,1,'{\"nf\":[1662634608]}'),(19622,'108.167.189.65','normal','',0,0,0,0,1,'{\"nf\":[1662646901]}'),(19623,'103.98.152.12','normal','',0,0,0,0,0,'[]'),(19624,'3.141.70.212','normal','',0,0,0,0,2,'{\"nf\":[1662641539,1662641549]}'),(19625,'134.249.214.107','normal','',0,0,0,0,15,'{\"nf\":[1662645139,1662645142,1662645145,1662645148,1662645150,1662645151,1662645156,1662645159,1662645161,1662645164,1662645165,1662645168,1662645171,1662645173,1662645174]}'),(19626,'128.199.179.16','normal','',0,0,0,0,3,'{\"nf\":[1662649421,1662649496,1662649503]}'),(19627,'81.88.52.166','normal','',0,0,0,0,0,'[]'),(19628,'207.46.13.168','normal','',0,0,0,0,0,'[]'),(19629,'108.167.189.29','normal','',0,0,0,0,1,'{\"nf\":[1662658969]}'),(19630,'85.10.156.14','normal','',0,0,0,0,1,'{\"nf\":[1662662060]}'),(19631,'60.249.78.68','normal','',0,0,0,0,0,'[]'),(19632,'160.153.153.19','normal','',0,0,0,0,2,'{\"nf\":[1662663986,1662663987]}'),(19633,'162.144.3.171','normal','',0,0,0,0,1,'{\"nf\":[1662666060]}'),(19634,'139.59.98.113','normal','',0,0,0,0,1,'{\"nf\":[1662673906]}'),(19635,'198.71.236.1','normal','',0,0,0,0,1,'{\"nf\":[1662675450]}'),(19636,'50.63.167.184','normal','',0,0,0,0,1,'{\"nf\":[1662677762]}'),(19637,'62.171.137.109','normal','',0,0,0,0,5,'{\"nf\":[1662680309,1662680310,1662680311,1662680315,1662680318]}'),(19638,'69.16.200.246','normal','',0,0,0,0,1,'{\"nf\":[1662682546]}'),(19639,'82.102.13.91','normal','',0,0,0,0,1,'{\"nf\":[1662682860]}'),(19640,'62.182.80.243','normal','',0,0,0,0,1,'{\"nf\":[1662684870]}'),(19641,'192.185.4.119','normal','',0,0,0,0,0,'[]'),(19642,'141.94.75.208','normal','',0,0,0,0,1,'{\"nf\":[1662689470]}'),(19643,'207.180.213.185','normal','',0,0,0,0,1,'{\"nf\":[1662692205]}'),(19644,'68.178.224.109','normal','',0,0,0,0,2,'{\"nf\":[1662698197,1662698200]}'),(19645,'114.132.201.19','normal','',0,0,0,0,0,'[]'),(19646,'17.121.114.251','normal','',0,0,0,0,0,'[]'),(19647,'18.118.235.21','normal','',0,0,0,0,0,'[]'),(19648,'185.10.70.154','normal','',0,0,0,0,0,'[]'),(19649,'114.107.225.150','normal','',0,0,0,0,0,'[]'),(19650,'162.214.156.228','normal','',0,0,0,0,0,'[]'),(19651,'35.244.96.107','blocked','You have been locked out due to too many invalid login attempts.',1662723343,1662723043,0,5,0,'{\"login\":[1662723033,1662723034,1662723037,1662723039,1662723041]}'),(19652,'102.132.208.190','normal','',0,0,0,0,0,'[]'),(19653,'114.119.138.130','normal','',0,0,0,0,0,'[]'),(19654,'51.12.53.118','normal','',0,0,0,0,0,'[]'),(19655,'77.68.35.221','normal','',0,0,0,0,7,'{\"nf\":[1662738275,1662738278,1662738279,1662738279,1662738281,1662738283,1662738284]}'),(19656,'141.98.6.121','normal','',0,0,0,0,0,'[]'),(19657,'41.216.188.45','normal','',0,0,0,0,0,'[]'),(19658,'193.163.89.58','normal','',0,0,0,0,0,'[]'),(19659,'103.139.26.242','normal','',0,0,0,1,0,'{\"login\":[1662786831]}'),(19660,'46.101.117.50','normal','',0,0,0,0,0,'[]'),(19661,'54.36.149.41','normal','',0,0,0,0,0,'[]'),(19662,'142.93.185.52','normal','',0,0,0,0,0,'[]'),(19663,'5.101.156.45','normal','',0,0,0,0,0,'[]'),(19664,'206.81.20.70','normal','',0,0,0,0,0,'[]'),(19665,'41.13.254.81','normal','',0,0,0,0,0,'[]'),(19666,'198.235.24.149','normal','',0,0,0,0,0,'[]'),(19667,'103.56.160.61','normal','',0,0,0,0,0,'[]'),(19668,'136.243.8.158','normal','',0,0,0,0,0,'[]'),(19669,'3.85.14.152','normal','',0,0,0,0,3,'{\"nf\":[1662821114,1662899233,1662899235]}'),(19670,'177.53.140.226','normal','',0,0,0,0,0,'[]'),(19671,'45.32.100.154','normal','',0,0,0,0,0,'[]'),(19672,'114.119.139.107','normal','',0,0,0,0,0,'[]'),(19673,'103.150.136.176','normal','',0,0,0,0,0,'[]'),(19674,'64.37.52.73','normal','',0,0,0,0,0,'[]'),(19675,'173.249.56.171','normal','',0,0,0,0,0,'[]'),(19676,'185.185.127.125','normal','',0,0,0,0,0,'[]'),(19677,'128.199.134.216','normal','',0,0,0,0,0,'[]'),(19678,'165.232.183.66','normal','',0,0,0,0,0,'[]'),(19679,'67.225.188.175','normal','',0,0,0,0,0,'[]'),(19680,'74.205.112.88','normal','',0,0,0,1,0,'{\"login\":[1662857391]}'),(19681,'83.150.214.18','normal','',0,0,0,5,0,'{\"login\":[1662860537,1662971415,1662971416,1663126489,1663126490]}'),(19682,'92.53.96.102','normal','',0,0,0,1,0,'{\"login\":[1662860821]}'),(19683,'140.143.188.163','normal','',0,0,0,0,0,'[]'),(19684,'95.213.186.158','normal','',0,0,0,3,0,'{\"login\":[1662863202,1663004807,1663004808]}'),(19685,'5.45.118.14','normal','',0,0,0,1,0,'{\"login\":[1662863664]}'),(19686,'81.68.87.46','normal','',0,0,0,0,0,'[]'),(19687,'3.110.56.242','normal','',0,0,0,0,0,'[]'),(19688,'195.201.31.183','normal','',0,0,0,1,0,'{\"login\":[1662867656]}'),(19689,'134.122.64.249','normal','',0,0,0,1,0,'{\"login\":[1662867813]}'),(19690,'45.128.206.89','normal','',0,0,0,3,0,'{\"login\":[1662870140,1662892107,1662898218]}'),(19691,'5.45.125.232','normal','',0,0,0,1,0,'{\"login\":[1662872613]}'),(19692,'198.199.71.153','blocked','You have been locked out due to too many attempts to access a file that doesn\'t exist.',1662873033,0,1662872733,0,20,'{\"nf\":[1662872696,1662872704,1662872706,1662872708,1662872710,1662872712,1662872713,1662872715,1662872716,1662872718,1662872719,1662872721,1662872722,1662872724,1662872725,1662872727,1662872728,1662872730,1662872731,1662872733]}'),(19693,'173.252.83.117','normal','',0,0,0,0,0,'[]'),(19694,'116.203.107.31','normal','',0,0,0,1,0,'{\"login\":[1662873974]}'),(19695,'195.161.68.182','normal','',0,0,0,1,1,'{\"login\":[1662874016],\"nf\":[1663039985]}'),(19696,'185.244.175.181','normal','',0,0,0,0,2,'{\"nf\":[1662877045,1663119689]}'),(19697,'62.143.162.165','normal','',0,0,0,0,0,'[]'),(19698,'5.101.157.206','normal','',0,0,0,2,0,'{\"login\":[1662888645,1662889064]}'),(19699,'46.31.79.179','normal','',0,0,0,1,0,'{\"login\":[1662890221]}'),(19700,'185.99.199.206','normal','',0,0,0,1,0,'{\"login\":[1662890353]}'),(19701,'188.120.236.114','normal','',0,0,0,1,0,'{\"login\":[1662890885]}'),(19702,'185.182.57.21','normal','',0,0,0,1,0,'{\"login\":[1662891313]}'),(19703,'74.208.24.30','normal','',0,0,0,1,0,'{\"login\":[1662892229]}'),(19704,'65.21.35.232','normal','',0,0,0,0,0,'[]'),(19705,'47.91.198.167','normal','',0,0,0,7,0,'{\"login\":[1662892635,1662941824,1662941826,1662984715,1662984717,1663117473,1663117475]}'),(19706,'213.189.218.236','normal','',0,0,0,1,0,'{\"login\":[1662893242]}'),(19707,'77.68.122.133','normal','',0,0,0,1,0,'{\"login\":[1662896747]}'),(19708,'178.211.58.145','normal','',0,0,0,7,0,'{\"login\":[1662899474,1663016843,1663016844,1663024980,1663024980,1663157928,1663157929]}'),(19709,'95.217.3.120','normal','',0,0,0,5,0,'{\"login\":[1662900475,1663079581,1663079582,1663099525,1663099526]}'),(19710,'134.0.115.193','normal','',0,0,0,3,0,'{\"login\":[1662902193,1663018375,1663018375]}'),(19711,'223.247.179.42','normal','',0,0,0,0,0,'[]'),(19712,'176.31.105.62','normal','',0,0,0,0,6,'{\"nf\":[1662919879,1662919881,1662919882,1662919884,1662919885,1662919886]}'),(19713,'108.167.189.17','normal','',0,0,0,0,1,'{\"nf\":[1662922045]}'),(19714,'162.55.182.187','normal','',0,0,0,1,0,'{\"login\":[1662922640]}'),(19715,'87.249.44.153','normal','',0,0,0,3,0,'{\"login\":[1662922775,1663030325,1663030326]}'),(19716,'77.65.215.1','normal','',0,0,0,0,0,'[]'),(19717,'221.170.12.235','normal','',0,0,0,0,0,'[]'),(19718,'185.251.38.195','normal','',0,0,0,0,0,'[]'),(19719,'185.251.38.195','normal','',0,0,0,0,0,'[]'),(19720,'37.140.241.77','normal','',0,0,0,1,0,'{\"login\":[1662926223]}'),(19721,'2.59.117.3','normal','',0,0,0,1,0,'{\"login\":[1662926298]}'),(19722,'23.175.146.178','normal','',0,0,0,0,0,'[]'),(19723,'44.194.87.232','normal','',0,0,0,0,2,'{\"nf\":[1662939437,1662939440]}'),(19724,'39.103.221.104','normal','',0,0,0,0,0,'[]'),(19725,'47.111.118.103','normal','',0,0,0,0,1,'{\"nf\":[1662929601]}'),(19726,'198.136.54.132','normal','',0,0,0,0,0,'[]'),(19727,'104.227.133.22','normal','',0,0,0,0,0,'[]'),(19728,'114.119.134.93','normal','',0,0,0,0,0,'[]'),(19729,'193.202.110.28','normal','',0,0,0,0,1,'{\"nf\":[1662935219]}'),(19730,'154.53.56.81','normal','',0,0,0,0,1,'{\"nf\":[1662935361]}'),(19731,'46.235.42.105','normal','',0,0,0,0,1,'{\"nf\":[1662936492]}'),(19732,'85.214.141.230','normal','',0,0,0,0,6,'{\"nf\":[1662936899,1662936901,1662936902,1662936904,1662936905,1662936906]}'),(19733,'85.236.38.127','normal','',0,0,0,0,1,'{\"nf\":[1662936956]}'),(19734,'192.185.4.146','normal','',0,0,0,0,1,'{\"nf\":[1662938753]}'),(19735,'47.253.50.15','normal','',0,0,0,2,0,'{\"login\":[1662941839,1662941840]}'),(19736,'207.188.152.249','normal','',0,0,0,1,0,'{\"login\":[1662941993]}'),(19737,'69.167.168.155','normal','',0,0,0,0,1,'{\"nf\":[1662942343]}'),(19738,'79.174.13.180','normal','',0,0,0,2,0,'{\"login\":[1662944993,1662944994]}'),(19739,'5.101.157.11','normal','',0,0,0,2,0,'{\"login\":[1662945020,1662945021]}'),(19740,'97.107.140.174','normal','',0,0,0,2,0,'{\"login\":[1662945354,1662945355]}'),(19741,'162.214.123.41','normal','',0,0,0,0,0,'[]'),(19742,'5.101.157.238','normal','',0,0,0,4,0,'{\"login\":[1662947568,1662947568,1662957798,1662957799]}'),(19743,'5.101.157.179','normal','',0,0,0,2,0,'{\"login\":[1662948596,1662948597]}'),(19744,'88.99.165.9','normal','',0,0,0,2,0,'{\"login\":[1662949561,1662949562]}'),(19745,'178.172.136.168','normal','',0,0,0,4,0,'{\"login\":[1662949784,1662949785,1663070513,1663070514]}'),(19746,'20.254.169.192','normal','',0,0,0,0,0,'[]'),(19747,'185.207.228.4','normal','',0,0,0,6,0,'{\"login\":[1662951453,1662951454,1663091450,1663091452,1663149276,1663149276]}'),(19748,'5.255.253.186','normal','',0,0,0,0,0,'[]'),(19749,'103.130.218.101','normal','',0,0,0,2,0,'{\"login\":[1662952539,1662952544]}'),(19750,'65.21.9.119','normal','',0,0,0,4,0,'{\"login\":[1662953010,1662953011,1663084356,1663084358]}'),(19751,'45.147.197.20','normal','',0,0,0,4,0,'{\"login\":[1662953949,1662953950,1663014501,1663014502]}'),(19752,'69.55.35.30','normal','',0,0,0,0,6,'{\"nf\":[1662955276,1662955278,1662955280,1662955281,1662955282,1662955283]}'),(19753,'65.21.13.12','normal','',0,0,0,4,0,'{\"login\":[1662955351,1662955352,1663037452,1663037454]}'),(19754,'198.71.50.144','normal','',0,0,0,2,0,'{\"login\":[1662955435,1662955436]}'),(19755,'185.126.176.114','normal','',0,0,0,4,0,'{\"login\":[1662955696,1662955696,1663072112,1663072113]}'),(19756,'185.225.33.103','normal','',0,0,0,2,0,'{\"login\":[1662955699,1662955700]}'),(19757,'5.101.157.166','normal','',0,0,0,2,0,'{\"login\":[1662956257,1662956257]}'),(19758,'82.218.176.68','normal','',0,0,0,2,0,'{\"login\":[1662957558,1662957559]}'),(19759,'70.40.218.45','normal','',0,0,0,0,0,'[]'),(19760,'8.210.55.10','normal','',0,0,0,4,0,'{\"login\":[1662959122,1662959123,1663108230,1663108231]}'),(19761,'165.22.194.243','normal','',0,0,0,0,0,'[]'),(19762,'92.53.124.116','normal','',0,0,0,4,0,'{\"login\":[1662959682,1662959683,1663018645,1663018645]}'),(19763,'185.81.1.101','normal','',0,0,0,0,1,'{\"nf\":[1662959766]}'),(19764,'185.225.33.34','normal','',0,0,0,2,0,'{\"login\":[1662960197,1662960197]}'),(19765,'5.101.118.104','normal','',0,0,0,4,0,'{\"login\":[1662960261,1662960262,1663128757,1663128758]}'),(19766,'5.101.156.98','normal','',0,0,0,2,0,'{\"login\":[1662960296,1662960297]}'),(19767,'185.205.246.129','normal','',0,0,0,4,0,'{\"login\":[1662960594,1662960594,1662992856,1662992857]}'),(19768,'155.93.247.70','normal','',0,0,0,0,0,'[]'),(19769,'5.101.156.139','normal','',0,0,0,2,0,'{\"login\":[1662962241,1662962242]}'),(19770,'130.185.75.142','normal','',0,0,0,0,1,'{\"nf\":[1662963068]}'),(19771,'213.160.71.78','normal','',0,0,0,4,0,'{\"login\":[1662963513,1662963513,1662966251,1662966251]}'),(19772,'158.69.36.41','normal','',0,0,0,0,0,'[]'),(19773,'50.87.233.27','normal','',0,0,0,0,0,'[]'),(19774,'91.227.123.120','normal','',0,0,0,0,0,'[]'),(19775,'88.99.133.202','normal','',0,0,0,2,0,'{\"login\":[1662965975,1662965976]}'),(19776,'157.230.26.13','normal','',0,0,0,1,0,'{\"login\":[1662967450]}'),(19777,'5.189.141.7','normal','',0,0,0,2,0,'{\"login\":[1662969417,1662969419]}'),(19778,'165.90.61.226','normal','',0,0,0,0,0,'[]'),(19779,'147.182.150.188','normal','',0,0,0,0,0,'[]'),(19780,'49.37.45.30','normal','',0,0,0,0,0,'[]'),(19781,'213.142.149.80','normal','',0,0,0,2,0,'{\"login\":[1662972601,1662972603]}'),(19782,'43.225.53.24','normal','',0,0,0,0,0,'[]'),(19783,'3.109.16.228','normal','',0,0,0,2,0,'{\"login\":[1662975169,1662975172]}'),(19784,'45.239.137.69','normal','',0,0,0,6,0,'{\"login\":[1662976069,1662976070,1662977136,1662977137,1663035563,1663035566]}'),(19785,'197.86.195.185','normal','',0,0,0,0,0,'[]'),(19786,'185.104.28.48','normal','',0,0,0,2,0,'{\"login\":[1662977941,1662977942]}'),(19787,'80.87.199.143','normal','',0,0,0,4,0,'{\"login\":[1662980248,1662980250,1663032353,1663032354]}'),(19788,'185.219.42.33','normal','',0,0,0,2,0,'{\"login\":[1662981980,1662981982]}'),(19789,'103.35.64.73','normal','',0,0,0,0,0,'[]'),(19790,'5.189.171.170','normal','',0,0,0,4,0,'{\"login\":[1662982284,1662982285,1663118940,1663118941]}'),(19791,'54.207.36.58','normal','',0,0,0,0,1,'{\"nf\":[1662982943]}'),(19792,'159.223.231.91','normal','',0,0,0,6,0,'{\"login\":[1662983391,1662983393,1663007986,1663007987,1663015693,1663015694]}'),(19793,'66.249.70.103','normal','',0,0,0,0,0,'[]'),(19794,'17.121.112.240','normal','',0,0,0,0,0,'[]'),(19795,'142.132.194.96','normal','',0,0,0,8,0,'{\"login\":[1662989171,1662989172,1662994741,1662994741,1662997901,1662997902,1663115317,1663115319]}'),(19796,'45.72.65.23','normal','',0,0,0,0,0,'[]'),(19797,'197.94.91.12','normal','',0,0,0,0,0,'[]'),(19798,'212.109.221.1','normal','',0,0,0,2,0,'{\"login\":[1662992405,1662992405]}'),(19799,'217.28.222.12','normal','',0,0,0,2,0,'{\"login\":[1662993064,1662993066]}'),(19800,'178.254.50.202','normal','',0,0,0,4,0,'{\"login\":[1662993683,1662993683,1663061673,1663061674]}'),(19801,'134.209.154.203','normal','',0,0,0,2,0,'{\"login\":[1662994589,1662994590]}'),(19802,'178.128.53.95','normal','',0,0,0,6,0,'{\"login\":[1662996305,1662996307,1663016738,1663016739,1663075915,1663075917]}'),(19803,'45.90.34.141','normal','',0,0,0,2,0,'{\"login\":[1663001612,1663001613]}'),(19804,'207.46.13.174','normal','',0,0,0,0,0,'[]'),(19805,'80.78.255.36','normal','',0,0,0,4,0,'{\"login\":[1663005318,1663005319,1663091240,1663091241]}'),(19806,'88.84.193.250','normal','',0,0,0,2,0,'{\"login\":[1663006461,1663006462]}'),(19807,'139.194.250.183','normal','',0,0,0,0,0,'[]'),(19808,'144.76.4.124','normal','',0,0,0,4,0,'{\"login\":[1663006754,1663006755,1663009053,1663009054]}'),(19809,'103.133.133.193','normal','',0,0,0,2,0,'{\"login\":[1663014479,1663014481]}'),(19810,'178.208.67.7','normal','',0,0,0,2,0,'{\"login\":[1663015487,1663015489]}'),(19811,'89.108.119.229','normal','',0,0,0,2,0,'{\"login\":[1663017272,1663017273]}'),(19812,'40.118.21.153','normal','',0,0,0,0,2,'{\"nf\":[1663019305,1663019310]}'),(19813,'45.83.122.37','normal','',0,0,0,2,0,'{\"login\":[1663019903,1663019904]}'),(19814,'205.210.31.185','normal','',0,0,0,0,0,'[]'),(19815,'46.101.202.174','normal','',0,0,0,2,0,'{\"login\":[1663023312,1663023312]}'),(19816,'91.228.7.83','normal','',0,0,0,2,0,'{\"login\":[1663025959,1663025960]}'),(19817,'77.222.52.120','normal','',0,0,0,2,0,'{\"login\":[1663030454,1663030455]}'),(19818,'178.208.67.40','normal','',0,0,0,2,0,'{\"login\":[1663031953,1663031954]}'),(19819,'188.225.74.67','normal','',0,0,0,0,1,'{\"nf\":[1663032213]}'),(19820,'88.212.235.184','normal','',0,0,0,2,1,'{\"nf\":[1663032526],\"login\":[1663032903,1663032904]}'),(19821,'139.59.155.185','normal','',0,0,0,2,0,'{\"login\":[1663034349,1663034350]}'),(19822,'178.18.206.98','normal','',0,0,0,0,1,'{\"nf\":[1663036046]}'),(19823,'31.220.104.234','normal','',0,0,0,2,0,'{\"login\":[1663037467,1663037468]}'),(19824,'5.101.156.223','normal','',0,0,0,4,0,'{\"login\":[1663038626,1663038628,1663056630,1663056632]}'),(19825,'163.172.110.27','normal','',0,0,0,2,0,'{\"login\":[1663038687,1663038688]}'),(19826,'46.101.163.94','normal','',0,0,0,2,0,'{\"login\":[1663040266,1663040267]}'),(19827,'136.243.118.43','normal','',0,0,0,2,0,'{\"login\":[1663040658,1663040659]}'),(19828,'114.119.151.155','normal','',0,0,0,0,0,'[]'),(19829,'13.56.193.65','normal','',0,0,0,0,0,'[]'),(19830,'13.57.207.127','normal','',0,0,0,0,0,'[]'),(19831,'162.241.225.33','normal','',0,0,0,0,0,'[]'),(19832,'107.178.207.123','normal','',0,0,0,0,0,'[]'),(19833,'65.2.129.199','normal','',0,0,0,2,0,'{\"login\":[1663056299,1663056301]}'),(19834,'103.41.204.187','normal','',0,0,0,2,0,'{\"login\":[1663058557,1663058559]}'),(19835,'165.227.47.204','normal','',0,0,0,2,0,'{\"login\":[1663061881,1663061883]}'),(19836,'120.76.135.15','normal','',0,0,0,0,0,'[]'),(19837,'45.220.255.81','normal','',0,0,0,0,2,'{\"nf\":[1663076747,1663076747]}'),(19838,'89.32.46.91','normal','',0,0,0,4,0,'{\"login\":[1663069588,1663069589,1663093583,1663093584]}'),(19839,'50.116.94.114','normal','',0,0,0,0,0,'[]'),(19840,'165.73.103.248','normal','',0,0,0,0,0,'[]'),(19841,'47.243.90.207','normal','',0,0,0,2,0,'{\"login\":[1663071762,1663071764]}'),(19842,'93.189.24.54','normal','',0,0,0,2,0,'{\"login\":[1663071978,1663071979]}'),(19843,'20.38.41.5','normal','',0,0,0,0,1,'{\"nf\":[1663072264]}'),(19844,'20.163.79.86','normal','',0,0,0,0,0,'[]'),(19845,'134.122.35.243','normal','',0,0,0,4,0,'{\"login\":[1663075597,1663075599,1663108380,1663108382]}'),(19846,'37.187.25.44','normal','',0,0,0,6,0,'{\"login\":[1663076494,1663076499,1663085978,1663085984,1663115767,1663115769]}'),(19847,'54.253.149.44','normal','',0,0,0,0,0,'[]'),(19848,'78.135.106.191','normal','',0,0,0,2,0,'{\"login\":[1663078831,1663078832]}'),(19849,'18.221.17.249','normal','',0,0,0,0,1,'{\"nf\":[1663080730]}'),(19850,'46.101.62.7','normal','',0,0,0,4,0,'{\"login\":[1663081521,1663081525,1663116727,1663116728]}'),(19851,'198.252.110.226','normal','',0,0,0,2,0,'{\"login\":[1663082066,1663082068]}'),(19852,'97.74.84.167','normal','',0,0,0,2,0,'{\"login\":[1663083494,1663083496]}'),(19853,'92.63.97.240','normal','',0,0,0,2,0,'{\"login\":[1663083632,1663083633]}'),(19854,'43.251.135.217','normal','',0,0,0,1,0,'{\"login\":[1663084064]}'),(19855,'197.92.142.45','normal','',0,0,0,0,0,'[]'),(19856,'185.220.101.65','normal','',0,0,0,0,1,'{\"nf\":[1663086254]}'),(19857,'199.249.230.189','normal','',0,0,0,0,1,'{\"nf\":[1663086259]}'),(19858,'198.140.141.30','normal','',0,0,0,0,1,'{\"nf\":[1663086265]}'),(19859,'109.70.100.36','normal','',0,0,0,0,1,'{\"nf\":[1663086267]}'),(19860,'198.98.59.243','normal','',0,0,0,0,1,'{\"nf\":[1663086271]}'),(19861,'185.100.87.192','normal','',0,0,0,0,1,'{\"nf\":[1663086274]}'),(19862,'93.84.114.152','normal','',0,0,0,2,0,'{\"login\":[1663088703,1663088705]}'),(19863,'5.101.157.136','normal','',0,0,0,1,0,'{\"login\":[1663092067]}'),(19864,'102.65.7.103','normal','',0,0,0,0,0,'[]'),(19865,'41.113.34.77','normal','',0,0,0,0,1,'{\"nf\":[1663096697]}'),(19866,'41.76.108.25','normal','',0,0,0,0,1,'{\"nf\":[1663096805]}'),(19867,'92.53.96.244','normal','',0,0,0,0,1,'{\"nf\":[1663099876]}'),(19868,'34.68.199.109','normal','',0,0,0,2,0,'{\"login\":[1663100267,1663100269]}'),(19869,'195.242.218.237','normal','',0,0,0,1,0,'{\"login\":[1663101495]}'),(19870,'195.242.218.237','normal','',0,0,0,0,0,'[]'),(19871,'217.182.142.186','normal','',0,0,0,2,0,'{\"login\":[1663104433,1663104434]}'),(19872,'34.219.34.161','normal','',0,0,0,0,0,'[]'),(19873,'43.154.128.96','normal','',0,0,0,0,0,'[]'),(19874,'176.53.62.61','normal','',0,0,0,2,0,'{\"login\":[1663107122,1663107123]}'),(19875,'135.181.254.222','normal','',0,0,0,0,5,'{\"nf\":[1663108603,1663108612,1663108619,1663108624,1663108630]}'),(19876,'188.225.18.210','normal','',0,0,0,4,0,'{\"login\":[1663109595,1663109596,1663147509,1663147510]}'),(19877,'92.53.96.222','blocked','You have been locked out due to too many invalid login attempts.',1663111137,1663110837,0,5,0,'{\"login\":[1663110731,1663110733,1663110735,1663110736,1663110836]}'),(19878,'173.212.224.141','normal','',0,0,0,0,9,'{\"nf\":[1663115314,1663115316,1663115317,1663115318,1663115319,1663115319,1663115321,1663115322,1663115323]}'),(19879,'188.225.82.128','normal','',0,0,0,1,0,'{\"login\":[1663116978]}'),(19880,'185.46.9.225','normal','',0,0,0,2,0,'{\"login\":[1663117859,1663117864]}'),(19881,'148.72.177.90','normal','',0,0,0,0,13,'{\"nf\":[1663119495,1663119497,1663119498,1663119500,1663119501,1663119503,1663119505,1663119506,1663119508,1663119510,1663119511,1663119513,1663119514]}'),(19882,'178.20.156.80','normal','',0,0,0,2,0,'{\"login\":[1663123833,1663123834]}'),(19883,'185.67.1.211','normal','',0,0,0,2,0,'{\"login\":[1663125109,1663125112]}'),(19884,'5.189.175.67','normal','',0,0,0,2,0,'{\"login\":[1663125286,1663125287]}'),(19885,'164.90.170.66','normal','',0,0,0,2,0,'{\"login\":[1663125743,1663125745]}'),(19886,'104.248.129.221','normal','',0,0,0,2,0,'{\"login\":[1663126601,1663126602]}'),(19887,'185.104.249.169','normal','',0,0,0,2,0,'{\"login\":[1663127611,1663127613]}'),(19888,'78.142.211.46','normal','',0,0,0,2,0,'{\"login\":[1663129278,1663129279]}'),(19889,'82.202.174.35','normal','',0,0,0,2,0,'{\"login\":[1663129534,1663129536]}'),(19890,'34.136.77.170','normal','',0,0,0,2,0,'{\"login\":[1663132949,1663132950]}'),(19891,'41.216.188.14','normal','',0,0,0,0,5,'{\"nf\":[1663135314,1663135344,1663135355,1663135377,1663135383]}'),(19892,'41.13.24.144','normal','',0,0,0,0,1,'{\"nf\":[1663138793]}'),(19893,'169.0.74.181','normal','',0,0,0,0,0,'[]'),(19894,'87.249.38.253','normal','',0,0,0,2,0,'{\"login\":[1663148981,1663148982]}'),(19895,'134.209.192.202','normal','',0,0,0,2,0,'{\"login\":[1663149326,1663149327]}'),(19896,'109.205.182.169','normal','',0,0,0,0,0,'[]'),(19897,'114.119.132.36','normal','',0,0,0,0,0,'[]'),(19898,'188.127.239.132','normal','',0,0,0,2,0,'{\"login\":[1663153144,1663153145]}'),(19899,'103.28.36.205','normal','',0,0,0,0,0,'[]'),(19900,'82.223.74.155','normal','',0,0,0,0,1,'{\"nf\":[1663157481]}'),(19901,'196.25.198.95','normal','',0,0,0,0,0,'[]'),(19902,'198.235.24.5','normal','',0,0,0,0,0,'[]'),(19903,'138.201.97.39','normal','',0,0,0,0,1,'{\"nf\":[1663195878]}'),(19904,'205.210.31.45','normal','',0,0,0,0,0,'[]'),(19905,'205.210.31.128','normal','',0,0,0,0,0,'[]'),(19906,'205.210.31.132','normal','',0,0,0,0,0,'[]'),(19907,'205.210.31.47','normal','',0,0,0,0,0,'[]'),(19908,'198.235.24.43','normal','',0,0,0,0,0,'[]'),(19909,'2.57.122.233','normal','',0,0,0,0,0,'[]'),(19910,'2.57.122.233','normal','',0,0,0,0,0,'[]'),(19911,'2.57.122.233','normal','',0,0,0,0,0,'[]');
/*!40000 ALTER TABLE `wp_defender_lockout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_defender_lockout_log`
--

DROP TABLE IF EXISTS `wp_defender_lockout_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_defender_lockout_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `log` text DEFAULT NULL,
  `ip` varchar(255) DEFAULT NULL,
  `date` int(11) DEFAULT NULL,
  `type` varchar(16) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `blog_id` int(11) DEFAULT NULL,
  `tried` varchar(255) DEFAULT NULL,
  `country_iso_code` char(2) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ip` (`ip`),
  KEY `type` (`type`),
  KEY `tried` (`tried`),
  KEY `country_iso_code` (`country_iso_code`)
) ENGINE=InnoDB AUTO_INCREMENT=52991 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_defender_lockout_log`
--

LOCK TABLES `wp_defender_lockout_log` WRITE;
/*!40000 ALTER TABLE `wp_defender_lockout_log` DISABLE KEYS */;
INSERT INTO `wp_defender_lockout_log` VALUES (48205,'Failed login attempt with username podct','143.244.177.220',1660587563,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(48206,'Failed login attempt with username podct','47.115.24.165',1660588894,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(48207,'Failed login attempt with username podct','14.232.245.48',1660589356,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48208,'Failed login attempt with username podct','103.163.139.202',1660590212,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(48209,'Failed login attempt with username podct','13.81.59.92',1660591532,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(48210,'Failed login attempt with username podct','110.238.119.21',1660592704,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48211,'Failed login attempt with username podct','34.69.109.132',1660592840,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48212,'Failed login attempt with username podct','110.40.244.196',1660594171,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48213,'Failed login attempt with username podct','150.109.148.216',1660595497,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48214,'Failed login attempt with username podct','68.183.26.89',1660596003,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48215,'Request for file /old-index.php?daksldlkdsadas=1 which doesn\'t exist','159.89.192.232',1660596326,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/old-index.php?daksldlkdsadas=1',NULL),(48216,'Failed login attempt with username podct','64.90.40.242',1660596806,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(48217,'Failed login attempt with username podct','51.178.76.51',1660598141,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(48218,'Failed login attempt with username podct','61.77.106.99',1660599355,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48219,'Failed login attempt with username podct','159.223.170.181',1660600775,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(48220,'Failed login attempt with username podct','8.210.146.161',1660602106,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48221,'Failed login attempt with username podct','124.158.10.29',1660602605,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48222,'Failed login attempt with username podct','66.33.193.231',1660603433,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(48223,'Failed login attempt with username podct','64.225.65.31',1660604766,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(48224,'Failed login attempt with username podct','103.11.188.43',1660605902,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48225,'Failed login attempt with username podct','94.231.86.20',1660606104,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48226,'Failed login attempt with username podct','47.105.73.13',1660607444,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(48227,'Failed login attempt with username podct','85.191.40.94',1660608775,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48228,'Failed login attempt with username podct','35.236.69.208',1660609196,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48229,'Failed login attempt with username podct','165.22.109.42',1660610126,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48230,'Failed login attempt with username podct','138.68.140.0',1660611463,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(48231,'Failed login attempt with username zaAndy','185.119.81.108',1660612107,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',1,'zaAndy',NULL),(48232,'Failed login attempt with username podct','51.178.68.226',1660612506,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48233,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1660612554,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48234,'Request for file /wp-content/plugins/apikey/apikey.php?test=hello which doesn\'t exist','152.89.196.13',1660612651,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/wp-content/plugins/apikey/apikey.php?test=hello',NULL),(48235,'Failed login attempt with username podct','161.35.52.207',1660612820,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(48236,'Failed login attempt with username podct','47.105.73.13',1660614180,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(48237,'Failed login attempt with username podct','118.98.73.5',1660615531,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48238,'Failed login attempt with username podct','116.202.193.250',1660615839,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48239,'Failed login attempt with username podct','85.91.237.106',1660616888,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(48240,'Failed login attempt with username podct','148.72.214.245',1660618250,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48241,'Failed login attempt with username podct','14.232.245.48',1660619177,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48242,'Failed login attempt with username podct','142.93.245.196',1660619610,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(48243,'Failed login attempt with username podct','69.163.224.107',1660620978,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(48244,'Failed login attempt with username podct','51.75.15.189',1660622337,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48245,'Failed login attempt with username podct','206.189.182.64',1660622432,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48246,'Failed login attempt with username podct','91.249.163.48',1660623700,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(48247,'Failed login attempt with username podct','8.210.146.161',1660625077,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(48248,'Failed login attempt with username podct','95.216.64.209',1660625644,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48249,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1660626409,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48250,'Failed login attempt with username podct','164.46.122.50',1660626436,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48251,'Failed login attempt with username podct','173.212.212.180',1660627826,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48252,'Failed login attempt with username podct','165.232.190.145',1660628907,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48253,'Failed login attempt with username podct','198.244.167.101',1660629182,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(48254,'Failed login attempt with username admin','185.119.81.108',1660629219,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'admin',NULL),(48255,'Request for file /interesting-articles/ which doesn\'t exist','65.21.35.182',1660629261,'404_error','Mozilla/5.0 (compatible; SeekportBot; +https://bot.seekport.com)',1,'/interesting-articles/',NULL),(48256,'Failed login attempt with username podct','69.163.224.107',1660630557,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48257,'Failed login attempt with username podct','54.152.21.178',1660632015,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48258,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1660633909,'auth_fail','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48259,'Failed login attempt with username podct','157.230.45.193',1660635368,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48260,'Failed login attempt with username podct','69.12.68.106',1660638679,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48261,'Request for file /assets/images/ups.php which doesn\'t exist','152.89.196.13',1660638919,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/assets/images/ups.php',NULL),(48262,'Failed login attempt with username promoting','185.119.81.101',1660639020,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'promoting',NULL),(48263,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1660639976,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.76 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48264,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1660643827,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48265,'Failed login attempt with username podct','110.238.119.21',1660645216,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48266,'Failed login attempt with username podct','69.163.192.25',1660648605,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48267,'Failed login attempt with username podct','139.59.70.221',1660652191,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48268,'Failed login attempt with username zaAndy','185.119.81.108',1660654508,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'zaAndy',NULL),(48269,'Request for file /.env which doesn\'t exist','20.150.214.62',1660655579,'404_error','python-requests/2.28.1',1,'/.env',NULL),(48270,'Failed login attempt with username podct','162.55.89.76',1660655829,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48271,'Failed login attempt with username wadminw','42.200.109.156',1660657216,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(48272,'Failed login attempt with username admin','185.119.81.101',1660658430,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36',1,'admin',NULL),(48273,'Request for file /.git/config which doesn\'t exist','18.221.30.68',1660658929,'404_error','python-requests/2.25.1',1,'/.git/config',NULL),(48274,'Failed login attempt with username admin','185.119.81.108',1660659174,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'admin',NULL),(48275,'Failed login attempt with username podct','176.9.113.101',1660659357,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48276,'Failed login attempt with username podct','47.107.242.103',1660659520,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(48277,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1660659837,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48278,'Failed login attempt with username wwwadmin','194.233.82.114',1660659917,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(48279,'Failed login attempt with username podct','23.99.229.218',1660660674,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(48280,'Failed login attempt with username podct','198.244.167.101',1660661826,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48281,'Failed login attempt with username podct','67.205.39.9',1660662986,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(48282,'Failed login attempt with username podct','65.108.200.32',1660662995,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48283,'Request for file /cache/ups.phpups.php which doesn\'t exist','152.89.196.13',1660663738,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/cache/ups.phpups.php',NULL),(48284,'Failed login attempt with username podct','85.146.18.88',1660665301,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(48285,'Failed login attempt with username promoting','185.119.81.101',1660665475,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'promoting',NULL),(48286,'Request for file /ups.php which doesn\'t exist','152.89.196.13',1660665920,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/ups.php',NULL),(48287,'Request for file /media-admin.phpups.php which doesn\'t exist','152.89.196.13',1660666036,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/media-admin.phpups.php',NULL),(48288,'Request for file /wp-content/auto_seo.php?ARRAY[0]=123 which doesn\'t exist','133.242.58.20',1660666185,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37',1,'/wp-content/auto_seo.php?ARRAY[0]=123',NULL),(48289,'Request for file /wp-admin/auto_seo.php?ARRAY[0]=123 which doesn\'t exist','133.242.58.20',1660666247,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37',1,'/wp-admin/auto_seo.php?ARRAY[0]=123',NULL),(48290,'Request for file /auto_seo.php?ARRAY[0]=123 which doesn\'t exist','133.242.58.20',1660666290,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37',1,'/auto_seo.php?ARRAY[0]=123',NULL),(48291,'Failed login attempt with username podct','136.243.137.121',1660666585,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48292,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1660667151,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48293,'Failed login attempt with username podct','159.89.27.131',1660667612,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(48294,'Failed login attempt with username podct','166.62.125.246',1660668752,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48295,'Failed login attempt with username zaAndy','185.119.81.108',1660669032,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',1,'zaAndy',NULL),(48296,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1660669285,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48297,'Failed login attempt with username podct','171.244.0.91',1660669909,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(48298,'Failed login attempt with username podct','157.90.135.167',1660670196,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48299,'Failed login attempt with username podct','202.21.38.119',1660671063,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(48300,'Failed login attempt with username podct','80.87.10.11',1660672213,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48301,'Failed login attempt with username podct','188.127.231.190',1660673369,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48302,'Failed login attempt with username podct','190.183.61.97',1660673939,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48303,'Failed login attempt with username podct','151.106.41.64',1660675670,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(48304,'Failed login attempt with username podct','72.167.222.172',1660676798,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(48305,'Failed login attempt with username podct','165.227.181.87',1660677562,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48306,'Failed login attempt with username podct','185.2.5.31',1660677918,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48307,'Failed login attempt with username podct','217.61.54.110',1660679031,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(48308,'Failed login attempt with username podct','47.98.207.210',1660680126,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(48309,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1660680789,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48310,'Failed login attempt with username podct','89.163.219.42',1660681215,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(48311,'Failed login attempt with username podct','103.112.138.19',1660681216,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48312,'Failed login attempt with username podct','209.97.151.249',1660682252,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(48313,'Failed login attempt with username podct','185.2.5.77',1660683302,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(48314,'Request for file /wp-includes/wp-class.php which doesn\'t exist','178.32.215.167',1660683831,'404_error','python-requests/2.27.1',1,'/wp-includes/wp-class.php',NULL),(48315,'Failed login attempt with username podct','197.155.158.21',1660684347,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48316,'Failed login attempt with username podct','134.122.112.76',1660684954,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48317,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1660685341,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48318,'Failed login attempt with username podct','106.52.120.186',1660685374,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(48319,'Failed login attempt with username podct','159.203.121.12',1660686430,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48320,'Failed login attempt with username podct','47.115.24.165',1660687490,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(48321,'Failed login attempt with username podct','66.70.177.215',1660688624,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48322,'Failed login attempt with username podct','50.116.43.78',1660689655,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(48323,'Request for file /sites/default/files/ups.phpups.php which doesn\'t exist','152.89.196.13',1660690364,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/sites/default/files/ups.phpups.php',NULL),(48324,'Failed login attempt with username podct','68.183.86.247',1660690738,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48325,'Request for file /wp-content/plugins/background-image-cropper/ups.php which doesn\'t exist','152.89.196.13',1660692770,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/wp-content/plugins/background-image-cropper/ups.php',NULL),(48326,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1660693619,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48327,'Failed login attempt with username podct','159.203.68.240',1660694021,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(48328,'Failed login attempt with username podct','142.93.245.196',1660695116,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48329,'Failed login attempt with username podct','133.130.103.36',1660696234,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(48330,'Request for file /wp-comements-post.php?wp=Vanessa which doesn\'t exist','20.203.137.38',1660696561,'404_error','Linux Mozilla',1,'/wp-comements-post.php?wp=Vanessa',NULL),(48331,'Request for file /wp-content/plugins/askim/cache/up1.php?wp=Vanessa which doesn\'t exist','20.203.137.38',1660696563,'404_error','Linux Mozilla',1,'/wp-content/plugins/askim/cache/up1.php?wp=Vanessa',NULL),(48332,'Failed login attempt with username podct','178.128.187.183',1660697341,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(48333,'Failed login attempt with username podct','185.2.4.134',1660698449,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(48334,'Failed login attempt with username podct','192.99.201.91',1660699568,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48335,'Failed login attempt with username podct','165.22.202.216',1660699801,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48336,'Failed login attempt with username podct','34.69.109.132',1660700696,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48337,'Failed login attempt with username podct','69.163.224.107',1660701820,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(48338,'Failed login attempt with username podct','159.89.228.214',1660702958,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48339,'Failed login attempt with username podct','167.172.168.111',1660704099,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48340,'Failed login attempt with username podct','157.230.127.126',1660705237,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(48341,'Failed login attempt with username podct','202.29.236.140',1660706376,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48342,'Failed login attempt with username podct','45.32.100.211',1660707462,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48343,'Failed login attempt with username podct','77.65.213.168',1660707508,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(48344,'Request for file /wp-includes/customize/class-wp-customize-nav-menu.php?new which doesn\'t exist','65.108.99.24',1660708182,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-includes/customize/class-wp-customize-nav-menu.php?new',NULL),(48345,'Failed login attempt with username podct','138.68.90.29',1660708644,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(48346,'Failed login attempt with username podct','185.2.4.33',1660709790,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(48347,'Failed login attempt with username podct','159.203.120.246',1660710939,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48348,'Failed login attempt with username podct','207.154.208.104',1660711370,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48349,'Failed login attempt with username promoting','185.119.81.101',1660711803,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36',1,'promoting',NULL),(48350,'Failed login attempt with username podct','202.21.38.119',1660712089,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48351,'Failed login attempt with username podct','178.238.233.172',1660713244,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(48352,'Request for file /wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660713430,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48353,'Failed login attempt with username podct','36.94.142.166',1660714382,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(48354,'Failed login attempt with username podct','143.244.143.195',1660715318,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(48355,'Failed login attempt with username podct','104.248.139.32',1660715348,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48356,'Failed login attempt with username podct','188.165.198.224',1660715957,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(48357,'Failed login attempt with username podct','69.163.224.107',1660716590,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(48358,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1660716651,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48359,'Failed login attempt with username podct','67.205.1.9',1660717222,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(48360,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1660717879,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/E7FBAF',1,'andyblecherpodiatrist',NULL),(48361,'Failed login attempt with username podct','45.120.69.121',1660718481,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(48362,'Failed login attempt with username podct','47.110.72.238',1660719110,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48363,'Failed login attempt with username podct','139.59.109.241',1660719513,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48364,'Failed login attempt with username podct','144.217.15.207',1660720360,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48365,'Failed login attempt with username podct','142.93.201.0',1660720994,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48366,'Failed login attempt with username admin','185.119.81.108',1660721473,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',1,'admin',NULL),(48367,'Failed login attempt with username podct','64.225.65.31',1660721611,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(48368,'Failed login attempt with username podct','68.183.86.247',1660722220,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48369,'Failed login attempt with username podct','173.212.212.180',1660728245,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48370,'Failed login attempt with username podct','50.116.43.78',1660728849,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(48371,'Failed login attempt with username podct','51.75.15.189',1660729457,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(48372,'Failed login attempt with username podct','157.7.174.49',1660730068,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48373,'Failed login attempt with username podct','185.2.4.134',1660730699,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(48374,'Request for file /assets/images/accesson.php which doesn\'t exist','152.89.196.13',1660731022,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/assets/images/accesson.php',NULL),(48375,'Failed login attempt with username podct','157.230.127.126',1660731295,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48376,'Failed login attempt with username podct','66.70.177.215',1660731655,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48377,'Failed login attempt with username podct','149.56.26.54',1660731914,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48378,'Failed login attempt with username podct','118.27.30.151',1660732536,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48379,'Failed login attempt with username podct','185.2.4.134',1660733152,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(48380,'Failed login attempt with username podct','103.130.218.189',1660733772,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(48381,'Failed login attempt with username podct','188.166.236.35',1660734394,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48382,'Failed login attempt with username podct','209.97.151.249',1660735014,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(48383,'Failed login attempt with username podct','47.110.72.238',1660735638,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48384,'Failed login attempt with username podct','165.22.202.216',1660735658,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48385,'Failed login attempt with username podct','68.183.71.174',1660736266,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(48386,'Failed login attempt with username podct','184.168.126.242',1660736588,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48387,'Failed login attempt with username podct','47.114.72.18',1660736897,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(48388,'Failed login attempt with username podct','193.107.158.16',1660737335,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48389,'Failed login attempt with username podct','69.163.152.108',1660737520,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(48390,'Failed login attempt with username podct','134.209.184.76',1660738190,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48391,'Failed login attempt with username podct','104.45.41.45',1660738195,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48392,'Failed login attempt with username podct','85.191.40.94',1660738786,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48393,'Failed login attempt with username podct','185.46.121.66',1660739032,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48394,'Failed login attempt with username wadminw','35.213.170.208',1660739225,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(48395,'Failed login attempt with username podct','217.61.128.209',1660739788,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48396,'Failed login attempt with username wwwadmin','104.45.41.45',1660740129,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(48397,'Failed login attempt with username podct','159.203.120.246',1660740164,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(48398,'Request for file /votes.php which doesn\'t exist','164.90.152.238',1660740466,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/votes.php',NULL),(48399,'Request for file /votes.php.suspected which doesn\'t exist','164.90.152.238',1660740469,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/votes.php.suspected',NULL),(48400,'Request for file /votes.php which doesn\'t exist','164.90.152.238',1660740470,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/votes.php',NULL),(48401,'Request for file /votes.php.suspected which doesn\'t exist','164.90.152.238',1660740472,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/votes.php.suspected',NULL),(48402,'Request for file /wp-includes/ms-cache.php which doesn\'t exist','164.90.152.238',1660740473,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/ms-cache.php',NULL),(48403,'Request for file /wp-includes/ms-cache.php.suspected which doesn\'t exist','164.90.152.238',1660740475,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/ms-cache.php.suspected',NULL),(48404,'Request for file /wp-includes/ms-cache.php which doesn\'t exist','164.90.152.238',1660740477,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/ms-cache.php',NULL),(48405,'Request for file /wp-includes/ms-cache.php.suspected which doesn\'t exist','164.90.152.238',1660740478,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/ms-cache.php.suspected',NULL),(48406,'Request for file /2index.php which doesn\'t exist','164.90.152.238',1660740480,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/2index.php',NULL),(48407,'Request for file /2index.php.suspected which doesn\'t exist','164.90.152.238',1660740482,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/2index.php.suspected',NULL),(48408,'Request for file /2index.php which doesn\'t exist','164.90.152.238',1660740483,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/2index.php',NULL),(48409,'Request for file /2index.php.suspected which doesn\'t exist','164.90.152.238',1660740485,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/2index.php.suspected',NULL),(48410,'Request for file /wp-content/themes/FifteenTen/403.php which doesn\'t exist','164.90.152.238',1660740486,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/FifteenTen/403.php',NULL),(48411,'Request for file /wp-content/themes/FifteenTen/403.php.suspected which doesn\'t exist','164.90.152.238',1660740488,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/FifteenTen/403.php.suspected',NULL),(48412,'Request for file /wp-content/themes/FifteenTen/403.php which doesn\'t exist','164.90.152.238',1660740490,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/FifteenTen/403.php',NULL),(48413,'Request for file /wp-content/themes/FifteenTen/403.php.suspected which doesn\'t exist','164.90.152.238',1660740491,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/FifteenTen/403.php.suspected',NULL),(48414,'Request for file /.suspected which doesn\'t exist','164.90.152.238',1660740494,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/.suspected',NULL),(48415,'Request for file /.suspected which doesn\'t exist','164.90.152.238',1660740497,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/.suspected',NULL),(48416,'Request for file /ssrtwerer which doesn\'t exist','164.90.152.238',1660740499,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/ssrtwerer',NULL),(48417,'Request for file /ssrtwerer.suspected which doesn\'t exist','164.90.152.238',1660740501,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/ssrtwerer.suspected',NULL),(48418,'Lockout occurred:  Too many 404 requests for /ssrtwerer.suspected','164.90.152.238',1660740501,'404_lockout','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/ssrtwerer.suspected',NULL),(48419,'Failed login attempt with username podct','188.166.225.235',1660740793,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48420,'Failed login attempt with username podct','213.151.33.40',1660741432,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(48421,'Failed login attempt with username podct','47.98.207.210',1660742070,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(48422,'Failed login attempt with username podct','161.35.52.207',1660742702,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(48423,'Failed login attempt with username podct','162.144.87.29',1660743342,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48424,'Failed login attempt with username podct','157.7.174.49',1660744602,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48425,'Failed login attempt with username podct','39.103.157.70',1660745235,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(48426,'Failed login attempt with username podct','178.18.248.127',1660745865,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(48427,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1660746002,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48428,'Failed login attempt with username podct','118.27.30.151',1660746496,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(48429,'Failed login attempt with username podct','109.168.97.89',1660747126,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(48430,'Failed login attempt with username podct','138.68.67.56',1660747776,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(48431,'Failed login attempt with username podct','165.232.190.145',1660748205,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48432,'Failed login attempt with username podct','51.38.192.91',1660748646,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(48433,'Failed login attempt with username podct','128.199.100.142',1660749516,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48434,'Failed login attempt with username podct','91.249.163.48',1660750393,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(48435,'Failed login attempt with username podct','51.178.178.230',1660751256,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(48436,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1660751383,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48437,'Failed login attempt with username podct','54.37.156.240',1660752120,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48438,'Failed login attempt with username podct','35.236.69.208',1660752393,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48439,'Failed login attempt with username podct','167.172.142.236',1660752968,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(48440,'Failed login attempt with username podct','165.232.180.174',1660753818,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(48441,'Failed login attempt with username podct','121.243.95.160',1660754677,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48442,'Request for file /asfewfefs.php which doesn\'t exist','152.89.196.13',1660755269,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/asfewfefs.php',NULL),(48443,'Failed login attempt with username podct','207.46.234.202',1660755516,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(48444,'Failed login attempt with username admin','185.119.81.108',1660755914,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36',1,'admin',NULL),(48445,'Request for file /assets/images/1.php which doesn\'t exist','152.89.196.13',1660756489,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/assets/images/1.php',NULL),(48446,'Failed login attempt with username podct','85.25.210.251',1660756575,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48447,'Failed login attempt with username podct','178.128.5.109',1660757189,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48448,'Failed login attempt with username admin','185.119.81.101',1660757846,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'admin',NULL),(48449,'Failed login attempt with username podct','103.130.218.189',1660758006,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(48450,'Request for file /wp-content/uploads/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660758110,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/wp-content/uploads/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48451,'Failed login attempt with username podct','103.149.154.8',1660758817,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48452,'Request for file /wp-content/plugins/mac-photo-gallery/macdownload.php?albid=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660758986,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/mac-photo-gallery/macdownload.php?albid=../../../wp-config.php',NULL),(48453,'Request for file /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660758992,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../wp-config.php',NULL),(48454,'Request for file /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660758996,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../wp-config.php',NULL),(48455,'Request for file /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php?dir=../../../../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759000,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php?dir=../../../../../../../wp-config.php',NULL),(48456,'Request for file /wp-content/plugins/dzs-zoomsounds/savepng.php?location=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759005,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/dzs-zoomsounds/savepng.php?location=../../../wp-config.php',NULL),(48457,'Request for file /wp-content/force-download.php?file=../wp-config.php which doesn\'t exist','178.159.37.95',1660759010,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/force-download.php?file=../wp-config.php',NULL),(48458,'Request for file /wp-content/plugins/BackUp/Archive.php?bkpwp_plugin_path=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759015,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/BackUp/Archive.php?bkpwp_plugin_path=../../../wp-config.php',NULL),(48459,'Request for file /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759041,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../wp-config.php',NULL),(48460,'Request for file /wp-config.original which doesn\'t exist','178.159.37.95',1660759056,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.original',NULL),(48461,'Request for file /wp-config.txt which doesn\'t exist','178.159.37.95',1660759061,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.txt',NULL),(48462,'Request for file /wp-config.php.original which doesn\'t exist','178.159.37.95',1660759065,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.php.original',NULL),(48463,'Request for file /wp-content/plugins/BackUp/Archive/Predicate.php?bkpwp_plugin_path=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759136,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/BackUp/Archive/Predicate.php?bkpwp_plugin_path=../../../../wp-config.php',NULL),(48464,'Request for file /wp-content/plugins/BackUp/Archive/Reader.php?bkpwp_plugin_path=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759143,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/BackUp/Archive/Reader.php?bkpwp_plugin_path=../../../../wp-config.php',NULL),(48465,'Request for file /wp-content/plugins/BackUp/Archive/Writer.php?bkpwp_plugin_path=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759147,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/BackUp/Archive/Writer.php?bkpwp_plugin_path=../../../../wp-config.php',NULL),(48466,'Request for file /wp-content/plugins/Enigma2.php?boarddir=../../wp-config.php which doesn\'t exist','178.159.37.95',1660759151,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/Enigma2.php?boarddir=../../wp-config.php',NULL),(48467,'Request for file /wp-content/plugins/abtest/abtest_admin.php?action=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759158,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/abtest/abtest_admin.php?action=../../../wp-config.php',NULL),(48468,'Request for file /wp-config.txt which doesn\'t exist','178.159.37.95',1660759206,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.txt',NULL),(48469,'Request for file /wp-config.php.original which doesn\'t exist','178.159.37.95',1660759211,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.php.original',NULL),(48470,'Request for file /wp-content/plugins/w3-total-cache/pub/sns.php?message=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759224,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/w3-total-cache/pub/sns.php?message=../../../../wp-config.php',NULL),(48471,'Request for file /wp-content/plugins/website-contact-form-with-file-upload/lib/wide-image/image-processor.php?demo=../../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759229,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/website-contact-form-with-file-upload/lib/wide-image/image-processor.php?demo=../../../../../wp-config.php',NULL),(48472,'Lockout occurred:  Too many 404 requests for /wp-content/plugins/website-contact-form-with-file-upload/lib/wide-image/image-processor.php?demo=../../../../../wp-config.php','178.159.37.95',1660759229,'404_lockout','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/website-contact-form-with-file-upload/lib/wide-image/image-processor.php?demo=../../../../../wp-config.php',NULL),(48473,'Request for file /wp-content/plugins/photocart-link/decode.php?id=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759534,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/photocart-link/decode.php?id=../../../wp-config.php',NULL),(48474,'Request for file /wp-content/plugins/pica-photo-gallery/picadownload.php?imgname=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759539,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/pica-photo-gallery/picadownload.php?imgname=../../../wp-config.php',NULL),(48475,'Request for file /wp-content/plugins/pictpress/resize.php?size=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759544,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/pictpress/resize.php?size=../../../wp-config.php',NULL),(48476,'Request for file /wp-content/plugins/plugin-newsletter/preview.php?data=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759548,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/plugin-newsletter/preview.php?data=../../../wp-config.php',NULL),(48477,'Request for file /wp-content/plugins/post-recommendations-for-wordpress/lib/api.php?abspath=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759552,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/post-recommendations-for-wordpress/lib/api.php?abspath=../../../../wp-config.php',NULL),(48478,'Request for file /wp-content/plugins/rb-agency/ext/forcedownload.php?file=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759559,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/rb-agency/ext/forcedownload.php?file=../../../../wp-config.php',NULL),(48479,'Request for file /wp-content/plugins/recent-backups/download-file.php?file_link=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759563,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/recent-backups/download-file.php?file_link=../../../wp-config.php',NULL),(48480,'Request for file /wp-content/plugins/relocate-upload/relocate-upload.php?ru_folder=asdf&abspath=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759566,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/relocate-upload/relocate-upload.php?ru_folder=asdf&abspath=../../../wp-config.php',NULL),(48481,'Request for file /wp-content/plugins/robotcpa/f.php?l=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759570,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/robotcpa/f.php?l=../../../wp-config.php',NULL),(48482,'Request for file /wp-content/plugins/s3bubble-amazon-s3-html-5-video-with-adverts/assets/plugins/ultimate/content/downloader.php?name=wp-config.php&path=../../../../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759574,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/s3bubble-amazon-s3-html-5-video-with-adverts/assets/plugins/ultimate/content/downloader.php?name=wp-config.php&path=../../../../../../../wp-config.php',NULL),(48483,'Request for file /wp-content/plugins/s3bubble-amazon-s3-html-5-video-with-adverts/assets/plugins/ultimate/content/downloader.php?path=../../../../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759580,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/s3bubble-amazon-s3-html-5-video-with-adverts/assets/plugins/ultimate/content/downloader.php?path=../../../../../../../wp-config.php',NULL),(48484,'Request for file /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759584,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=../../../wp-config.php',NULL),(48485,'Request for file /wp-content/plugins/sell-downloads/sell-downloads.php?file=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759588,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/sell-downloads/sell-downloads.php?file=../../../wp-config.php',NULL),(48486,'Request for file /wp-content/plugins/seo-automatic-seo-tools/feedcommander/get_download.php?file=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759592,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/seo-automatic-seo-tools/feedcommander/get_download.php?file=../../../../wp-config.php',NULL),(48487,'Request for file /wp-content/plugins/sf-booking/lib/downloads.php?file=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759596,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/sf-booking/lib/downloads.php?file=../../../../wp-config.php',NULL),(48488,'Request for file /wp-content/plugins/simple-download-button-shortcode/simple-download-button_dl.php?file=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759603,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/simple-download-button-shortcode/simple-download-button_dl.php?file=../../../wp-config.php',NULL),(48489,'Request for file /wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759607,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=../../../wp-config.php',NULL),(48490,'Request for file /wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759609,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=../../../../wp-config.php',NULL),(48491,'Request for file /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759613,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php',NULL),(48492,'Request for file /wp-content/plugins/site-import/admin/page.php?url=../../../../wp-config.php which doesn\'t exist','178.159.37.95',1660759616,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/site-import/admin/page.php?url=../../../../wp-config.php',NULL),(48493,'Lockout occurred:  Too many 404 requests for /wp-content/plugins/site-import/admin/page.php?url=../../../../wp-config.php','178.159.37.95',1660759616,'404_lockout','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/site-import/admin/page.php?url=../../../../wp-config.php',NULL),(48494,'Failed login attempt with username podct','139.59.118.238',1660759633,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(48495,'Failed login attempt with username podct','159.203.143.36',1660760458,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48496,'Failed login attempt with username podct','103.242.233.26',1660760799,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48497,'Failed login attempt with username podct','128.199.14.4',1660761283,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(48498,'Failed login attempt with username podct','171.244.0.91',1660762100,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(48499,'Failed login attempt with username podct','47.114.72.18',1660762926,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(48500,'Failed login attempt with username podct','167.172.168.111',1660763767,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(48501,'Failed login attempt with username podct','208.113.153.235',1660764584,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(48502,'Failed login attempt with username podct','159.223.97.177',1660764974,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48503,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1660765165,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48504,'Failed login attempt with username podct','209.97.162.248',1660765414,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(48505,'Failed login attempt with username podct','61.219.43.253',1660766240,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48506,'Failed login attempt with username podct','103.39.134.190',1660767081,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(48507,'Failed login attempt with username podct','52.138.180.227',1660767921,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(48508,'Failed login attempt with username podct','142.93.201.0',1660768765,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(48509,'Request for file /security.txt which doesn\'t exist','82.180.160.23',1660769079,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36',1,'/security.txt',NULL),(48510,'Failed login attempt with username podct','157.230.45.193',1660769123,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48511,'Failed login attempt with username podct','165.22.109.42',1660769590,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48512,'Failed login attempt with username podct','103.129.222.91',1660770443,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(48513,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1660771185,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48514,'Failed login attempt with username podct','50.116.43.78',1660771274,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(48515,'Failed login attempt with username podct','103.129.222.91',1660772142,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48516,'Request for file /phpinf.php which doesn\'t exist','185.83.144.103',1660772485,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/phpinf.php',NULL),(48517,'Request for file /phpinf.php which doesn\'t exist','185.83.144.103',1660772486,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/phpinf.php',NULL),(48518,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1660772665,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48519,'Failed login attempt with username podct','185.2.4.33',1660772984,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(48520,'Failed login attempt with username podct','103.11.188.43',1660773289,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48521,'Failed login attempt with username podct','165.22.109.42',1660773812,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(48522,'Failed login attempt with username podct','142.93.41.19',1660774650,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(48523,'Request for file /.quarantine/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660775129,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/.quarantine/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48524,'Request for file /wp-content/themes/sketch/get.php?key=sdfadsgh4513sdGG435341FDGWWDFGDFHDFGDSFGDFSGDFG which doesn\'t exist','152.89.196.13',1660775187,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/wp-content/themes/sketch/get.php?key=sdfadsgh4513sdGG435341FDGWWDFGDFHDFGDSFGDFSGDFG',NULL),(48525,'Failed login attempt with username podct','207.46.234.202',1660775507,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(48526,'Request for file /wp-content/uploads/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660775884,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-content/uploads/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48527,'Failed login attempt with username podct','124.153.66.86',1660777223,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48528,'Failed login attempt with username podct','45.32.100.211',1660777359,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48529,'Failed login attempt with username podct','165.22.109.42',1660778064,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(48530,'Failed login attempt with username podct','138.68.140.0',1660778925,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(48531,'Failed login attempt with username podct','51.89.47.206',1660779777,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(48532,'Failed login attempt with username podct','85.91.237.106',1660780643,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(48533,'Failed login attempt with username podct','173.236.242.233',1660781492,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(48534,'Failed login attempt with username podct','142.93.225.233',1660781633,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48535,'Failed login attempt with username podct','67.205.39.9',1660782348,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(48536,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1660782601,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48537,'Failed login attempt with username podct','159.203.120.246',1660783212,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(48538,'Failed login attempt with username podct','43.251.132.12',1660784075,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48539,'Failed login attempt with username podct','139.59.96.126',1660785793,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(48540,'Failed login attempt with username podct','134.122.112.76',1660785814,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48541,'Failed login attempt with username podct','103.149.154.8',1660786637,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(48542,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1660787364,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48543,'Failed login attempt with username podct','139.59.96.126',1660787497,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(48544,'Failed login attempt with username podct','188.166.236.35',1660788363,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(48545,'Request for file /apple-touch-icon.png which doesn\'t exist','82.145.215.206',1660788812,'404_error','Go-http-client/1.1',1,'/apple-touch-icon.png',NULL),(48546,'Failed login attempt with username podct','139.59.96.126',1660789218,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(48547,'Failed login attempt with username podct','35.236.69.208',1660790027,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48548,'Failed login attempt with username podct','34.69.109.132',1660790063,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(48549,'Failed login attempt with username podct','8.210.146.161',1660790891,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48550,'Request for file /interesting-articles/ which doesn\'t exist','154.54.249.206',1660791189,'404_error','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',1,'/interesting-articles/',NULL),(48551,'Failed login attempt with username podct','172.104.156.149',1660791712,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(48552,'Request for file /wp-content/uploads/wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660792028,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-content/uploads/wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48553,'Failed login attempt with username podct','157.230.127.126',1660792525,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(48554,'Request for file /wp-content/uploads/2020/12/ups.phpups.php which doesn\'t exist','152.89.196.13',1660792784,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-content/uploads/2020/12/ups.phpups.php',NULL),(48555,'Failed login attempt with username podct','104.131.68.19',1660793345,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(48556,'Request for file /wp-content/themes/twentyfive/get.php?key=sdfadsgh4513sdGG435341FDGWWDFGDFHDFGDSFGDFSGDFG which doesn\'t exist','152.89.196.13',1660793487,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/wp-content/themes/twentyfive/get.php?key=sdfadsgh4513sdGG435341FDGWWDFGDFHDFGDSFGDFSGDFG',NULL),(48557,'Failed login attempt with username podct','167.172.168.111',1660794163,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(48558,'Request for file /.tmb/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660794234,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/.tmb/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48559,'Failed login attempt with username podct','213.136.93.169',1660794368,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48560,'Request for file /wp-content/mu-plugins/.06e0f.php which doesn\'t exist','152.89.196.13',1660794684,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-content/mu-plugins/.06e0f.php',NULL),(48561,'Failed login attempt with username podct','104.248.55.1',1660794981,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48562,'Failed login attempt with username podct','167.172.153.166',1660796658,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(48563,'Request for file /_profiler/phpinfo which doesn\'t exist','88.214.43.118',1660796840,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/_profiler/phpinfo',NULL),(48564,'Request for file /_profiler/phpinfo which doesn\'t exist','88.214.43.118',1660796840,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/_profiler/phpinfo',NULL),(48565,'Failed login attempt with username podct','23.97.205.210',1660797520,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(48566,'Request for file /wp-content/plugins/welcome-to-wordpress/resources/web.config/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660798143,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/wp-content/plugins/welcome-to-wordpress/resources/web.config/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48567,'Request for file /wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac which doesn\'t exist','152.89.196.13',1660798143,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac',NULL),(48568,'Failed login attempt with username podct','46.20.146.41',1660798715,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48569,'Request for file /wp-content/uploads/2022/02/ups.phpups.php which doesn\'t exist','152.89.196.13',1660799233,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-content/uploads/2022/02/ups.phpups.php',NULL),(48570,'Failed login attempt with username podct','165.232.190.145',1660802989,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48571,'Failed login attempt with username podct','147.182.230.210',1660807325,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48572,'Request for file /interesting-articles/ which doesn\'t exist','102.65.63.9',1660807889,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',1,'/interesting-articles/',NULL),(48573,'Failed login attempt with username podct','103.163.246.98',1660811735,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48574,'Request for file /nin.php which doesn\'t exist','152.89.196.13',1660812554,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/nin.php',NULL),(48575,'Request for file /style.php which doesn\'t exist','107.182.129.189',1660815617,'404_error','wp_is_mobile',1,'/style.php',NULL),(48576,'Request for file /wp-admin/style.php which doesn\'t exist','107.182.129.189',1660815621,'404_error','wp_is_mobile',1,'/wp-admin/style.php',NULL),(48577,'Request for file /s_e.php which doesn\'t exist','107.182.129.189',1660815624,'404_error','wp_is_mobile',1,'/s_e.php',NULL),(48578,'Request for file /s_ne.php which doesn\'t exist','107.182.129.189',1660815626,'404_error','wp_is_mobile',1,'/s_ne.php',NULL),(48579,'Request for file /1index.php which doesn\'t exist','107.182.129.189',1660815630,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/1index.php',NULL),(48580,'Request for file /3index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','107.182.129.189',1660815632,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/3index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(48581,'Request for file /wikindex.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','107.182.129.189',1660815634,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wikindex.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(48582,'Request for file /wp-content/mu-plugins-old/?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','107.182.129.189',1660815638,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/mu-plugins-old/?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(48583,'Request for file /radio.php which doesn\'t exist','107.182.129.189',1660815643,'404_error','wp_is_mobile',1,'/radio.php',NULL),(48584,'Request for file /lock360.php?daksldlkdsadas=1 which doesn\'t exist','107.182.129.189',1660815645,'404_error','wp_is_mobile',1,'/lock360.php?daksldlkdsadas=1',NULL),(48585,'Request for file /old-index.php?daksldlkdsadas=1 which doesn\'t exist','107.182.129.189',1660815648,'404_error','wp_is_mobile',1,'/old-index.php?daksldlkdsadas=1',NULL),(48586,'Request for file /xmrlpc.php?daksldlkdsadas=1 which doesn\'t exist','107.182.129.189',1660815650,'404_error','wp_is_mobile',1,'/xmrlpc.php?daksldlkdsadas=1',NULL),(48587,'Request for file /xmlrpcs.php?daksldlkdsadas=1 which doesn\'t exist','107.182.129.189',1660815654,'404_error','wp_is_mobile',1,'/xmlrpcs.php?daksldlkdsadas=1',NULL),(48588,'Request for file /wp-admin.php?daksldlkdsadas=1 which doesn\'t exist','107.182.129.189',1660815656,'404_error','wp_is_mobile',1,'/wp-admin.php?daksldlkdsadas=1',NULL),(48589,'Request for file /qindex.php?daksldlkdsadas=1 which doesn\'t exist','107.182.129.189',1660815659,'404_error','wp_is_mobile',1,'/qindex.php?daksldlkdsadas=1',NULL),(48590,'Request for file /doc.php which doesn\'t exist','107.182.129.189',1660815660,'404_error','wp_is_mobile',1,'/doc.php',NULL),(48591,'Request for file /wp_wrong_datlib.php which doesn\'t exist','107.182.129.189',1660815663,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp_wrong_datlib.php',NULL),(48592,'Request for file /beence.php which doesn\'t exist','107.182.129.189',1660815665,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/beence.php',NULL),(48593,'Request for file /ups.php which doesn\'t exist','107.182.129.189',1660815666,'404_error','wp_is_mobile',1,'/ups.php',NULL),(48594,'Request for file /wp-signin.php?dizo&ping which doesn\'t exist','107.182.129.189',1660815668,'404_error','wp_is_mobile',1,'/wp-signin.php?dizo&ping',NULL),(48595,'Lockout occurred:  Too many 404 requests for /wp-signin.php?dizo&ping','107.182.129.189',1660815669,'404_lockout','wp_is_mobile',1,'/wp-signin.php?dizo&ping',NULL),(48596,'Request for file /get.php?f=f which doesn\'t exist','152.89.196.13',1660815699,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/get.php?f=f',NULL),(48597,'Failed login attempt with username podct','91.82.85.177',1660816037,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48598,'Request for file /modules/mod_ariimageslidersa/get.php?key=sdfadsgh4513sdGG435341FDGWWDFGDFHDFGDSFGDFSGDFG which doesn\'t exist','152.89.196.13',1660817172,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/modules/mod_ariimageslidersa/get.php?key=sdfadsgh4513sdGG435341FDGWWDFGDFHDFGDSFGDFSGDFG',NULL),(48599,'Request for file /interesting-articles/ which doesn\'t exist','34.76.203.195',1660819032,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',1,'/interesting-articles/',NULL),(48600,'Request for file /util/login.aspx which doesn\'t exist','34.76.203.195',1660819048,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',1,'/util/login.aspx',NULL),(48601,'Request for file /install.php which doesn\'t exist','34.76.203.195',1660819049,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',1,'/install.php',NULL),(48602,'Request for file /magento_version which doesn\'t exist','34.76.203.195',1660819049,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',1,'/magento_version',NULL),(48603,'Failed login attempt with username podct','65.20.73.236',1660820568,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48604,'Request for file /wp-content/plugins/dzs-videogallery/admin/upload/hello.phP?450799=1 which doesn\'t exist','89.25.109.154',1660821682,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/plugins/dzs-videogallery/admin/upload/hello.phP?450799=1',NULL),(48605,'Request for file /wp-content/themes/ammon/admin/dzsuploader/upload/hello.phP?450799=1 which doesn\'t exist','89.25.109.154',1660821693,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/themes/ammon/admin/dzsuploader/upload/hello.phP?450799=1',NULL),(48606,'Request for file /fresh.php which doesn\'t exist','89.25.109.154',1660821694,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/fresh.php',NULL),(48607,'Request for file /fresh1.php which doesn\'t exist','89.25.109.154',1660821808,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/fresh1.php',NULL),(48608,'Request for file /.env which doesn\'t exist','178.128.46.160',1660823907,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(48609,'Request for file /vendor/.env which doesn\'t exist','178.128.46.160',1660823910,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/vendor/.env',NULL),(48610,'Request for file /storage/.env which doesn\'t exist','178.128.46.160',1660823911,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/storage/.env',NULL),(48611,'Request for file /public/.env which doesn\'t exist','178.128.46.160',1660823913,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/public/.env',NULL),(48612,'Request for file /local/.env which doesn\'t exist','178.128.46.160',1660823915,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/local/.env',NULL),(48613,'Request for file /private/.env which doesn\'t exist','178.128.46.160',1660823916,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/private/.env',NULL),(48614,'Request for file /docker/.env which doesn\'t exist','178.128.46.160',1660823917,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/docker/.env',NULL),(48615,'Request for file /system/.env which doesn\'t exist','178.128.46.160',1660823919,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/system/.env',NULL),(48616,'Request for file /shared/.env which doesn\'t exist','178.128.46.160',1660823921,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/shared/.env',NULL),(48617,'Request for file /public/.env which doesn\'t exist','178.128.46.160',1660823923,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/public/.env',NULL),(48618,'Request for file /apps/.env which doesn\'t exist','178.128.46.160',1660823924,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/apps/.env',NULL),(48619,'Request for file /api/.env which doesn\'t exist','178.128.46.160',1660823925,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/api/.env',NULL),(48620,'Request for file /app/.env which doesn\'t exist','178.128.46.160',1660823927,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/app/.env',NULL),(48621,'Request for file /cp/.env which doesn\'t exist','178.128.46.160',1660823928,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/cp/.env',NULL),(48622,'Request for file /core/.env which doesn\'t exist','178.128.46.160',1660823930,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/core/.env',NULL),(48623,'Failed login attempt with username podct','171.244.139.185',1660825083,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48624,'Failed login attempt with username podct','201.244.123.76',1660829651,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48625,'Failed login attempt with username podct','142.93.225.233',1660834181,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48626,'Request for file /vendor/phpunit/phpunit/phpunit.xsd which doesn\'t exist','20.238.46.201',1660836832,'404_error','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0',1,'/vendor/phpunit/phpunit/phpunit.xsd',NULL),(48627,'Failed login attempt with username podct','185.141.171.155',1660838738,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48628,'Failed login attempt with username podct','177.55.111.74',1660843326,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48629,'Failed login attempt with username podct','46.4.11.106',1660847767,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48630,'Failed login attempt with username podct','85.146.27.185',1660852192,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48631,'Request for file /.env which doesn\'t exist','206.189.121.132',1660854838,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(48632,'Failed login attempt with username podct','107.180.88.41',1660861234,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48633,'Failed login attempt with username podct','134.122.112.76',1660870179,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48634,'Failed login attempt with username podct','206.189.182.64',1660874666,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48635,'Request for file /apple-touch-icon.png which doesn\'t exist','82.145.215.206',1660877684,'404_error','Go-http-client/1.1',1,'/apple-touch-icon.png',NULL),(48636,'Failed login attempt with username podct','148.72.214.212',1660879282,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48637,'Failed login attempt with username podct','209.236.119.42',1660883869,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48638,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48639,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48640,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48641,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48642,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48643,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48644,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48645,'Request for file /.git/config which doesn\'t exist','34.220.255.147',1660884520,'404_error','python-requests/2.27.1',1,'/.git/config',NULL),(48646,'Failed login attempt with username podct','148.72.214.212',1660888276,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48647,'Failed login attempt with username podct','159.223.97.177',1660892841,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48648,'Failed login attempt with username podct','157.230.45.193',1660897268,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48649,'Failed login attempt with username podct','65.52.67.200',1660901607,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48650,'Failed login attempt with username podct','141.94.102.163',1660905937,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48651,'Failed login attempt with username podct','120.78.173.254',1660910306,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48652,'Failed login attempt with username podct','65.20.73.236',1660914708,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48653,'Failed login attempt with username wadminw','185.126.219.43',1660915609,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(48654,'Request for file /1index.php?pass=shell which doesn\'t exist','185.244.175.80',1660916270,'404_error','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'/1index.php?pass=shell',NULL),(48655,'Failed login attempt with username wwwadmin','62.90.101.113',1660916659,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(48656,'Failed login attempt with username podct','202.131.237.197',1660919135,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48657,'Failed login attempt with username podct','66.70.177.215',1660923525,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48658,'Request for file /.env which doesn\'t exist','20.228.205.116',1660926039,'404_error','Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30',1,'/.env',NULL),(48659,'Request for file /style.php which doesn\'t exist','80.76.51.29',1660927204,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/style.php',NULL),(48660,'Request for file /moduless.php which doesn\'t exist','80.76.51.29',1660927210,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/moduless.php',NULL),(48661,'Request for file /wp-content/plugins/t_file_wp/t_file_wp.php?test=hello which doesn\'t exist','80.76.51.29',1660927243,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello',NULL),(48662,'Request for file /admin.php which doesn\'t exist','80.76.51.29',1660927249,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/admin.php',NULL),(48663,'Request for file /boom.php?x which doesn\'t exist','80.76.51.29',1660927287,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/boom.php?x',NULL),(48664,'Request for file /wp-content/plugins/backup_index.php which doesn\'t exist','80.76.51.29',1660927293,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/plugins/backup_index.php',NULL),(48665,'Request for file /wp-content/db_cache.php which doesn\'t exist','80.76.51.29',1660927305,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/db_cache.php',NULL),(48666,'Request for file /wp-content/plugins/ioptimization/IOptimize.php?rchk which doesn\'t exist','80.76.51.29',1660927311,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/plugins/ioptimization/IOptimize.php?rchk',NULL),(48667,'Request for file /xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','80.76.51.29',1660927324,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(48668,'Request for file /wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','80.76.51.29',1660927330,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(48669,'Request for file /larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','80.76.51.29',1660927352,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(48670,'Request for file /th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','80.76.51.29',1660927379,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(48671,'Request for file /alfindex.php which doesn\'t exist','80.76.51.29',1660927382,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/alfindex.php',NULL),(48672,'Request for file /alfa.php which doesn\'t exist','80.76.51.29',1660927390,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/alfa.php',NULL),(48673,'Request for file /wp-booking.php which doesn\'t exist','80.76.51.29',1660927432,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-booking.php',NULL),(48674,'Request for file /cindex.php which doesn\'t exist','80.76.51.29',1660927452,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/cindex.php',NULL),(48675,'Request for file /wp-content/wp-1ogin_bak.php which doesn\'t exist','80.76.51.29',1660927457,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/wp-1ogin_bak.php',NULL),(48676,'Request for file /wp-1ogin_bak.php which doesn\'t exist','80.76.51.29',1660927470,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-1ogin_bak.php',NULL),(48677,'Request for file /wp-includes/fonts/css.php which doesn\'t exist','80.76.51.29',1660927477,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/fonts/css.php',NULL),(48678,'Request for file /wp-includes/css/css.php which doesn\'t exist','80.76.51.29',1660927486,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/css/css.php',NULL),(48679,'Lockout occurred:  Too many 404 requests for /wp-includes/css/css.php','80.76.51.29',1660927486,'404_lockout','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/css/css.php',NULL),(48680,'Failed login attempt with username podct','65.52.67.200',1660928026,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48681,'Failed login attempt with username admin','23.99.229.218',1660931150,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'admin',NULL),(48682,'Failed login attempt with username admin','202.29.236.140',1660932378,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'admin',NULL),(48683,'Failed login attempt with username podct','159.89.165.49',1660932471,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48684,'Failed login attempt with username admin','171.244.0.91',1660933582,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'admin',NULL),(48685,'Failed login attempt with username admin','64.111.120.253',1660934782,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'admin',NULL),(48686,'Failed login attempt with username admin','85.191.40.94',1660935980,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'admin',NULL),(48687,'Failed login attempt with username podct','69.163.192.25',1660936943,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48688,'Failed login attempt with username admin','159.89.207.135',1660937157,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'admin',NULL),(48689,'Request for file /wp-config.inc which doesn\'t exist','35.86.222.193',1660937564,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.inc',NULL),(48690,'Request for file /wp-config.old which doesn\'t exist','35.86.222.193',1660937571,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.old',NULL),(48691,'Request for file /wp-config.php.bak which doesn\'t exist','35.86.222.193',1660937577,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.php.bak',NULL),(48692,'Request for file /wp-config.php.dist which doesn\'t exist','35.86.222.193',1660937582,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.php.dist',NULL),(48693,'Request for file /wp-config.php.inc which doesn\'t exist','35.86.222.193',1660937588,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.php.inc',NULL),(48694,'Request for file /wp-config.php.old which doesn\'t exist','35.86.222.193',1660937594,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.php.old',NULL),(48695,'Request for file /wp-config.php~ which doesn\'t exist','35.86.222.193',1660937604,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.php~',NULL),(48696,'Request for file /wp-config.php.txt which doesn\'t exist','35.86.222.193',1660937618,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.php.txt',NULL),(48697,'Request for file /wp-config.txt which doesn\'t exist','35.86.222.193',1660937625,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/wp-config.txt',NULL),(48698,'Request for file /.env which doesn\'t exist','35.86.222.193',1660937631,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/.env',NULL),(48699,'Request for file /phpinfo.php which doesn\'t exist','35.86.222.193',1660937645,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/phpinfo.php',NULL),(48700,'Request for file /info.php which doesn\'t exist','35.86.222.193',1660937651,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/info.php',NULL),(48701,'Request for file /_profiler/phpinfo which doesn\'t exist','35.86.222.193',1660937661,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/_profiler/phpinfo',NULL),(48702,'Failed login attempt with username podct','168.119.80.254',1660938329,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(48703,'Failed login attempt with username podct','161.35.52.207',1660939509,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(48704,'Failed login attempt with username podct','173.212.212.180',1660940732,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(48705,'Request for file /wp-content/mu-plugins-old/1index.php?pass=shell which doesn\'t exist','185.244.175.80',1660940787,'404_error','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'/wp-content/mu-plugins-old/1index.php?pass=shell',NULL),(48706,'Failed login attempt with username podct','165.232.190.145',1660941355,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48707,'Failed login attempt with username podct','185.126.219.43',1660941926,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(48708,'Failed login attempt with username podct','148.72.214.194',1660943150,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48709,'Failed login attempt with username podct','85.91.237.106',1660944251,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48710,'Failed login attempt with username admin','178.18.248.127',1660945428,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'admin',NULL),(48711,'Failed login attempt with username podct','177.101.127.172',1660945687,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48712,'Failed login attempt with username admin','120.78.15.126',1660946596,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'admin',NULL),(48713,'Failed login attempt with username admin','202.29.236.140',1660947783,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'admin',NULL),(48714,'Failed login attempt with username admin','103.130.219.13',1660948972,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'admin',NULL),(48715,'Failed login attempt with username podct','139.59.70.221',1660950169,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48716,'Failed login attempt with username admin','75.119.157.181',1660950236,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'admin',NULL),(48717,'Failed login attempt with username admin','34.65.234.0',1660951388,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'admin',NULL),(48718,'Failed login attempt with username admin','143.244.143.195',1660952599,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'admin',NULL),(48719,'Failed login attempt with username admin','217.61.54.110',1660953808,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'admin',NULL),(48720,'Request for file /wp-content/plugins/wpdiscuz/readme.txt which doesn\'t exist','78.46.195.141',1660953914,'404_error','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36',1,'/wp-content/plugins/wpdiscuz/readme.txt',NULL),(48721,'Failed login attempt with username podct','177.101.127.172',1660954516,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48722,'Failed login attempt with username admin','142.93.201.0',1660955013,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'admin',NULL),(48723,'Failed login attempt with username podct','208.113.153.235',1660956222,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(48724,'Failed login attempt with username podct','51.38.192.91',1660957439,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48725,'Failed login attempt with username podct','81.88.52.106',1660958657,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(48726,'Failed login attempt with username podct','176.9.113.101',1660958989,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48727,'Failed login attempt with username podct','209.97.162.248',1660959877,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(48728,'Failed login attempt with username podct','202.29.236.140',1660961105,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(48729,'Failed login attempt with username podct','69.163.224.107',1660962330,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(48730,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1660962821,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48731,'Failed login attempt with username podct','14.225.254.199',1660963314,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48732,'Failed login attempt with username podct','103.39.134.190',1660963558,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(48733,'Request for file /wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml which doesn\'t exist','147.78.47.233',1660963985,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml',NULL),(48734,'Failed login attempt with username podct','147.78.47.233',1660963999,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(48735,'Failed login attempt with username podct','147.78.47.233',1660964000,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(48736,'Failed login attempt with username podct','147.78.47.233',1660964001,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(48737,'Failed login attempt with username podct','147.78.47.233',1660964002,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(48738,'Failed login attempt with username podct','147.78.47.233',1660964003,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(48739,'Lockout occurred: Too many failed login attempts','147.78.47.233',1660964003,'auth_lock','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(48740,'Failed login attempt with username rist','185.119.81.96',1660964645,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',1,'rist',NULL),(48741,'Failed login attempt with username podct','212.103.4.29',1660964788,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(48742,'Failed login attempt with username podct','143.244.140.199',1660966023,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(48743,'Failed login attempt with username podct','188.166.236.35',1660967258,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(48744,'Failed login attempt with username podct','176.9.113.101',1660967810,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48745,'Failed login attempt with username podct','52.166.3.59',1660968487,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(48746,'Failed login attempt with username podct','208.113.153.235',1660970922,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(48747,'Failed login attempt with username podct','104.248.55.1',1660972135,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(48748,'Failed login attempt with username podct','103.41.206.160',1660972263,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48749,'Failed login attempt with username podct','145.239.30.120',1660973321,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48750,'Failed login attempt with username podct','69.163.152.108',1660974509,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48751,'Request for file /.404.php which doesn\'t exist','88.208.243.74',1660975181,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.404.php',NULL),(48752,'Request for file /Legion.php which doesn\'t exist','88.208.243.74',1660975184,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/Legion.php',NULL),(48753,'Request for file /.4352213546.php which doesn\'t exist','88.208.243.74',1660975185,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.4352213546.php',NULL),(48754,'Request for file /.4price.php which doesn\'t exist','88.208.243.74',1660975187,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.4price.php',NULL),(48755,'Request for file /.666.php which doesn\'t exist','88.208.243.74',1660975188,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.666.php',NULL),(48756,'Request for file /.Arch.php which doesn\'t exist','88.208.243.74',1660975190,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.Arch.php',NULL),(48757,'Request for file /.F0x.php which doesn\'t exist','88.208.243.74',1660975191,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.F0x.php',NULL),(48758,'Request for file /.Lufix.php which doesn\'t exist','88.208.243.74',1660975193,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.Lufix.php',NULL),(48759,'Request for file /.Lux.php which doesn\'t exist','88.208.243.74',1660975194,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.Lux.php',NULL),(48760,'Request for file /.V3.php which doesn\'t exist','88.208.243.74',1660975196,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.V3.php',NULL),(48761,'Request for file /.V5.php which doesn\'t exist','88.208.243.74',1660975198,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.V5.php',NULL),(48762,'Request for file /.XxX.php which doesn\'t exist','88.208.243.74',1660975199,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.XxX.php',NULL),(48763,'Request for file /.alfa.php which doesn\'t exist','88.208.243.74',1660975201,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.alfa.php',NULL),(48764,'Request for file /.amon.php which doesn\'t exist','88.208.243.74',1660975202,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.amon.php',NULL),(48765,'Request for file /.ccaef.php which doesn\'t exist','88.208.243.74',1660975204,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.ccaef.php',NULL),(48766,'Request for file /.dev.php which doesn\'t exist','88.208.243.74',1660975206,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.dev.php',NULL),(48767,'Request for file /.foden.php which doesn\'t exist','88.208.243.74',1660975207,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.foden.php',NULL),(48768,'Request for file /.fuk.php which doesn\'t exist','88.208.243.74',1660975208,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.fuk.php',NULL),(48769,'Request for file /.inc20k1.php which doesn\'t exist','88.208.243.74',1660975210,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.inc20k1.php',NULL),(48770,'Request for file /.legion2.php which doesn\'t exist','88.208.243.74',1660975212,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.legion2.php',NULL),(48771,'Lockout occurred:  Too many 404 requests for /.legion2.php','88.208.243.74',1660975212,'404_lockout','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/.legion2.php',NULL),(48772,'Failed login attempt with username admin','185.119.81.105',1660975473,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'admin',NULL),(48773,'Failed login attempt with username podct','144.217.15.207',1660975707,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(48774,'Failed login attempt with username podct','103.41.206.160',1660976721,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(48775,'Failed login attempt with username podct','13.78.225.32',1660976924,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(48776,'Failed login attempt with username Neo','185.119.81.105',1660978047,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',1,'Neo',NULL),(48777,'Failed login attempt with username podct','185.2.5.31',1660978144,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(48778,'Request for file /wp-config.phpold which doesn\'t exist','103.113.24.254',1660978819,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.phpold',NULL),(48779,'Request for file /cgi-bin.zip which doesn\'t exist','182.50.132.116',1660978829,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/cgi-bin.zip',NULL),(48780,'Request for file /wp-config.php.origin which doesn\'t exist','193.28.86.94',1660978862,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.origin',NULL),(48781,'Request for file /public_html.zip which doesn\'t exist','50.62.177.21',1660978896,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/public_html.zip',NULL),(48782,'Request for file /well-known.zip which doesn\'t exist','65.108.16.51',1660978898,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/well-known.zip',NULL),(48783,'Request for file /wp-config.phppld which doesn\'t exist','139.199.28.65',1660978917,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.phppld',NULL),(48784,'Request for file /wp-admin.zip which doesn\'t exist','46.32.225.208',1660978919,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-admin.zip',NULL),(48785,'Request for file /wp-admin.zip which doesn\'t exist','166.62.43.205',1660978932,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-admin.zip',NULL),(48786,'Request for file /wp-config.phpe which doesn\'t exist','51.68.11.215',1660978945,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.phpe',NULL),(48787,'Request for file /wp-config.php.old.old which doesn\'t exist','112.78.2.90',1660978955,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.old.old',NULL),(48788,'Request for file /podiatrist.zip which doesn\'t exist','217.67.22.56',1660978964,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/podiatrist.zip',NULL),(48789,'Request for file /wp-config.php.resetwp_bak which doesn\'t exist','92.222.97.173',1660978976,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.resetwp_bak',NULL),(48790,'Request for file /wp-config.php.bad which doesn\'t exist','72.167.190.56',1660978999,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.bad',NULL),(48791,'Request for file /wp-config.php.bak.a2 which doesn\'t exist','72.167.190.13',1660979010,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.bak.a2',NULL),(48792,'Request for file /wp-config.php11 which doesn\'t exist','103.73.66.241',1660979021,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php11',NULL),(48793,'Request for file /wp-config.php.suspected which doesn\'t exist','114.34.235.74',1660979040,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.suspected',NULL),(48794,'Request for file /wp-config.php_original which doesn\'t exist','101.133.138.186',1660979043,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php_original',NULL),(48795,'Request for file /_wp-config.php which doesn\'t exist','132.148.120.152',1660979053,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/_wp-config.php',NULL),(48796,'Request for file /wp-config.php.backup which doesn\'t exist','51.222.40.124',1660979065,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.backup',NULL),(48797,'Request for file /wp-config.php_original which doesn\'t exist','103.6.196.125',1660979068,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php_original',NULL),(48798,'Request for file /wp-config.phpoo which doesn\'t exist','217.70.32.30',1660979087,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.phpoo',NULL),(48799,'Request for file /wp-config which doesn\'t exist','213.171.202.26',1660979087,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config',NULL),(48800,'Request for file /wp-config.phpoo which doesn\'t exist','51.68.11.227',1660979101,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.phpoo',NULL),(48801,'Request for file /.well-known.zip which doesn\'t exist','67.205.132.8',1660979145,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/.well-known.zip',NULL),(48802,'Request for file /wp-config.php_old which doesn\'t exist','72.167.190.73',1660979156,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php_old',NULL),(48803,'Request for file /wp-config.php.org which doesn\'t exist','138.68.247.242',1660979168,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.org',NULL),(48804,'Request for file /wp-config.php1 which doesn\'t exist','198.71.225.153',1660979179,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php1',NULL),(48805,'Request for file /-config.txt which doesn\'t exist','83.217.74.163',1660979188,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/-config.txt',NULL),(48806,'Request for file /wp-config.php-old which doesn\'t exist','31.7.76.17',1660979203,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php-old',NULL),(48807,'Request for file /wp-config.bak which doesn\'t exist','190.105.238.62',1660979214,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.bak',NULL),(48808,'Request for file /wp-config.origin which doesn\'t exist','181.177.201.171',1660979249,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.origin',NULL),(48809,'Request for file /podiatrist.capetown.zip which doesn\'t exist','45.135.128.243',1660979280,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/podiatrist.capetown.zip',NULL),(48810,'Request for file /wp-config.php-Old which doesn\'t exist','205.204.89.186',1660979295,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php-Old',NULL),(48811,'Request for file /wp-config.php_old2 which doesn\'t exist','52.163.92.84',1660979297,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php_old2',NULL),(48812,'Request for file /wp-config.php_old1 which doesn\'t exist','50.62.176.44',1660979328,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php_old1',NULL),(48813,'Request for file /wp-config.php.save which doesn\'t exist','192.169.82.134',1660979335,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.save',NULL),(48814,'Failed login attempt with username podct','69.163.224.107',1660979351,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(48815,'Request for file /wp-config.php_ which doesn\'t exist','199.192.21.226',1660979358,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php_',NULL),(48816,'Request for file /Archive.zip which doesn\'t exist','176.123.0.55',1660979369,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/Archive.zip',NULL),(48817,'Request for file /site.zip which doesn\'t exist','101.99.3.34',1660979372,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/site.zip',NULL),(48818,'Request for file /backup.zip which doesn\'t exist','139.199.28.65',1660979387,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/backup.zip',NULL),(48819,'Request for file /Archive.zip which doesn\'t exist','35.237.59.170',1660979397,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/Archive.zip',NULL),(48820,'Request for file /wp-config.php.old which doesn\'t exist','208.113.204.51',1660979404,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/wp-config.php.old',NULL),(48821,'Request for file /backup.zip which doesn\'t exist','49.50.100.233',1660979407,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'/backup.zip',NULL),(48822,'Failed login attempt with username podct','185.2.4.134',1660980556,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(48823,'Request for file /css/load.php which doesn\'t exist','37.187.131.234',1660982884,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/css/load.php',NULL),(48824,'Failed login attempt with username podct','120.78.15.126',1660982970,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48825,'Failed login attempt with username podct','69.163.196.200',1660984191,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(48826,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1660984880,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48827,'Failed login attempt with username podct','64.90.36.102',1660985408,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(48828,'Failed login attempt with username podct','95.217.179.54',1660986623,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48829,'Failed login attempt with username podct','85.146.18.88',1660987836,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(48830,'Failed login attempt with username podct','13.78.225.32',1660989051,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(48831,'Failed login attempt with username Neo','185.119.81.105',1660989562,'auth_fail','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'Neo',NULL),(48832,'Failed login attempt with username podct','178.18.248.127',1660990260,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(48833,'Failed login attempt with username podct','39.108.148.88',1660991478,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48834,'Failed login attempt with username podct','75.119.157.181',1660992694,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48835,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1660993022,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48836,'Failed login attempt with username podct','85.146.18.88',1660993916,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(48837,'Failed login attempt with username podct','159.89.27.131',1660995139,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48838,'Failed login attempt with username admin','185.119.81.109',1660995538,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'admin',NULL),(48839,'Failed login attempt with username podct','185.2.4.56',1660996360,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(48840,'Failed login attempt with username podct','34.134.161.50',1660997592,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(48841,'Failed login attempt with username podct','146.56.99.136',1660998836,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(48842,'Failed login attempt with username podct','13.81.59.92',1661000078,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(48843,'Failed login attempt with username podct','104.131.68.19',1661001331,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48844,'Failed login attempt with username podct','110.40.244.196',1661002581,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(48845,'Failed login attempt with username podct','103.130.219.13',1661003835,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(48846,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661004264,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48847,'Failed login attempt with username podct','103.130.218.178',1661005091,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(48848,'Failed login attempt with username podct','54.37.156.240',1661006352,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(48849,'Failed login attempt with username admin','185.119.81.103',1661006703,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36',1,'admin',NULL),(48850,'Failed login attempt with username podct','162.144.87.29',1661007612,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(48851,'Failed login attempt with username podct','14.241.233.205',1661008859,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48852,'Failed login attempt with username podct','51.195.148.190',1661010094,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(48853,'Request for file /wp-includes/SimplePie/font-editor.php which doesn\'t exist','35.197.62.248',1661010277,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-includes/SimplePie/font-editor.php',NULL),(48854,'Failed login attempt with username podct','120.78.15.126',1661011341,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(48855,'Failed login attempt with username podct','82.204.204.250',1661012582,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(48856,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661013327,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48857,'Failed login attempt with username podct','208.109.54.127',1661013819,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(48858,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661014098,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48859,'Failed login attempt with username podct','217.61.54.110',1661015070,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48860,'Failed login attempt with username podct','159.203.120.246',1661016314,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(48861,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661017017,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48862,'Failed login attempt with username podct','125.227.127.195',1661017556,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(48863,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1661017908,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48864,'Request for file /style.php which doesn\'t exist','194.87.218.22',1661020332,'404_error','wp_is_mobile',1,'/style.php',NULL),(48865,'Request for file /wp-admin/style.php which doesn\'t exist','194.87.218.22',1661020335,'404_error','wp_is_mobile',1,'/wp-admin/style.php',NULL),(48866,'Request for file /s_e.php which doesn\'t exist','194.87.218.22',1661020336,'404_error','wp_is_mobile',1,'/s_e.php',NULL),(48867,'Request for file /s_ne.php which doesn\'t exist','194.87.218.22',1661020338,'404_error','wp_is_mobile',1,'/s_ne.php',NULL),(48868,'Request for file /1index.php which doesn\'t exist','194.87.218.22',1661020340,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/1index.php',NULL),(48869,'Request for file /radio.php which doesn\'t exist','194.87.218.22',1661020341,'404_error','wp_is_mobile',1,'/radio.php',NULL),(48870,'Request for file /doc.php which doesn\'t exist','194.87.218.22',1661020342,'404_error','wp_is_mobile',1,'/doc.php',NULL),(48871,'Request for file /wp_wrong_datlib.php which doesn\'t exist','194.87.218.22',1661020344,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp_wrong_datlib.php',NULL),(48872,'Request for file /beence.php which doesn\'t exist','194.87.218.22',1661020345,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/beence.php',NULL),(48873,'Request for file /ups.php which doesn\'t exist','194.87.218.22',1661020347,'404_error','wp_is_mobile',1,'/ups.php',NULL),(48874,'Request for file /wp-signin.php?dizo&ping which doesn\'t exist','194.87.218.22',1661020349,'404_error','wp_is_mobile',1,'/wp-signin.php?dizo&ping',NULL),(48875,'Request for file /media-admin.php which doesn\'t exist','194.87.218.22',1661020350,'404_error','wp_is_mobile',1,'/media-admin.php',NULL),(48876,'Request for file /export.php which doesn\'t exist','194.87.218.22',1661020351,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/export.php',NULL),(48877,'Request for file /wp-content/export.php which doesn\'t exist','194.87.218.22',1661020352,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/export.php',NULL),(48878,'Request for file /wp-includes/wp-class.php which doesn\'t exist','194.87.218.22',1661020355,'404_error','wp_is_mobile',1,'/wp-includes/wp-class.php',NULL),(48879,'Request for file /wp-includes/images/css.php which doesn\'t exist','194.87.218.22',1661020359,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/images/css.php',NULL),(48880,'Request for file /wp-includes/css/css.php which doesn\'t exist','194.87.218.22',1661020361,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/css/css.php',NULL),(48881,'Request for file /defau1t.php which doesn\'t exist','194.87.218.22',1661020362,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/defau1t.php',NULL),(48882,'Request for file /moduless.php which doesn\'t exist','194.87.218.22',1661020364,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/moduless.php',NULL),(48883,'Request for file /wp-booking.php which doesn\'t exist','194.87.218.22',1661020368,'404_error','wp_is_mobile',1,'/wp-booking.php',NULL),(48884,'Lockout occurred:  Too many 404 requests for /wp-booking.php','194.87.218.22',1661020368,'404_lockout','wp_is_mobile',1,'/wp-booking.php',NULL),(48885,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661020533,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48886,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661022947,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48887,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661025428,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48888,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661030671,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48889,'Failed login attempt with username National','185.119.81.98',1661040588,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'National',NULL),(48890,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1661043558,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48891,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1661048978,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48892,'Failed login attempt with username admin','185.119.81.109',1661052659,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',1,'admin',NULL),(48893,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661055847,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48894,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1661058611,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48895,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661063091,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48896,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661063515,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48897,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1661067865,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48898,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661069264,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48899,'Failed login attempt with username podct','124.106.71.219',1661069929,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48900,'Failed login attempt with username podct','212.164.86.4',1661070378,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48901,'Failed login attempt with username podct','27.254.194.202',1661070761,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48902,'Failed login attempt with username podct','66.33.193.231',1661071131,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48903,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1661071222,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48904,'Failed login attempt with username podct','103.153.214.231',1661071243,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48905,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661071365,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48906,'Failed login attempt with username podct','111.90.150.28',1661071695,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48907,'Failed login attempt with username podct','149.255.62.30',1661072109,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48908,'Failed login attempt with username podct','88.87.206.123',1661072309,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(48909,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661072554,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48910,'Failed login attempt with username podct','45.77.207.194',1661072571,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48911,'Failed login attempt with username podct','35.195.135.67',1661073022,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48912,'Failed login attempt with username National','185.119.81.98',1661073231,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36',1,'National',NULL),(48913,'Failed login attempt with username podct','103.163.139.202',1661073479,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(48914,'Failed login attempt with username podct','93.113.111.100',1661073539,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48915,'Failed login attempt with username podct','51.159.105.232',1661074024,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48916,'Failed login attempt with username podct','45.61.146.241',1661074517,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48917,'Failed login attempt with username podct','198.211.110.178',1661074645,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(48918,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1661074821,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48919,'Failed login attempt with username podct','167.99.78.164',1661075008,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48920,'Failed login attempt with username podct','185.208.79.215',1661075533,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48921,'Failed login attempt with username podct','88.87.206.123',1661075823,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(48922,'Failed login attempt with username podct','103.145.50.162',1661076026,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48923,'Failed login attempt with username podct','192.115.100.180',1661076507,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48924,'Failed login attempt with username podct','74.208.103.228',1661076975,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48925,'Failed login attempt with username podct','148.72.207.163',1661077008,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(48926,'Failed login attempt with username podct','122.17.148.164',1661077516,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48927,'Failed login attempt with username podct','103.116.16.173',1661078025,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48928,'Failed login attempt with username podct','106.52.120.186',1661078215,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(48929,'Failed login attempt with username admin','185.119.81.98',1661078274,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',1,'admin',NULL),(48930,'Failed login attempt with username podct','94.156.175.192',1661078533,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48931,'Failed login attempt with username admin','185.119.81.109',1661078863,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',1,'admin',NULL),(48932,'Failed login attempt with username podct','43.156.80.77',1661079046,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48933,'Failed login attempt with username podct','185.2.4.71',1661079468,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(48934,'Failed login attempt with username podct','137.184.140.67',1661079535,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48935,'Failed login attempt with username podct','103.153.214.231',1661080059,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48936,'Failed login attempt with username podct','45.125.239.179',1661080575,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48937,'Failed login attempt with username podct','148.72.214.194',1661080615,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(48938,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1661080625,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48939,'Failed login attempt with username podct','35.225.94.95',1661081087,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48940,'Failed login attempt with username podct','184.168.121.5',1661081614,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48941,'Failed login attempt with username podct','130.61.143.194',1661082105,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48942,'Failed login attempt with username podct','167.71.111.16',1661082625,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48943,'Failed login attempt with username podct','51.107.184.18',1661083061,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(48944,'Failed login attempt with username podct','192.81.214.91',1661083147,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48945,'Failed login attempt with username podct','179.127.29.102',1661083684,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48946,'Failed login attempt with username podct','35.202.241.36',1661084208,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48947,'Failed login attempt with username podct','167.172.153.166',1661084301,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(48948,'Failed login attempt with username podct','103.51.103.2',1661084757,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(48949,'Failed login attempt with username wadminw','125.227.127.195',1661084904,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(48950,'Failed login attempt with username wwwadmin','111.90.150.28',1661085471,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(48951,'Failed login attempt with username podct','50.116.43.78',1661085543,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(48952,'Failed login attempt with username podct','208.113.171.103',1661086776,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(48953,'Failed login attempt with username podct','185.190.117.89',1661089248,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(48954,'Failed login attempt with username podct','8.130.55.145',1661090484,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(48955,'Failed login attempt with username podct','64.227.183.25',1661091156,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(48956,'Failed login attempt with username podct','51.91.151.60',1661092417,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48957,'Failed login attempt with username podct','139.59.85.224',1661093672,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(48958,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1661094876,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48959,'Failed login attempt with username podct','51.107.184.18',1661094935,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(48960,'Failed login attempt with username podct','115.78.122.58',1661096208,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48961,'Failed login attempt with username podct','159.65.200.228',1661097467,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(48962,'Failed login attempt with username podct','137.184.117.52',1661098716,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(48963,'Failed login attempt with username podct','64.111.120.253',1661099960,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(48964,'Failed login attempt with username admin','185.119.81.105',1661100014,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36',1,'admin',NULL),(48965,'Failed login attempt with username podct','128.199.14.4',1661101215,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48966,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661101682,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48967,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1661101843,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(48968,'Failed login attempt with username admin','185.119.81.96',1661101852,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36',1,'admin',NULL),(48969,'Failed login attempt with username podct','35.192.104.56',1661102465,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(48970,'Request for file /apple-touch-icon-precomposed.png which doesn\'t exist','102.132.217.113',1661103124,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0',1,'/apple-touch-icon-precomposed.png',NULL),(48971,'Failed login attempt with username podct','213.151.33.40',1661103702,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48972,'Failed login attempt with username podct','68.183.75.82',1661104917,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(48973,'Failed login attempt with username admin','185.119.81.96',1661104935,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36',1,'admin',NULL),(48974,'Failed login attempt with username podct','8.131.62.110',1661106129,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(48975,'Failed login attempt with username podct','157.230.127.126',1661107323,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(48976,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661107966,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48977,'Failed login attempt with username podct','54.37.156.240',1661108523,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(48978,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661109267,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48979,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661109537,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48980,'Failed login attempt with username podct','47.105.73.13',1661109718,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(48981,'Failed login attempt with username podct','91.249.163.48',1661110916,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(48982,'Failed login attempt with username podct','35.187.58.136',1661112114,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(48983,'Failed login attempt with username podct','109.168.97.89',1661113348,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(48984,'Failed login attempt with username doubt','185.119.81.109',1661113947,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'doubt',NULL),(48985,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.81',1661114424,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(48986,'Failed login attempt with username podct','159.203.143.36',1661114584,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(48987,'Failed login attempt with username doubt','185.119.81.109',1661114766,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36',1,'doubt',NULL),(48988,'Failed login attempt with username podct','8.142.173.121',1661115829,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(48989,'Failed login attempt with username podct','93.114.185.76',1661117087,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(48990,'Failed login attempt with username podct','167.71.141.164',1661118411,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(48991,'Failed login attempt with username podct','185.50.199.194',1661119536,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(48992,'Failed login attempt with username podct','109.168.97.89',1661120779,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(48993,'Failed login attempt with username podct','104.131.68.19',1661122022,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(48994,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661122366,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48995,'Failed login attempt with username podct','159.203.120.246',1661123266,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(48996,'Failed login attempt with username podct','89.163.219.42',1661124509,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(48997,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661124972,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(48998,'Failed login attempt with username podct','69.163.224.107',1661125755,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(48999,'Failed login attempt with username podct','185.190.117.89',1661126999,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49000,'Failed login attempt with username podct','104.131.68.19',1661128249,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49001,'Request for file /.suspected which doesn\'t exist','138.68.104.176',1661129303,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/.suspected',NULL),(49002,'Request for file /ssrtwerer which doesn\'t exist','138.68.104.176',1661129305,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/ssrtwerer',NULL),(49003,'Request for file /load.php which doesn\'t exist','138.68.104.176',1661129306,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/load.php',NULL),(49004,'Request for file /load.php.suspected which doesn\'t exist','138.68.104.176',1661129307,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/load.php.suspected',NULL),(49005,'Request for file /wikindex.php which doesn\'t exist','138.68.104.176',1661129308,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wikindex.php',NULL),(49006,'Request for file /xmlrpc.php.suspected which doesn\'t exist','138.68.104.176',1661129310,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/xmlrpc.php.suspected',NULL),(49007,'Request for file /css/votes.php which doesn\'t exist','138.68.104.176',1661129311,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/css/votes.php',NULL),(49008,'Request for file /auto_seo.php which doesn\'t exist','138.68.104.176',1661129312,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/auto_seo.php',NULL),(49009,'Failed login attempt with username podct','51.91.151.60',1661129506,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49010,'Failed login attempt with username podct','47.105.73.13',1661130745,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(49011,'Failed login attempt with username podct','188.212.34.69',1661133243,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49012,'Failed login attempt with username podct','106.15.38.206',1661134498,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49013,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661134775,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49014,'Failed login attempt with username podct','202.29.236.140',1661137029,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49015,'Failed login attempt with username podct','69.163.224.107',1661138298,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49016,'Failed login attempt with username podct','85.146.18.88',1661140827,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49017,'Failed login attempt with username podct','13.81.59.92',1661142090,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49018,'Failed login attempt with username podct','151.106.41.64',1661143355,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(49019,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661143932,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49020,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1661144111,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49021,'Failed login attempt with username podct','207.154.248.39',1661144616,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49022,'Failed login attempt with username podct','51.91.220.143',1661145869,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(49023,'Failed login attempt with username admin','185.119.81.96',1661146265,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1,'admin',NULL),(49024,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1661146771,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49025,'Failed login attempt with username podct','197.155.158.21',1661147107,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49026,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661148284,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49027,'Failed login attempt with username podct','93.114.185.76',1661148341,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49028,'Failed login attempt with username admin','185.119.81.103',1661149508,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36',1,'admin',NULL),(49029,'Failed login attempt with username podct','178.217.190.82',1661149558,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(49030,'Failed login attempt with username podct','148.72.214.245',1661150771,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(49031,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661151774,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49032,'Failed login attempt with username podct','139.59.96.126',1661151970,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49033,'Failed login attempt with username podct','188.127.231.190',1661153157,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49034,'Failed login attempt with username podct','185.2.4.56',1661154356,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(49035,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1661154988,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49036,'Failed login attempt with username admin','161.97.163.71',1661155814,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49037,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1661156141,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49038,'Failed login attempt with username admin','103.130.212.57',1661156250,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49039,'Failed login attempt with username podct','47.116.48.109',1661156803,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49040,'Failed login attempt with username podct','162.214.76.126',1661156814,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49041,'Failed login attempt with username podct','193.176.230.188',1661157248,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49042,'Failed login attempt with username admin','185.119.81.105',1661157572,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.36',1,'admin',NULL),(49043,'Failed login attempt with username podct','95.111.250.181',1661157722,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(49044,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661157933,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49045,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661158043,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49046,'Failed login attempt with username podct','173.236.184.128',1661158054,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49047,'Failed login attempt with username podct','161.97.100.231',1661158281,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49048,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661158680,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49049,'Failed login attempt with username podct','111.90.145.188',1661158820,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49050,'Failed login attempt with username podct','47.111.116.44',1661159310,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(49051,'Failed login attempt with username podct','35.194.233.240',1661159352,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49052,'Failed login attempt with username podct','107.180.247.212',1661159899,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49053,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661160210,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49054,'Failed login attempt with username podct','81.88.52.134',1661160477,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49055,'Failed login attempt with username podct','141.94.247.170',1661160563,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49056,'Failed login attempt with username podct','158.69.116.156',1661161053,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49057,'Failed login attempt with username podct','75.119.148.105',1661161555,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49058,'Failed login attempt with username podct','103.129.222.91',1661161810,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49059,'Failed login attempt with username podct','18.180.123.202',1661162138,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49060,'Failed login attempt with username podct','31.172.67.60',1661162703,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'podct',NULL),(49061,'Failed login attempt with username podct','51.178.76.51',1661163059,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(49062,'Failed login attempt with username podct','184.168.121.5',1661163215,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49063,'Failed login attempt with username podct','172.104.81.115',1661163819,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49064,'Failed login attempt with username podct','185.126.219.43',1661164324,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49065,'Failed login attempt with username podct','175.103.49.12',1661164368,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49066,'Failed login attempt with username podct','103.90.235.91',1661164948,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49067,'Failed login attempt with username podct','91.205.230.79',1661165604,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49068,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661166044,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49069,'Failed login attempt with username podct','34.79.206.104',1661166203,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49070,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661166832,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49071,'Failed login attempt with username podct','104.219.251.247',1661166881,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49072,'Failed login attempt with username podct','101.0.73.142',1661167525,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49073,'Failed login attempt with username podct','192.115.100.180',1661168173,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49074,'Failed login attempt with username podct','157.245.166.98',1661168830,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49075,'Failed login attempt with username podct','178.62.78.78',1661169269,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49076,'Failed login attempt with username podct','103.90.232.106',1661169941,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49077,'Failed login attempt with username podct','45.61.146.241',1661170640,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49078,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1661170981,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49079,'Failed login attempt with username podct','173.249.43.72',1661171312,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49080,'Failed login attempt with username specialising','185.119.81.103',1661171683,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36',1,'specialising',NULL),(49081,'Failed login attempt with username wadminw','43.205.111.23',1661172156,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wadminw',NULL),(49082,'Failed login attempt with username wwwadmin','109.203.102.82',1661172810,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wwwadmin',NULL),(49083,'Failed login attempt with username National','185.119.81.98',1661174493,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'National',NULL),(49084,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661174598,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49085,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661176193,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49086,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661176690,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49087,'Failed login attempt with username specialising','185.119.81.103',1661177825,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',1,'specialising',NULL),(49088,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661179221,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49089,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1661179273,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49090,'Failed login attempt with username podct','159.203.121.12',1661179828,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49091,'Failed login attempt with username podct','202.29.236.140',1661180629,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49092,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1661181107,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49093,'Failed login attempt with username admin','159.89.228.214',1661181989,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'admin',NULL),(49094,'Failed login attempt with username admin','165.22.109.42',1661182758,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'admin',NULL),(49095,'Failed login attempt with username admin','159.89.199.237',1661183541,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'admin',NULL),(49096,'Failed login attempt with username admin','101.34.224.66',1661184340,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'admin',NULL),(49097,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661184522,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49098,'Failed login attempt with username admin','149.56.26.54',1661185132,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'admin',NULL),(49099,'Failed login attempt with username admin','159.203.68.240',1661185936,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'admin',NULL),(49100,'Failed login attempt with username Neo','185.119.81.105',1661186050,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'Neo',NULL),(49101,'Failed login attempt with username podct','46.63.80.162',1661186722,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49102,'Failed login attempt with username podct','157.230.127.126',1661187509,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49103,'Failed login attempt with username podct','69.163.186.158',1661189081,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49104,'Failed login attempt with username podct','69.163.152.108',1661189817,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(49105,'Failed login attempt with username admin','134.209.231.225',1661191310,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'admin',NULL),(49106,'Request for file /wp-content/plugins/ninja-forms/readme.txt which doesn\'t exist','20.219.146.75',1661191802,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',1,'/wp-content/plugins/ninja-forms/readme.txt',NULL),(49107,'Failed login attempt with username specialising','185.119.81.103',1661191809,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36',1,'specialising',NULL),(49108,'Failed login attempt with username admin','103.129.222.91',1661192877,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'admin',NULL),(49109,'Failed login attempt with username admin','159.65.200.228',1661193586,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(49110,'Failed login attempt with username admin','69.163.224.107',1661194352,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'admin',NULL),(49111,'Failed login attempt with username admin','13.81.59.92',1661195118,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'admin',NULL),(49112,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1661195567,'auth_fail','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49113,'Failed login attempt with username doubt','185.119.81.109',1661196028,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'doubt',NULL),(49114,'Failed login attempt with username admin','148.72.214.245',1661196638,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'admin',NULL),(49115,'Failed login attempt with username admin','106.15.38.206',1661197409,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'admin',NULL),(49116,'Failed login attempt with username rist','185.119.81.96',1661197608,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'rist',NULL),(49117,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661197657,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49118,'Failed login attempt with username podct','67.205.62.27',1661198175,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49119,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661198255,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49120,'Failed login attempt with username podct','81.88.52.106',1661198974,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49121,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1661199491,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49122,'Failed login attempt with username podct','209.97.162.248',1661199714,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49123,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661200105,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49124,'Failed login attempt with username podct','47.105.61.35',1661200485,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(49125,'Failed login attempt with username podct','188.165.198.224',1661201271,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49126,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661201548,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49127,'Failed login attempt with username podct','157.245.110.251',1661202034,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49128,'Failed login attempt with username podct','8.131.62.110',1661202846,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49129,'Failed login attempt with username podct','185.126.219.43',1661203606,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(49130,'Failed login attempt with username podct','94.231.86.20',1661204386,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(49131,'Failed login attempt with username podct','80.88.88.149',1661205156,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49132,'Failed login attempt with username podct','188.166.61.228',1661205965,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49133,'Failed login attempt with username podct','47.96.74.105',1661206753,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(49134,'Failed login attempt with username rist','185.119.81.96',1661207109,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36',1,'rist',NULL),(49135,'Failed login attempt with username podct','67.205.39.9',1661207533,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49136,'Failed login attempt with username podct','69.163.196.200',1661209130,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49137,'Failed login attempt with username podct','80.88.88.149',1661209925,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49138,'Failed login attempt with username podct','69.163.186.158',1661210719,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49139,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661211236,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49140,'Failed login attempt with username podct','67.205.62.27',1661211489,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49141,'Failed login attempt with username podct','68.183.75.82',1661212280,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49142,'Failed login attempt with username admin','185.119.81.103',1661212416,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36',1,'admin',NULL),(49143,'Failed login attempt with username podct','139.59.118.238',1661213077,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49144,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661213152,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49145,'Failed login attempt with username podct','20.101.71.221',1661213886,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49146,'Failed login attempt with username podct','148.72.208.193',1661214660,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49147,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1661215605,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49148,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661215945,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49149,'Failed login attempt with username podct','51.89.47.206',1661216246,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49150,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1661217400,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49151,'Failed login attempt with username podct','103.130.218.189',1661217553,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49152,'Failed login attempt with username admin','185.119.81.98',1661217697,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36',1,'admin',NULL),(49153,'Failed login attempt with username podct','178.217.190.82',1661218345,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49154,'Failed login attempt with username podct','64.225.65.31',1661219141,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49155,'Failed login attempt with username podct','81.88.52.221',1661219951,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(49156,'Failed login attempt with username podct','178.62.35.35',1661220747,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49157,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661221138,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49158,'Failed login attempt with username podct','45.55.44.23',1661221547,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49159,'Failed login attempt with username podct','188.166.61.228',1661222346,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49160,'Failed login attempt with username podct','54.37.156.240',1661223147,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(49161,'Failed login attempt with username podct','148.72.207.163',1661223945,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49162,'Failed login attempt with username podct','103.39.134.190',1661224744,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49163,'Failed login attempt with username podct','185.2.5.31',1661225531,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49164,'Failed login attempt with username podct','94.231.86.20',1661226324,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49165,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1661226660,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49166,'Failed login attempt with username podct','213.151.33.40',1661227107,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49167,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1661227553,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49168,'Failed login attempt with username podct','167.172.105.95',1661228705,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49169,'Failed login attempt with username podct','173.236.169.240',1661230211,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49170,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661230479,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49171,'Failed login attempt with username podct','147.135.255.8',1661231321,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49172,'Failed login attempt with username podct','185.2.4.134',1661232441,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49173,'Failed login attempt with username podct','64.111.120.253',1661233180,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49174,'Failed login attempt with username podct','81.88.52.106',1661233920,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49175,'Failed login attempt with username podct','143.244.177.220',1661234668,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49176,'Failed login attempt with username podct','192.71.144.12',1661235429,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49177,'Failed login attempt with username podct','125.227.127.195',1661236962,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49178,'Failed login attempt with username podct','159.203.68.240',1661237726,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(49179,'Failed login attempt with username podct','144.126.223.177',1661238504,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49180,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661239110,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49181,'Failed login attempt with username podct','117.120.13.52',1661239252,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(49182,'Failed login attempt with username podct','211.78.92.164',1661240012,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49183,'Failed login attempt with username podct','142.93.54.10',1661240771,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49184,'Failed login attempt with username podct','51.178.178.230',1661241529,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49185,'Failed login attempt with username podct','178.62.35.35',1661242307,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49186,'Failed login attempt with username podct','207.154.248.39',1661243074,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49187,'Failed login attempt with username podct','80.88.88.149',1661243844,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49188,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661243858,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49189,'Failed login attempt with username podct','185.2.4.56',1661244620,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49190,'Failed login attempt with username podct','51.91.220.143',1661245395,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49191,'Failed login attempt with username podct','138.68.140.0',1661246172,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49192,'Failed login attempt with username podct','167.172.153.166',1661246946,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49193,'Failed login attempt with username consulting','185.119.81.101',1661247506,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'consulting',NULL),(49194,'Failed login attempt with username podct','159.89.109.117',1661247718,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49195,'Failed login attempt with username podct','50.116.43.78',1661248496,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(49196,'Failed login attempt with username podct','139.59.150.45',1661249284,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49197,'Failed login attempt with username podct','178.128.5.109',1661250065,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49198,'Failed login attempt with username podct','208.113.153.235',1661250842,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(49199,'Failed login attempt with username podct','173.236.169.240',1661251623,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(49200,'Failed login attempt with username podct','178.18.248.127',1661252398,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49201,'Failed login attempt with username podct','173.236.169.240',1661253187,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49202,'Failed login attempt with username consulting','185.119.81.101',1661253887,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'consulting',NULL),(49203,'Failed login attempt with username podct','139.59.150.45',1661253969,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49204,'Failed login attempt with username podct','35.187.58.136',1661255527,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49205,'Failed login attempt with username podct','13.81.59.92',1661256316,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49206,'Failed login attempt with username podct','64.227.183.25',1661257107,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49207,'Failed login attempt with username podct','148.72.214.245',1661257893,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49208,'Failed login attempt with username podct','178.128.5.109',1661258677,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49209,'Failed login attempt with username podct','20.101.71.221',1661259469,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49210,'Failed login attempt with username podct','46.32.228.70',1661260253,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49211,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1661260925,'auth_fail','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49212,'Failed login attempt with username podct','164.46.122.50',1661261045,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49213,'Failed login attempt with username podct','134.209.184.76',1661261837,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49214,'Failed login attempt with username podct','213.151.33.40',1661262626,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49215,'Failed login attempt with username podct','188.166.236.35',1661263424,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49216,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.51',1661268235,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(49217,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661270019,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49218,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661273796,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49219,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661274503,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49220,'Request for file /contents.php which doesn\'t exist','151.80.67.229',1661278140,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/contents.php',NULL),(49221,'Failed login attempt with username podct','147.135.255.8',1661278412,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49222,'Failed login attempt with username podct','134.209.184.76',1661279293,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49223,'Failed login attempt with username podct','143.244.155.35',1661280173,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49224,'Failed login attempt with username podct','209.97.151.249',1661281041,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49225,'Failed login attempt with username podct','64.90.36.102',1661281918,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49226,'Failed login attempt with username podct','197.155.158.21',1661282800,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49227,'Failed login attempt with username podct','20.101.71.221',1661283683,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49228,'Failed login attempt with username podct','185.50.199.194',1661284559,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49229,'Failed login attempt with username podct','13.81.59.92',1661285457,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(49230,'Failed login attempt with username fungus','185.119.81.102',1661285918,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36',1,'fungus',NULL),(49231,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661286270,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49232,'Failed login attempt with username fungus','185.119.81.102',1661286276,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36',1,'fungus',NULL),(49233,'Failed login attempt with username podct','151.106.41.64',1661286367,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49234,'Failed login attempt with username podct','54.37.156.240',1661287277,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(49235,'Failed login attempt with username admin','185.119.81.101',1661287379,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36',1,'admin',NULL),(49236,'Failed login attempt with username podct','23.99.229.218',1661288239,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(49237,'Failed login attempt with username podct','104.248.55.1',1661289131,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(49238,'Failed login attempt with username podct','139.59.96.126',1661290164,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49239,'Failed login attempt with username podct','149.56.26.54',1661290945,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49240,'Failed login attempt with username podct','195.250.67.106',1661291879,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49241,'Failed login attempt with username podct','167.71.63.47',1661292802,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49242,'Failed login attempt with username admin','185.119.81.103',1661293192,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/E7FBAF',1,'admin',NULL),(49243,'Failed login attempt with username podct','34.65.234.0',1661293720,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49244,'Failed login attempt with username podct','185.2.5.77',1661294654,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(49245,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661295061,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.63 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49246,'Failed login attempt with username podct','139.59.85.224',1661295589,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49247,'Failed login attempt with username podct','185.2.4.71',1661296524,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49248,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661296651,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49249,'Failed login attempt with username podct','109.168.97.89',1661297457,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49250,'Failed login attempt with username podct','137.184.117.52',1661298392,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49251,'Request for file /.env which doesn\'t exist','185.83.146.154',1661298825,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(49252,'Request for file /.env which doesn\'t exist','185.83.146.154',1661298825,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(49253,'Failed login attempt with username podct','161.35.52.207',1661299318,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49254,'Failed login attempt with username podct','64.227.183.25',1661300251,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49255,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661300403,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49256,'Failed login attempt with username podct','64.227.183.25',1661301185,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49257,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661301426,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49258,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661301518,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49259,'Failed login attempt with username podct','139.59.118.238',1661302117,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49260,'Failed login attempt with username podct','139.59.85.224',1661303044,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49261,'Failed login attempt with username podct','85.146.18.88',1661303976,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49262,'Failed login attempt with username podct','14.241.233.205',1661304915,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49263,'Failed login attempt with username podct','128.199.14.4',1661305858,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49264,'Failed login attempt with username podct','69.163.224.107',1661306794,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49265,'Failed login attempt with username podct','68.183.71.174',1661307721,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49266,'Failed login attempt with username podct','167.71.63.47',1661308655,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49267,'Failed login attempt with username signi','185.119.81.103',1661310234,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36',1,'signi',NULL),(49268,'Failed login attempt with username podct','161.35.52.207',1661311467,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49269,'Failed login attempt with username admin','144.217.15.207',1661313162,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'admin',NULL),(49270,'Failed login attempt with username admin','217.61.54.110',1661314086,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'admin',NULL),(49271,'Failed login attempt with username admin','103.166.183.192',1661315011,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'admin',NULL),(49272,'Failed login attempt with username admin','64.225.65.31',1661315925,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'admin',NULL),(49273,'Failed login attempt with username signi','185.119.81.103',1661316615,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36',1,'signi',NULL),(49274,'Failed login attempt with username admin','51.159.155.6',1661316838,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'admin',NULL),(49275,'Failed login attempt with username admin','172.104.156.149',1661317739,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'admin',NULL),(49276,'Failed login attempt with username podct','161.35.126.102',1661318623,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49277,'Failed login attempt with username podct','167.172.64.96',1661319499,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49278,'Failed login attempt with username podct','66.33.193.231',1661320416,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49279,'Failed login attempt with username podct','134.209.231.225',1661321352,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49280,'Failed login attempt with username podct','209.97.151.249',1661322170,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49281,'Failed login attempt with username podct','188.166.183.39',1661323070,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49282,'Failed login attempt with username admin','217.61.54.110',1661323965,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'admin',NULL),(49283,'Failed login attempt with username admin','66.175.232.148',1661324861,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'admin',NULL),(49284,'Failed login attempt with username admin','52.138.180.227',1661325752,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(49285,'Failed login attempt with username admin','207.154.248.39',1661326706,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'admin',NULL),(49286,'Failed login attempt with username passing','185.119.81.105',1661326985,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',1,'passing',NULL),(49287,'Failed login attempt with username admin','104.248.55.1',1661327580,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(49288,'Failed login attempt with username admin','107.175.111.233',1661328708,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'admin',NULL),(49289,'Failed login attempt with username admin','207.188.158.117',1661329490,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'admin',NULL),(49290,'Failed login attempt with username admin','167.172.105.95',1661330385,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'admin',NULL),(49291,'Failed login attempt with username admin','54.37.156.240',1661331326,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(49292,'Failed login attempt with username podct','95.217.179.54',1661332268,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49293,'Failed login attempt with username passing','185.119.81.105',1661332670,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36',1,'passing',NULL),(49294,'Failed login attempt with username podct','207.154.248.39',1661333203,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49295,'Failed login attempt with username podct','165.22.109.42',1661334133,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49296,'Failed login attempt with username admin','185.119.81.105',1661334377,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'admin',NULL),(49297,'Failed login attempt with username podct','36.94.142.166',1661335063,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(49298,'Failed login attempt with username podct','69.163.224.107',1661336111,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49299,'Failed login attempt with username podct','20.101.71.221',1661336934,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(49300,'Failed login attempt with username podct','207.154.250.8',1661337868,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49301,'Failed login attempt with username podct','43.251.134.178',1661338879,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49302,'Failed login attempt with username podct','209.182.195.110',1661339740,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49303,'Failed login attempt with username podct','139.59.118.238',1661340652,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49304,'Failed login attempt with username podct','188.127.231.190',1661341583,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(49305,'Failed login attempt with username podct','209.97.151.249',1661343454,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49306,'Failed login attempt with username podct','185.2.4.71',1661344390,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49307,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661344848,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49308,'Failed login attempt with username podct','103.166.183.192',1661345326,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49309,'Failed login attempt with username podct','95.217.179.54',1661346259,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49310,'Failed login attempt with username podct','46.101.150.34',1661347189,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49311,'Failed login attempt with username admin','185.119.81.101',1661347647,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'admin',NULL),(49312,'Failed login attempt with username podct','75.119.157.181',1661348123,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(49313,'Failed login attempt with username admin','185.119.81.103',1661348357,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'admin',NULL),(49314,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661348802,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49315,'Failed login attempt with username podct','45.120.69.121',1661349058,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49316,'Failed login attempt with username admin','185.119.81.102',1661350361,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',1,'admin',NULL),(49317,'Failed login attempt with username admin','185.119.81.101',1661350930,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'admin',NULL),(49318,'Failed login attempt with username podct','77.240.13.186',1661350933,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49319,'Request for file /.env which doesn\'t exist','35.236.65.65',1661350987,'404_error','Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30',1,'/.env',NULL),(49320,'Failed login attempt with username wadminw','103.103.175.102',1661351771,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wadminw',NULL),(49321,'Failed login attempt with username podct','118.27.30.151',1661351879,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49322,'Failed login attempt with username podct','52.166.3.59',1661352826,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49323,'Failed login attempt with username admin','185.119.81.102',1661352891,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'admin',NULL),(49324,'Failed login attempt with username podct','39.103.157.70',1661353774,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49325,'Failed login attempt with username podct','103.129.222.91',1661354712,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(49326,'Failed login attempt with username podct','103.39.134.190',1661355643,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(49327,'Failed login attempt with username podct','118.24.106.172',1661357787,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(49328,'Failed login attempt with username podct','185.2.4.56',1661358855,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49329,'Failed login attempt with username podct','207.154.250.8',1661359923,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49330,'Request for file /defaul1.php which doesn\'t exist','178.62.69.67',1661360705,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/defaul1.php',NULL),(49331,'Request for file /defau1t.php which doesn\'t exist','178.62.69.67',1661360712,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/defau1t.php',NULL),(49332,'Request for file /fresh.php which doesn\'t exist','178.62.69.67',1661360714,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/fresh.php',NULL),(49333,'Request for file /fresh1.php which doesn\'t exist','178.62.69.67',1661360715,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/fresh1.php',NULL),(49334,'Request for file /admin.php which doesn\'t exist','178.62.69.67',1661360717,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/admin.php',NULL),(49335,'Request for file /wikindex.php which doesn\'t exist','178.62.69.67',1661360718,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wikindex.php',NULL),(49336,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661360950,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49337,'Failed login attempt with username podct','143.244.155.35',1661360989,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49338,'Failed login attempt with username podct','209.182.195.110',1661362055,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49339,'Failed login attempt with username podct','34.65.234.0',1661363090,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(49340,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661363142,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49341,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661363204,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49342,'Failed login attempt with username podct','47.100.208.57',1661364130,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49343,'Failed login attempt with username podct','45.120.69.121',1661365165,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49344,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661365715,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49345,'Failed login attempt with username podct','185.2.4.56',1661366192,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49346,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661367045,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49347,'Failed login attempt with username podct','64.227.183.25',1661367217,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49348,'Request for file /old-index.php?daksldlkdsadas=1 which doesn\'t exist','195.74.80.147',1661367761,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/old-index.php?daksldlkdsadas=1',NULL),(49349,'Failed login attempt with username podct','167.172.105.95',1661368225,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49350,'Failed login attempt with username podct','188.212.34.69',1661369224,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49351,'Failed login attempt with username podct','167.172.153.166',1661370229,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49352,'Failed login attempt with username podct','188.166.183.39',1661371231,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49353,'Failed login attempt with username podct','188.127.231.190',1661372253,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49354,'Failed login attempt with username podct','68.183.71.174',1661373293,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49355,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661373459,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49356,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661373529,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49357,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661373551,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49358,'Failed login attempt with username podct','143.244.143.195',1661374332,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49359,'Failed login attempt with username podct','185.2.4.134',1661375473,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49360,'Failed login attempt with username podct','167.172.105.95',1661377474,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49361,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661378043,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49362,'Failed login attempt with username podct','139.59.150.45',1661378519,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49363,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661379374,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49364,'Failed login attempt with username podct','207.188.158.117',1661379568,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49365,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661380556,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49366,'Failed login attempt with username podct','51.89.47.206',1661380621,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49367,'Failed login attempt with username podct','45.55.44.23',1661382751,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49368,'Failed login attempt with username podct','167.172.105.95',1661383825,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(49369,'Failed login attempt with username podct','173.236.242.233',1661384897,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(49370,'Failed login attempt with username podct','69.163.224.107',1661386031,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(49371,'Failed login attempt with username podct','69.163.224.107',1661387053,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49372,'Failed login attempt with username podct','149.56.26.54',1661388130,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49373,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661388675,'auth_fail','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49374,'Failed login attempt with username podct','81.88.52.8',1661389211,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(49375,'Failed login attempt with username podct','66.33.193.231',1661390294,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49376,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661390783,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49377,'Failed login attempt with username podct','77.65.213.168',1661391383,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49378,'Failed login attempt with username passing','185.119.81.105',1661391421,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36',1,'passing',NULL),(49379,'Failed login attempt with username podct','139.59.118.238',1661392474,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49380,'Failed login attempt with username podct','208.113.180.18',1661393578,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49381,'Failed login attempt with username podct','128.199.105.159',1661394685,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49382,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661394862,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49383,'Failed login attempt with username podct','185.126.219.43',1661395789,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(49384,'Failed login attempt with username podct','143.244.177.220',1661398002,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49385,'Failed login attempt with username podct','36.94.142.166',1661399109,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49386,'Failed login attempt with username podct','148.72.214.245',1661400200,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49387,'Failed login attempt with username podct','107.175.111.233',1661401282,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49388,'Failed login attempt with username podct','65.21.105.105',1661403425,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49389,'Failed login attempt with username admin','185.119.81.103',1661403893,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'admin',NULL),(49390,'Failed login attempt with username podct','51.75.15.189',1661404492,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49391,'Failed login attempt with username admin','185.119.81.105',1661404728,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'admin',NULL),(49392,'Failed login attempt with username podct','51.178.178.230',1661406573,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49393,'Failed login attempt with username podct','128.199.105.159',1661407603,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(49394,'Failed login attempt with username podct','151.106.116.118',1661408625,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49395,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661410228,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49396,'Failed login attempt with username fungus','185.119.81.102',1661410415,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1,'fungus',NULL),(49397,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661410567,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49398,'Failed login attempt with username podct','81.88.52.8',1661410662,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(49399,'Failed login attempt with username podct','185.2.4.71',1661411696,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49400,'Failed login attempt with username podct','185.2.5.31',1661412728,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49401,'Failed login attempt with username podct','145.239.30.120',1661413765,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49402,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661414403,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49403,'Failed login attempt with username podct','66.175.232.148',1661414836,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49404,'Failed login attempt with username admin','67.205.39.9',1661415957,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'admin',NULL),(49405,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661415990,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49406,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.49',1661416206,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(49407,'Failed login attempt with username admin','34.65.234.0',1661417032,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'admin',NULL),(49408,'Failed login attempt with username admin','185.119.81.105',1661417053,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36',1,'admin',NULL),(49409,'Failed login attempt with username admin','67.205.62.27',1661418108,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'admin',NULL),(49410,'Failed login attempt with username admin','35.187.58.136',1661419190,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'admin',NULL),(49411,'Failed login attempt with username admin','82.166.39.15',1661420272,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'admin',NULL),(49412,'Failed login attempt with username admin','185.119.81.108',1661420336,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36',1,'admin',NULL),(49413,'Failed login attempt with username admin','93.114.185.76',1661421363,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'admin',NULL),(49414,'Failed login attempt with username admin','185.119.81.102',1661421873,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',1,'admin',NULL),(49415,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661421908,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49416,'Failed login attempt with username podct','128.199.100.142',1661422447,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49417,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661422958,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49418,'Failed login attempt with username podct','94.231.86.20',1661423522,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49419,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661423998,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49420,'Failed login attempt with username podct','51.89.47.206',1661424593,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(49421,'Failed login attempt with username consulting','185.119.81.101',1661425298,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'consulting',NULL),(49422,'Failed login attempt with username podct','69.163.224.107',1661425672,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49423,'Failed login attempt with username podct','14.241.233.205',1661426749,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49424,'Failed login attempt with username podct','66.175.232.148',1661427830,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49425,'Failed login attempt with username admin','142.93.41.19',1661429979,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'admin',NULL),(49426,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661430467,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49427,'Failed login attempt with username admin','202.29.236.140',1661431048,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'admin',NULL),(49428,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661431287,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49429,'Failed login attempt with username admin','185.190.117.89',1661432128,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(49430,'Failed login attempt with username admin','178.217.190.82',1661433233,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'admin',NULL),(49431,'Failed login attempt with username admin','142.93.245.196',1661434319,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'admin',NULL),(49432,'Failed login attempt with username admin','51.178.178.230',1661435419,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'admin',NULL),(49433,'Request for file /credentials.php which doesn\'t exist','88.214.43.118',1661435516,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/credentials.php',NULL),(49434,'Request for file /credentials.php which doesn\'t exist','88.214.43.118',1661435516,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/credentials.php',NULL),(49435,'Failed login attempt with username admin','85.91.237.106',1661436515,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'admin',NULL),(49436,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661437557,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49437,'Failed login attempt with username admin','188.212.34.69',1661437612,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(49438,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661437974,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49439,'Failed login attempt with username podct','34.69.109.132',1661438731,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(49440,'Failed login attempt with username podct','192.71.144.12',1661439840,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49441,'Failed login attempt with username podct','192.71.144.12',1661440956,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(49442,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661441837,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49443,'Failed login attempt with username podct','159.203.120.246',1661442072,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49444,'Failed login attempt with username admin','185.119.81.108',1661443348,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36',1,'admin',NULL),(49445,'Request for file /.index.env which doesn\'t exist','185.83.144.103',1661443654,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.index.env',NULL),(49446,'Request for file /.index.env which doesn\'t exist','185.83.144.103',1661443655,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.index.env',NULL),(49447,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661445585,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49448,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661448556,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49449,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','20.203.137.38',1661451316,'404_error','Linux Mozilla',1,'/wp-content/themes/seotheme/mar.php',NULL),(49450,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661451491,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49451,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661451812,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49452,'Request for file /css/ which doesn\'t exist','204.48.26.148',1661456660,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/css/',NULL),(49453,'Request for file /wp-blockdown.php?lt=1 which doesn\'t exist','149.202.172.82',1661456832,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-blockdown.php?lt=1',NULL),(49454,'Request for file /wp-stream.php?lt=1 which doesn\'t exist','149.202.172.82',1661456880,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-stream.php?lt=1',NULL),(49455,'Request for file /admin.php which doesn\'t exist','84.2.39.115',1661457201,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/admin.php',NULL),(49456,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661457620,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49457,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661461123,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49458,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661462743,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49459,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661463989,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49460,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661465822,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49461,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661467567,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49462,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661468648,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49463,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661468937,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49464,'Failed login attempt with username Podiatrist','185.119.81.106',1661470064,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'Podiatrist',NULL),(49465,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661470868,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49466,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661471403,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49467,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661471413,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49468,'Request for file /wp-content/plugins/instabuilder2/cache/up.php which doesn\'t exist','20.68.104.160',1661472456,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/plugins/instabuilder2/cache/up.php',NULL),(49469,'Request for file /wp-content/plugins/fwduvp/content/downloader.php?path=../../../../wp-config.php&name=../../../../wp-config.php which doesn\'t exist','20.68.104.160',1661472465,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/plugins/fwduvp/content/downloader.php?path=../../../../wp-config.php&name=../../../../wp-config.php',NULL),(49470,'Request for file /wp-content/plugins/fwduvp/content/downloader.php?path=../../../../wp-config.php&name=../../../../wp-config.php.bak which doesn\'t exist','20.68.104.160',1661472466,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/plugins/fwduvp/content/downloader.php?path=../../../../wp-config.php&name=../../../../wp-config.php.bak',NULL),(49471,'Failed login attempt with username signi','185.119.81.103',1661474653,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'signi',NULL),(49472,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661474719,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49473,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661477952,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49474,'Request for file /interesting-articles/ which doesn\'t exist','149.56.150.176',1661478656,'404_error','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36 React.org',1,'/interesting-articles/',NULL),(49475,'Request for file /ads.txt which doesn\'t exist','149.56.150.176',1661478667,'404_error','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36 React.org',1,'/ads.txt',NULL),(49476,'Failed login attempt with username invasive','185.119.81.108',1661481848,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',1,'invasive',NULL),(49477,'Failed login attempt with username admin','185.119.81.101',1661483872,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'admin',NULL),(49478,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661485071,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49479,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661487347,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49480,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661487591,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49481,'Failed login attempt with username Fully','185.119.81.101',1661488804,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'Fully',NULL),(49482,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661489871,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49483,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661491067,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49484,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661493192,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49485,'Failed login attempt with username invasive','185.119.81.108',1661494968,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'invasive',NULL),(49486,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661500937,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49487,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661501249,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49488,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661503055,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49489,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661506021,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49490,'Failed login attempt with username podct','202.29.236.140',1661506471,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49491,'Failed login attempt with username podct','8.130.55.145',1661507248,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49492,'Failed login attempt with username podct','165.22.109.42',1661508015,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49493,'Failed login attempt with username podct','185.2.5.77',1661508775,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49494,'Failed login attempt with username podct','188.166.183.39',1661509542,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49495,'Failed login attempt with username podct','134.209.184.76',1661510315,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49496,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661510773,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49497,'Failed login attempt with username podct','148.72.214.194',1661511082,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49498,'Failed login attempt with username podct','178.128.5.109',1661511856,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49499,'Failed login attempt with username podct','77.65.213.168',1661512630,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49500,'Failed login attempt with username podct','45.55.44.23',1661514180,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49501,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.106',1661514647,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49502,'Failed login attempt with username podct','118.98.73.5',1661514959,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49503,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661515378,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49504,'Failed login attempt with username podct','185.50.199.194',1661515747,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49505,'Failed login attempt with username podct','13.78.225.32',1661516531,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(49506,'Request for file /interesting-articles/ which doesn\'t exist','154.54.249.206',1661516875,'404_error','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',1,'/interesting-articles/',NULL),(49507,'Failed login attempt with username podct','188.166.225.235',1661517369,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49508,'Failed login attempt with username podct','167.71.141.164',1661518139,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(49509,'Failed login attempt with username podct','20.101.71.221',1661518927,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49510,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661519028,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49511,'Failed login attempt with username podct','80.88.88.149',1661519715,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(49512,'Failed login attempt with username podct','103.129.222.91',1661520503,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49513,'Failed login attempt with username podct','198.244.167.101',1661521286,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49514,'Failed login attempt with username podct','147.182.249.22',1661522079,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(49515,'Failed login attempt with username podct','137.184.117.52',1661522870,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49516,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661522942,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49517,'Failed login attempt with username podct','164.46.122.50',1661523651,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49518,'Failed login attempt with username podct','13.78.225.32',1661524441,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(49519,'Failed login attempt with username podct','23.99.229.218',1661526028,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49520,'Failed login attempt with username podct','13.79.17.158',1661526839,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49521,'Failed login attempt with username invasive','185.119.81.108',1661526948,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'invasive',NULL),(49522,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661527536,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49523,'Failed login attempt with username podct','138.68.84.97',1661527652,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49524,'Failed login attempt with username podct','173.236.184.128',1661528471,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49525,'Failed login attempt with username podct','69.163.224.107',1661529290,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(49526,'Failed login attempt with username podct','103.166.183.192',1661530104,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49527,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661530200,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49528,'Failed login attempt with username podct','103.130.218.178',1661530906,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49529,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661531750,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49530,'Failed login attempt with username podct','192.99.201.91',1661532486,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49531,'Failed login attempt with username podct','144.126.223.177',1661533268,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49532,'Failed login attempt with username podct','64.111.120.253',1661534044,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49533,'Failed login attempt with username podct','167.71.141.164',1661534817,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49534,'Failed login attempt with username podct','118.24.106.172',1661535586,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(49535,'Failed login attempt with username podct','151.106.117.15',1661536344,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49536,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661537066,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49537,'Failed login attempt with username podct','217.61.54.110',1661537105,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49538,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.106',1661537661,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49539,'Failed login attempt with username podct','45.13.132.210',1661537856,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49540,'Failed login attempt with username podct','8.142.173.121',1661538603,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49541,'Failed login attempt with username podct','147.135.255.8',1661539362,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49542,'Failed login attempt with username podct','51.255.81.60',1661540120,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49543,'Failed login attempt with username podct','185.2.4.71',1661540885,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49544,'Failed login attempt with username podct','80.88.88.149',1661541642,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49545,'Failed login attempt with username admin','185.119.81.103',1661543224,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36',1,'admin',NULL),(49546,'Failed login attempt with username admin','185.119.81.107',1661545541,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'admin',NULL),(49547,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661549973,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49548,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661552236,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49549,'Failed login attempt with username admin','185.119.81.101',1661552484,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36',1,'admin',NULL),(49550,'Failed login attempt with username effective','185.119.81.103',1661557886,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'effective',NULL),(49551,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.106',1661558650,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49552,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661560361,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49553,'Failed login attempt with username admin','185.119.81.105',1661561342,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'admin',NULL),(49554,'Failed login attempt with username solutions','185.119.81.107',1661561571,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'solutions',NULL),(49555,'Failed login attempt with username admin','185.119.81.105',1661563076,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36',1,'admin',NULL),(49556,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661563525,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49557,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661568809,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49558,'Failed login attempt with username admin','185.119.81.106',1661569546,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36',1,'admin',NULL),(49559,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661570937,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49560,'Request for file /admin.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','187.103.250.210',1661573225,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/admin.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(49561,'Request for file /3index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','187.103.250.210',1661573268,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/3index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(49562,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661573670,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49563,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661579150,'auth_fail','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49564,'Failed login attempt with username admin','185.119.81.106',1661581011,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',1,'admin',NULL),(49565,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661586929,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49566,'Request for file /wp-content/plugins/googlebot/ind3x.php which doesn\'t exist','185.190.140.51',1661588766,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/googlebot/ind3x.php',NULL),(49567,'Request for file /ALFA_DATA/alfacgiapi/perl.alfa which doesn\'t exist','185.190.140.51',1661588768,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/ALFA_DATA/alfacgiapi/perl.alfa',NULL),(49568,'Request for file /alfacgiapi/perl.alfa which doesn\'t exist','185.190.140.51',1661588770,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/alfacgiapi/perl.alfa',NULL),(49569,'Request for file /wp-content/uploads/alfacgiapi/perl.alfa which doesn\'t exist','185.190.140.51',1661588772,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/alfacgiapi/perl.alfa',NULL),(49570,'Request for file /wp-content/plugins/ioptimization/IOptimize.php which doesn\'t exist','185.190.140.51',1661588773,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/ioptimization/IOptimize.php',NULL),(49571,'Request for file /wp-content/plugins/t_file_wp/t_file_wp.php which doesn\'t exist','185.190.140.51',1661588774,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/t_file_wp/t_file_wp.php',NULL),(49572,'Request for file /wp-content/mu-plugins/db-safe-mode.php which doesn\'t exist','185.190.140.51',1661588775,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/mu-plugins/db-safe-mode.php',NULL),(49573,'Request for file /wp-content/wp-old-index.php which doesn\'t exist','185.190.140.51',1661588777,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/wp-old-index.php',NULL),(49574,'Request for file /wp-content/plugins/ubh/up.php which doesn\'t exist','185.190.140.51',1661588778,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/ubh/up.php',NULL),(49575,'Request for file /wp-content/plugins/backup_index.php which doesn\'t exist','185.190.140.51',1661588779,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/backup_index.php',NULL),(49576,'Request for file /wp-content/plugins/wpconfig.bak.php which doesn\'t exist','185.190.140.51',1661588780,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/wpconfig.bak.php',NULL),(49577,'Request for file /wp-content/plugins/config.bak.php which doesn\'t exist','185.190.140.51',1661588781,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/config.bak.php',NULL),(49578,'Request for file /wp-content/themes/config.bak.php which doesn\'t exist','185.190.140.51',1661588782,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/config.bak.php',NULL),(49579,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661589453,'auth_fail','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49580,'Request for file /wordpress/wp-login.php which doesn\'t exist','115.165.166.162',1661591985,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36',1,'/wordpress/wp-login.php',NULL),(49581,'Request for file /blog/wp-login.php which doesn\'t exist','115.165.166.162',1661591987,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36',1,'/blog/wp-login.php',NULL),(49582,'Request for file /wp/wp-login.php which doesn\'t exist','115.165.166.162',1661591989,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36',1,'/wp/wp-login.php',NULL),(49583,'Failed login attempt with username admin','185.119.81.106',1661593533,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'admin',NULL),(49584,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661596072,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49585,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661596086,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49586,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661596997,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49587,'Failed login attempt with username Fully','185.119.81.101',1661598122,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',1,'Fully',NULL),(49588,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1661600286,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49589,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661600753,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49590,'Failed login attempt with username admin','185.119.81.103',1661601044,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'admin',NULL),(49591,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661606050,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49592,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661606657,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.75 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49593,'Failed login attempt with username podct','151.106.41.64',1661614725,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(49594,'Failed login attempt with username podct','54.38.73.235',1661615063,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49595,'Failed login attempt with username podct','175.178.125.173',1661615165,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49596,'Failed login attempt with username podct','47.110.72.238',1661615401,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49597,'Failed login attempt with username podct','121.243.95.160',1661616487,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49598,'Failed login attempt with username podct','207.188.158.117',1661616820,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49599,'Failed login attempt with username podct','51.91.220.143',1661616922,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(49600,'Failed login attempt with username podct','208.109.54.127',1661617160,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49601,'Failed login attempt with username podct','35.187.58.136',1661618237,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49602,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661618453,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49603,'Failed login attempt with username podct','167.172.105.95',1661618567,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49604,'Failed login attempt with username podct','198.244.167.101',1661618668,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49605,'Failed login attempt with username podct','185.2.5.31',1661618900,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49606,'Failed login attempt with username podct','118.27.30.151',1661619973,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49607,'Failed login attempt with username podct','77.240.13.186',1661620298,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49608,'Failed login attempt with username podct','124.153.66.86',1661620404,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49609,'Failed login attempt with username podct','35.187.58.136',1661620627,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49610,'Failed login attempt with username podct','150.109.148.216',1661621686,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49611,'Failed login attempt with username admin','185.119.81.107',1661621883,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',1,'admin',NULL),(49612,'Failed login attempt with username podct','34.69.109.132',1661622014,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(49613,'Failed login attempt with username podct','159.89.199.237',1661622113,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49614,'Failed login attempt with username podct','143.244.177.220',1661622342,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49615,'Failed login attempt with username podct','35.187.58.136',1661623406,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49616,'Failed login attempt with username admin','185.119.81.101',1661623605,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36',1,'admin',NULL),(49617,'Failed login attempt with username podct','142.93.245.196',1661623733,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49618,'Failed login attempt with username podct','46.32.228.70',1661623831,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49619,'Failed login attempt with username podct','47.111.116.44',1661624057,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49620,'Failed login attempt with username admin','185.119.81.103',1661624152,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'admin',NULL),(49621,'Failed login attempt with username podct','188.166.225.235',1661625427,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49622,'Failed login attempt with username podct','168.119.80.254',1661625525,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49623,'Failed login attempt with username podct','61.219.43.253',1661625751,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(49624,'Failed login attempt with username Podiatrist','185.119.81.106',1661625930,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'Podiatrist',NULL),(49625,'Failed login attempt with username podct','167.172.105.95',1661627116,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(49626,'Failed login attempt with username podct','148.72.207.163',1661627213,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49627,'Failed login attempt with username podct','51.178.178.230',1661627439,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49628,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661627905,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49629,'Failed login attempt with username podct','178.18.248.127',1661628469,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49630,'Failed login attempt with username podct','159.89.228.214',1661628792,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49631,'Failed login attempt with username podct','188.166.61.228',1661629115,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(49632,'Failed login attempt with username podct','167.172.168.111',1661630105,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49633,'Failed login attempt with username podct','69.163.225.121',1661630423,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(49634,'Failed login attempt with username podct','46.63.80.162',1661630516,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49635,'Failed login attempt with username podct','46.32.228.70',1661630740,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49636,'Failed login attempt with username podct','139.59.82.122',1661631765,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49637,'Failed login attempt with username podct','178.217.190.82',1661632071,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49638,'Failed login attempt with username podct','13.81.59.92',1661632162,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49639,'Failed login attempt with username podct','80.88.88.149',1661632387,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49640,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661632394,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49641,'Failed login attempt with username podct','139.59.85.224',1661633391,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49642,'Failed login attempt with username podct','178.217.190.82',1661633695,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49643,'Failed login attempt with username podct','51.159.155.6',1661633795,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49644,'Failed login attempt with username podct','119.237.81.29',1661634012,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49645,'Failed login attempt with username podct','107.175.111.233',1661635026,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49646,'Failed login attempt with username please','185.119.81.105',1661635082,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36',1,'please',NULL),(49647,'Failed login attempt with username podct','178.128.187.183',1661635334,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49648,'Failed login attempt with username podct','167.71.234.124',1661635429,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49649,'Failed login attempt with username podct','207.188.152.209',1661635649,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49650,'Failed login attempt with username podct','173.236.242.233',1661636667,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(49651,'Failed login attempt with username podct','138.68.90.29',1661636988,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49652,'Failed login attempt with username podct','212.103.4.29',1661637076,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49653,'Failed login attempt with username podct','159.89.27.131',1661637296,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49654,'Failed login attempt with username podct','23.99.229.218',1661638335,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(49655,'Failed login attempt with username podct','188.166.183.39',1661638652,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49656,'Failed login attempt with username podct','198.211.110.178',1661638749,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49657,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661638905,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49658,'Failed login attempt with username podct','185.2.4.33',1661638974,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49659,'Failed login attempt with username podct','159.203.68.240',1661640010,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(49660,'Failed login attempt with username podct','144.126.223.177',1661640327,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(49661,'Failed login attempt with username podct','103.166.183.192',1661640648,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49662,'Failed login attempt with username podct','47.96.74.105',1661641677,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(49663,'Failed login attempt with username podct','47.105.61.35',1661641998,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49664,'Failed login attempt with username podct','81.88.52.221',1661642094,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49665,'Failed login attempt with username podct','47.114.72.18',1661642319,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49666,'Failed login attempt with username podct','202.21.38.119',1661643363,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49667,'Failed login attempt with username podct','167.172.168.111',1661643784,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(49668,'Failed login attempt with username podct','211.78.92.164',1661644012,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49669,'Failed login attempt with username podct','81.88.52.106',1661645050,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49670,'Failed login attempt with username podct','69.163.224.107',1661645373,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49671,'Failed login attempt with username podct','167.172.105.95',1661645471,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49672,'Failed login attempt with username podct','52.138.180.227',1661645696,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49673,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661646653,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49674,'Failed login attempt with username podct','173.212.212.180',1661646747,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49675,'Failed login attempt with username podct','159.203.68.240',1661647072,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49676,'Failed login attempt with username Fully','185.119.81.101',1661647100,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'Fully',NULL),(49677,'Failed login attempt with username podct','208.113.171.103',1661647169,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49678,'Failed login attempt with username podct','188.165.198.224',1661647399,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49679,'Failed login attempt with username podct','188.165.198.224',1661648452,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(49680,'Failed login attempt with username podct','167.172.168.111',1661648779,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49681,'Failed login attempt with username podct','139.59.150.45',1661648884,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(49682,'Failed login attempt with username podct','208.113.171.103',1661649107,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49683,'Failed login attempt with username podct','97.74.89.166',1661650150,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49684,'Failed login attempt with username podct','51.255.81.60',1661650474,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49685,'Failed login attempt with username podct','103.149.154.8',1661650574,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49686,'Failed login attempt with username podct','168.119.80.254',1661650800,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49687,'Failed login attempt with username podct','68.183.75.82',1661651839,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49688,'Failed login attempt with username podct','110.40.244.196',1661652181,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49689,'Failed login attempt with username podct','52.138.180.227',1661652263,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(49690,'Failed login attempt with username podct','36.94.142.166',1661652494,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(49691,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661653286,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49692,'Failed login attempt with username podct','139.59.96.126',1661653543,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49693,'Failed login attempt with username podct','103.31.249.221',1661653874,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49694,'Failed login attempt with username podct','188.166.236.35',1661653971,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(49695,'Failed login attempt with username podct','47.100.208.57',1661654199,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49696,'Failed login attempt with username podct','185.126.219.43',1661655252,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(49697,'Failed login attempt with username podct','51.75.15.189',1661655579,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(49698,'Failed login attempt with username podct','208.113.171.103',1661655679,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49699,'Failed login attempt with username podct','77.240.13.186',1661655908,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(49700,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661656224,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49701,'Failed login attempt with username podct','178.128.5.109',1661656964,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(49702,'Failed login attempt with username podct','147.135.255.8',1661657292,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49703,'Failed login attempt with username podct','171.244.0.91',1661657620,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49704,'Failed login attempt with username Podiatrist','185.119.81.106',1661658030,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'Podiatrist',NULL),(49705,'Failed login attempt with username podct','198.244.167.101',1661658672,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49706,'Failed login attempt with username podct','185.2.4.134',1661658999,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(49707,'Failed login attempt with username podct','202.21.38.119',1661659334,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49708,'Failed login attempt with username podct','173.236.242.233',1661660380,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(49709,'Failed login attempt with username podct','51.159.155.6',1661660709,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49710,'Failed login attempt with username podct','46.63.80.162',1661660802,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(49711,'Failed login attempt with username podct','82.166.39.15',1661661041,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49712,'Failed login attempt with username effective','185.119.81.103',1661661317,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',1,'effective',NULL),(49713,'Failed login attempt with username podct','173.236.184.128',1661662404,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(49714,'Failed login attempt with username podct','14.241.233.205',1661662500,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49715,'Failed login attempt with username podct','159.203.143.36',1661662743,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49716,'Failed login attempt with username podct','161.35.126.102',1661663774,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49717,'Failed login attempt with username podct','103.31.249.221',1661664209,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(49718,'Failed login attempt with username podct','64.227.183.25',1661664423,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(49719,'Failed login attempt with username podct','166.62.125.246',1661665477,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49720,'Failed login attempt with username solutions','185.119.81.107',1661665500,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36',1,'solutions',NULL),(49721,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1661665580,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49722,'Failed login attempt with username podct','101.34.224.66',1661665901,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(49723,'Failed login attempt with username podct','209.97.162.248',1661666110,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49724,'Failed login attempt with username podct','147.182.249.22',1661667165,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49725,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661669136,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49726,'Failed login attempt with username podct','103.166.183.192',1661669197,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(49727,'Failed login attempt with username podct','173.236.242.233',1661669293,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49728,'Failed login attempt with username podct','209.97.162.248',1661669517,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(49729,'Failed login attempt with username podct','88.87.206.123',1661670554,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49730,'Failed login attempt with username podct','188.212.34.69',1661670877,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(49731,'Failed login attempt with username podct','165.22.109.42',1661670973,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49732,'Failed login attempt with username podct','159.203.143.36',1661671194,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49733,'Failed login attempt with username podct','150.109.148.216',1661672201,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(49734,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661672451,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49735,'Failed login attempt with username podct','208.113.180.18',1661672512,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49736,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661672516,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49737,'Failed login attempt with username podct','115.78.122.58',1661672608,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49738,'Failed login attempt with username podct','167.172.105.95',1661672824,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(49739,'Failed login attempt with username podct','185.76.77.160',1661673062,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49740,'Failed login attempt with username podct','116.203.222.121',1661673414,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49741,'Failed login attempt with username admin','38.242.208.110',1661673732,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49742,'Failed login attempt with username podct','46.63.80.162',1661673839,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49743,'Failed login attempt with username admin','51.38.113.53',1661674068,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49744,'Failed login attempt with username podct','185.2.4.33',1661674158,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49745,'Failed login attempt with username podct','54.37.156.240',1661674255,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49746,'Failed login attempt with username admin','93.113.111.193',1661674377,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49747,'Failed login attempt with username podct','107.175.111.233',1661674476,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49748,'Failed login attempt with username admin','31.172.80.147',1661674709,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49749,'Failed login attempt with username admin','67.202.20.83',1661675032,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49750,'Failed login attempt with username admin','5.135.141.158',1661675355,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49751,'Failed login attempt with username podct','173.212.212.180',1661675509,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(49752,'Failed login attempt with username admin','66.29.130.139',1661675649,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49753,'Failed login attempt with username podct','118.98.73.5',1661675823,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49754,'Failed login attempt with username podct','110.40.244.196',1661675924,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49755,'Failed login attempt with username admin','72.167.225.151',1661675953,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49756,'Failed login attempt with username podct','181.174.125.214',1661676150,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(49757,'Failed login attempt with username admin','167.172.79.125',1661676259,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49758,'Failed login attempt with username admin','13.229.140.23',1661676560,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49759,'Failed login attempt with username admin','104.243.26.114',1661676882,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49760,'Failed login attempt with username admin','185.119.81.107',1661677024,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36',1,'admin',NULL),(49761,'Failed login attempt with username podct','141.94.247.170',1661677166,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(49762,'Failed login attempt with username admin','154.53.50.182',1661677171,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49763,'Failed login attempt with username admin','82.165.78.40',1661677485,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49764,'Failed login attempt with username podct','77.65.213.168',1661677490,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49765,'Failed login attempt with username podct','85.146.18.88',1661677586,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49766,'Failed login attempt with username podct','202.29.236.140',1661677812,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49767,'Failed login attempt with username admin','190.169.30.54',1661677827,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'admin',NULL),(49768,'Failed login attempt with username admin','38.242.134.36',1661678062,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49769,'Failed login attempt with username admin','185.153.8.103',1661678379,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49770,'Failed login attempt with username admin','51.68.228.235',1661678709,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49771,'Failed login attempt with username podct','185.2.4.134',1661678846,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49772,'Failed login attempt with username admin','152.89.234.145',1661679020,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49773,'Failed login attempt with username podct','68.183.75.82',1661679172,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(49774,'Failed login attempt with username podct','66.33.193.231',1661679271,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49775,'Failed login attempt with username admin','91.201.215.19',1661679339,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49776,'Failed login attempt with username podct','159.89.228.214',1661679495,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(49777,'Failed login attempt with username admin','37.251.155.50',1661679596,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49778,'Failed login attempt with username andyblecherpodiatrist','185.119.81.106',1661679805,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49779,'Failed login attempt with username admin','195.93.152.83',1661679944,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49780,'Failed login attempt with username admin','213.136.93.169',1661680239,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49781,'Failed login attempt with username podct','167.172.168.111',1661680527,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(49782,'Failed login attempt with username admin','91.123.18.217',1661680544,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49783,'Failed login attempt with username admin','13.229.140.23',1661680798,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49784,'Failed login attempt with username podct','103.130.218.189',1661680854,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49785,'Failed login attempt with username podct','39.103.157.70',1661680953,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(49786,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.106',1661681087,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49787,'Failed login attempt with username admin','31.210.66.35',1661681138,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49788,'Failed login attempt with username podct','164.46.122.50',1661681181,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49789,'Failed login attempt with username admin','5.63.9.54',1661681493,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49790,'Failed login attempt with username admin','54.38.38.23',1661681805,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49791,'Request for file /.env which doesn\'t exist','185.83.146.154',1661682052,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(49792,'Request for file /.env which doesn\'t exist','185.83.146.154',1661682052,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(49793,'Failed login attempt with username admin','173.249.52.35',1661682124,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49794,'Failed login attempt with username podct','157.230.127.126',1661682220,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(49795,'Failed login attempt with username admin','209.205.211.242',1661682404,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49796,'Failed login attempt with username podct','77.65.213.168',1661682542,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49797,'Failed login attempt with username podct','51.255.81.60',1661682640,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49798,'Failed login attempt with username admin','103.27.63.56',1661682712,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49799,'Failed login attempt with username podct','168.119.80.254',1661682864,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(49800,'Failed login attempt with username admin','142.132.230.128',1661683013,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49801,'Failed login attempt with username admin','80.77.135.125',1661683331,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49802,'Failed login attempt with username admin','104.248.241.28',1661683585,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49803,'Failed login attempt with username podct','85.91.237.106',1661683907,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49804,'Failed login attempt with username admin','46.182.4.115',1661683910,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49805,'Failed login attempt with username admin','178.63.146.46',1661684194,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49806,'Request for file /interesting-articles/ which doesn\'t exist','185.191.171.10',1661684227,'404_error','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1,'/interesting-articles/',NULL),(49807,'Failed login attempt with username podct','120.78.15.126',1661684232,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49808,'Failed login attempt with username podct','159.223.170.181',1661684327,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49809,'Failed login attempt with username admin','51.79.30.143',1661684539,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49810,'Failed login attempt with username podct','181.174.125.214',1661684550,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(49811,'Failed login attempt with username admin','69.16.238.78',1661684865,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49812,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661684939,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49813,'Failed login attempt with username admin','185.51.188.46',1661685175,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'admin',NULL),(49814,'Failed login attempt with username podct','34.134.161.50',1661685596,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(49815,'Failed login attempt with username podct','93.113.111.193',1661685687,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49816,'Request for file /admin/ which doesn\'t exist','5.188.62.140',1661685695,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4758.11 Safari/537.36',1,'/admin/',NULL),(49817,'Request for file /admin/login.php which doesn\'t exist','5.188.62.140',1661685704,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4758.11 Safari/537.36',1,'/admin/login.php',NULL),(49818,'Failed login attempt with username podct','139.59.118.238',1661685921,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49819,'Failed login attempt with username podct','185.50.199.194',1661686018,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49820,'Failed login attempt with username podct','185.224.198.55',1661686032,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49821,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661686166,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49822,'Failed login attempt with username podct','45.55.44.23',1661686246,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49823,'Failed login attempt with username podct','93.113.111.193',1661686363,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49824,'Failed login attempt with username podct','37.46.128.180',1661686703,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49825,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.106',1661687001,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49826,'Failed login attempt with username podct','38.242.134.36',1661687001,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49827,'Failed login attempt with username podct','138.68.84.97',1661687299,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(49828,'Failed login attempt with username podct','95.179.244.82',1661687346,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49829,'Failed login attempt with username podct','159.223.170.181',1661687621,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49830,'Failed login attempt with username podct','35.224.216.78',1661687673,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49831,'Failed login attempt with username podct','146.148.44.185',1661687716,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49832,'Failed login attempt with username podct','185.2.4.134',1661687942,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(49833,'Failed login attempt with username podct','109.234.161.93',1661688023,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49834,'Failed login attempt with username podct','46.63.80.162',1661688999,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(49835,'Failed login attempt with username podct','172.104.156.149',1661689326,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49836,'Failed login attempt with username podct','133.130.103.36',1661689425,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49837,'Failed login attempt with username podct','167.172.105.95',1661689654,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49838,'Failed login attempt with username wadminw','45.119.213.225',1661690636,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wadminw',NULL),(49839,'Failed login attempt with username podct','45.120.69.121',1661690708,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49840,'Failed login attempt with username wadminw','192.81.214.91',1661690826,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wadminw',NULL),(49841,'Failed login attempt with username podct','178.62.35.35',1661691035,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(49842,'Failed login attempt with username wwwadmin','62.90.101.113',1661691041,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wwwadmin',NULL),(49843,'Failed login attempt with username podct','13.81.59.92',1661691132,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49844,'Failed login attempt with username wwwadmin','124.217.226.56',1661691182,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wwwadmin',NULL),(49845,'Failed login attempt with username podct','68.183.86.247',1661691361,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(49846,'Failed login attempt with username podct','67.205.62.27',1661692421,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49847,'Failed login attempt with username wadminw','107.152.47.82',1661692735,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wadminw',NULL),(49848,'Failed login attempt with username podct','151.106.41.64',1661693062,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49849,'Failed login attempt with username wwwadmin','70.34.213.124',1661693102,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wwwadmin',NULL),(49850,'Failed login attempt with username podct','167.172.142.236',1661693161,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(49851,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661693387,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49852,'Failed login attempt with username podct','1.117.250.215',1661693393,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49853,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661693531,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49854,'Failed login attempt with username podct','167.172.64.96',1661694459,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49855,'Failed login attempt with username podct','209.97.162.248',1661694791,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(49856,'Failed login attempt with username podct','188.212.34.69',1661694891,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(49857,'Failed login attempt with username solutions','185.119.81.107',1661694989,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36',1,'solutions',NULL),(49858,'Failed login attempt with username podct','147.135.255.8',1661695121,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49859,'Failed login attempt with username podct','39.103.157.70',1661696203,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49860,'Failed login attempt with username podct','13.79.17.158',1661696539,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49861,'Failed login attempt with username podct','139.59.96.126',1661696882,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(49862,'Failed login attempt with username podct','207.154.250.8',1661697957,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(49863,'Failed login attempt with username podct','142.93.245.196',1661698293,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49864,'Failed login attempt with username podct','45.13.132.210',1661698740,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49865,'Failed login attempt with username podct','103.39.134.190',1661699797,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49866,'Failed login attempt with username podct','208.113.180.18',1661700837,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49867,'Failed login attempt with username podct','146.148.44.185',1661701888,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49868,'Failed login attempt with username podct','68.183.75.82',1661702938,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49869,'Failed login attempt with username podct','23.97.205.210',1661703989,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(49870,'Failed login attempt with username please','185.119.81.105',1661704830,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36',1,'please',NULL),(49871,'Failed login attempt with username podct','39.108.148.88',1661705042,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49872,'Failed login attempt with username please','185.119.81.105',1661705801,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 MVisionPlayer/1.0.0.0',1,'please',NULL),(49873,'Failed login attempt with username podct','104.131.68.19',1661706084,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49874,'Failed login attempt with username podct','36.94.142.166',1661707116,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49875,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661707704,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49876,'Failed login attempt with username podct','61.219.43.253',1661708145,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(49877,'Failed login attempt with username podct','159.203.68.240',1661709170,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(49878,'Request for file /radio.php which doesn\'t exist','20.38.12.4',1661709574,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/radio.php',NULL),(49879,'Request for file /wp-includes/wp-class.php which doesn\'t exist','20.38.12.4',1661709577,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wp-includes/wp-class.php',NULL),(49880,'Request for file /1index.php which doesn\'t exist','20.38.12.4',1661709581,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/1index.php',NULL),(49881,'Request for file /fw.php which doesn\'t exist','20.38.12.4',1661709585,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/fw.php',NULL),(49882,'Request for file /fx.php which doesn\'t exist','20.38.12.4',1661709588,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/fx.php',NULL),(49883,'Failed login attempt with username podct','81.88.52.221',1661710210,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(49884,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1661711111,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(49885,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1661711112,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(49886,'Failed login attempt with username podct','188.212.34.69',1661711221,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49887,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661712094,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49888,'Failed login attempt with username podct','103.149.154.8',1661712237,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49889,'Failed login attempt with username podct','211.78.92.164',1661713237,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49890,'Failed login attempt with username podct','46.63.80.162',1661714216,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(49891,'Failed login attempt with username podct','207.154.248.39',1661715203,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49892,'Failed login attempt with username podct','138.68.90.29',1661716213,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(49893,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661716326,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49894,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661717005,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49895,'Failed login attempt with username podct','172.104.156.149',1661719267,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(49896,'Request for file /wp-content/panel.php which doesn\'t exist','185.244.175.30',1661720128,'404_error','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'/wp-content/panel.php',NULL),(49897,'Failed login attempt with username podct','157.230.127.126',1661720182,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49898,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1661720516,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49899,'Failed login attempt with username effective','185.119.81.103',1661720684,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'effective',NULL),(49900,'Failed login attempt with username podct','77.240.13.186',1661721186,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49901,'Failed login attempt with username andyblecherpodiatrist','185.119.81.105',1661721759,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49902,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661721760,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49903,'Failed login attempt with username podct','66.33.193.231',1661722184,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(49904,'Failed login attempt with username podct','47.114.72.18',1661723185,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49905,'Failed login attempt with username podct','68.183.75.82',1661724197,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(49906,'Failed login attempt with username podct','51.178.76.51',1661725194,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(49907,'Failed login attempt with username podct','147.182.249.22',1661726209,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49908,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661726573,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49909,'Failed login attempt with username podct','103.129.222.91',1661727228,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(49910,'Request for file /_ignition/health-check/ which doesn\'t exist','147.78.47.249',1661727548,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36',1,'/_ignition/health-check/',NULL),(49911,'Request for file /public/_ignition/health-check/ which doesn\'t exist','147.78.47.249',1661727552,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36',1,'/public/_ignition/health-check/',NULL),(49912,'Failed login attempt with username podct','185.126.219.43',1661728236,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49913,'Failed login attempt with username podct','144.126.223.177',1661729253,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49914,'Failed login attempt with username podct','65.21.105.105',1661730267,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(49915,'Failed login attempt with username podct','93.114.185.76',1661731283,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(49916,'Failed login attempt with username podct','175.178.125.173',1661732306,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(49917,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661732683,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49918,'Failed login attempt with username podct','103.39.134.190',1661733324,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(49919,'Failed login attempt with username podct','139.59.150.45',1661734340,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49920,'Failed login attempt with username podct','181.174.125.214',1661735364,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(49921,'Failed login attempt with username podct','110.40.244.196',1661736394,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49922,'Failed login attempt with username podct','159.223.170.181',1661737418,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(49923,'Failed login attempt with username podct','188.166.183.39',1661739503,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49924,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661739737,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49925,'Failed login attempt with username podct','143.244.177.220',1661740707,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(49926,'Request for file /wp-content/popo.php which doesn\'t exist','185.244.175.30',1661740893,'404_error','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'/wp-content/popo.php',NULL),(49927,'Failed login attempt with username podct','151.106.41.64',1661742791,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49928,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661742809,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49929,'Failed login attempt with username podct','110.40.244.196',1661743813,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(49930,'Failed login attempt with username podct','211.78.92.164',1661744834,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(49931,'Failed login attempt with username podct','141.94.247.170',1661745857,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(49932,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661746529,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(49933,'Failed login attempt with username podct','209.97.162.248',1661746893,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(49934,'Failed login attempt with username podct','13.81.59.92',1661747927,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49935,'Failed login attempt with username podct','207.46.234.202',1661748953,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(49936,'Failed login attempt with username podct','13.79.17.158',1661749951,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(49937,'Failed login attempt with username podct','14.241.233.205',1661750934,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(49938,'Failed login attempt with username podct','143.244.140.199',1661751926,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(49939,'Failed login attempt with username podct','217.170.198.11',1661752590,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49940,'Failed login attempt with username podct','95.216.64.209',1661752680,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49941,'Failed login attempt with username podct','152.32.168.168',1661752773,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49942,'Failed login attempt with username podct','46.31.17.29',1661752935,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49943,'Failed login attempt with username podct','142.93.48.70',1661753029,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49944,'Failed login attempt with username podct','165.22.200.76',1661753151,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49945,'Failed login attempt with username podct','107.170.147.229',1661753209,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49946,'Failed login attempt with username podct','107.180.88.41',1661753338,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49947,'Failed login attempt with username podct','43.155.83.110',1661753448,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49948,'Failed login attempt with username podct','213.165.68.99',1661753546,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49949,'Failed login attempt with username podct','194.1.192.3',1661753653,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49950,'Failed login attempt with username podct','69.12.68.106',1661753720,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49951,'Failed login attempt with username podct','142.93.225.233',1661753828,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49952,'Failed login attempt with username podct','217.170.198.16',1661753906,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49953,'Failed login attempt with username podct','35.236.69.208',1661754022,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49954,'Failed login attempt with username podct','143.198.217.166',1661754130,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49955,'Failed login attempt with username podct','142.93.48.70',1661754251,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49956,'Failed login attempt with username podct','103.130.218.163',1661754357,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49957,'Failed login attempt with username podct','77.68.75.246',1661754439,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49958,'Failed login attempt with username podct','40.77.104.142',1661754601,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49959,'Failed login attempt with username podct','208.113.235.82',1661754722,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49960,'Failed login attempt with username podct','91.134.248.192',1661754821,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49961,'Failed login attempt with username podct','121.4.181.173',1661754943,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49962,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1661754950,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'andyblecherpodiatrist',NULL),(49963,'Failed login attempt with username podct','167.71.63.47',1661754967,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(49964,'Failed login attempt with username podct','110.238.119.21',1661755079,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49965,'Failed login attempt with username podct','165.22.252.1',1661755153,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49966,'Failed login attempt with username podct','34.172.131.247',1661755281,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49967,'Failed login attempt with username podct','217.170.198.16',1661755503,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49968,'Failed login attempt with username podct','159.89.165.49',1661755572,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49969,'Failed login attempt with username podct','200.2.116.250',1661755749,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49970,'Failed login attempt with username podct','46.31.17.29',1661755871,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49971,'Failed login attempt with username podct','148.251.78.9',1661755961,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49972,'Failed login attempt with username podct','134.122.40.81',1661756082,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49973,'Failed login attempt with username podct','159.223.51.109',1661756143,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49974,'Failed login attempt with username admin','185.119.81.105',1661756278,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'admin',NULL),(49975,'Failed login attempt with username podct','161.35.15.73',1661756354,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49976,'Failed login attempt with username podct','167.172.18.15',1661756403,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49977,'Request for file /.well-known/ which doesn\'t exist','51.140.205.50',1661756492,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/.well-known/',NULL),(49978,'Request for file /.well-known/acme-challenge/ which doesn\'t exist','51.140.205.50',1661756496,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/.well-known/acme-challenge/',NULL),(49979,'Request for file /wp-content/mu-plugins-old/ which doesn\'t exist','51.140.205.50',1661756521,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/mu-plugins-old/',NULL),(49980,'Request for file /wp-content/themes/classic/inc/ which doesn\'t exist','51.140.205.50',1661756525,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/themes/classic/inc/',NULL),(49981,'Request for file /wp-content/plugins/ninja-forms/ which doesn\'t exist','51.140.205.50',1661756528,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/plugins/ninja-forms/',NULL),(49982,'Request for file /wp-content/mu-plugins/ which doesn\'t exist','51.140.205.50',1661756532,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/mu-plugins/',NULL),(49983,'Request for file /wp-admin/meta/ which doesn\'t exist','51.140.205.50',1661756570,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-admin/meta/',NULL),(49984,'Failed login attempt with username podct','104.248.41.101',1661756587,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49985,'Request for file /wp-content/themes/twentytwenty/ which doesn\'t exist','51.140.205.50',1661756629,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/themes/twentytwenty/',NULL),(49986,'Request for file /.well-knownold/ which doesn\'t exist','51.140.205.50',1661756635,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/.well-knownold/',NULL),(49987,'Failed login attempt with username podct','77.222.57.72',1661756643,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49988,'Failed login attempt with username podct','107.170.147.229',1661756768,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49989,'Failed login attempt with username podct','83.169.41.136',1661756898,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49990,'Failed login attempt with username podct','159.69.157.235',1661756995,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49991,'Failed login attempt with username podct','148.251.78.9',1661757081,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49992,'Failed login attempt with username podct','43.155.83.110',1661757204,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49993,'Failed login attempt with username podct','165.22.214.184',1661757336,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49994,'Failed login attempt with username podct','207.154.250.8',1661757354,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(49995,'Failed login attempt with username podct','68.183.26.89',1661757416,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49996,'Failed login attempt with username podct','46.31.17.29',1661757523,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49997,'Failed login attempt with username podct','188.166.46.26',1661757784,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49998,'Failed login attempt with username podct','69.163.192.25',1661757878,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(49999,'Failed login attempt with username podct','161.97.84.212',1661757942,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50000,'Failed login attempt with username podct','139.59.17.116',1661758136,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50001,'Failed login attempt with username podct','14.232.245.48',1661758239,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50002,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.105',1661758329,'auth_fail','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50003,'Failed login attempt with username podct','95.216.64.209',1661758355,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50004,'Failed login attempt with username podct','151.106.41.64',1661758377,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(50005,'Failed login attempt with username podct','177.55.111.74',1661758479,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50006,'Failed login attempt with username podct','107.180.88.41',1661758608,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50007,'Failed login attempt with username podct','167.71.36.2',1661758805,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50008,'Failed login attempt with username podct','77.222.57.72',1661758913,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50009,'Failed login attempt with username podct','65.108.72.55',1661758992,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50010,'Failed login attempt with username podct','72.167.44.18',1661759098,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50011,'Failed login attempt with username podct','165.22.252.1',1661759184,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50012,'Request for file /_ignition/execute-solution which doesn\'t exist','135.181.35.131',1661759308,'404_error','python-requests/2.18.4',1,'/_ignition/execute-solution',NULL),(50013,'Failed login attempt with username podct','141.94.102.163',1661759386,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50014,'Failed login attempt with username podct','68.183.75.82',1661759407,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(50015,'Failed login attempt with username podct','198.27.83.9',1661759493,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50016,'Failed login attempt with username podct','197.159.35.28',1661759612,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50017,'Failed login attempt with username podct','134.122.112.76',1661759684,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50018,'Failed login attempt with username Fields','185.119.81.102',1661759775,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'Fields',NULL),(50019,'Failed login attempt with username podct','165.22.214.166',1661759810,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50020,'Failed login attempt with username podct','68.168.221.155',1661759915,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50021,'Failed login attempt with username podct','52.230.20.89',1661760059,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50022,'Failed login attempt with username podct','83.169.41.136',1661760418,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50023,'Failed login attempt with username podct','171.244.134.21',1661760503,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50024,'Failed login attempt with username podct','197.159.35.28',1661760630,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50025,'Failed login attempt with username podct','91.134.248.192',1661760759,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50026,'Failed login attempt with username podct','68.183.201.49',1661760846,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50027,'Failed login attempt with username podct','46.31.17.29',1661760958,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50028,'Failed login attempt with username podct','103.242.233.169',1661761023,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50029,'Failed login attempt with username podct','103.242.233.169',1661761147,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50030,'Failed login attempt with username podct','128.199.221.125',1661761312,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50031,'Failed login attempt with username podct','124.158.10.29',1661761430,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50032,'Failed login attempt with username podct','69.12.68.106',1661761532,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50033,'Failed login attempt with username podct','34.125.68.105',1661761652,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50034,'Failed login attempt with username podct','103.242.233.169',1661761677,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50035,'Failed login attempt with username podct','139.60.30.13',1661761938,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50036,'Failed login attempt with username podct','103.10.105.156',1661762019,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50037,'Failed login attempt with username podct','92.54.13.201',1661762104,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50038,'Failed login attempt with username podct','77.222.57.72',1661762222,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50039,'Failed login attempt with username admin','159.89.27.131',1661762365,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'admin',NULL),(50040,'Failed login attempt with username podct','142.93.225.233',1661762411,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50041,'Failed login attempt with username podct','5.101.156.232',1661762538,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50042,'Failed login attempt with username podct','142.93.225.233',1661762643,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50043,'Failed login attempt with username podct','107.170.147.229',1661762728,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50044,'Failed login attempt with username podct','66.70.177.215',1661762869,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50045,'Failed login attempt with username podct','159.89.110.95',1661762955,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50046,'Failed login attempt with username podct','80.77.225.13',1661763082,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50047,'Failed login attempt with username podct','200.2.116.250',1661763189,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50048,'Failed login attempt with username podct','5.101.156.232',1661763308,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50049,'Failed login attempt with username podct','68.183.26.89',1661763452,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50050,'Failed login attempt with username podct','151.236.59.220',1661763522,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50051,'Failed login attempt with username podct','103.160.78.178',1661763655,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50052,'Failed login attempt with username podct','65.20.73.236',1661763779,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50053,'Failed login attempt with username podct','159.223.69.184',1661763834,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50054,'Failed login attempt with username podct','68.168.221.155',1661763998,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50055,'Failed login attempt with username podct','14.232.245.48',1661764129,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50056,'Failed login attempt with username podct','46.31.17.29',1661764241,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50057,'Failed login attempt with username podct','141.94.87.67',1661764351,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50058,'Failed login attempt with username admin','34.134.161.50',1661764409,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'admin',NULL),(50059,'Failed login attempt with username podct','197.159.35.28',1661764561,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50060,'Failed login attempt with username podct','65.108.72.55',1661764670,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50061,'Failed login attempt with username podct','85.128.143.95',1661764715,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50062,'Failed login attempt with username podct','161.97.84.212',1661764883,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50063,'Failed login attempt with username podct','77.68.20.250',1661764971,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50064,'Failed login attempt with username podct','197.159.35.28',1661765150,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50065,'Failed login attempt with username podct','68.183.26.89',1661765181,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50066,'Failed login attempt with username podct','194.233.71.9',1661765338,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50067,'Failed login attempt with username admin','167.99.252.52',1661765427,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'admin',NULL),(50068,'Failed login attempt with username podct','197.159.35.28',1661765467,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50069,'Failed login attempt with username podct','165.232.190.145',1661765566,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50070,'Failed login attempt with username podct','162.55.89.76',1661765693,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50071,'Failed login attempt with username podct','142.93.225.233',1661765787,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50072,'Failed login attempt with username podct','148.251.78.9',1661765921,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50073,'Failed login attempt with username podct','181.214.152.11',1661766060,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50074,'Failed login attempt with username podct','188.166.103.30',1661766275,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50075,'Failed login attempt with username podct','159.89.165.49',1661766324,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50076,'Failed login attempt with username admin','138.68.140.0',1661766448,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'admin',NULL),(50077,'Failed login attempt with username podct','213.147.125.107',1661766508,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50078,'Failed login attempt with username podct','194.233.71.9',1661766610,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50079,'Failed login attempt with username podct','124.158.10.29',1661766748,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50080,'Failed login attempt with username podct','70.37.161.251',1661766867,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50081,'Failed login attempt with username podct','161.97.84.212',1661766924,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50082,'Failed login attempt with username admin','185.119.81.102',1661766949,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',1,'admin',NULL),(50083,'Failed login attempt with username podct','54.213.131.154',1661767055,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50084,'Failed login attempt with username podct','151.236.59.220',1661767129,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50085,'Failed login attempt with username podct','178.128.2.114',1661767320,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50086,'Failed login attempt with username podct','134.0.115.12',1661767364,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50087,'Failed login attempt with username admin','104.131.68.19',1661767460,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(50088,'Failed login attempt with username podct','65.20.73.236',1661767483,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50089,'Failed login attempt with username podct','104.248.139.32',1661767536,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50090,'Failed login attempt with username podct','208.113.235.82',1661767611,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50091,'Failed login attempt with username podct','34.172.131.247',1661767751,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50092,'Failed login attempt with username podct','91.134.248.230',1661767871,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50093,'Failed login attempt with username podct','167.71.36.2',1661768043,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50094,'Failed login attempt with username podct','208.113.235.82',1661768163,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50095,'Failed login attempt with username podct','34.65.192.75',1661768311,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50096,'Failed login attempt with username podct','77.68.20.250',1661768342,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50097,'Failed login attempt with username podct','150.109.148.216',1661768469,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(50098,'Failed login attempt with username podct','143.198.161.92',1661768485,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50099,'Failed login attempt with username podct','197.159.35.28',1661768623,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50100,'Failed login attempt with username podct','148.72.214.212',1661768747,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50101,'Failed login attempt with username podct','139.59.122.66',1661768826,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50102,'Failed login attempt with username podct','171.244.139.185',1661768958,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50103,'Failed login attempt with username podct','107.180.88.41',1661769074,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50104,'Failed login attempt with username podct','80.77.225.13',1661769173,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50105,'Failed login attempt with username podct','185.85.188.254',1661769279,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50106,'Failed login attempt with username podct','68.183.26.89',1661769369,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50107,'Failed login attempt with username podct','207.154.248.39',1661769487,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(50108,'Failed login attempt with username podct','159.89.110.95',1661769512,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50109,'Failed login attempt with username podct','144.91.90.252',1661769618,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50110,'Failed login attempt with username podct','157.230.45.193',1661769690,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50111,'Failed login attempt with username podct','177.55.111.74',1661769838,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50112,'Failed login attempt with username podct','141.94.102.163',1661769974,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50113,'Failed login attempt with username podct','194.60.201.70',1661770040,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50114,'Failed login attempt with username podct','185.70.94.183',1661770144,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50115,'Failed login attempt with username podct','40.77.104.142',1661770333,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50116,'Failed login attempt with username podct','31.24.159.204',1661770433,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50117,'Failed login attempt with username podct','159.89.110.95',1661770478,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50118,'Failed login attempt with username podct','61.219.43.253',1661770503,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(50119,'Failed login attempt with username podct','69.12.68.106',1661770613,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50120,'Failed login attempt with username podct','68.168.221.155',1661770711,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50121,'Failed login attempt with username podct','13.126.254.135',1661770833,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50122,'Failed login attempt with username podct','68.183.26.89',1661770927,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50123,'Failed login attempt with username podct','167.172.18.15',1661770997,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50124,'Failed login attempt with username podct','165.22.200.76',1661771139,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50125,'Failed login attempt with username podct','173.209.53.242',1661771261,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50126,'Failed login attempt with username podct','200.2.116.250',1661771358,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50127,'Failed login attempt with username podct','151.236.59.220',1661771479,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50128,'Failed login attempt with username podct','188.212.34.69',1661771515,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(50129,'Failed login attempt with username podct','139.59.109.241',1661771546,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50130,'Failed login attempt with username podct','104.248.144.120',1661771722,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50131,'Failed login attempt with username podct','128.199.221.125',1661771818,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50132,'Failed login attempt with username podct','120.76.129.140',1661772012,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50133,'Failed login attempt with username podct','51.178.146.199',1661772076,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50134,'Failed login attempt with username podct','103.242.233.169',1661772129,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50135,'Failed login attempt with username podct','159.69.75.178',1661772274,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50136,'Failed login attempt with username podct','207.180.212.225',1661772395,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50137,'Failed login attempt with username podct','159.89.165.49',1661772475,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50138,'Failed login attempt with username podct','151.236.59.220',1661772612,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50139,'Failed login attempt with username podct','139.59.122.66',1661772745,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50140,'Failed login attempt with username podct','104.248.144.120',1661772786,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50141,'Failed login attempt with username podct','77.65.213.168',1661772866,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(50142,'Failed login attempt with username podct','103.41.206.160',1661772874,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50143,'Failed login attempt with username podct','13.126.254.135',1661773025,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50144,'Failed login attempt with username podct','35.236.69.208',1661773127,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50145,'Failed login attempt with username podct','207.180.215.170',1661773243,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50146,'Failed login attempt with username podct','85.128.143.112',1661773292,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50147,'Failed login attempt with username podct','31.24.159.204',1661773382,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50148,'Failed login attempt with username podct','69.60.119.184',1661773473,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50149,'Failed login attempt with username podct','209.236.119.42',1661773712,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50150,'Failed login attempt with username podct','172.104.156.149',1661773876,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(50151,'Failed login attempt with username podct','37.97.128.245',1661773939,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50152,'Failed login attempt with username podct','176.9.113.101',1661774031,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50153,'Failed login attempt with username podct','164.90.217.101',1661774143,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50154,'Failed login attempt with username podct','77.68.20.250',1661774281,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50155,'Failed login attempt with username podct','143.198.217.166',1661774359,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50156,'Failed login attempt with username podct','213.147.125.107',1661774596,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50157,'Failed login attempt with username podct','148.72.214.212',1661774729,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50158,'Failed login attempt with username podct','83.169.41.136',1661774827,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50159,'Failed login attempt with username admin','23.99.229.218',1661774899,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'admin',NULL),(50160,'Failed login attempt with username podct','35.236.69.208',1661774931,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50161,'Failed login attempt with username podct','68.183.26.89',1661775076,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50162,'Failed login attempt with username podct','197.159.35.28',1661775169,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50163,'Failed login attempt with username podct','89.253.238.83',1661775243,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50164,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661775312,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50165,'Failed login attempt with username podct','35.236.69.208',1661775493,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50166,'Failed login attempt with username podct','178.128.2.114',1661775605,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50167,'Failed login attempt with username podct','217.170.198.17',1661775674,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50168,'Failed login attempt with username podct','194.60.201.70',1661775877,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50169,'Failed login attempt with username admin','51.75.15.189',1661775907,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'admin',NULL),(50170,'Failed login attempt with username podct','103.41.206.160',1661775937,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50171,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661775986,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50172,'Failed login attempt with username podct','92.54.13.201',1661776075,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50173,'Failed login attempt with username podct','95.110.232.134',1661776195,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50174,'Failed login attempt with username podct','95.216.64.209',1661776274,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50175,'Failed login attempt with username podct','185.70.94.183',1661776364,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50176,'Failed login attempt with username podct','80.77.225.13',1661776493,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50177,'Failed login attempt with username podct','198.27.83.9',1661776588,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50178,'Failed login attempt with username podct','165.22.95.235',1661776702,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50179,'Failed login attempt with username podct','95.216.64.209',1661776829,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50180,'Failed login attempt with username podct','36.93.7.178',1661776981,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50181,'Failed login attempt with username podct','61.77.106.99',1661777040,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50182,'Failed login attempt with username podct','148.251.78.9',1661777152,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50183,'Failed login attempt with username admin','69.163.152.108',1661777194,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(50184,'Failed login attempt with username podct','37.19.123.58',1661777266,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50185,'Failed login attempt with username podct','34.176.45.106',1661777325,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50186,'Failed login attempt with username podct','141.94.102.163',1661777489,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50187,'Failed login attempt with username podct','34.87.101.136',1661777603,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50188,'Failed login attempt with username podct','165.22.200.76',1661777734,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50189,'Failed login attempt with username podct','164.92.143.73',1661777807,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50190,'Failed login attempt with username podct','185.85.188.254',1661777936,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50191,'Failed login attempt with username podct','5.101.156.232',1661778093,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50192,'Failed login attempt with username podct','157.230.45.193',1661778123,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50193,'Failed login attempt with username admin','168.119.80.254',1661778217,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'admin',NULL),(50194,'Failed login attempt with username podct','207.154.208.104',1661778221,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50195,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661778283,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50196,'Failed login attempt with username podct','69.12.68.106',1661778401,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50197,'Failed login attempt with username podct','72.167.44.18',1661778497,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50198,'Failed login attempt with username podct','104.248.41.101',1661778566,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50199,'Failed login attempt with username podct','192.241.158.94',1661778686,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50200,'Failed login attempt with username podct','142.93.225.233',1661778777,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50201,'Failed login attempt with username podct','217.170.198.17',1661778845,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50202,'Failed login attempt with username podct','85.128.143.86',1661778937,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50203,'Request for file /wp-content/radio.php which doesn\'t exist','185.244.175.30',1661778959,'404_error','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'/wp-content/radio.php',NULL),(50204,'Failed login attempt with username podct','85.128.143.55',1661779041,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50205,'Failed login attempt with username podct','20.199.109.10',1661779182,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50206,'Failed login attempt with username admin','207.46.234.202',1661779252,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'admin',NULL),(50207,'Failed login attempt with username podct','139.59.122.66',1661779255,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50208,'Failed login attempt with username podct','139.59.122.66',1661779367,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50209,'Failed login attempt with username podct','177.55.111.74',1661779471,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50210,'Failed login attempt with username podct','128.199.221.125',1661779707,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50211,'Failed login attempt with username podct','159.89.165.49',1661779765,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50212,'Failed login attempt with username podct','151.236.59.220',1661779965,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50213,'Failed login attempt with username podct','103.35.165.250',1661780074,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50214,'Failed login attempt with username podct','188.166.103.30',1661780199,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50215,'Failed login attempt with username podct','143.110.241.250',1661780289,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50216,'Failed login attempt with username admin','77.240.13.186',1661780294,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'admin',NULL),(50217,'Failed login attempt with username podct','120.53.122.54',1661780452,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50218,'Failed login attempt with username podct','185.70.94.183',1661780520,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50219,'Failed login attempt with username podct','13.235.237.114',1661780596,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50220,'Failed login attempt with username podct','185.210.92.239',1661780869,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50221,'Failed login attempt with username podct','212.77.32.166',1661780959,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50222,'Failed login attempt with username podct','181.214.152.11',1661781107,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50223,'Failed login attempt with username podct','89.253.238.83',1661781166,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50224,'Failed login attempt with username podct','143.110.241.250',1661781296,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50225,'Failed login attempt with username admin','138.68.84.97',1661781333,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'admin',NULL),(50226,'Failed login attempt with username podct','178.128.2.114',1661781409,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50227,'Failed login attempt with username podct','207.180.212.225',1661781504,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50228,'Failed login attempt with username podct','139.60.30.13',1661781582,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50229,'Failed login attempt with username podct','165.232.190.145',1661781681,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50230,'Failed login attempt with username podct','77.68.75.246',1661781762,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50231,'Failed login attempt with username podct','213.147.125.107',1661781871,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50232,'Failed login attempt with username podct','66.70.177.215',1661781930,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50233,'Failed login attempt with username podct','34.125.68.105',1661782220,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50234,'Failed login attempt with username podct','202.131.237.197',1661782271,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50235,'Failed login attempt with username podct','165.22.202.216',1661782430,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50236,'Failed login attempt with username podct','212.77.32.166',1661782550,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50237,'Failed login attempt with username podct','142.93.48.70',1661782658,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50238,'Failed login attempt with username podct','139.59.122.66',1661782776,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50239,'Failed login attempt with username podct','212.77.32.166',1661782893,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50240,'Failed login attempt with username podct','124.158.10.29',1661783037,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50241,'Failed login attempt with username podct','188.166.46.26',1661783115,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50242,'Failed login attempt with username podct','35.236.69.208',1661783241,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50243,'Failed login attempt with username podct','137.184.224.10',1661783383,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50244,'Failed login attempt with username podct','46.20.146.41',1661783476,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50245,'Failed login attempt with username podct','51.178.146.199',1661783608,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50246,'Failed login attempt with username podct','157.90.135.167',1661783725,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50247,'Failed login attempt with username podct','185.210.92.239',1661783854,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50248,'Failed login attempt with username podct','178.128.2.114',1661783949,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50249,'Failed login attempt with username podct','20.199.109.10',1661784061,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50250,'Failed login attempt with username podct','185.185.85.130',1661784079,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50251,'Failed login attempt with username podct','200.2.116.250',1661784234,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50252,'Failed login attempt with username podct','200.2.116.250',1661784345,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50253,'Failed login attempt with username podct','190.107.177.239',1661784389,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50254,'Failed login attempt with username podct','74.208.90.100',1661784472,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50255,'Failed login attempt with username podct','167.71.36.2',1661784728,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50256,'Failed login attempt with username podct','198.27.83.9',1661784853,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50257,'Failed login attempt with username podct','188.166.46.26',1661784929,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50258,'Failed login attempt with username podct','61.77.106.99',1661785057,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50259,'Failed login attempt with username podct','34.172.131.247',1661785169,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50260,'Failed login attempt with username podct','159.69.157.235',1661785301,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50261,'Failed login attempt with username podct','165.22.214.184',1661785407,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50262,'Failed login attempt with username podct','217.170.198.17',1661785520,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50263,'Failed login attempt with username podct','143.198.217.166',1661785655,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50264,'Failed login attempt with username podct','147.139.178.177',1661785746,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50265,'Failed login attempt with username podct','165.232.190.145',1661785869,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50266,'Failed login attempt with username podct','34.65.192.75',1661786151,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50267,'Failed login attempt with username podct','165.22.95.235',1661786223,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50268,'Failed login attempt with username podct','68.168.221.155',1661786335,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50269,'Failed login attempt with username podct','165.22.219.121',1661786470,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50270,'Failed login attempt with username podct','46.31.17.29',1661786562,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50271,'Failed login attempt with username podct','143.198.161.92',1661786657,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50272,'Failed login attempt with username podct','178.128.2.114',1661786818,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50273,'Failed login attempt with username podct','77.68.20.250',1661786863,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50274,'Failed login attempt with username podct','40.77.107.181',1661786993,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50275,'Failed login attempt with username podct','90.156.168.79',1661787229,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50276,'Failed login attempt with username podct','104.248.139.32',1661787279,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50277,'Failed login attempt with username podct','69.163.192.25',1661787365,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50278,'Failed login attempt with username podct','69.12.68.106',1661787489,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50279,'Failed login attempt with username podct','194.233.71.9',1661787567,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50280,'Failed login attempt with username podct','61.77.106.99',1661787676,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50281,'Failed login attempt with username podct','161.97.84.212',1661787724,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50282,'Failed login attempt with username podct','194.1.192.3',1661787897,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50283,'Failed login attempt with username podct','128.199.221.125',1661787990,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50284,'Failed login attempt with username podct','37.19.123.58',1661788112,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50285,'Failed login attempt with username podct','185.70.94.183',1661788234,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50286,'Failed login attempt with username podct','46.101.89.32',1661788276,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50287,'Failed login attempt with username podct','62.210.185.4',1661788450,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50288,'Failed login attempt with username podct','159.69.157.235',1661788566,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50289,'Failed login attempt with username podct','14.232.245.48',1661788793,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50290,'Failed login attempt with username podct','185.85.188.254',1661788909,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50291,'Failed login attempt with username podct','165.22.214.184',1661789051,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50292,'Failed login attempt with username podct','194.233.71.9',1661789133,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50293,'Failed login attempt with username podct','52.58.225.188',1661789255,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50294,'Failed login attempt with username podct','192.241.158.94',1661789381,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50295,'Failed login attempt with username podct','165.227.169.86',1661789488,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50296,'Failed login attempt with username podct','165.22.200.76',1661789675,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50297,'Failed login attempt with username podct','142.93.48.70',1661789778,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50298,'Failed login attempt with username podct','212.91.94.100',1661789898,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50299,'Failed login attempt with username podct','165.22.214.184',1661789944,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50300,'Failed login attempt with username podct','20.199.109.10',1661790084,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50301,'Failed login attempt with username podct','103.242.233.169',1661790131,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50302,'Failed login attempt with username podct','162.241.121.36',1661790257,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50303,'Failed login attempt with username podct','110.238.119.21',1661790379,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50304,'Failed login attempt with username podct','5.175.45.158',1661790480,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50305,'Failed login attempt with username podct','104.248.139.32',1661790510,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50306,'Failed login attempt with username podct','165.22.95.235',1661790678,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50307,'Failed login attempt with username podct','139.59.122.66',1661790792,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50308,'Failed login attempt with username podct','147.182.230.210',1661790851,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50309,'Failed login attempt with username podct','104.248.41.101',1661791012,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50310,'Failed login attempt with username podct','139.59.109.241',1661791070,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50311,'Failed login attempt with username podct','103.130.218.163',1661791253,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50312,'Failed login attempt with username podct','181.214.152.11',1661791356,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50313,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1661791415,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50314,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1661791415,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50315,'Failed login attempt with username podct','40.77.107.181',1661791480,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50316,'Failed login attempt with username podct','220.85.221.65',1661791616,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50317,'Failed login attempt with username podct','151.236.59.220',1661791714,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50318,'Failed login attempt with username podct','212.77.32.166',1661791794,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50319,'Failed login attempt with username podct','20.199.109.10',1661791936,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50320,'Failed login attempt with username podct','103.130.218.163',1661792042,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50321,'Failed login attempt with username podct','139.162.217.184',1661792124,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50322,'Failed login attempt with username podct','159.69.157.235',1661792254,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50323,'Failed login attempt with username podct','185.85.188.254',1661792356,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50324,'Failed login attempt with username podct','159.223.69.184',1661792393,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50325,'Failed login attempt with username podct','161.35.15.73',1661792537,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50326,'Failed login attempt with username podct','146.59.195.109',1661792642,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50327,'Failed login attempt with username podct','162.55.89.76',1661792749,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50328,'Failed login attempt with username podct','171.244.139.185',1661792830,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50329,'Failed login attempt with username podct','194.60.201.70',1661792927,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50330,'Failed login attempt with username podct','200.2.116.250',1661793032,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50331,'Failed login attempt with username podct','165.22.95.235',1661793152,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50332,'Failed login attempt with username podct','161.35.15.73',1661793214,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50333,'Failed login attempt with username podct','162.55.89.76',1661793329,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50334,'Failed login attempt with username podct','159.69.75.178',1661793452,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50335,'Failed login attempt with username podct','212.77.32.166',1661793535,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50336,'Failed login attempt with username podct','134.122.40.81',1661793663,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50337,'Failed login attempt with username podct','139.59.122.66',1661793793,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50338,'Failed login attempt with username podct','185.141.171.155',1661793931,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50339,'Failed login attempt with username podct','13.126.254.135',1661794017,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50340,'Failed login attempt with username podct','110.238.119.21',1661794146,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50341,'Failed login attempt with username podct','52.58.225.188',1661794258,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50342,'Failed login attempt with username podct','164.90.217.101',1661794342,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50343,'Failed login attempt with username podct','136.243.131.69',1661794466,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50344,'Failed login attempt with username podct','46.38.249.150',1661794591,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50345,'Failed login attempt with username podct','34.176.45.106',1661794678,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50346,'Failed login attempt with username podct','13.235.237.114',1661794779,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50347,'Failed login attempt with username podct','208.113.235.82',1661794948,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50348,'Failed login attempt with username podct','69.60.119.184',1661795039,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50349,'Failed login attempt with username podct','213.165.68.99',1661795148,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50350,'Failed login attempt with username podct','192.241.158.94',1661795274,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50351,'Failed login attempt with username podct','212.77.32.166',1661795369,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50352,'Failed login attempt with username podct','85.128.143.55',1661795508,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50353,'Failed login attempt with username podct','46.38.249.150',1661795649,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50354,'Failed login attempt with username podct','85.128.143.86',1661795746,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50355,'Failed login attempt with username podct','14.225.254.199',1661795796,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50356,'Failed login attempt with username podct','146.59.195.109',1661795948,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50357,'Failed login attempt with username podct','103.242.233.169',1661796031,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50358,'Failed login attempt with username podct','213.147.125.107',1661796177,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50359,'Failed login attempt with username podct','136.243.131.69',1661796261,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50360,'Failed login attempt with username podct','51.178.146.199',1661796398,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50361,'Failed login attempt with username podct','164.90.217.101',1661796499,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50362,'Failed login attempt with username podct','159.69.75.178',1661796588,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50363,'Failed login attempt with username podct','103.10.105.156',1661796704,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50364,'Failed login attempt with username podct','185.10.198.9',1661796839,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50365,'Failed login attempt with username podct','159.89.165.49',1661796887,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50366,'Failed login attempt with username podct','34.87.101.136',1661797061,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50367,'Failed login attempt with username podct','77.68.75.246',1661797123,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50368,'Failed login attempt with username podct','90.156.168.79',1661797330,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50369,'Failed login attempt with username podct','34.87.101.136',1661797398,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50370,'Failed login attempt with username podct','165.232.190.145',1661797522,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50371,'Failed login attempt with username podct','121.4.181.173',1661797682,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50372,'Failed login attempt with username podct','62.210.185.4',1661797782,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50373,'Failed login attempt with username podct','207.180.215.170',1661797851,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50374,'Failed login attempt with username Council','185.119.81.108',1661797968,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',1,'Council',NULL),(50375,'Failed login attempt with username podct','94.23.61.165',1661797970,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50376,'Failed login attempt with username podct','161.35.15.73',1661797994,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50377,'Failed login attempt with username podct','162.241.69.106',1661798148,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50378,'Failed login attempt with username podct','144.91.90.252',1661798240,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50379,'Failed login attempt with username podct','136.243.131.69',1661798351,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50380,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661798424,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 MVisionPlayer/1.0.0.0',1,'andyblecherpodiatrist',NULL),(50381,'Failed login attempt with username podct','194.1.192.3',1661798446,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50382,'Failed login attempt with username podct','103.242.233.26',1661798469,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50383,'Failed login attempt with username podct','128.199.221.125',1661798622,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50384,'Failed login attempt with username podct','66.70.177.215',1661798680,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50385,'Failed login attempt with username podct','20.199.109.10',1661798822,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50386,'Failed login attempt with username podct','85.128.143.150',1661798910,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50387,'Failed login attempt with username podct','103.10.105.157',1661799041,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50388,'Failed login attempt with username podct','94.23.61.165',1661799156,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50389,'Failed login attempt with username podct','103.242.233.169',1661799204,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50390,'Failed login attempt with username admin','185.119.81.107',1661799343,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'admin',NULL),(50391,'Failed login attempt with username podct','165.22.219.121',1661799362,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50392,'Failed login attempt with username podct','103.10.105.156',1661799581,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50393,'Failed login attempt with username podct','54.37.23.176',1661799585,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50394,'Failed login attempt with username podct','142.93.48.70',1661799709,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50395,'Failed login attempt with username podct','185.85.188.254',1661799832,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50396,'Failed login attempt with username podct','137.184.224.10',1661799947,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50397,'Failed login attempt with username podct','217.170.198.17',1661800043,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50398,'Failed login attempt with username podct','178.128.2.114',1661800192,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50399,'Failed login attempt with username podct','34.176.45.106',1661800287,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50400,'Failed login attempt with username podct','194.233.71.9',1661800537,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50401,'Failed login attempt with username podct','77.68.75.246',1661800589,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50402,'Failed login attempt with username podct','93.114.235.167',1661800782,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50403,'Failed login attempt with username podct','165.22.219.121',1661800888,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50404,'Failed login attempt with username podct','148.72.214.212',1661801013,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50405,'Failed login attempt with username podct','46.4.81.203',1661801291,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50406,'Failed login attempt with username podct','120.76.129.140',1661801335,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50407,'Failed login attempt with username admin','185.119.81.108',1661801400,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'admin',NULL),(50408,'Failed login attempt with username podct','14.232.245.48',1661801503,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50409,'Failed login attempt with username podct','14.232.245.48',1661801626,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50410,'Failed login attempt with username podct','188.166.46.26',1661801718,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50411,'Failed login attempt with username podct','101.43.63.214',1661801870,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50412,'Failed login attempt with username podct','46.20.146.41',1661801976,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50413,'Failed login attempt with username podct','46.4.11.106',1661802066,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50414,'Failed login attempt with username podct','35.236.69.208',1661802209,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50415,'Failed login attempt with username podct','161.35.15.73',1661802320,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50416,'Failed login attempt with username podct','69.163.192.25',1661802451,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50417,'Failed login attempt with username podct','181.214.152.11',1661802823,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50418,'Failed login attempt with username podct','162.241.69.106',1661802909,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50419,'Failed login attempt with username podct','209.236.119.42',1661803027,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50420,'Failed login attempt with username podct','128.199.108.205',1661803165,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50421,'Failed login attempt with username podct','46.38.249.150',1661803254,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50422,'Failed login attempt with username podct','165.22.200.76',1661803389,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50423,'Failed login attempt with username podct','188.166.103.30',1661803535,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50424,'Failed login attempt with username podct','173.209.53.242',1661803644,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50425,'Failed login attempt with username podct','94.23.61.165',1661803740,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50426,'Failed login attempt with username podct','198.27.83.9',1661803882,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50427,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661804003,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50428,'Failed login attempt with username podct','52.230.20.89',1661804010,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50429,'Failed login attempt with username podct','40.77.107.181',1661804114,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50430,'Failed login attempt with username podct','120.76.129.140',1661804313,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50431,'Failed login attempt with username podct','65.108.72.55',1661804373,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50432,'Failed login attempt with username podct','212.77.32.166',1661804489,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50433,'Failed login attempt with username podct','157.230.45.193',1661804539,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50434,'Failed login attempt with username podct','103.242.233.26',1661804735,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50435,'Failed login attempt with username podct','144.91.90.252',1661804851,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50436,'Failed login attempt with username podct','185.70.94.183',1661804952,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50437,'Failed login attempt with username podct','66.70.177.215',1661805089,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50438,'Failed login attempt with username podct','159.69.75.178',1661805215,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50439,'Failed login attempt with username podct','139.59.70.221',1661805363,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50440,'Failed login attempt with username podct','74.208.90.100',1661805405,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50441,'Failed login attempt with username podct','69.163.192.25',1661805568,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50442,'Failed login attempt with username podct','69.163.192.25',1661805708,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50443,'Failed login attempt with username podct','103.41.206.160',1661805802,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50444,'Failed login attempt with username podct','206.189.24.64',1661805886,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50445,'Failed login attempt with username podct','165.22.219.121',1661806071,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50446,'Failed login attempt with username podct','164.92.143.73',1661806187,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50447,'Failed login attempt with username podct','103.10.105.156',1661806302,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50448,'Failed login attempt with username podct','157.230.45.193',1661806443,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50449,'Failed login attempt with username podct','124.158.10.29',1661806557,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50450,'Failed login attempt with username podct','141.94.102.163',1661806798,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50451,'Failed login attempt with username podct','165.22.95.235',1661806924,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50452,'Failed login attempt with username podct','217.170.198.17',1661807067,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50453,'Failed login attempt with username podct','72.167.44.18',1661807156,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50454,'Failed login attempt with username podct','142.93.48.70',1661807309,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50455,'Failed login attempt with username podct','94.23.61.165',1661807430,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50456,'Failed login attempt with username podct','178.128.2.114',1661807556,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50457,'Failed login attempt with username podct','165.22.95.235',1661807670,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50458,'Failed login attempt with username podct','68.183.85.231',1661807807,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50459,'Failed login attempt with username podct','188.166.46.26',1661807944,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50460,'Failed login attempt with username podct','162.55.89.76',1661808045,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50461,'Failed login attempt with username podct','34.125.68.105',1661808319,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50462,'Failed login attempt with username podct','194.60.201.70',1661808419,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50463,'Failed login attempt with username podct','165.22.202.216',1661808554,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50464,'Failed login attempt with username podct','194.60.201.70',1661808688,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50465,'Failed login attempt with username podct','14.225.254.199',1661808788,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50466,'Failed login attempt with username podct','13.235.237.114',1661808885,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50467,'Failed login attempt with username podct','35.236.69.208',1661809072,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50468,'Failed login attempt with username podct','94.23.61.165',1661809210,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50469,'Failed login attempt with username podct','159.69.157.235',1661809311,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50470,'Failed login attempt with username podct','103.171.182.204',1661809451,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50471,'Failed login attempt with username podct','208.113.235.82',1661809581,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50472,'Failed login attempt with username podct','212.91.94.100',1661809730,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50473,'Failed login attempt with username podct','13.235.237.114',1661809793,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50474,'Failed login attempt with username podct','142.93.48.70',1661809983,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50475,'Failed login attempt with username podct','188.166.103.30',1661810099,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50476,'Failed login attempt with username podct','181.214.152.11',1661810230,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50477,'Failed login attempt with username podct','104.248.41.101',1661810370,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50478,'Failed login attempt with username podct','103.160.78.178',1661810509,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50479,'Failed login attempt with username podct','103.171.182.204',1661810658,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50480,'Failed login attempt with username podct','159.223.69.184',1661810698,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50481,'Failed login attempt with username podct','173.209.53.242',1661811034,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50482,'Failed login attempt with username podct','144.91.90.252',1661811138,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50483,'Failed login attempt with username podct','54.37.23.176',1661811355,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50484,'Failed login attempt with username podct','164.92.143.73',1661811429,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50485,'Failed login attempt with username podct','159.69.75.178',1661811577,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50486,'Failed login attempt with username podct','36.93.7.178',1661811737,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50487,'Failed login attempt with username podct','208.113.235.82',1661811826,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50488,'Failed login attempt with username podct','209.126.6.141',1661811965,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50489,'Failed login attempt with username podct','200.2.116.250',1661812095,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50490,'Failed login attempt with username podct','124.221.205.249',1661812271,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50491,'Failed login attempt with username podct','194.1.192.3',1661812379,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50492,'Failed login attempt with username podct','66.70.177.215',1661812569,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50493,'Failed login attempt with username podct','194.233.71.9',1661812661,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50494,'Failed login attempt with username podct','188.166.103.30',1661812798,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50495,'Failed login attempt with username podct','121.4.181.173',1661812965,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50496,'Failed login attempt with username podct','51.178.146.199',1661813075,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50497,'Failed login attempt with username podct','37.19.123.58',1661813216,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50498,'Failed login attempt with username podct','198.27.83.9',1661813368,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50499,'Failed login attempt with username podct','13.126.254.135',1661813515,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50500,'Failed login attempt with username podct','200.2.116.250',1661813633,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50501,'Failed login attempt with username podct','5.101.156.232',1661813785,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50502,'Failed login attempt with username podct','70.37.161.251',1661813919,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50503,'Failed login attempt with username podct','68.183.201.49',1661814030,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50504,'Failed login attempt with username podct','213.165.68.99',1661814168,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50505,'Failed login attempt with username podct','95.110.232.134',1661814469,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50506,'Failed login attempt with username podct','202.131.237.197',1661814568,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50507,'Failed login attempt with username podct','165.22.214.184',1661814747,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50508,'Failed login attempt with username podct','104.248.41.101',1661814878,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50509,'Failed login attempt with username podct','194.1.192.3',1661814986,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50510,'Failed login attempt with username podct','40.77.104.142',1661815155,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50511,'Failed login attempt with username podct','93.114.235.167',1661815271,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50512,'Failed login attempt with username podct','107.170.147.229',1661815425,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50513,'Failed login attempt with username podct','13.124.211.4',1661815511,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50514,'Failed login attempt with username podct','34.125.68.105',1661815704,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50515,'Failed login attempt with username podct','209.236.119.42',1661815835,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50516,'Failed login attempt with username podct','209.236.119.42',1661815953,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50517,'Failed login attempt with username podct','95.110.232.134',1661816109,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50518,'Failed login attempt with username podct','34.65.192.75',1661816281,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50519,'Failed login attempt with username podct','185.85.188.254',1661816387,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50520,'Failed login attempt with username podct','103.10.105.156',1661816526,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50521,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661816645,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50522,'Failed login attempt with username podct','95.110.232.134',1661816671,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50523,'Failed login attempt with username podct','185.10.198.9',1661816813,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50524,'Failed login attempt with username podct','148.72.214.212',1661816946,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50525,'Failed login attempt with username podct','136.243.131.69',1661817076,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50526,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661817234,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50527,'Failed login attempt with username podct','165.232.190.145',1661817236,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50528,'Failed login attempt with username podct','147.182.230.210',1661817315,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50529,'Failed login attempt with username podct','54.37.23.176',1661817575,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50530,'Failed login attempt with username podct','200.2.116.250',1661817658,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50531,'Failed login attempt with username podct','148.72.214.212',1661817812,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50532,'Failed login attempt with username podct','104.248.41.101',1661817937,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50533,'Failed login attempt with username podct','181.214.152.11',1661818087,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50534,'Failed login attempt with username podct','35.236.69.208',1661818228,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50535,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661818399,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50536,'Failed login attempt with username podct','103.242.233.169',1661818460,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50537,'Failed login attempt with username podct','103.171.182.204',1661818670,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50538,'Failed login attempt with username podct','103.160.78.178',1661818815,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50539,'Failed login attempt with username podct','151.236.59.220',1661818938,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50540,'Failed login attempt with username podct','69.163.192.25',1661819088,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50541,'Failed login attempt with username podct','148.251.78.9',1661819262,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50542,'Failed login attempt with username podct','197.159.35.28',1661819420,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50543,'Failed login attempt with username podct','124.221.205.249',1661819550,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50544,'Failed login attempt with username podct','171.244.134.21',1661819679,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50545,'Failed login attempt with username podct','177.55.111.74',1661819821,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50546,'Failed login attempt with username podct','103.242.233.169',1661819890,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50547,'Failed login attempt with username podct','13.124.211.4',1661820096,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50548,'Failed login attempt with username podct','104.248.41.101',1661820245,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50549,'Failed login attempt with username podct','104.248.139.32',1661820407,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50550,'Failed login attempt with username podct','139.60.30.13',1661820510,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50551,'Failed login attempt with username podct','181.214.152.11',1661820666,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50552,'Failed login attempt with username podct','134.122.112.76',1661820825,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50553,'Failed login attempt with username podct','213.165.68.99',1661820937,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50554,'Failed login attempt with username podct','165.22.202.216',1661821092,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50555,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661821219,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50556,'Failed login attempt with username podct','68.183.26.89',1661821235,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50557,'Failed login attempt with username podct','13.126.254.135',1661821405,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50558,'Failed login attempt with username podct','134.122.40.81',1661821536,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50559,'Failed login attempt with username podct','152.32.168.168',1661821697,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50560,'Failed login attempt with username podct','197.159.35.28',1661821881,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50561,'Failed login attempt with username podct','90.156.168.79',1661821982,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50562,'Failed login attempt with username podct','162.55.89.76',1661822113,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50563,'Failed login attempt with username podct','120.76.129.140',1661822316,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50564,'Failed login attempt with username podct','52.230.20.89',1661822438,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50565,'Failed login attempt with username podct','124.221.205.249',1661822595,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50566,'Failed login attempt with username podct','185.10.198.9',1661822702,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50567,'Failed login attempt with username podct','14.232.245.48',1661822876,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50568,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661822896,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50569,'Failed login attempt with username podct','77.68.20.250',1661823153,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50570,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661823156,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50571,'Failed login attempt with username podct','90.156.168.79',1661823318,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50572,'Failed login attempt with username podct','161.97.84.212',1661823383,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50573,'Failed login attempt with username podct','194.60.201.70',1661823583,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50574,'Failed login attempt with username podct','139.59.122.66',1661823742,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50575,'Failed login attempt with username podct','162.55.89.76',1661823900,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50576,'Failed login attempt with username podct','104.248.41.101',1661824031,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50577,'Failed login attempt with username podct','167.71.36.2',1661824184,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50578,'Failed login attempt with username podct','120.76.129.140',1661824401,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50579,'Failed login attempt with username podct','181.214.152.11',1661824473,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50580,'Failed login attempt with username podct','124.221.205.249',1661824658,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50581,'Failed login attempt with username podct','107.180.88.41',1661824790,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50582,'Failed login attempt with username podct','220.85.221.65',1661824925,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50583,'Failed login attempt with username podct','46.4.11.106',1661825053,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50584,'Failed login attempt with username podct','159.89.165.49',1661825164,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50585,'Failed login attempt with username podct','217.170.198.17',1661825374,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50586,'Failed login attempt with username podct','66.70.177.215',1661825512,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50587,'Failed login attempt with username podct','134.122.112.76',1661825667,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50588,'Failed login attempt with username podct','162.55.89.76',1661825820,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50589,'Failed login attempt with username podct','107.180.88.41',1661825987,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50590,'Failed login attempt with username podct','103.163.246.98',1661826126,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50591,'Failed login attempt with username podct','83.169.41.136',1661826284,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50592,'Failed login attempt with username podct','143.198.217.166',1661826410,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50593,'Failed login attempt with username podct','136.243.131.69',1661826536,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50594,'Failed login attempt with username podct','157.90.135.167',1661826697,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50595,'Failed login attempt with username podct','139.59.122.66',1661826867,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50596,'Failed login attempt with username podct','95.110.232.134',1661827032,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50597,'Failed login attempt with username podct','148.251.78.9',1661827157,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50598,'Failed login attempt with username podct','148.72.214.212',1661827317,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50599,'Failed login attempt with username podct','103.41.206.160',1661827470,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50600,'Failed login attempt with username podct','13.124.211.4',1661827583,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50601,'Failed login attempt with username podct','20.199.109.10',1661827775,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50602,'Failed login attempt with username podct','103.112.138.19',1661827857,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50603,'Failed login attempt with username podct','136.243.131.69',1661828073,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50604,'Failed login attempt with username podct','13.126.254.135',1661828219,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50605,'Failed login attempt with username podct','128.199.108.205',1661828384,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50606,'Failed login attempt with username podct','124.221.205.249',1661828573,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50607,'Failed login attempt with username podct','185.70.94.183',1661828673,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50608,'Failed login attempt with username podct','95.110.232.134',1661828841,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50609,'Failed login attempt with username podct','104.248.139.32',1661829022,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50610,'Failed login attempt with username podct','103.242.233.169',1661829101,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50611,'Failed login attempt with username podct','178.128.2.114',1661829317,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50612,'Failed login attempt with username podct','95.110.232.134',1661829469,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50613,'Failed login attempt with username podct','46.4.81.203',1661829705,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50614,'Failed login attempt with username podct','146.59.195.109',1661829763,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50615,'Failed login attempt with username podct','46.31.17.29',1661829931,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50616,'Failed login attempt with username podct','20.199.109.10',1661830113,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50617,'Failed login attempt with username podct','46.4.11.106',1661830253,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50618,'Failed login attempt with username podct','207.180.212.225',1661830397,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50619,'Failed login attempt with username podct','74.208.90.100',1661830536,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50620,'Failed login attempt with username podct','185.141.171.155',1661830765,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50621,'Failed login attempt with username podct','128.199.108.205',1661830880,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50622,'Request for file /wp-includes/wp-class.php which doesn\'t exist','20.169.19.209',1661830936,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wp-includes/wp-class.php',NULL),(50623,'Request for file /radio.php which doesn\'t exist','20.169.19.209',1661830940,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/radio.php',NULL),(50624,'Request for file /fw.php which doesn\'t exist','20.169.19.209',1661830941,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/fw.php',NULL),(50625,'Request for file /fx.php which doesn\'t exist','20.169.19.209',1661830944,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/fx.php',NULL),(50626,'Request for file /ups.php which doesn\'t exist','20.169.19.209',1661830945,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/ups.php',NULL),(50627,'Request for file /wikindex.php which doesn\'t exist','20.169.19.209',1661830947,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wikindex.php',NULL),(50628,'Request for file /1index.php which doesn\'t exist','20.169.19.209',1661830948,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/1index.php',NULL),(50629,'Failed login attempt with username podct','220.85.221.65',1661831067,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50630,'Failed login attempt with username podct','152.32.168.168',1661831229,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50631,'Failed login attempt with username podct','207.154.208.104',1661831318,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50632,'Failed login attempt with username podct','68.183.26.89',1661831480,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50633,'Failed login attempt with username podct','110.238.119.21',1661831697,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50634,'Failed login attempt with username podct','35.236.69.208',1661831857,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50635,'Failed login attempt with username podct','159.89.165.49',1661831943,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50636,'Failed login attempt with username podct','104.248.139.32',1661832182,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50637,'Failed login attempt with username podct','34.65.192.75',1661832358,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50638,'Failed login attempt with username podct','194.60.201.70',1661832504,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50639,'Failed login attempt with username podct','104.248.139.32',1661832659,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50640,'Failed login attempt with username Fields','185.119.81.102',1661832668,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'Fields',NULL),(50641,'Failed login attempt with username podct','212.91.94.100',1661832798,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50642,'Failed login attempt with username podct','209.236.119.42',1661833129,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50643,'Failed login attempt with username podct','165.22.95.235',1661833251,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50644,'Failed login attempt with username podct','72.167.44.18',1661833623,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50645,'Failed login attempt with username podct','51.255.38.239',1661833878,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50646,'Failed login attempt with username podct','13.124.211.4',1661834074,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50647,'Failed login attempt with username podct','178.128.2.114',1661834453,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50648,'Failed login attempt with username podct','148.251.78.9',1661834595,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50649,'Failed login attempt with username podct','185.70.94.183',1661834763,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50650,'Failed login attempt with username podct','198.27.83.9',1661834910,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50651,'Failed login attempt with username podct','209.236.119.42',1661835071,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50652,'Failed login attempt with username podct','34.65.192.75',1661835265,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50653,'Failed login attempt with username podct','120.53.122.54',1661835420,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50654,'Failed login attempt with username podct','165.22.95.235',1661835552,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50655,'Failed login attempt with username podct','161.97.117.21',1661835669,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50656,'Failed login attempt with username podct','66.70.177.215',1661835922,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50657,'Failed login attempt with username podct','206.189.24.64',1661835998,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50658,'Failed login attempt with username podct','148.251.78.9',1661836232,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50659,'Failed login attempt with username podct','52.230.20.89',1661836407,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50660,'Failed login attempt with username podct','209.236.119.42',1661836540,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50661,'Failed login attempt with username podct','177.55.111.74',1661836713,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50662,'Failed login attempt with username podct','165.22.202.216',1661836883,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50663,'Failed login attempt with username podct','77.68.75.246',1661836997,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50664,'Failed login attempt with username podct','69.12.68.106',1661837222,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50665,'Failed login attempt with username podct','207.180.212.225',1661837380,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50666,'Failed login attempt with username podct','34.65.192.75',1661837577,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50667,'Failed login attempt with username podct','159.223.51.109',1661837730,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50668,'Failed login attempt with username podct','159.89.165.49',1661837854,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50669,'Failed login attempt with username podct','194.233.71.9',1661838291,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50670,'Failed login attempt with username podct','66.70.177.215',1661838434,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50671,'Failed login attempt with username podct','5.101.156.232',1661838621,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50672,'Failed login attempt with username podct','103.163.246.98',1661838812,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50673,'Failed login attempt with username podct','46.31.17.29',1661838957,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50674,'Failed login attempt with username podct','165.22.200.76',1661839143,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50675,'Failed login attempt with username podct','110.238.119.21',1661839354,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50676,'Failed login attempt with username podct','90.156.168.79',1661839550,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50677,'Failed login attempt with username podct','103.163.246.98',1661839670,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50678,'Failed login attempt with username podct','85.146.27.185',1661839771,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50679,'Failed login attempt with username podct','46.20.146.41',1661840020,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50680,'Failed login attempt with username podct','68.183.26.89',1661840190,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50681,'Failed login attempt with username podct','40.77.107.181',1661840374,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50682,'Failed login attempt with username podct','213.147.125.107',1661840539,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50683,'Failed login attempt with username podct','194.233.71.9',1661840731,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50684,'Failed login attempt with username podct','128.199.108.205',1661840891,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50685,'Failed login attempt with username podct','104.248.139.32',1661841068,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50686,'Failed login attempt with username podct','77.68.75.246',1661841350,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50687,'Failed login attempt with username podct','175.178.70.82',1661841613,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50688,'Failed login attempt with username podct','176.9.113.101',1661841761,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50689,'Failed login attempt with username podct','66.70.177.215',1661841940,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50690,'Failed login attempt with username podct','34.65.192.75',1661842332,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50691,'Failed login attempt with username podct','46.31.17.29',1661842454,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50692,'Failed login attempt with username podct','136.243.131.69',1661842600,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50693,'Failed login attempt with username podct','176.9.113.101',1661842787,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50694,'Failed login attempt with username podct','92.54.13.201',1661842964,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50695,'Failed login attempt with username podct','194.1.192.3',1661843152,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50696,'Failed login attempt with username podct','120.53.122.54',1661843354,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50697,'Failed login attempt with username podct','128.199.108.205',1661843497,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50698,'Failed login attempt with username podct','148.251.78.9',1661843685,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50699,'Failed login attempt with username podct','194.60.201.70',1661843830,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50700,'Failed login attempt with username podct','139.59.70.221',1661844018,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50701,'Failed login attempt with username podct','148.251.78.9',1661844210,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50702,'Failed login attempt with username podct','107.180.88.41',1661844534,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50703,'Failed login attempt with username podct','120.78.173.254',1661844730,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50704,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661844783,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50705,'Failed login attempt with username podct','46.20.146.41',1661845051,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50706,'Failed login attempt with username podct','107.170.147.229',1661845253,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50707,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1661845253,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50708,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1661845253,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50709,'Failed login attempt with username podct','185.141.171.155',1661845453,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50710,'Failed login attempt with username podct','147.182.230.210',1661845622,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'podct',NULL),(50711,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661845927,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50712,'Failed login attempt with username About','185.119.81.107',1661846258,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'About',NULL),(50713,'Failed login attempt with username Council','185.119.81.108',1661852769,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36',1,'Council',NULL),(50714,'Request for file /old-index.php?daksldlkdsadas=1 which doesn\'t exist','5.39.104.183',1661853879,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/old-index.php?daksldlkdsadas=1',NULL),(50715,'Failed login attempt with username About','185.119.81.107',1661857588,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'About',NULL),(50716,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.81',1661858988,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50717,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.81',1661862528,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50718,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661864608,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50719,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661867072,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50720,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661869808,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50721,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1661871704,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50722,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1661871705,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50723,'Failed login attempt with username admin','185.119.81.102',1661872944,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'admin',NULL),(50724,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661877273,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50725,'Request for file /humans.txt which doesn\'t exist','130.255.166.223',1661878819,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36',1,'/humans.txt',NULL),(50726,'Request for file /ads.txt which doesn\'t exist','130.255.166.221',1661878825,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36',1,'/ads.txt',NULL),(50727,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661879581,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50728,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661884146,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50729,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661885400,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.81 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50730,'Failed login attempt with username admin','185.119.81.102',1661885789,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36',1,'admin',NULL),(50731,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661887559,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31',1,'andyblecherpodiatrist',NULL),(50732,'Request for file /interesting-articles/ which doesn\'t exist','185.191.171.6',1661892265,'404_error','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1,'/interesting-articles/',NULL),(50733,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1661894231,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50734,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661897093,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50735,'Request for file /.env which doesn\'t exist','20.228.205.116',1661898338,'404_error','Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30',1,'/.env',NULL),(50736,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661909812,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50737,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661911363,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50738,'Failed login attempt with username admin','185.119.81.107',1661920707,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'admin',NULL),(50739,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661921395,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50740,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661922268,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50741,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661922779,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50742,'Failed login attempt with username Fields','185.119.81.102',1661924249,'auth_fail','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'Fields',NULL),(50743,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661926431,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50744,'Request for file /.env which doesn\'t exist','168.138.147.77',1661930460,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',1,'/.env',NULL),(50745,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1661931257,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50746,'Request for file /css/ which doesn\'t exist','212.16.164.132',1661935577,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/css/',NULL),(50747,'Request for file /.env which doesn\'t exist','13.92.194.185',1661938488,'404_error','Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30',1,'/.env',NULL),(50748,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661943105,'auth_fail','Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50749,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661950466,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50750,'Failed login attempt with username wadminw','66.29.131.126',1661951755,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wadminw',NULL),(50751,'Failed login attempt with username wadminw','171.244.201.17',1661951950,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wadminw',NULL),(50752,'Failed login attempt with username wwwadmin','150.95.109.187',1661952295,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wwwadmin',NULL),(50753,'Failed login attempt with username wwwadmin','124.222.127.109',1661952457,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wwwadmin',NULL),(50754,'Failed login attempt with username wadminw','36.67.122.42',1661954671,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wadminw',NULL),(50755,'Failed login attempt with username wadminw','161.97.181.31',1661954811,'auth_fail','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',1,'wadminw',NULL),(50756,'Failed login attempt with username wwwadmin','212.38.40.215',1661955147,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wwwadmin',NULL),(50757,'Failed login attempt with username wwwadmin','103.27.63.56',1661955332,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wwwadmin',NULL),(50758,'Failed login attempt with username About','185.119.81.107',1661958014,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1,'About',NULL),(50759,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1661958480,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50760,'Failed login attempt with username admin','185.119.81.108',1661967270,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',1,'admin',NULL),(50761,'Failed login attempt with username admin','185.119.81.108',1661968914,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36',1,'admin',NULL),(50762,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661973646,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50763,'Request for file /podiatrist.capetown.zip which doesn\'t exist','149.56.29.121',1661980660,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'/podiatrist.capetown.zip',NULL),(50764,'Failed login attempt with username podct','208.113.180.18',1661981274,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(50765,'Failed login attempt with username podct','137.184.117.52',1661982748,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(50766,'Failed login attempt with username podct','93.114.185.76',1661984237,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(50767,'Request for file /wp-commentin.php which doesn\'t exist','208.67.106.91',1661984417,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-commentin.php',NULL),(50768,'Request for file /wp-commentin.php which doesn\'t exist','208.67.106.91',1661984428,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-commentin.php',NULL),(50769,'Failed login attempt with username podct','34.134.161.50',1661987232,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(50770,'Failed login attempt with username podct','188.165.198.224',1661988720,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(50771,'Failed login attempt with username podct','51.91.220.143',1661990197,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(50772,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1661990199,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50773,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1661990344,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50774,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1661991625,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.81 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50775,'Failed login attempt with username podct','45.120.69.121',1661991686,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(50776,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1661991873,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31',1,'andyblecherpodiatrist@gmail.com',NULL),(50777,'Request for file /.git/HEAD which doesn\'t exist','81.19.140.13',1661993118,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'/.git/HEAD',NULL),(50778,'Request for file /.git/HEAD which doesn\'t exist','81.19.140.13',1661993118,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'/.git/HEAD',NULL),(50779,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1661994210,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50780,'Failed login attempt with username podct','35.187.58.136',1661994674,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(50781,'Failed login attempt with username podct','104.248.55.1',1661996169,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(50782,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1661996673,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50783,'Failed login attempt with username podct','51.178.76.51',1661997663,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(50784,'Failed login attempt with username podct','34.75.65.218',1661999162,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(50785,'Failed login attempt with username podct','212.110.92.155',1662000658,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(50786,'Failed login attempt with username podct','51.210.99.98',1662002017,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50787,'Failed login attempt with username podct','144.217.15.207',1662002154,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(50788,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662003471,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50789,'Failed login attempt with username podct','208.109.54.127',1662003656,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(50790,'Failed login attempt with username podct','190.107.177.243',1662004262,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50791,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662004478,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50792,'Failed login attempt with username podct','82.166.23.245',1662005149,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(50793,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662005853,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50794,'Failed login attempt with username podct','207.180.231.208',1662006568,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50795,'Failed login attempt with username podct','138.68.140.0',1662008156,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(50796,'Failed login attempt with username podct','69.163.152.108',1662009662,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(50797,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1662010995,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50798,'Request for file /.env which doesn\'t exist','109.237.100.22',1662011313,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(50799,'Request for file /.env which doesn\'t exist','109.237.100.22',1662011313,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.env',NULL),(50800,'Failed login attempt with username podct','165.232.180.174',1662012622,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(50801,'Failed login attempt with username admin','185.119.81.107',1662012645,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'admin',NULL),(50802,'Failed login attempt with username podct','147.182.249.22',1662014062,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(50803,'Failed login attempt with username podct','104.236.45.171',1662014477,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50804,'Failed login attempt with username podct','184.168.126.242',1662015491,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50805,'Failed login attempt with username podct','202.29.236.140',1662015498,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(50806,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662015887,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50807,'Failed login attempt with username podct','23.239.3.24',1662016421,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50808,'Failed login attempt with username admin','185.119.81.99',1662016920,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'admin',NULL),(50809,'Failed login attempt with username podct','159.89.27.131',1662016932,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(50810,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662017330,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50811,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1662018122,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50812,'Request for file /style.php which doesn\'t exist','135.181.207.166',1662018194,'404_error','wp_is_mobile',1,'/style.php',NULL),(50813,'Request for file /wp-admin/style.php which doesn\'t exist','135.181.207.166',1662018197,'404_error','wp_is_mobile',1,'/wp-admin/style.php',NULL),(50814,'Request for file /s_e.php which doesn\'t exist','135.181.207.166',1662018200,'404_error','wp_is_mobile',1,'/s_e.php',NULL),(50815,'Request for file /s_ne.php which doesn\'t exist','135.181.207.166',1662018215,'404_error','wp_is_mobile',1,'/s_ne.php',NULL),(50816,'Request for file /1index.php which doesn\'t exist','135.181.207.166',1662018219,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/1index.php',NULL),(50817,'Request for file /radio.php which doesn\'t exist','135.181.207.166',1662018224,'404_error','wp_is_mobile',1,'/radio.php',NULL),(50818,'Request for file /doc.php which doesn\'t exist','135.181.207.166',1662018233,'404_error','wp_is_mobile',1,'/doc.php',NULL),(50819,'Request for file /wp_wrong_datlib.php which doesn\'t exist','135.181.207.166',1662018242,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp_wrong_datlib.php',NULL),(50820,'Request for file /beence.php which doesn\'t exist','135.181.207.166',1662018245,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/beence.php',NULL),(50821,'Request for file /ups.php which doesn\'t exist','135.181.207.166',1662018261,'404_error','wp_is_mobile',1,'/ups.php',NULL),(50822,'Request for file /wp-signin.php?dizo&ping which doesn\'t exist','135.181.207.166',1662018264,'404_error','wp_is_mobile',1,'/wp-signin.php?dizo&ping',NULL),(50823,'Request for file /media-admin.php which doesn\'t exist','135.181.207.166',1662018267,'404_error','wp_is_mobile',1,'/media-admin.php',NULL),(50824,'Request for file /export.php which doesn\'t exist','135.181.207.166',1662018274,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/export.php',NULL),(50825,'Request for file /wp-content/export.php which doesn\'t exist','135.181.207.166',1662018275,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/export.php',NULL),(50826,'Request for file /wp-includes/wp-class.php which doesn\'t exist','135.181.207.166',1662018281,'404_error','wp_is_mobile',1,'/wp-includes/wp-class.php',NULL),(50827,'Request for file /wp-includes/images/css.php which doesn\'t exist','135.181.207.166',1662018309,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/images/css.php',NULL),(50828,'Request for file /wp-includes/css/css.php which doesn\'t exist','135.181.207.166',1662018310,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/css/css.php',NULL),(50829,'Failed login attempt with username podct','123.25.21.16',1662018315,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(50830,'Request for file /defau1t.php which doesn\'t exist','135.181.207.166',1662018330,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/defau1t.php',NULL),(50831,'Request for file /moduless.php which doesn\'t exist','135.181.207.166',1662018335,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/moduless.php',NULL),(50832,'Request for file /wp-booking.php which doesn\'t exist','135.181.207.166',1662018388,'404_error','wp_is_mobile',1,'/wp-booking.php',NULL),(50833,'Lockout occurred:  Too many 404 requests for /wp-booking.php','135.181.207.166',1662018389,'404_lockout','wp_is_mobile',1,'/wp-booking.php',NULL),(50834,'Request for file /interesting-articles/ which doesn\'t exist','105.225.42.184',1662019383,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',1,'/interesting-articles/',NULL),(50835,'Failed login attempt with username podct','34.121.23.185',1662019701,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(50836,'Request for file /interesting-articles/ which doesn\'t exist','54.190.183.202',1662020215,'404_error','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'/interesting-articles/',NULL),(50837,'Failed login attempt with username podct','124.158.12.83',1662020816,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50838,'Failed login attempt with username podct','187.32.211.193',1662021125,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(50839,'Failed login attempt with username podct','173.212.240.76',1662021591,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50840,'Failed login attempt with username podct','151.106.116.118',1662022562,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(50841,'Failed login attempt with username podct','103.39.134.190',1662024003,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(50842,'Failed login attempt with username podct','192.99.201.91',1662025441,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(50843,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1662025608,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50844,'Failed login attempt with username podct','194.163.179.2',1662025706,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50845,'Failed login attempt with username most','185.119.81.99',1662026182,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36',1,'most',NULL),(50846,'Failed login attempt with username podct','35.195.135.67',1662026726,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50847,'Failed login attempt with username podct','51.178.76.51',1662026891,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(50848,'Failed login attempt with username podct','91.103.219.224',1662027521,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50849,'Failed login attempt with username podct','167.172.105.95',1662028352,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(50850,'Failed login attempt with username podct','69.163.196.200',1662029822,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(50851,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662031211,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50852,'Failed login attempt with username podct','173.236.242.233',1662031288,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(50853,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662031466,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50854,'Failed login attempt with username podct','67.222.154.106',1662032467,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50855,'Failed login attempt with username podct','77.240.13.186',1662032751,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(50856,'Failed login attempt with username podct','81.88.52.223',1662033503,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50857,'Failed login attempt with username podct','202.29.236.140',1662034215,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(50858,'Failed login attempt with username podct','207.180.197.13',1662034583,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50859,'Failed login attempt with username podct','162.240.28.177',1662035670,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(50860,'Failed login attempt with username Council','185.119.81.108',1662036765,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36',1,'Council',NULL),(50861,'Failed login attempt with username podct','211.78.92.164',1662037137,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(50862,'Request for file /interesting-articles/ which doesn\'t exist','82.79.240.207',1662037267,'404_error','Mozilla/5.0 (compatible; Crawlson/1.0; +https://www.crawlson.com/domain/podiatrist.capetown)',1,'/interesting-articles/',NULL),(50863,'Failed login attempt with username admin','185.119.81.102',1662037765,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36',1,'admin',NULL),(50864,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662038071,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50865,'Failed login attempt with username podct','123.25.21.16',1662038608,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(50866,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662039755,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50867,'Failed login attempt with username podct','47.100.208.57',1662040087,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(50868,'Failed login attempt with username podct','144.126.140.17',1662040402,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50869,'Failed login attempt with username podct','82.118.29.88',1662040937,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36',1,'podct',NULL),(50870,'Failed login attempt with username podct','82.118.29.88',1662040938,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36',1,'podct',NULL),(50871,'Failed login attempt with username podct','82.118.29.88',1662040939,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36',1,'podct',NULL),(50872,'Failed login attempt with username podct','82.118.29.88',1662040940,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36',1,'podct',NULL),(50873,'Failed login attempt with username podct','82.118.29.88',1662040941,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36',1,'podct',NULL),(50874,'Lockout occurred: Too many failed login attempts','82.118.29.88',1662040942,'auth_lock','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36',1,'podct',NULL),(50875,'Failed login attempt with username podct','51.159.155.6',1662041554,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(50876,'Failed login attempt with username podct','192.210.196.65',1662041607,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50877,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662042605,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(50878,'Failed login attempt with username podct','51.159.105.232',1662042826,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50879,'Failed login attempt with username podct','161.35.126.102',1662043024,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(50880,'Failed login attempt with username podct','142.93.54.10',1662044508,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(50881,'Failed login attempt with username podct','188.166.61.228',1662045967,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(50882,'Request for file /css/ which doesn\'t exist','164.132.44.97',1662046863,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/css/',NULL),(50883,'Failed login attempt with username podct','72.167.34.14',1662048278,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(50884,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1662048805,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50885,'Request for file /wp-admin/ccx/ which doesn\'t exist','45.139.10.72',1662049274,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/ccx/',NULL),(50886,'Request for file /alwso.php which doesn\'t exist','106.14.30.59',1662049512,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/alwso.php',NULL),(50887,'Failed login attempt with username podct','138.68.84.97',1662049594,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(50888,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662050069,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50889,'Failed login attempt with username podct','85.191.40.94',1662050942,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(50890,'Request for file /wp-content/plugins/pretty-link/app/views/admin/upgrade/tags.php which doesn\'t exist','139.99.69.189',1662051601,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/pretty-link/app/views/admin/upgrade/tags.php',NULL),(50891,'Request for file /wp-content/plugins/pretty-link/app/views/admin/upgrade/tags.php which doesn\'t exist','139.99.69.189',1662051603,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/pretty-link/app/views/admin/upgrade/tags.php',NULL),(50892,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662051845,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50893,'Failed login attempt with username podct','159.203.143.36',1662052240,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(50894,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662052290,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31',1,'andyblecherpodiatrist',NULL),(50895,'Request for file /2index.php which doesn\'t exist','193.202.110.17',1662053687,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/2index.php',NULL),(50896,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1662054106,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50897,'Request for file /wp-content/plugins/press/wp-class.php which doesn\'t exist','193.202.110.17',1662054615,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/press/wp-class.php',NULL),(50898,'Failed login attempt with username podct','159.203.68.240',1662054833,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(50899,'Request for file /style.php which doesn\'t exist','20.213.114.115',1662056098,'404_error','wp_is_mobile',1,'/style.php',NULL),(50900,'Request for file /wp-admin/style.php which doesn\'t exist','20.213.114.115',1662056100,'404_error','wp_is_mobile',1,'/wp-admin/style.php',NULL),(50901,'Request for file /s_e.php which doesn\'t exist','20.213.114.115',1662056103,'404_error','wp_is_mobile',1,'/s_e.php',NULL),(50902,'Request for file /s_ne.php which doesn\'t exist','20.213.114.115',1662056105,'404_error','wp_is_mobile',1,'/s_ne.php',NULL),(50903,'Request for file /1index.php which doesn\'t exist','20.213.114.115',1662056107,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/1index.php',NULL),(50904,'Request for file /radio.php which doesn\'t exist','20.213.114.115',1662056109,'404_error','wp_is_mobile',1,'/radio.php',NULL),(50905,'Request for file /doc.php which doesn\'t exist','20.213.114.115',1662056112,'404_error','wp_is_mobile',1,'/doc.php',NULL),(50906,'Request for file /wp_wrong_datlib.php which doesn\'t exist','20.213.114.115',1662056114,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp_wrong_datlib.php',NULL),(50907,'Request for file /beence.php which doesn\'t exist','20.213.114.115',1662056115,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/beence.php',NULL),(50908,'Failed login attempt with username podct','138.68.140.0',1662056116,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(50909,'Request for file /ups.php which doesn\'t exist','20.213.114.115',1662056118,'404_error','wp_is_mobile',1,'/ups.php',NULL),(50910,'Request for file /wp-signin.php?dizo&ping which doesn\'t exist','20.213.114.115',1662056120,'404_error','wp_is_mobile',1,'/wp-signin.php?dizo&ping',NULL),(50911,'Request for file /media-admin.php which doesn\'t exist','20.213.114.115',1662056122,'404_error','wp_is_mobile',1,'/media-admin.php',NULL),(50912,'Request for file /export.php which doesn\'t exist','20.213.114.115',1662056131,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/export.php',NULL),(50913,'Request for file /wp-content/export.php which doesn\'t exist','20.213.114.115',1662056134,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/export.php',NULL),(50914,'Request for file /wp-includes/wp-class.php which doesn\'t exist','20.213.114.115',1662056136,'404_error','wp_is_mobile',1,'/wp-includes/wp-class.php',NULL),(50915,'Request for file /wp-includes/images/css.php which doesn\'t exist','20.213.114.115',1662056141,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/images/css.php',NULL),(50916,'Request for file /wp-includes/css/css.php which doesn\'t exist','20.213.114.115',1662056142,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/css/css.php',NULL),(50917,'Request for file /defau1t.php which doesn\'t exist','20.213.114.115',1662056144,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/defau1t.php',NULL),(50918,'Request for file /moduless.php which doesn\'t exist','20.213.114.115',1662056146,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/moduless.php',NULL),(50919,'Request for file /wp-booking.php which doesn\'t exist','20.213.114.115',1662056148,'404_error','wp_is_mobile',1,'/wp-booking.php',NULL),(50920,'Lockout occurred:  Too many 404 requests for /wp-booking.php','20.213.114.115',1662056148,'404_lockout','wp_is_mobile',1,'/wp-booking.php',NULL),(50921,'Failed login attempt with username podct','51.178.76.51',1662057381,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(50922,'Request for file /wp-admin/patior/ which doesn\'t exist','142.93.5.147',1662058123,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/patior/',NULL),(50923,'Failed login attempt with username podct','157.230.127.126',1662059890,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(50924,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662060054,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50925,'Failed login attempt with username admin','185.119.81.103',1662060846,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36 (+https://whatis.contentkingapp.com)',1,'admin',NULL),(50926,'Failed login attempt with username podct','167.71.141.164',1662061144,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(50927,'Failed login attempt with username podct','137.184.117.52',1662062407,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(50928,'Request for file /small.php which doesn\'t exist','78.46.90.183',1662062680,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/small.php',NULL),(50929,'Failed login attempt with username podct','188.166.183.39',1662063704,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(50930,'Failed login attempt with username podct','80.88.88.149',1662064994,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(50931,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662065396,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50932,'Failed login attempt with username podct','133.130.103.36',1662066293,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(50933,'Failed login attempt with username podct','103.171.180.148',1662066892,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50934,'Failed login attempt with username podct','95.217.179.54',1662067593,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(50935,'Failed login attempt with username podct','111.90.150.36',1662068301,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50936,'Failed login attempt with username podct','47.100.208.57',1662068903,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(50937,'Request for file /wp-content/patior/ which doesn\'t exist','162.241.24.23',1662068993,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/patior/',NULL),(50938,'Failed login attempt with username podct','124.217.226.56',1662069824,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50939,'Failed login attempt with username podct','188.166.61.228',1662070221,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(50940,'Failed login attempt with username podct','91.205.230.79',1662071401,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50941,'Failed login attempt with username podct','188.166.225.235',1662071541,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(50942,'Request for file /991176.php which doesn\'t exist','193.202.110.17',1662071713,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/991176.php',NULL),(50943,'Request for file /admin.php which doesn\'t exist','156.235.189.78',1662072375,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/admin.php',NULL),(50944,'Failed login attempt with username podct','23.97.205.210',1662072863,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(50945,'Failed login attempt with username podct','103.93.16.191',1662072991,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50946,'Failed login attempt with username podct','142.93.245.196',1662074195,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(50947,'Failed login attempt with username podct','15.235.133.202',1662074601,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50948,'Request for file /wp-content/plugins/pretty-link/app/views/admin/upgrade/categories.php which doesn\'t exist','45.124.87.180',1662074990,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/pretty-link/app/views/admin/upgrade/categories.php',NULL),(50949,'Request for file /wp-content/plugins/pretty-link/app/views/admin/upgrade/categories.php which doesn\'t exist','45.124.87.180',1662074995,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/pretty-link/app/views/admin/upgrade/categories.php',NULL),(50950,'Failed login attempt with username podct','146.56.99.136',1662075524,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(50951,'Failed login attempt with username podct','193.151.131.160',1662076266,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50952,'Failed login attempt with username podct','148.72.214.194',1662076846,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(50953,'Failed login attempt with username recommend','185.119.81.97',1662077688,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'recommend',NULL),(50954,'Failed login attempt with username admin','185.119.81.97',1662077786,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'admin',NULL),(50955,'Failed login attempt with username podct','143.198.67.208',1662077881,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50956,'Failed login attempt with username podct','167.172.168.111',1662078162,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(50957,'Failed login attempt with username ranging','185.119.81.103',1662078517,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'ranging',NULL),(50958,'Failed login attempt with username podct','51.178.76.51',1662079480,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(50959,'Failed login attempt with username podct','124.158.12.83',1662079624,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50960,'Failed login attempt with username podct','85.146.18.88',1662080800,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(50961,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662081245,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(50962,'Failed login attempt with username podct','54.38.38.23',1662081332,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50963,'Failed login attempt with username podct','111.231.200.129',1662082116,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(50964,'Failed login attempt with username podct','137.184.209.117',1662083256,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50965,'Request for file /swat.php which doesn\'t exist','47.242.250.194',1662083561,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/swat.php',NULL),(50966,'Request for file /swat.php which doesn\'t exist','47.242.250.194',1662083561,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/swat.php',NULL),(50967,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662084043,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50968,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662084972,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50969,'Failed login attempt with username podct','34.69.109.132',1662086085,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(50970,'Failed login attempt with username podct','154.53.50.182',1662086611,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50971,'Failed login attempt with username podct','157.230.127.126',1662087434,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(50972,'Failed login attempt with username podct','161.97.74.158',1662088523,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50973,'Failed login attempt with username podct','139.59.118.238',1662088793,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(50974,'Failed login attempt with username podct','142.93.245.196',1662090150,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(50975,'Failed login attempt with username podct','51.15.160.148',1662090426,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50976,'Request for file /wp-22.php?sfilename=on.php&sfilecontent=<?=409723*20;&supfiles=on.php which doesn\'t exist','80.67.52.2',1662090785,'404_error','Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36',1,'/wp-22.php?sfilename=on.php&sfilecontent=<?=409723*20;&supfiles=on.php',NULL),(50977,'Failed login attempt with username podct','85.146.18.88',1662091475,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(50978,'Failed login attempt with username podct','162.0.216.67',1662091678,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50979,'Request for file /shell20211028.php which doesn\'t exist','185.216.113.80',1662091726,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/shell20211028.php',NULL),(50980,'Request for file /1index.php which doesn\'t exist','93.188.2.5',1662092737,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/1index.php',NULL),(50981,'Request for file /1index.php which doesn\'t exist','93.188.2.5',1662092739,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/1index.php',NULL),(50982,'Failed login attempt with username podct','69.163.152.12',1662092786,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(50983,'Failed login attempt with username podct','50.87.230.228',1662092873,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50984,'Failed login attempt with username podct','34.69.109.132',1662094087,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(50985,'Failed login attempt with username podct','185.46.121.66',1662094813,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50986,'Failed login attempt with username podct','159.65.200.228',1662095371,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(50987,'Failed login attempt with username podct','54.36.110.109',1662095723,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50988,'Failed login attempt with username podct','167.172.105.95',1662096630,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(50989,'Failed login attempt with username podct','85.119.122.23',1662096667,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50990,'Request for file /patior/ which doesn\'t exist','139.99.69.189',1662096734,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/patior/',NULL),(50991,'Failed login attempt with username podct','185.165.42.75',1662097573,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50992,'Failed login attempt with username podct','194.163.35.152',1662097884,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(50993,'Failed login attempt with username podct','185.104.44.58',1662098356,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50994,'Failed login attempt with username podct','93.114.185.76',1662099141,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(50995,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662099803,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',1,'andyblecherpodiatrist',NULL),(50996,'Failed login attempt with username podct','198.211.125.40',1662100034,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50997,'Failed login attempt with username podct','46.32.228.70',1662100420,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(50998,'Failed login attempt with username podct','104.236.45.171',1662100849,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(50999,'Failed login attempt with username podct','208.109.39.235',1662101632,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51000,'Failed login attempt with username podct','192.99.201.91',1662101702,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51001,'Request for file /wp-content/themes/twenty/twenty.php which doesn\'t exist','193.202.110.30',1662101851,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/twenty/twenty.php',NULL),(51002,'Failed login attempt with username podct','88.99.240.227',1662102425,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51003,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1662102715,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51004,'Failed login attempt with username podct','65.52.200.48',1662103011,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51005,'Failed login attempt with username podct','141.94.74.98',1662103678,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51006,'Failed login attempt with username podct','54.38.73.235',1662104313,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(51007,'Failed login attempt with username podct','149.56.29.121',1662104538,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51008,'Failed login attempt with username podct','35.219.66.183',1662105426,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51009,'Failed login attempt with username podct','134.209.184.76',1662105603,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51010,'Failed login attempt with username podct','13.126.36.87',1662106375,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51011,'Failed login attempt with username podct','185.2.4.134',1662106918,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(51012,'Failed login attempt with username podct','120.79.8.125',1662107363,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51013,'Failed login attempt with username podct','45.120.69.121',1662108233,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(51014,'Failed login attempt with username podct','43.129.188.233',1662108338,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51015,'Failed login attempt with username podct','36.67.122.42',1662109427,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51016,'Failed login attempt with username podct','69.163.196.200',1662109565,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(51017,'Failed login attempt with username podct','143.198.161.19',1662110227,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51018,'Failed login attempt with username podct','202.29.236.140',1662110885,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(51019,'Failed login attempt with username podct','143.244.172.105',1662111319,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51020,'Failed login attempt with username podct','118.27.30.151',1662112227,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51021,'Failed login attempt with username podct','159.65.147.193',1662112367,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51022,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1662112654,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51023,'Failed login attempt with username podct','67.205.143.236',1662113425,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51024,'Failed login attempt with username podct','138.68.84.97',1662113561,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(51025,'Failed login attempt with username podct','194.233.73.0',1662114503,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51026,'Failed login attempt with username podct','45.222.124.38',1662115644,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51027,'Failed login attempt with username podct','106.15.38.206',1662116237,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(51028,'Failed login attempt with username podct','62.171.133.125',1662116832,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51029,'Request for file /.credentials.php which doesn\'t exist','88.214.43.118',1662116882,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.credentials.php',NULL),(51030,'Request for file /.credentials.php which doesn\'t exist','88.214.43.118',1662116883,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.credentials.php',NULL),(51031,'Request for file /style.php which doesn\'t exist','20.242.85.96',1662116901,'404_error','wp_is_mobile',1,'/style.php',NULL),(51032,'Request for file /wp-admin/style.php which doesn\'t exist','20.242.85.96',1662116902,'404_error','wp_is_mobile',1,'/wp-admin/style.php',NULL),(51033,'Request for file /s_e.php which doesn\'t exist','20.242.85.96',1662116904,'404_error','wp_is_mobile',1,'/s_e.php',NULL),(51034,'Request for file /s_ne.php which doesn\'t exist','20.242.85.96',1662116906,'404_error','wp_is_mobile',1,'/s_ne.php',NULL),(51035,'Request for file /1index.php which doesn\'t exist','20.242.85.96',1662116907,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/1index.php',NULL),(51036,'Request for file /3index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','20.242.85.96',1662116909,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/3index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(51037,'Request for file /wikindex.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','20.242.85.96',1662116911,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wikindex.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(51038,'Request for file /wp-content/mu-plugins-old/?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt which doesn\'t exist','20.242.85.96',1662116914,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/mu-plugins-old/?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt',NULL),(51039,'Request for file /radio.php which doesn\'t exist','20.242.85.96',1662116915,'404_error','wp_is_mobile',1,'/radio.php',NULL),(51040,'Request for file /lock360.php?daksldlkdsadas=1 which doesn\'t exist','20.242.85.96',1662116917,'404_error','wp_is_mobile',1,'/lock360.php?daksldlkdsadas=1',NULL),(51041,'Request for file /old-index.php?daksldlkdsadas=1 which doesn\'t exist','20.242.85.96',1662116941,'404_error','wp_is_mobile',1,'/old-index.php?daksldlkdsadas=1',NULL),(51042,'Request for file /xmrlpc.php?daksldlkdsadas=1 which doesn\'t exist','20.242.85.96',1662116943,'404_error','wp_is_mobile',1,'/xmrlpc.php?daksldlkdsadas=1',NULL),(51043,'Request for file /xmlrpcs.php?daksldlkdsadas=1 which doesn\'t exist','20.242.85.96',1662116946,'404_error','wp_is_mobile',1,'/xmlrpcs.php?daksldlkdsadas=1',NULL),(51044,'Request for file /wp-admin.php?daksldlkdsadas=1 which doesn\'t exist','20.242.85.96',1662116948,'404_error','wp_is_mobile',1,'/wp-admin.php?daksldlkdsadas=1',NULL),(51045,'Request for file /qindex.php?daksldlkdsadas=1 which doesn\'t exist','20.242.85.96',1662116949,'404_error','wp_is_mobile',1,'/qindex.php?daksldlkdsadas=1',NULL),(51046,'Request for file /doc.php which doesn\'t exist','20.242.85.96',1662116950,'404_error','wp_is_mobile',1,'/doc.php',NULL),(51047,'Request for file /wp_wrong_datlib.php which doesn\'t exist','20.242.85.96',1662116953,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp_wrong_datlib.php',NULL),(51048,'Request for file /beence.php which doesn\'t exist','20.242.85.96',1662116956,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/beence.php',NULL),(51049,'Request for file /ups.php which doesn\'t exist','20.242.85.96',1662116958,'404_error','wp_is_mobile',1,'/ups.php',NULL),(51050,'Request for file /wp-signin.php?dizo&ping which doesn\'t exist','20.242.85.96',1662116960,'404_error','wp_is_mobile',1,'/wp-signin.php?dizo&ping',NULL),(51051,'Lockout occurred:  Too many 404 requests for /wp-signin.php?dizo&ping','20.242.85.96',1662116960,'404_lockout','wp_is_mobile',1,'/wp-signin.php?dizo&ping',NULL),(51052,'Request for file /wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml which doesn\'t exist','147.78.47.233',1662117479,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml',NULL),(51053,'Request for file /author-sitemap.xml which doesn\'t exist','147.78.47.233',1662117481,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/author-sitemap.xml',NULL),(51054,'Failed login attempt with username podct','185.2.4.134',1662117563,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(51055,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1662117705,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51056,'Failed login attempt with username podct','170.106.116.175',1662117970,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51057,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1662118309,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51058,'Request for file /wp-content/themes/distance-lite/languages/namespaces.php which doesn\'t exist','108.167.189.76',1662118427,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/distance-lite/languages/namespaces.php',NULL),(51059,'Failed login attempt with username podct','67.205.62.27',1662118888,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(51060,'Failed login attempt with username podct','97.79.239.127',1662119152,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51061,'Request for file /wp-includes/theme-compat/ccx/ which doesn\'t exist','108.167.189.76',1662119337,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/theme-compat/ccx/',NULL),(51062,'Failed login attempt with username podct','39.103.157.70',1662120241,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(51063,'Request for file /wp-content/ffAA531.php which doesn\'t exist','108.167.189.22',1662120271,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/ffAA531.php',NULL),(51064,'Request for file /wp-content/ffAA531.php which doesn\'t exist','108.167.189.22',1662120273,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/ffAA531.php',NULL),(51065,'Failed login attempt with username podct','162.249.4.84',1662120355,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51066,'Failed login attempt with username admin','185.119.81.103',1662121397,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'admin',NULL),(51067,'Failed login attempt with username podct','213.165.237.48',1662121577,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51068,'Failed login attempt with username podct','185.126.219.43',1662121581,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(51069,'Failed login attempt with username admin','185.119.81.102',1662122509,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'admin',NULL),(51070,'Failed login attempt with username podct','159.203.120.246',1662122936,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(51071,'Failed login attempt with username podct','190.107.177.243',1662124165,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51072,'Failed login attempt with username podct','47.114.72.18',1662124291,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(51073,'Request for file /admin/ which doesn\'t exist','195.201.201.61',1662124957,'404_error','2ip bot/1.1 (+http://2ip.io)',1,'/admin/',NULL),(51074,'Request for file /manager/ which doesn\'t exist','195.201.201.62',1662124957,'404_error','2ip bot/1.1 (+http://2ip.io)',1,'/manager/',NULL),(51075,'Failed login attempt with username podct','150.109.148.216',1662125643,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(51076,'Failed login attempt with username podct','103.1.238.36',1662125665,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51077,'Request for file /inc/gel.php which doesn\'t exist','78.46.90.183',1662126269,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/inc/gel.php',NULL),(51078,'Request for file /wp-content/uploads/ccx/ which doesn\'t exist','107.189.2.3',1662126577,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/uploads/ccx/',NULL),(51079,'Failed login attempt with username podct','5.101.157.25',1662126986,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51080,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1662129264,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51081,'Failed login attempt with username podct','203.112.72.51',1662129554,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51082,'Request for file /doc.php/404.php which doesn\'t exist','108.167.133.21',1662131012,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/doc.php/404.php',NULL),(51083,'Failed login attempt with username podct','35.211.94.153',1662131311,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51084,'Failed login attempt with username podct','173.249.52.35',1662133500,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51085,'Failed login attempt with username admin','51.91.220.143',1662134007,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'admin',NULL),(51086,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1662134850,'auth_fail','Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51087,'Failed login attempt with username podct','159.223.94.52',1662134893,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51088,'Failed login attempt with username admin','103.166.183.192',1662135405,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'admin',NULL),(51089,'Request for file /gank.php.PhP which doesn\'t exist','185.216.113.80',1662135728,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/gank.php.PhP',NULL),(51090,'Failed login attempt with username podct','47.106.201.134',1662136342,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51091,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1662136647,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51092,'Request for file /vim/patior/ which doesn\'t exist','193.202.110.23',1662136648,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/vim/patior/',NULL),(51093,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662136693,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51094,'Failed login attempt with username admin','46.101.150.34',1662136751,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'admin',NULL),(51095,'Request for file /wp-conflg.php which doesn\'t exist','193.202.110.30',1662137452,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-conflg.php',NULL),(51096,'Failed login attempt with username podct','209.145.54.181',1662137558,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51097,'Failed login attempt with username admin','34.76.63.113',1662138091,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'admin',NULL),(51098,'Request for file /content.php which doesn\'t exist','108.167.189.76',1662138450,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/content.php',NULL),(51099,'Failed login attempt with username podct','161.97.163.71',1662138711,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51100,'Failed login attempt with username admin','142.93.201.0',1662139423,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'admin',NULL),(51101,'Request for file /wp-includes/shell20211028.php which doesn\'t exist','162.212.131.138',1662139538,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/shell20211028.php',NULL),(51102,'Failed login attempt with username podct','171.244.17.110',1662139702,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51103,'Failed login attempt with username podct','144.76.55.212',1662140524,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51104,'Failed login attempt with username podct','162.241.252.230',1662141463,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51105,'Request for file /wp-content/themes/twentytwenty/content.php which doesn\'t exist','43.252.212.214',1662141780,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/twentytwenty/content.php',NULL),(51106,'Failed login attempt with username podct','185.2.4.134',1662142031,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(51107,'Failed login attempt with username podct','13.126.36.87',1662142252,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51108,'Failed login attempt with username diatr','185.119.81.102',1662142316,'auth_fail','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36',1,'diatr',NULL),(51109,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1662142724,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51110,'Failed login attempt with username podct','185.43.220.16',1662143123,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51111,'Failed login attempt with username podct','173.236.242.233',1662143324,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(51112,'Failed login attempt with username podct','195.5.116.247',1662143949,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51113,'Failed login attempt with username admin','185.119.81.99',1662144249,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'admin',NULL),(51114,'Failed login attempt with username podct','157.245.110.251',1662144599,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(51115,'Failed login attempt with username podct','167.172.79.47',1662144718,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51116,'Request for file /wp-admin/includes/ccx/ which doesn\'t exist','108.167.189.76',1662144742,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/includes/ccx/',NULL),(51117,'Request for file /rex.php which doesn\'t exist','81.88.49.11',1662145413,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/rex.php',NULL),(51118,'Failed login attempt with username podct','54.38.145.151',1662145456,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51119,'Failed login attempt with username podct','103.39.134.190',1662145887,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(51120,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1662146150,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51121,'Failed login attempt with username podct','154.53.50.182',1662146252,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51122,'Failed login attempt with username podct','47.111.84.214',1662147117,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51123,'Failed login attempt with username podct','54.38.73.235',1662147169,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51124,'Failed login attempt with username podct','112.213.89.168',1662147828,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51125,'Failed login attempt with username podct','209.182.195.110',1662148450,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51126,'Failed login attempt with username podct','185.169.252.32',1662148543,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51127,'Failed login attempt with username podct','161.97.100.231',1662149340,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51128,'Failed login attempt with username admin','148.72.214.194',1662149757,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'admin',NULL),(51129,'Request for file /wp-commentin.php which doesn\'t exist','80.76.51.29',1662149887,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-commentin.php',NULL),(51130,'Request for file /wp/wp-commentin.php which doesn\'t exist','80.76.51.29',1662149894,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp/wp-commentin.php',NULL),(51131,'Request for file /wordpress/wp-commentin.php which doesn\'t exist','80.76.51.29',1662149901,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wordpress/wp-commentin.php',NULL),(51132,'Request for file /blog/wp-commentin.php which doesn\'t exist','80.76.51.29',1662149910,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/blog/wp-commentin.php',NULL),(51133,'Request for file /site/wp-commentin.php which doesn\'t exist','80.76.51.29',1662149923,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/site/wp-commentin.php',NULL),(51134,'Failed login attempt with username podct','51.79.176.106',1662150178,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51135,'Failed login attempt with username admin','67.205.62.27',1662151054,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'admin',NULL),(51136,'Failed login attempt with username podct','134.209.151.162',1662151178,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51137,'Failed login attempt with username podct','64.227.160.56',1662152007,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51138,'Failed login attempt with username admin','157.245.110.251',1662152349,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'admin',NULL),(51139,'Failed login attempt with username podct','35.219.66.183',1662152919,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51140,'Failed login attempt with username admin','23.99.229.218',1662153675,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'admin',NULL),(51141,'Failed login attempt with username podct','109.233.192.83',1662153849,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51142,'Failed login attempt with username podct','54.38.38.23',1662154813,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51143,'Failed login attempt with username admin','185.2.5.77',1662155005,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'admin',NULL),(51144,'Failed login attempt with username ranging','185.119.81.103',1662155095,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',1,'ranging',NULL),(51145,'Failed login attempt with username podct','54.39.90.165',1662155827,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51146,'Failed login attempt with username admin','143.244.140.199',1662156351,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'admin',NULL),(51147,'Failed login attempt with username podct','151.106.35.235',1662156832,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51148,'Failed login attempt with username admin','75.119.157.181',1662157694,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'admin',NULL),(51149,'Request for file /wp-content/themes/walmart/doc.php which doesn\'t exist','160.153.155.15',1662158110,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/walmart/doc.php',NULL),(51150,'Failed login attempt with username podct','186.234.80.121',1662158910,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51151,'Failed login attempt with username admin','47.105.73.13',1662159039,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'admin',NULL),(51152,'Failed login attempt with username podct','78.128.8.8',1662159990,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51153,'Failed login attempt with username admin','188.212.34.69',1662160385,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'admin',NULL),(51154,'Failed login attempt with username podct','203.112.72.51',1662161150,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51155,'Failed login attempt with username podct','178.128.187.183',1662161739,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(51156,'Failed login attempt with username podct','112.213.89.168',1662162324,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51157,'Failed login attempt with username podct','35.187.58.136',1662163092,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(51158,'Failed login attempt with username podct','184.168.126.242',1662163431,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51159,'Request for file /wp-content/themes/skatepark/img_screen.php which doesn\'t exist','43.252.212.214',1662164168,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/skatepark/img_screen.php',NULL),(51160,'Failed login attempt with username podct','208.109.54.127',1662164450,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(51161,'Failed login attempt with username podct','5.135.141.158',1662164608,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51162,'Failed login attempt with username podct','185.2.5.31',1662165808,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51163,'Failed login attempt with username podct','128.199.128.114',1662165817,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51164,'Failed login attempt with username podct','142.93.170.99',1662167126,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51165,'Failed login attempt with username podct','181.174.125.214',1662167180,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(51166,'Failed login attempt with username podct','192.81.214.91',1662168361,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51167,'Failed login attempt with username podct','107.175.111.233',1662168532,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(51168,'Failed login attempt with username podct','159.203.31.171',1662169634,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51169,'Failed login attempt with username podct','162.144.87.29',1662169908,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51170,'Failed login attempt with username most','185.119.81.99',1662170411,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',1,'most',NULL),(51171,'Failed login attempt with username podct','167.99.78.164',1662170946,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51172,'Failed login attempt with username podct','167.172.153.166',1662171288,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(51173,'Failed login attempt with username podct','47.111.84.214',1662172355,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51174,'Failed login attempt with username podct','194.233.67.171',1662173643,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51175,'Failed login attempt with username podct','69.163.224.107',1662174040,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(51176,'Failed login attempt with username podct','35.198.25.12',1662174999,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51177,'Failed login attempt with username podct','167.172.105.95',1662175417,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(51178,'Failed login attempt with username podct','103.152.164.103',1662176398,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51179,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662176760,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51180,'Failed login attempt with username podct','47.105.61.35',1662178157,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51181,'Request for file /wp-admin/shell20211028.php which doesn\'t exist','139.99.69.189',1662178874,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/shell20211028.php',NULL),(51182,'Failed login attempt with username podct','166.62.125.246',1662179529,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(51183,'Request for file /about.php which doesn\'t exist','8.210.68.127',1662180125,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/about.php',NULL),(51184,'Failed login attempt with username podct','142.93.201.0',1662180914,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(51185,'Failed login attempt with username admin','185.119.81.97',1662181023,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36',1,'admin',NULL),(51186,'Request for file /style.php which doesn\'t exist','135.181.248.204',1662182174,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/style.php',NULL),(51187,'Request for file /moduless.php which doesn\'t exist','135.181.248.204',1662182179,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/moduless.php',NULL),(51188,'Request for file /wp-content/plugins/t_file_wp/t_file_wp.php?test=hello which doesn\'t exist','135.181.248.204',1662182185,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello',NULL),(51189,'Request for file /admin.php which doesn\'t exist','135.181.248.204',1662182189,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/admin.php',NULL),(51190,'Request for file /boom.php?x which doesn\'t exist','135.181.248.204',1662182196,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/boom.php?x',NULL),(51191,'Request for file /wp-content/plugins/backup_index.php which doesn\'t exist','135.181.248.204',1662182201,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/plugins/backup_index.php',NULL),(51192,'Request for file /wp-content/db_cache.php which doesn\'t exist','135.181.248.204',1662182203,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/db_cache.php',NULL),(51193,'Request for file /wp-content/plugins/ioptimization/IOptimize.php?rchk which doesn\'t exist','135.181.248.204',1662182205,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/plugins/ioptimization/IOptimize.php?rchk',NULL),(51194,'Request for file /xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','135.181.248.204',1662182207,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/xmlrp.php?url=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(51195,'Request for file /wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','135.181.248.204',1662182239,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wpindex.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(51196,'Request for file /larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','135.181.248.204',1662182244,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/larva.php?idb=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(51197,'Request for file /th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1 which doesn\'t exist','135.181.248.204',1662182249,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/th3_err0r.php?php=https://raw.githubusercontent.com/carlosdechia/carlosdechia/main/ExV1',NULL),(51198,'Request for file /alfindex.php which doesn\'t exist','135.181.248.204',1662182254,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/alfindex.php',NULL),(51199,'Request for file /alfa.php which doesn\'t exist','135.181.248.204',1662182257,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/alfa.php',NULL),(51200,'Request for file /wp-booking.php which doesn\'t exist','135.181.248.204',1662182261,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-booking.php',NULL),(51201,'Request for file /cindex.php which doesn\'t exist','135.181.248.204',1662182263,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/cindex.php',NULL),(51202,'Request for file /wp-content/wp-1ogin_bak.php which doesn\'t exist','135.181.248.204',1662182274,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-content/wp-1ogin_bak.php',NULL),(51203,'Failed login attempt with username podct','23.97.205.210',1662182278,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(51204,'Request for file /wp-1ogin_bak.php which doesn\'t exist','135.181.248.204',1662182281,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-1ogin_bak.php',NULL),(51205,'Request for file /wp-includes/fonts/css.php which doesn\'t exist','135.181.248.204',1662182288,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/wp-includes/fonts/css.php',NULL),(51206,'Request for file /old-index.php which doesn\'t exist','135.181.248.204',1662182292,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/old-index.php',NULL),(51207,'Lockout occurred:  Too many 404 requests for /old-index.php','135.181.248.204',1662182292,'404_lockout','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36',1,'/old-index.php',NULL),(51208,'Failed login attempt with username podct','207.188.152.47',1662183657,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51209,'Failed login attempt with username admin','185.119.81.99',1662183857,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(51210,'Failed login attempt with username podct','192.71.144.12',1662185040,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(51211,'Request for file /jindex.php which doesn\'t exist','207.148.113.34',1662185187,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/jindex.php',NULL),(51212,'Failed login attempt with username podct','85.146.18.88',1662186439,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(51213,'Failed login attempt with username podct','68.183.71.174',1662187837,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51214,'Request for file /wp-content/plugins/linkpreview/ which doesn\'t exist','193.202.110.24',1662188550,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/linkpreview/',NULL),(51215,'Failed login attempt with username podct','77.240.13.186',1662189239,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(51216,'Failed login attempt with username podct','118.27.30.151',1662190642,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51217,'Failed login attempt with username podct','69.163.186.158',1662192044,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(51218,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662192224,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51219,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1662192961,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51220,'Failed login attempt with username recommend','185.119.81.97',1662193063,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',1,'recommend',NULL),(51221,'Failed login attempt with username podct','139.59.96.126',1662193462,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(51222,'Request for file /wp-content/themes/noriumportfolio/img_screen.php which doesn\'t exist','193.202.110.17',1662194791,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/noriumportfolio/img_screen.php',NULL),(51223,'Failed login attempt with username podct','188.166.236.35',1662194840,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(51224,'Request for file /.aws/.credentials.php which doesn\'t exist','185.83.144.103',1662196180,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.aws/.credentials.php',NULL),(51225,'Request for file /.aws/.credentials.php which doesn\'t exist','185.83.144.103',1662196180,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.aws/.credentials.php',NULL),(51226,'Failed login attempt with username podct','34.134.161.50',1662197538,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51227,'Request for file /wp-content/themes/content.php which doesn\'t exist','193.202.110.30',1662197618,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/content.php',NULL),(51228,'Failed login attempt with username podct','185.2.5.31',1662198849,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51229,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662199005,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51230,'Failed login attempt with username podct','202.21.38.119',1662200167,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51231,'Request for file /wp-content/local.php which doesn\'t exist','51.79.70.225',1662201907,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/local.php',NULL),(51232,'Failed login attempt with username podct','39.103.157.70',1662202762,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(51233,'Request for file /inc/f.php which doesn\'t exist','193.202.110.30',1662203312,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/inc/f.php',NULL),(51234,'Failed login attempt with username podct','202.21.38.119',1662204067,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(51235,'Request for file /ALFA_DATA/alfacgiapi/perl.alfa which doesn\'t exist','23.100.7.152',1662204187,'404_error','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36',1,'/ALFA_DATA/alfacgiapi/perl.alfa',NULL),(51236,'Failed login attempt with username podct','162.0.216.67',1662204992,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51237,'Failed login attempt with username podct','185.2.5.31',1662205361,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(51238,'Failed login attempt with username podct','138.68.84.97',1662206665,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(51239,'Failed login attempt with username podct','175.103.49.10',1662206900,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51240,'Request for file /wp-content/plugins/ccx/ which doesn\'t exist','193.202.110.30',1662206927,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/ccx/',NULL),(51241,'Failed login attempt with username podct','162.0.224.206',1662207738,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51242,'Failed login attempt with username podct','137.184.117.52',1662208000,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(51243,'Failed login attempt with username podct','185.2.6.13',1662208662,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51244,'Failed login attempt with username ranging','185.119.81.103',1662208916,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'ranging',NULL),(51245,'Failed login attempt with username podct','81.88.52.8',1662209336,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(51246,'Failed login attempt with username podct','87.107.161.195',1662209764,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51247,'Failed login attempt with username most','185.119.81.99',1662209925,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'most',NULL),(51248,'Failed login attempt with username podct','167.172.64.96',1662210684,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51249,'Failed login attempt with username podct','79.139.61.190',1662210688,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51250,'Request for file /contents.php which doesn\'t exist','193.202.110.24',1662211337,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/contents.php',NULL),(51251,'Request for file /ups.php which doesn\'t exist','5.196.26.210',1662211501,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/ups.php',NULL),(51252,'Failed login attempt with username podct','167.172.67.151',1662212238,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51253,'Failed login attempt with username podct','72.167.34.14',1662212850,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(51254,'Request for file /wp-content/home.php which doesn\'t exist','45.76.180.118',1662213681,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/home.php',NULL),(51255,'Failed login attempt with username podct','207.154.248.39',1662213963,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(51256,'Failed login attempt with username podct','66.33.193.231',1662215088,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(51257,'Failed login attempt with username podct','78.159.119.207',1662215097,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51258,'Request for file /media-admin.php which doesn\'t exist','93.188.2.5',1662215470,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/media-admin.php',NULL),(51259,'Failed login attempt with username podct','93.114.185.76',1662216244,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(51260,'Failed login attempt with username podct','91.205.230.79',1662216297,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51261,'Request for file /wp-content/plugins/seoo/sym403bp.php which doesn\'t exist','93.157.100.49',1662217005,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/seoo/sym403bp.php',NULL),(51262,'Request for file /wp-content/plugins/seoo/sym403bp.php which doesn\'t exist','93.157.100.49',1662217005,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/seoo/sym403bp.php',NULL),(51263,'Failed login attempt with username podct','150.95.24.78',1662217473,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51264,'Failed login attempt with username podct','159.89.199.237',1662217479,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51265,'Failed login attempt with username podct','203.118.155.133',1662218607,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51266,'Failed login attempt with username podct','159.89.228.214',1662218718,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(51267,'Request for file /ffAA531.php which doesn\'t exist','108.167.189.76',1662218834,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/ffAA531.php',NULL),(51268,'Failed login attempt with username podct','188.165.198.224',1662219874,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51269,'Failed login attempt with username podct','103.171.181.192',1662219976,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51270,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662220103,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51271,'Failed login attempt with username podct','103.130.218.189',1662220980,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51272,'Failed login attempt with username podct','193.176.230.188',1662221039,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51273,'Failed login attempt with username podct','138.68.140.0',1662222090,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51274,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662222132,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51275,'Failed login attempt with username podct','34.79.206.104',1662222523,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51276,'Failed login attempt with username podct','175.178.125.173',1662223194,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(51277,'Failed login attempt with username podct','51.210.251.22',1662223361,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51278,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1662223606,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51279,'Failed login attempt with username podct','103.129.222.91',1662224283,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(51280,'Failed login attempt with username podct','128.199.109.135',1662224298,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51281,'Request for file /x.php which doesn\'t exist','193.202.110.30',1662224867,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/x.php',NULL),(51282,'Failed login attempt with username podct','103.157.146.210',1662225132,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51283,'Failed login attempt with username podct','121.42.231.47',1662225376,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(51284,'Failed login attempt with username podct','185.244.175.156',1662225410,'auth_fail','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'podct',NULL),(51285,'Failed login attempt with username podct','20.109.101.102',1662225991,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51286,'Request for file /wp-info.php which doesn\'t exist','78.46.90.183',1662226258,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-info.php',NULL),(51287,'Failed login attempt with username podct','143.244.155.35',1662226467,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(51288,'Failed login attempt with username podct','124.158.12.83',1662226835,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51289,'Failed login attempt with username podct','65.21.105.105',1662227552,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(51290,'Failed login attempt with username podct','162.214.76.126',1662227636,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51291,'Request for file /doc.php.suspected which doesn\'t exist','160.153.156.34',1662228374,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/doc.php.suspected',NULL),(51292,'Request for file /doc.php.suspected which doesn\'t exist','160.153.156.34',1662228377,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/doc.php.suspected',NULL),(51293,'Failed login attempt with username podct','103.180.120.176',1662228493,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51294,'Failed login attempt with username podct','171.244.0.91',1662228640,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51295,'Failed login attempt with username podct','195.211.45.155',1662229243,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51296,'Request for file /wp-content/themes/skatepark/doc.php which doesn\'t exist','123.30.139.93',1662229247,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/skatepark/doc.php',NULL),(51297,'Request for file /wp-content/plugins/wp-freeform/style.php which doesn\'t exist','43.252.212.214',1662229267,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-freeform/style.php',NULL),(51298,'Failed login attempt with username podct','139.180.208.212',1662229877,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51299,'Failed login attempt with username podct','64.90.36.102',1662230810,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51300,'Failed login attempt with username podct','195.93.152.83',1662231366,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51301,'Failed login attempt with username podct','217.21.87.243',1662231867,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(51302,'Failed login attempt with username podct','185.244.175.156',1662231926,'auth_fail','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'podct',NULL),(51303,'Failed login attempt with username podct','130.185.74.183',1662232042,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51304,'Request for file /zzeiajc.php which doesn\'t exist','108.167.189.76',1662232535,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/zzeiajc.php',NULL),(51305,'Failed login attempt with username podct','103.130.216.111',1662232687,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51306,'Request for file /wp-content/shell20211028.php which doesn\'t exist','71.19.150.197',1662232845,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/shell20211028.php',NULL),(51307,'Failed login attempt with username podct','39.103.157.70',1662232922,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(51308,'Request for file /wp-includes/ccx/ which doesn\'t exist','162.212.131.138',1662233301,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/ccx/',NULL),(51309,'Failed login attempt with username podct','185.43.220.16',1662233394,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51310,'Failed login attempt with username podct','165.232.180.174',1662233975,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(51311,'Failed login attempt with username podct','43.129.212.158',1662234052,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51312,'Failed login attempt with username podct','23.254.231.169',1662234755,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51313,'Failed login attempt with username podct','217.21.87.243',1662235033,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(51314,'Failed login attempt with username podct','213.165.237.48',1662235522,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51315,'Request for file /wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml which doesn\'t exist','46.161.27.155',1662235570,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml',NULL),(51316,'Request for file /author-sitemap.xml which doesn\'t exist','46.161.27.155',1662235571,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/author-sitemap.xml',NULL),(51317,'Failed login attempt with username podct','137.184.117.52',1662236118,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(51318,'Failed login attempt with username podct','103.166.182.177',1662236246,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51319,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662236688,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51320,'Failed login attempt with username podct','109.233.192.83',1662237027,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51321,'Failed login attempt with username podct','187.32.211.193',1662237207,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51322,'Failed login attempt with username podct','72.167.225.151',1662237825,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51323,'Failed login attempt with username podct','139.59.118.238',1662238291,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51324,'Failed login attempt with username podct','104.219.251.247',1662238598,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51325,'Request for file /wp-content/themes/twentynineteen/404.php which doesn\'t exist','148.72.246.134',1662239204,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/twentynineteen/404.php',NULL),(51326,'Failed login attempt with username podct','46.32.228.70',1662239385,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51327,'Failed login attempt with username podct','64.227.160.56',1662239460,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51328,'Failed login attempt with username podct','20.207.80.198',1662240355,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51329,'Failed login attempt with username podct','45.13.132.210',1662240481,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51330,'Failed login attempt with username podct','162.249.4.84',1662241161,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51331,'Failed login attempt with username podct','81.88.52.8',1662241570,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(51332,'Request for file /wp-admin/ffAA531.php which doesn\'t exist','193.202.110.17',1662241749,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/ffAA531.php',NULL),(51333,'Request for file /wp-content/uploads/estate_templates/wpbricks/doc.php which doesn\'t exist','107.189.2.3',1662241820,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/uploads/estate_templates/wpbricks/doc.php',NULL),(51334,'Request for file /wp-content/uploads/estate_templates/wpbricks/doc.php which doesn\'t exist','107.189.2.3',1662241833,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/uploads/estate_templates/wpbricks/doc.php',NULL),(51335,'Request for file /wp-admin/maint/about.php which doesn\'t exist','108.167.189.22',1662241859,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/maint/about.php',NULL),(51336,'Failed login attempt with username podct','91.123.18.217',1662242082,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51337,'Failed login attempt with username podct','69.163.225.121',1662242672,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51338,'Failed login attempt with username podct','51.15.160.148',1662243068,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51339,'Request for file /wp-admin/0z.php which doesn\'t exist','51.79.70.225',1662243311,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/0z.php',NULL),(51340,'Failed login attempt with username podct','188.127.231.190',1662243772,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(51341,'Failed login attempt with username podct','91.103.219.224',1662243941,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51342,'Request for file /assets/images/doc.php which doesn\'t exist','108.167.189.32',1662244818,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/assets/images/doc.php',NULL),(51343,'Failed login attempt with username podct','207.154.250.8',1662244878,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(51344,'Failed login attempt with username podct','5.182.26.11',1662244917,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51345,'Request for file /wp-content/ccx/ which doesn\'t exist','78.46.90.183',1662245797,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/ccx/',NULL),(51346,'Request for file /1.php which doesn\'t exist','43.252.212.214',1662245891,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/1.php',NULL),(51347,'Request for file /1.php which doesn\'t exist','43.252.212.214',1662245896,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/1.php',NULL),(51348,'Failed login attempt with username podct','162.240.211.236',1662245903,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51349,'Failed login attempt with username podct','185.2.4.134',1662246000,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(51350,'Failed login attempt with username podct','51.91.220.143',1662247113,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(51351,'Request for file /wp-content/plugins/wp-widget-css/img_screen.php which doesn\'t exist','47.242.250.194',1662247276,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-widget-css/img_screen.php',NULL),(51352,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1662247778,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51353,'Failed login attempt with username podct','103.166.182.177',1662247930,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51354,'Failed login attempt with username podct','133.130.103.36',1662248220,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(51355,'Failed login attempt with username podct','2.184.67.138',1662249078,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51356,'Request for file /wp-content/themes/noriumportfolio/doc.php which doesn\'t exist','193.202.110.24',1662249129,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/noriumportfolio/doc.php',NULL),(51357,'Failed login attempt with username podct','118.98.73.5',1662249324,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(51358,'Request for file /1.php which doesn\'t exist','162.212.131.138',1662249742,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/1.php',NULL),(51359,'Failed login attempt with username podct','188.212.34.36',1662250039,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51360,'Failed login attempt with username podct','93.114.185.76',1662250430,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51361,'Failed login attempt with username podct','54.39.45.92',1662251090,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51362,'Failed login attempt with username podct','171.244.0.91',1662251549,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(51363,'Failed login attempt with username podct','80.77.135.125',1662252219,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51364,'Failed login attempt with username podct','208.109.54.127',1662252666,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(51365,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662253033,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51366,'Failed login attempt with username podct','103.74.118.242',1662253367,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51367,'Failed login attempt with username podct','188.166.61.228',1662253781,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(51368,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1662254137,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.81 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51369,'Failed login attempt with username podct','162.55.12.243',1662254414,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51370,'Failed login attempt with username podct','85.191.40.94',1662254884,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51371,'Failed login attempt with username podct','111.90.150.28',1662255624,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51372,'Failed login attempt with username podct','162.249.4.84',1662256776,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51373,'Failed login attempt with username podct','51.195.148.190',1662257115,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(51374,'Failed login attempt with username podct','51.159.57.26',1662257919,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51375,'Failed login attempt with username podct','68.183.86.247',1662258228,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(51376,'Failed login attempt with username podct','103.180.120.176',1662259259,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51377,'Failed login attempt with username podct','159.89.207.135',1662259336,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(51378,'Failed login attempt with username podct','207.244.251.52',1662260370,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51379,'Failed login attempt with username podct','150.109.148.216',1662260461,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51380,'Failed login attempt with username podct','14.241.233.205',1662261583,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51381,'Failed login attempt with username podct','61.219.171.85',1662261592,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51382,'Failed login attempt with username podct','118.27.30.151',1662262699,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(51383,'Failed login attempt with username podct','185.49.20.77',1662262803,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51384,'Failed login attempt with username podct','77.65.213.168',1662263817,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(51385,'Failed login attempt with username podct','177.52.160.32',1662264077,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51386,'Failed login attempt with username podct','31.210.66.35',1662265274,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51387,'Failed login attempt with username admin','134.209.184.76',1662266277,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'admin',NULL),(51388,'Failed login attempt with username podct','160.119.252.16',1662266576,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'podct',NULL),(51389,'Failed login attempt with username admin','121.243.95.160',1662267393,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'admin',NULL),(51390,'Failed login attempt with username admin','157.7.174.49',1662268518,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'admin',NULL),(51391,'Failed login attempt with username admin','13.79.17.158',1662269621,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'admin',NULL),(51392,'Failed login attempt with username admin','157.245.110.251',1662271802,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'admin',NULL),(51393,'Failed login attempt with username podct','54.37.156.240',1662272887,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(51394,'Failed login attempt with username podct','51.89.47.206',1662273951,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51395,'Failed login attempt with username podct','157.245.110.251',1662275024,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(51396,'Failed login attempt with username podct','139.59.96.126',1662276100,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(51397,'Failed login attempt with username podct','198.244.167.101',1662277118,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(51398,'Failed login attempt with username podct','81.88.52.106',1662278169,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(51399,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.103',1662278435,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51400,'Failed login attempt with username admin','188.212.34.69',1662279227,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'admin',NULL),(51401,'Request for file /wp-content/plugins/wp-work/img_screen.php which doesn\'t exist','193.202.110.17',1662279470,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-work/img_screen.php',NULL),(51402,'Failed login attempt with username admin','124.153.66.86',1662280299,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'admin',NULL),(51403,'Request for file /new.php which doesn\'t exist','192.185.4.133',1662280590,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/new.php',NULL),(51404,'Failed login attempt with username admin','93.114.185.76',1662281360,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(51405,'Failed login attempt with username admin','77.65.213.168',1662282437,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'admin',NULL),(51406,'Failed login attempt with username admin','208.109.54.127',1662283511,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'admin',NULL),(51407,'Failed login attempt with username admin','202.21.38.119',1662284575,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'admin',NULL),(51408,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662284765,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51409,'Failed login attempt with username admin','167.71.141.164',1662285639,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'admin',NULL),(51410,'Request for file /wp-content/ave.php which doesn\'t exist','108.167.189.22',1662286674,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/ave.php',NULL),(51411,'Failed login attempt with username admin','138.68.84.97',1662286742,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'admin',NULL),(51412,'Failed login attempt with username recommend','185.119.81.97',1662287432,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36',1,'recommend',NULL),(51413,'Failed login attempt with username andyblecherpodiatrist','185.119.81.103',1662287507,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51414,'Failed login attempt with username admin','52.138.180.227',1662287836,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'admin',NULL),(51415,'Failed login attempt with username podct','175.178.125.173',1662288915,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(51416,'Request for file /wp-content/cache/patior/ which doesn\'t exist','198.71.235.49',1662289087,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/cache/patior/',NULL),(51417,'Failed login attempt with username podct','157.7.174.49',1662290008,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(51418,'Failed login attempt with username podct','23.97.205.210',1662291097,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(51419,'Failed login attempt with username podct','185.2.4.56',1662292195,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(51420,'Failed login attempt with username podct','13.79.17.158',1662293300,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(51421,'Failed login attempt with username podct','188.166.225.235',1662294400,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(51422,'Request for file /wp-includes/css/dist/wwdv.php which doesn\'t exist','142.93.5.147',1662294413,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/css/dist/wwdv.php',NULL),(51423,'Request for file /wp-content/plugins/TOPXOH/OH.php which doesn\'t exist','162.212.131.138',1662294736,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/TOPXOH/OH.php',NULL),(51424,'Request for file /wp-content/plugins/wp-security-enforcements/icwf.php which doesn\'t exist','45.139.10.72',1662295003,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-security-enforcements/icwf.php',NULL),(51425,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662295208,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51426,'Failed login attempt with username wadminw','78.159.119.207',1662295398,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wadminw',NULL),(51427,'Failed login attempt with username podct','54.37.156.240',1662295481,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(51428,'Failed login attempt with username wwwadmin','194.59.165.88',1662296241,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wwwadmin',NULL),(51429,'Failed login attempt with username podct','45.120.69.121',1662296565,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(51430,'Request for file /wp-content/plugins/masterx/wp-blog.php which doesn\'t exist','8.210.68.127',1662297397,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/masterx/wp-blog.php',NULL),(51431,'Request for file /wp-content/plugins/masterx/wp-blog.php which doesn\'t exist','8.210.68.127',1662297401,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/masterx/wp-blog.php',NULL),(51432,'Failed login attempt with username podct','188.166.61.228',1662297649,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(51433,'Failed login attempt with username podct','144.217.15.207',1662298743,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51434,'Request for file /wp-content/uploads/2022/05/.cyz_qyjtk.php which doesn\'t exist','20.92.87.77',1662298794,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'/wp-content/uploads/2022/05/.cyz_qyjtk.php',NULL),(51435,'Request for file /wp-content/uploads/typehub/custom/beeqe/.cyz.php which doesn\'t exist','20.92.87.77',1662298799,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'/wp-content/uploads/typehub/custom/beeqe/.cyz.php',NULL),(51436,'Request for file /wp-content/plugins/wp-json-api-disable/x112sucuri.php which doesn\'t exist','209.97.172.236',1662299263,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-json-api-disable/x112sucuri.php',NULL),(51437,'Failed login attempt with username podct','208.113.153.235',1662299831,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(51438,'Failed login attempt with username wadminw','132.148.165.91',1662300158,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wadminw',NULL),(51439,'Failed login attempt with username podct','69.163.224.107',1662300935,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(51440,'Failed login attempt with username wwwadmin','51.159.105.232',1662300971,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64rv:95.0) Gecko/20100101 Firefox/95.0',1,'wwwadmin',NULL),(51441,'Failed login attempt with username podct','128.199.100.142',1662302038,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(51442,'Failed login attempt with username podct','120.27.133.69',1662303128,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51443,'Failed login attempt with username podct','185.190.117.89',1662304221,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(51444,'Request for file /wp-content/themes/driven/doc.php which doesn\'t exist','162.241.24.23',1662304362,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/driven/doc.php',NULL),(51445,'Failed login attempt with username admin','185.119.81.97',1662304843,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(51446,'Failed login attempt with username podct','93.114.185.76',1662306422,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(51447,'Failed login attempt with username podct','145.239.30.120',1662307528,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(51448,'Failed login attempt with username podct','159.223.170.181',1662308175,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(51449,'Failed login attempt with username podct','85.91.237.106',1662309073,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51450,'Failed login attempt with username podct','68.183.71.174',1662309980,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(51451,'Request for file /wp-content/themes/jort/fws.php which doesn\'t exist','108.167.189.22',1662310146,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/jort/fws.php',NULL),(51452,'Failed login attempt with username podct','111.230.202.147',1662310889,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(51453,'Failed login attempt with username podct','104.131.68.19',1662311798,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(51454,'Request for file /wp-content/plugins/wp-wild/doc.php which doesn\'t exist','193.202.110.23',1662312238,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-wild/doc.php',NULL),(51455,'Failed login attempt with username podct','39.108.148.88',1662312702,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(51456,'Request for file /old-index.php which doesn\'t exist','193.202.110.30',1662313450,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/old-index.php',NULL),(51457,'Failed login attempt with username podct','45.120.69.121',1662313588,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(51458,'Request for file /wp-content/plugins/masterx/upx.php which doesn\'t exist','93.188.2.5',1662313660,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/masterx/upx.php',NULL),(51459,'Failed login attempt with username podct','173.236.184.128',1662314475,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(51460,'Failed login attempt with username podct','20.101.71.221',1662315361,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(51461,'Failed login attempt with username podct','212.103.4.29',1662316223,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(51462,'Request for file /wp-content/plugins/masterx/snx.php which doesn\'t exist','67.227.144.242',1662316556,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/masterx/snx.php',NULL),(51463,'Failed login attempt with username podct','144.217.15.207',1662317088,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(51464,'Failed login attempt with username podct','118.98.73.5',1662317976,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(51465,'Request for file /wp-content/themes/blogin/img_screen.php which doesn\'t exist','208.109.226.82',1662318352,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/blogin/img_screen.php',NULL),(51466,'Request for file /rade.php which doesn\'t exist','106.14.30.59',1662318528,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/rade.php',NULL),(51467,'Request for file /rade.php which doesn\'t exist','106.14.30.59',1662318533,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/rade.php',NULL),(51468,'Failed login attempt with username podct','23.96.7.148',1662318842,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(51469,'Failed login attempt with username admin','185.119.81.101',1662318918,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'admin',NULL),(51470,'Failed login attempt with username podct','64.90.36.102',1662319712,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(51471,'Request for file /wp-admin/css/colors/modern/wwdv.php which doesn\'t exist','193.202.110.30',1662319814,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/css/colors/modern/wwdv.php',NULL),(51472,'Failed login attempt with username podct','207.154.250.8',1662320580,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(51473,'Failed login attempt with username podct','143.244.177.220',1662321456,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51474,'Failed login attempt with username podct','82.166.23.245',1662322337,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(51475,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662323066,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51476,'Failed login attempt with username podct','208.113.171.103',1662323228,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51477,'Failed login attempt with username podct','167.172.153.166',1662324117,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(51478,'Failed login attempt with username podct','147.78.47.233',1662324306,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51479,'Failed login attempt with username podct','51.89.47.206',1662325005,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(51480,'Failed login attempt with username admin','185.119.81.101',1662325251,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 6.1; de-DE) AppleWebKit/534.17 (KHTML, like Gecko) Chrome/10.0.649.0 Safari/534.17',1,'admin',NULL),(51481,'Failed login attempt with username podct','147.78.47.233',1662325333,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51482,'Failed login attempt with username podct','51.159.155.6',1662325904,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(51483,'Failed login attempt with username podct','185.244.175.156',1662326698,'auth_fail','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'podct',NULL),(51484,'Failed login attempt with username podct','77.240.13.186',1662326802,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(51485,'Failed login attempt with username podct','188.166.225.235',1662327700,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(51486,'Failed login attempt with username atrist','185.119.81.101',1662328028,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36',1,'atrist',NULL),(51487,'Failed login attempt with username podct','178.217.190.82',1662328604,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51488,'Failed login attempt with username podct','103.31.249.221',1662329513,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(51489,'Failed login attempt with username podct','68.183.71.174',1662330411,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(51490,'Failed login attempt with username podct','144.217.15.207',1662331312,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(51491,'Failed login attempt with username podct','212.103.4.29',1662332216,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51492,'Failed login attempt with username podct','46.161.27.155',1662332634,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51493,'Failed login attempt with username podct','46.161.27.153',1662332970,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51494,'Failed login attempt with username podct','139.59.118.238',1662333134,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51495,'Failed login attempt with username podct','147.78.47.233',1662333370,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51496,'Failed login attempt with username podct','147.78.47.233',1662333526,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51497,'Failed login attempt with username podct','46.161.27.153',1662333853,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51498,'Failed login attempt with username podct','185.244.175.156',1662333891,'auth_fail','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'podct',NULL),(51499,'Failed login attempt with username podct','46.161.27.156',1662334554,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51500,'Failed login attempt with username podct','46.161.27.155',1662334716,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51501,'Failed login attempt with username podct','69.163.224.107',1662334946,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(51502,'Failed login attempt with username podct','147.78.47.233',1662334962,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51503,'Failed login attempt with username podct','46.161.27.155',1662335039,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51504,'Request for file /wp-content/plugins/sid/wp-info.php which doesn\'t exist','81.88.49.4',1662335096,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/sid/wp-info.php',NULL),(51505,'Failed login attempt with username podct','46.161.27.155',1662335355,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51506,'Failed login attempt with username podct','46.161.27.155',1662335432,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51507,'Failed login attempt with username podct','141.94.247.170',1662335859,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(51508,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662336602,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51509,'Failed login attempt with username podct','175.178.125.173',1662336778,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(51510,'Failed login attempt with username podct','101.34.224.66',1662337697,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51511,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662338151,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51512,'Failed login attempt with username podct','167.71.63.47',1662338614,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51513,'Failed login attempt with username podct','167.172.142.236',1662339524,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(51514,'Request for file /wp-content/themes/wordpress-theme-security/icwf.php which doesn\'t exist','81.88.49.10',1662339725,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/wordpress-theme-security/icwf.php',NULL),(51515,'Failed login attempt with username podct','157.230.127.126',1662340446,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(51516,'Failed login attempt with username podct','159.65.200.228',1662341361,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(51517,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1662341762,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51518,'Failed login attempt with username podct','34.65.234.0',1662342272,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(51519,'Request for file /cgi-bin/ccx/ which doesn\'t exist','51.79.70.225',1662342992,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/cgi-bin/ccx/',NULL),(51520,'Failed login attempt with username podct','185.244.175.156',1662343170,'auth_fail','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'podct',NULL),(51521,'Failed login attempt with username podct','81.88.52.8',1662343186,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(51522,'Failed login attempt with username podct','121.42.231.47',1662344111,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51523,'Failed login attempt with username atrist','185.119.81.101',1662344233,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',1,'atrist',NULL),(51524,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662344596,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51525,'Failed login attempt with username podct','159.89.207.135',1662345028,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51526,'Failed login attempt with username podct','104.248.55.1',1662345946,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(51527,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662346136,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51528,'Request for file /wp-content/plugins/x/patior/patior/ which doesn\'t exist','193.202.110.24',1662347281,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/x/patior/patior/',NULL),(51529,'Failed login attempt with username podct','165.22.109.42',1662347798,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(51530,'Failed login attempt with username podct','46.161.27.153',1662347902,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51531,'Failed login attempt with username podct','46.161.27.156',1662348361,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51532,'Failed login attempt with username treated','185.119.81.97',1662348452,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',1,'treated',NULL),(51533,'Failed login attempt with username podct','159.89.228.214',1662348716,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(51534,'Failed login attempt with username podct','46.161.27.153',1662348759,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51535,'Failed login attempt with username atrist','185.119.81.101',1662348812,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'atrist',NULL),(51536,'Failed login attempt with username diatr','185.119.81.102',1662348998,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36',1,'diatr',NULL),(51537,'Failed login attempt with username podct','46.161.27.155',1662349203,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51538,'Failed login attempt with username podct','69.163.186.158',1662349642,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(51539,'Failed login attempt with username podct','85.91.237.106',1662350567,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(51540,'Failed login attempt with username podct','185.244.175.156',1662350794,'auth_fail','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'podct',NULL),(51541,'Failed login attempt with username podct','147.78.47.233',1662350885,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51542,'Failed login attempt with username admin','185.119.81.102',1662351027,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',1,'admin',NULL),(51543,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662351362,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51544,'Failed login attempt with username podct','47.116.48.109',1662351496,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(51545,'Request for file /wp-includes/css/mvc/wwdv.php which doesn\'t exist','193.202.110.24',1662352008,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/css/mvc/wwdv.php',NULL),(51546,'Failed login attempt with username podct','64.90.36.102',1662352419,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(51547,'Failed login attempt with username podct','82.166.23.245',1662353336,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(51548,'Failed login attempt with username podct','103.166.183.192',1662354262,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(51549,'Failed login attempt with username podct','118.27.30.151',1662355155,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(51550,'Failed login attempt with username podct','69.163.224.107',1662356981,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(51551,'Failed login attempt with username podct','34.69.109.132',1662357892,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(51552,'Failed login attempt with username podct','143.244.155.35',1662358801,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(51553,'Failed login attempt with username podct','1.117.250.215',1662359695,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51554,'Failed login attempt with username podct','185.2.4.33',1662360580,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(51555,'Failed login attempt with username podct','167.172.168.111',1662361462,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(51556,'Request for file /wp-commentin.php which doesn\'t exist','52.172.249.199',1662361491,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wp-commentin.php',NULL),(51557,'Request for file /wp-includes/css/dist/editor/fxp.php which doesn\'t exist','192.185.4.133',1662365698,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/css/dist/editor/fxp.php',NULL),(51558,'Request for file /wp-content/x.php which doesn\'t exist','193.202.110.30',1662365712,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/x.php',NULL),(51559,'Failed login attempt with username admin','51.75.15.189',1662365899,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'admin',NULL),(51560,'Request for file /wp-content/991176.php which doesn\'t exist','193.202.110.30',1662366806,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/991176.php',NULL),(51561,'Failed login attempt with username admin','146.56.99.136',1662366816,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'admin',NULL),(51562,'Failed login attempt with username admin','167.172.168.111',1662367722,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'admin',NULL),(51563,'Failed login attempt with username admin','188.166.61.228',1662368643,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'admin',NULL),(51564,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662369012,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51565,'Failed login attempt with username admin','166.62.125.246',1662369564,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'admin',NULL),(51566,'Request for file /wp-content/plugins/ai-seo-fix/wwdv.php which doesn\'t exist','142.93.5.147',1662370070,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/ai-seo-fix/wwdv.php',NULL),(51567,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1662370137,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51568,'Failed login attempt with username admin','103.142.255.1',1662370487,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'admin',NULL),(51569,'Failed login attempt with username podct','167.172.142.236',1662371407,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(51570,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.81',1662371653,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51571,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662372006,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51572,'Failed login attempt with username podct','213.151.33.40',1662372347,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(51573,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662372348,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51574,'Request for file /css/ which doesn\'t exist','116.92.222.106',1662372665,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/css/',NULL),(51575,'Request for file /wp-content/themes/blogaft/doc.php which doesn\'t exist','8.210.68.127',1662372709,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/blogaft/doc.php',NULL),(51576,'Request for file /wp-content/themes/blogaft/doc.php which doesn\'t exist','8.210.68.127',1662372712,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/blogaft/doc.php',NULL),(51577,'Failed login attempt with username podct','51.89.47.206',1662373284,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51578,'Request for file /kyami.php which doesn\'t exist','193.202.110.23',1662373895,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/kyami.php',NULL),(51579,'Failed login attempt with username podct','188.166.225.235',1662374224,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51580,'Failed login attempt with username podct','36.94.142.166',1662375163,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(51581,'Failed login attempt with username admin','185.119.81.101',1662375180,'auth_fail','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'admin',NULL),(51582,'Failed login attempt with username podct','67.205.62.27',1662376102,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(51583,'Failed login attempt with username admin','159.65.200.228',1662377030,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'admin',NULL),(51584,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662377254,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51585,'Failed login attempt with username admin','14.241.233.205',1662377944,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'admin',NULL),(51586,'Request for file /wp-commentin.php which doesn\'t exist','51.103.45.197',1662378611,'404_error','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)',1,'/wp-commentin.php',NULL),(51587,'Request for file /wp-admin/wwdv.php which doesn\'t exist','185.216.113.80',1662378642,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/wwdv.php',NULL),(51588,'Failed login attempt with username admin','138.68.84.97',1662378861,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'admin',NULL),(51589,'Request for file /wp-content/themes/bigmart/img_screen.php which doesn\'t exist','193.202.110.30',1662379496,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/bigmart/img_screen.php',NULL),(51590,'Failed login attempt with username admin','147.135.255.8',1662379784,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'admin',NULL),(51591,'Failed login attempt with username admin','68.183.75.82',1662380724,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'admin',NULL),(51592,'Failed login attempt with username diatr','185.119.81.102',1662381001,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36',1,'diatr',NULL),(51593,'Request for file /wp-content/plugins/x/vim/hehehe.php which doesn\'t exist','193.202.110.30',1662381246,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/x/vim/hehehe.php',NULL),(51594,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1662381407,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51595,'Request for file /wp-plain.php which doesn\'t exist','20.92.87.77',1662381522,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-plain.php',NULL),(51596,'Request for file /f3D99.php?adriv=vz which doesn\'t exist','20.92.87.77',1662381536,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/f3D99.php?adriv=vz',NULL),(51597,'Request for file /wp-plain.php which doesn\'t exist','20.92.87.77',1662381546,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-plain.php',NULL),(51598,'Request for file /f3D99.php?adriv=vz which doesn\'t exist','20.92.87.77',1662381560,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/f3D99.php?adriv=vz',NULL),(51599,'Failed login attempt with username admin','43.251.134.54',1662381669,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'admin',NULL),(51600,'Failed login attempt with username admin','142.93.201.0',1662382615,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'admin',NULL),(51601,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662382782,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51602,'Failed login attempt with username admin','51.195.148.190',1662383563,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'admin',NULL),(51603,'Failed login attempt with username admin','69.163.186.158',1662384488,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'admin',NULL),(51604,'Failed login attempt with username admin','185.119.81.108',1662385368,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36',1,'admin',NULL),(51605,'Failed login attempt with username podct','207.46.234.202',1662385438,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(51606,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662386100,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51607,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662386100,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51608,'Failed login attempt with username podct','202.21.38.119',1662386388,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(51609,'Request for file /info.php which doesn\'t exist','193.202.110.17',1662386787,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/info.php',NULL),(51610,'Request for file /wp-includes/ffAA531.php which doesn\'t exist','207.148.113.34',1662386878,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/ffAA531.php',NULL),(51611,'Failed login attempt with username podct','217.61.54.110',1662387340,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(51612,'Failed login attempt with username podct','185.126.219.43',1662388300,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(51613,'Failed login attempt with username podct','138.68.84.97',1662389258,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(51614,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662389385,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51615,'Failed login attempt with username podct','188.166.236.35',1662390216,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51616,'Failed login attempt with username podct','185.126.219.43',1662391172,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(51617,'Failed login attempt with username podct','167.71.234.124',1662392136,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(51618,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.102',1662393022,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51619,'Failed login attempt with username podct','159.65.200.228',1662393094,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(51620,'Failed login attempt with username podct','137.184.117.52',1662394047,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51621,'Request for file /wp-content/themes/ccx/ which doesn\'t exist','93.188.2.5',1662394553,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/ccx/',NULL),(51622,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662394979,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51623,'Failed login attempt with username podct','51.75.15.189',1662394994,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(51624,'Request for file /wp-content/themes/wordpress-theme-security/x112sucuri.php which doesn\'t exist','81.88.49.11',1662395622,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/wordpress-theme-security/x112sucuri.php',NULL),(51625,'Request for file /wp-content/themes/wordpress-theme-security/x112sucuri.php which doesn\'t exist','81.88.49.15',1662395631,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/wordpress-theme-security/x112sucuri.php',NULL),(51626,'Failed login attempt with username podct','54.37.156.240',1662395946,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51627,'Request for file /wp-content/autoload_classmap.php which doesn\'t exist','193.202.110.17',1662395977,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/autoload_classmap.php',NULL),(51628,'Failed login attempt with username podct','159.203.68.240',1662396896,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51629,'Request for file /manager/ which doesn\'t exist','195.201.201.62',1662396945,'404_error','2ip bot/1.1 (+http://2ip.io)',1,'/manager/',NULL),(51630,'Request for file /admin/ which doesn\'t exist','195.201.201.61',1662396947,'404_error','2ip bot/1.1 (+http://2ip.io)',1,'/admin/',NULL),(51631,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662397799,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51632,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.81',1662397800,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51633,'Failed login attempt with username podct','159.89.27.131',1662397846,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51634,'Request for file /wp-content/plugins/ai-seo-fix/icwf.php which doesn\'t exist','78.135.107.79',1662398461,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/ai-seo-fix/icwf.php',NULL),(51635,'Failed login attempt with username podct','159.223.170.181',1662398788,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(51636,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662399281,'auth_fail','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51637,'Failed login attempt with username podct','138.68.140.0',1662399715,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51638,'Failed login attempt with username podct','143.244.140.199',1662400628,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(51639,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662400921,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51640,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662401348,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51641,'Failed login attempt with username podct','34.75.65.218',1662401557,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51642,'Failed login attempt with username podct','23.96.7.148',1662402485,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(51643,'Failed login attempt with username podct','188.212.34.69',1662403390,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51644,'Request for file /wp-content/plugins/wp-json-api-disable/icwf.php which doesn\'t exist','142.93.5.147',1662403890,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-json-api-disable/icwf.php',NULL),(51645,'Request for file /wp-content/plugins/wp-json-api-disable/icwf.php which doesn\'t exist','142.93.5.147',1662403891,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-json-api-disable/icwf.php',NULL),(51646,'Failed login attempt with username podct','217.21.87.243',1662404302,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(51647,'Failed login attempt with username podct','95.217.179.54',1662405199,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(51648,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662405936,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51649,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','208.67.106.91',1662406005,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/themes/seotheme/mar.php',NULL),(51650,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','208.67.106.91',1662406017,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/themes/seotheme/mar.php',NULL),(51651,'Failed login attempt with username podct','103.149.154.8',1662406079,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(51652,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662406359,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51653,'Request for file /wordpress/wp-content/plugins/aakismet/i.php which doesn\'t exist','77.68.93.72',1662406488,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wordpress/wp-content/plugins/aakismet/i.php',NULL),(51654,'Failed login attempt with username podct','166.62.125.246',1662406967,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(51655,'Request for file /wp-includes/pomo/aespa.php which doesn\'t exist','106.14.30.59',1662407217,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/pomo/aespa.php',NULL),(51656,'Failed login attempt with username podct','110.40.244.196',1662407847,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51657,'Failed login attempt with username podct','81.88.52.106',1662408741,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51658,'Failed login attempt with username podct','106.52.120.186',1662410549,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(51659,'Failed login attempt with username podct','13.78.225.32',1662411449,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51660,'Failed login attempt with username podct','188.166.236.35',1662412360,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51661,'Failed login attempt with username podct','173.212.212.180',1662413265,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(51662,'Failed login attempt with username andyblecherpodiatrist','185.119.81.102',1662414153,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51663,'Failed login attempt with username podct','52.138.180.227',1662414175,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(51664,'Failed login attempt with username podct','13.81.59.92',1662415085,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(51665,'Failed login attempt with username podct','172.104.156.149',1662416005,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(51666,'Request for file /wp-admin/maint/wp-links.php which doesn\'t exist','162.212.131.138',1662416915,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/maint/wp-links.php',NULL),(51667,'Failed login attempt with username podct','81.88.52.106',1662416929,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(51668,'Request for file /wordpress/wp-content/plugins/x/vim/hehehe.php which doesn\'t exist','108.167.189.76',1662417410,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wordpress/wp-content/plugins/x/vim/hehehe.php',NULL),(51669,'Failed login attempt with username podct','77.240.13.186',1662417851,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(51670,'Failed login attempt with username podct','147.135.255.8',1662418772,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51671,'Failed login attempt with username podct','103.130.218.189',1662419704,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(51672,'Failed login attempt with username podct','69.163.224.107',1662420632,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(51673,'Failed login attempt with username podct','23.97.205.210',1662421552,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(51674,'Failed login attempt with username podct','51.75.15.189',1662423408,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(51675,'Failed login attempt with username podct','13.78.225.32',1662424345,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(51676,'Failed login attempt with username podct','128.199.14.4',1662425273,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(51677,'Failed login attempt with username podct','69.163.196.200',1662426205,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(51678,'Request for file /wp-content/plugins/wp-wild/img_screen.php which doesn\'t exist','45.124.87.180',1662426217,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-wild/img_screen.php',NULL),(51679,'Request for file /eval.php which doesn\'t exist','193.202.110.17',1662426737,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/eval.php',NULL),(51680,'Request for file /wp-content/plugins/wp-security-enforcements/x112sucuri.php which doesn\'t exist','193.202.110.23',1662426828,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-security-enforcements/x112sucuri.php',NULL),(51681,'Failed login attempt with username podct','121.42.231.47',1662427135,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51682,'Failed login attempt with username podct','85.146.18.88',1662428075,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(51683,'Request for file /andmy.php which doesn\'t exist','78.135.107.79',1662428082,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/andmy.php',NULL),(51684,'Request for file /wp-content/themes/sketch/404.php which doesn\'t exist','106.14.30.59',1662428906,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/sketch/404.php',NULL),(51685,'Request for file /wp-content/themes/sketch/404.php which doesn\'t exist','106.14.30.59',1662428907,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/sketch/404.php',NULL),(51686,'Failed login attempt with username podct','168.119.80.254',1662429022,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(51687,'Request for file /wp-commentin.php which doesn\'t exist','20.169.38.26',1662429638,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wp-commentin.php',NULL),(51688,'Failed login attempt with username podct','68.183.75.82',1662429970,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(51689,'Failed login attempt with username podct','139.59.85.224',1662430910,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(51690,'Request for file /.git/config which doesn\'t exist','3.67.39.56',1662436010,'404_error','python-requests/2.25.1',1,'/.git/config',NULL),(51691,'Request for file /wp-includes/ms-data.php which doesn\'t exist','51.103.45.197',1662438234,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wp-includes/ms-data.php',NULL),(51692,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662439511,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51693,'Request for file /wp-content/plugins/ai-seo-fix/x112sucuri.php which doesn\'t exist','192.185.4.46',1662442141,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/ai-seo-fix/x112sucuri.php',NULL),(51694,'Request for file /varb.php which doesn\'t exist','81.88.49.9',1662445524,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/varb.php',NULL),(51695,'Failed login attempt with username Charcot','185.119.81.108',1662447236,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'Charcot',NULL),(51696,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662447328,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51697,'Request for file /wp-content/uploads/2022/05/.cyz_cmyrq.php which doesn\'t exist','20.92.87.77',1662453458,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'/wp-content/uploads/2022/05/.cyz_cmyrq.php',NULL),(51698,'Request for file /wp-content/uploads/typehub/custom/vodvp/.cyz.php which doesn\'t exist','20.92.87.77',1662453466,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'/wp-content/uploads/typehub/custom/vodvp/.cyz.php',NULL),(51699,'Failed login attempt with username admin','185.119.81.97',1662458413,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36',1,'admin',NULL),(51700,'Failed login attempt with username admin','185.119.81.108',1662461183,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36',1,'admin',NULL),(51701,'Failed login attempt with username treated','185.119.81.97',1662461945,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',1,'treated',NULL),(51702,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662465049,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51703,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662465597,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51704,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662467326,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51705,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662474892,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51706,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1662477016,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51707,'Request for file /wp-add.php?v=WQEHW&c=sqiasg which doesn\'t exist','167.99.118.196',1662477127,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-add.php?v=WQEHW&c=sqiasg',NULL),(51708,'Failed login attempt with username Charcot','185.119.81.108',1662477558,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36',1,'Charcot',NULL),(51709,'Request for file /wp-content/plugins/wpzip/wpzip.php which doesn\'t exist','178.62.58.77',1662479942,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/plugins/wpzip/wpzip.php',NULL),(51710,'Request for file /wp-commentin.php which doesn\'t exist','51.103.45.197',1662480140,'404_error','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)',1,'/wp-commentin.php',NULL),(51711,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662480629,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51712,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662482245,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51713,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662484653,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51714,'Failed login attempt with username podct','46.161.27.153',1662495385,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51715,'Failed login attempt with username podct','46.161.27.155',1662496064,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51716,'Failed login attempt with username podct','46.161.27.156',1662496271,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51717,'Failed login attempt with username podct','46.161.27.155',1662496340,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51718,'Failed login attempt with username podct','147.78.47.233',1662496737,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51719,'Failed login attempt with username podct','46.161.27.153',1662496792,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51720,'Failed login attempt with username podct','147.78.47.233',1662496822,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51721,'Failed login attempt with username podct','46.161.27.155',1662496980,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51722,'Failed login attempt with username podct','46.161.27.153',1662498426,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51723,'Failed login attempt with username podct','46.161.27.156',1662498946,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51724,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662499363,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51725,'Failed login attempt with username podct','46.161.27.156',1662499752,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51726,'Failed login attempt with username podct','147.78.47.233',1662499924,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51727,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662500705,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51728,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662501668,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51729,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1662507317,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51730,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662514001,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51731,'Request for file /assets/images/1.php?u=xxx222xxx which doesn\'t exist','152.89.196.13',1662514167,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/assets/images/1.php?u=xxx222xxx',NULL),(51732,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662521943,'auth_fail','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51733,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662523370,'auth_fail','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51734,'Failed login attempt with username admin','185.119.81.97',1662530225,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36',1,'admin',NULL),(51735,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662530451,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51736,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662530471,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51737,'Request for file /wp-admin/network/trike.php which doesn\'t exist','178.210.165.247',1662530948,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/network/trike.php',NULL),(51738,'Request for file /wp-content/themes/blogood/img_screen.php which doesn\'t exist','103.28.36.108',1662531091,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/blogood/img_screen.php',NULL),(51739,'Request for file /wp-content/plugins/gutenipsum/doc.php which doesn\'t exist','184.168.101.41',1662531097,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/gutenipsum/doc.php',NULL),(51740,'Failed login attempt with username podct','120.25.104.120',1662531789,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(51741,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662532189,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51742,'Request for file /wp-includes/wp-class.php which doesn\'t exist','51.103.45.197',1662532259,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wp-includes/wp-class.php',NULL),(51743,'Request for file /wp-content/plugins/TOPXOH/wDR.php which doesn\'t exist','47.242.237.21',1662532508,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/TOPXOH/wDR.php',NULL),(51744,'Failed login attempt with username podct','209.182.195.110',1662533127,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51745,'Request for file /wp-content/plugins/spam-master/doc.php which doesn\'t exist','104.198.20.109',1662534402,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/spam-master/doc.php',NULL),(51746,'Failed login attempt with username podct','91.249.163.48',1662534446,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(51747,'Request for file /wp-admin/user/wp-links.php which doesn\'t exist','165.232.187.231',1662534459,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/user/wp-links.php',NULL),(51748,'Request for file /wp-content/plugins/zedd/aduh.php which doesn\'t exist','162.215.117.164',1662534807,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/zedd/aduh.php',NULL),(51749,'Failed login attempt with username podct','51.38.192.91',1662535754,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(51750,'Request for file /ALFA_DATA/alfacgiapi/fox.php which doesn\'t exist','152.89.196.13',1662536183,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/ALFA_DATA/alfacgiapi/fox.php',NULL),(51751,'Request for file /wp-content/plugins/x/patior/patior/404.php which doesn\'t exist','123.56.21.243',1662536394,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/x/patior/patior/404.php',NULL),(51752,'Request for file /wp-content/plugins/x/patior/patior/404.php which doesn\'t exist','123.56.21.243',1662536401,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/x/patior/patior/404.php',NULL),(51753,'Failed login attempt with username podct','208.109.54.127',1662537072,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(51754,'Failed login attempt with username podct','133.130.103.36',1662538360,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(51755,'Request for file /wordpress/wp-content/plugins/x/patior/patior/404.php which doesn\'t exist','69.49.241.76',1662538524,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wordpress/wp-content/plugins/x/patior/patior/404.php',NULL),(51756,'Request for file /webconfig.txt.php which doesn\'t exist','152.89.196.13',1662539535,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/webconfig.txt.php',NULL),(51757,'Failed login attempt with username podct','103.149.154.8',1662539624,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(51758,'Request for file /wp-content/themes/choyu/doc.php which doesn\'t exist','209.97.172.236',1662539984,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/choyu/doc.php',NULL),(51759,'Request for file /wp-links.php which doesn\'t exist','108.167.189.22',1662540465,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-links.php',NULL),(51760,'Request for file /cache/cachee.php which doesn\'t exist','152.89.196.13',1662540904,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/cache/cachee.php',NULL),(51761,'Request for file /wp-content/plugins/seoplugins/ which doesn\'t exist','104.248.88.192',1662541356,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/seoplugins/',NULL),(51762,'Request for file /wp-admin/update-core-cron.php?limit=152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662541592,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-admin/update-core-cron.php?limit=152.89.196.13/b.txt',NULL),(51763,'Request for file /wp-admin/comment-stream.php?limit=152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662541596,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/wp-admin/comment-stream.php?limit=152.89.196.13/b.txt',NULL),(51764,'Request for file /wp-content/uploads/.0badb.php which doesn\'t exist','152.89.196.13',1662541603,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-content/uploads/.0badb.php',NULL),(51765,'Request for file /wp-admin/network/site-users-stream.php?limit=152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662541952,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-admin/network/site-users-stream.php?limit=152.89.196.13/b.txt',NULL),(51766,'Request for file /wp-admin/user/credits-wp.php?limit=152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662541952,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-admin/user/credits-wp.php?limit=152.89.196.13/b.txt',NULL),(51767,'Request for file /wp-admin/widgets-cron.php?limit=152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662542041,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-admin/widgets-cron.php?limit=152.89.196.13/b.txt',NULL),(51768,'Failed login attempt with username podct','139.59.82.122',1662542074,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51769,'Request for file /wp-content/plugins/akismet/index.php which doesn\'t exist','152.89.196.13',1662542354,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-content/plugins/akismet/index.php',NULL),(51770,'Request for file /wd.php which doesn\'t exist','152.89.196.13',1662542462,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/wd.php',NULL),(51771,'Request for file /wp-content/plugins/akismet/index.php which doesn\'t exist','152.89.196.13',1662542688,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-content/plugins/akismet/index.php',NULL),(51772,'Failed login attempt with username podct','207.46.234.202',1662543310,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(51773,'Request for file /wp-admin/theme-install-meta.php?limit=152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662543371,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/wp-admin/theme-install-meta.php?limit=152.89.196.13/b.txt',NULL),(51774,'Request for file /lol.php which doesn\'t exist','152.89.196.13',1662543410,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/lol.php',NULL),(51775,'Request for file /tol.php?e=eval($_REQUEST[x]); which doesn\'t exist','152.89.196.13',1662543426,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/tol.php?e=eval($_REQUEST[x]);',NULL),(51776,'Request for file /wp-admin/theme-install-private.php?limit=152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662544040,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-admin/theme-install-private.php?limit=152.89.196.13/b.txt',NULL),(51777,'Request for file /wp-tmp.php which doesn\'t exist','152.89.196.13',1662544128,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/wp-tmp.php',NULL),(51778,'Request for file /inc/install.php which doesn\'t exist','152.89.196.13',1662544520,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/inc/install.php',NULL),(51779,'Failed login attempt with username podct','64.225.65.31',1662544560,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51780,'Request for file /demo/lol.php which doesn\'t exist','152.89.196.13',1662544932,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/demo/lol.php',NULL),(51781,'Request for file /wp-admin/network/wp-links.php which doesn\'t exist','161.35.79.185',1662544932,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/network/wp-links.php',NULL),(51782,'Failed login attempt with username podct','167.172.153.166',1662545966,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(51783,'Request for file /wp-content/themes/choyu/img_screen.php which doesn\'t exist','103.143.206.78',1662546298,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/choyu/img_screen.php',NULL),(51784,'Request for file /wp-content/themes/choyu/img_screen.php which doesn\'t exist','103.143.206.78',1662546298,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/choyu/img_screen.php',NULL),(51785,'Failed login attempt with username podct','45.55.44.23',1662547110,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(51786,'Request for file /wp-content/plugins/random/mod.php which doesn\'t exist','91.134.248.192',1662547221,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/random/mod.php',NULL),(51787,'Failed login attempt with username podct','147.78.47.233',1662547670,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51788,'Failed login attempt with username podct','91.249.163.48',1662548383,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(51789,'Failed login attempt with username podct','64.90.36.102',1662549648,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(51790,'Failed login attempt with username podct','109.168.97.89',1662550915,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(51791,'Failed login attempt with username podct','46.101.150.34',1662552199,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(51792,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1662552349,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51793,'Failed login attempt with username podct','137.184.117.52',1662553492,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51794,'Failed login attempt with username treated','185.119.81.97',1662553638,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'treated',NULL),(51795,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1662553706,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51796,'Failed login attempt with username podct','47.110.72.238',1662554764,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(51797,'Failed login attempt with username podct','159.89.109.117',1662556059,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(51798,'Failed login attempt with username admin','185.119.81.108',1662557126,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'admin',NULL),(51799,'Failed login attempt with username podct','138.68.84.97',1662557348,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(51800,'Failed login attempt with username podct','128.199.14.4',1662558647,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51801,'Failed login attempt with username podct','51.75.15.189',1662559959,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(51802,'Failed login attempt with username podct','192.71.144.12',1662561258,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(51803,'Request for file /wp-content/plugins/akismeet/about.php which doesn\'t exist','51.79.70.225',1662561571,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/akismeet/about.php',NULL),(51804,'Failed login attempt with username podct','46.161.27.156',1662562417,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51805,'Request for file /header.php which doesn\'t exist','141.94.87.67',1662562550,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/header.php',NULL),(51806,'Failed login attempt with username podct','185.2.4.134',1662562558,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(51807,'Failed login attempt with username podct','150.109.148.216',1662563868,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(51808,'Failed login attempt with username podct','147.78.47.233',1662565036,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51809,'Failed login attempt with username podct','188.166.236.35',1662565184,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(51810,'Request for file /wp-content/plugins/akismat/wjsindex.php which doesn\'t exist','188.40.126.140',1662566078,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/akismat/wjsindex.php',NULL),(51811,'Request for file /apple-touch-icon-120x120-precomposed.png which doesn\'t exist','197.229.2.96',1662566131,'404_error','MobileSafari/8613.3.9.0.16 CFNetwork/1335.0.3 Darwin/21.6.0',1,'/apple-touch-icon-120x120-precomposed.png',NULL),(51812,'Request for file /apple-touch-icon-120x120.png which doesn\'t exist','197.229.2.96',1662566132,'404_error','MobileSafari/8613.3.9.0.16 CFNetwork/1335.0.3 Darwin/21.6.0',1,'/apple-touch-icon-120x120.png',NULL),(51813,'Failed login attempt with username podct','188.165.198.224',1662566487,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(51814,'Request for file /blok.php which doesn\'t exist','43.242.128.33',1662567291,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/blok.php',NULL),(51815,'Request for file /blok.php which doesn\'t exist','43.242.128.33',1662567291,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/blok.php',NULL),(51816,'Failed login attempt with username podct','46.161.27.156',1662567976,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51817,'Failed login attempt with username admin','185.119.81.97',1662567984,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36',1,'admin',NULL),(51818,'Request for file /wp-includes/block-supports/ccx/ which doesn\'t exist','5.196.26.210',1662568219,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/block-supports/ccx/',NULL),(51819,'Request for file /cpanel which doesn\'t exist','20.246.89.31',1662569149,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',1,'/cpanel',NULL),(51820,'Failed login attempt with username andyblecherpodiatrist','185.119.81.97',1662569159,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51821,'Failed login attempt with username podct','147.78.47.233',1662570880,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51822,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662571916,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51823,'Failed login attempt with username podct','46.161.27.156',1662573940,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51824,'Request for file /wordpress/991176.php which doesn\'t exist','38.242.217.26',1662575277,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wordpress/991176.php',NULL),(51825,'Failed login attempt with username podct','46.161.27.153',1662576967,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51826,'Request for file /wp-includes/ID3/LV.php which doesn\'t exist','154.53.48.175',1662577932,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/ID3/LV.php',NULL),(51827,'Request for file /ups.php which doesn\'t exist','182.162.90.116',1662578324,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/ups.php',NULL),(51828,'Failed login attempt with username podct','147.78.47.233',1662579843,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51829,'Request for file /wp-content/plugins/cache-wordpress/payment.php which doesn\'t exist','47.242.237.21',1662582492,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/cache-wordpress/payment.php',NULL),(51830,'Request for file /wp-content/plugins/cache-wordpress/payment.php which doesn\'t exist','47.242.237.21',1662582497,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/cache-wordpress/payment.php',NULL),(51831,'Failed login attempt with username podct','46.161.27.156',1662582952,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51832,'Request for file /wpecho.php which doesn\'t exist','51.254.215.154',1662583758,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36',1,'/wpecho.php',NULL),(51833,'Request for file /wp-temp-ali.php which doesn\'t exist','51.254.215.154',1662583823,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36',1,'/wp-temp-ali.php',NULL),(51834,'Request for file /wp-content/uploads/wp-temp-ali.php which doesn\'t exist','51.254.215.154',1662583837,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36',1,'/wp-content/uploads/wp-temp-ali.php',NULL),(51835,'Request for file /wp-admin/css/colors/blue/red.php which doesn\'t exist','51.254.215.154',1662583859,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36',1,'/wp-admin/css/colors/blue/red.php',NULL),(51836,'Failed login attempt with username podct','46.161.27.155',1662586041,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51837,'Request for file /wp-content/plugins/BrutalShell/sym403.php which doesn\'t exist','178.254.0.82',1662586301,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/sym403.php',NULL),(51838,'Request for file /wp-includes/SimplePie/ccx/ which doesn\'t exist','178.60.58.81',1662586684,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/SimplePie/ccx/',NULL),(51839,'Request for file /wp-includes/SimplePie/ccx/ which doesn\'t exist','178.60.58.81',1662586688,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/SimplePie/ccx/',NULL),(51840,'Request for file /wp-sid.php which doesn\'t exist','167.99.181.1',1662587267,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-sid.php',NULL),(51841,'Request for file /wp-sid.php which doesn\'t exist','167.99.181.1',1662587267,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-sid.php',NULL),(51842,'Failed login attempt with username podct','147.78.47.233',1662589119,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51843,'Request for file /wp-content/plugins/akismat/bh.php which doesn\'t exist','178.60.58.81',1662589195,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/akismat/bh.php',NULL),(51844,'Request for file /wp-includes/fonts/font.php which doesn\'t exist','195.201.195.185',1662590784,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/fonts/font.php',NULL),(51845,'Request for file /wp-content/uploads/uploads.php which doesn\'t exist','195.201.195.185',1662590785,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/uploads.php',NULL),(51846,'Request for file /wp-config.php~ which doesn\'t exist','195.201.195.185',1662590790,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-config.php~',NULL),(51847,'Request for file /wp-config.php.old which doesn\'t exist','195.201.195.185',1662590792,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-config.php.old',NULL),(51848,'Request for file /wp-includes/IXR/ccx/ which doesn\'t exist','176.9.89.109',1662590935,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/IXR/ccx/',NULL),(51849,'Failed login attempt with username podct','147.78.47.233',1662592192,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51850,'Request for file /wp-includes/certificates/ccx/ which doesn\'t exist','93.188.2.5',1662592445,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/certificates/ccx/',NULL),(51851,'Request for file /wp-content/plugins/zedd/fex.php which doesn\'t exist','51.79.17.76',1662593078,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/zedd/fex.php',NULL),(51852,'Failed login attempt with username podct','147.78.47.233',1662595355,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51853,'Request for file /ads.txt which doesn\'t exist','93.158.91.249',1662596350,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71',1,'/ads.txt',NULL),(51854,'Request for file /humans.txt which doesn\'t exist','93.158.91.235',1662596350,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71',1,'/humans.txt',NULL),(51855,'Request for file /wwdv.php which doesn\'t exist','141.94.87.67',1662597600,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wwdv.php',NULL),(51856,'Failed login attempt with username podct','147.78.47.233',1662598361,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51857,'Request for file /wp-content/plugins/BrutalShell/xor.php which doesn\'t exist','167.99.181.1',1662600550,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/xor.php',NULL),(51858,'Request for file /wp-content/plugins/cong.php which doesn\'t exist','178.60.58.81',1662601106,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/cong.php',NULL),(51859,'Failed login attempt with username podct','46.161.27.153',1662601237,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51860,'Request for file /old/wp-content/vd454/mini001/ which doesn\'t exist','8.210.68.127',1662603161,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/old/wp-content/vd454/mini001/',NULL),(51861,'Request for file /glay.php which doesn\'t exist','156.67.216.171',1662603535,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/glay.php',NULL),(51862,'Request for file /glay.php which doesn\'t exist','156.67.216.171',1662603537,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/glay.php',NULL),(51863,'Failed login attempt with username podct','46.161.27.153',1662604085,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51864,'Request for file /wp-content/themes/enron/doc.php which doesn\'t exist','108.167.189.32',1662604194,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/enron/doc.php',NULL),(51865,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1662606397,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51866,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.97',1662607802,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(51867,'Failed login attempt with username podct','46.161.27.155',1662609835,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51868,'Failed login attempt with username podct','46.161.27.155',1662612594,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51869,'Request for file /wp-admin/wp-admin.php which doesn\'t exist','152.89.196.13',1662612782,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-admin/wp-admin.php',NULL),(51870,'Request for file /includes.php which doesn\'t exist','152.89.196.13',1662613794,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/includes.php',NULL),(51871,'Request for file /wp-content/plugins/akismat/afox.php which doesn\'t exist','162.241.62.127',1662613864,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/akismat/afox.php',NULL),(51872,'Request for file /wp-content/plugins/login_wall_evv/comments.php which doesn\'t exist','152.89.196.13',1662613997,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-content/plugins/login_wall_evv/comments.php',NULL),(51873,'Request for file /wp-admin/67930613.php which doesn\'t exist','152.89.196.13',1662614559,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-admin/67930613.php',NULL),(51874,'Request for file /wp-content/plugins/Login-wall-INmrj/temp.php which doesn\'t exist','152.89.196.13',1662614807,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-content/plugins/Login-wall-INmrj/temp.php',NULL),(51875,'Failed login attempt with username podct','46.161.27.156',1662615541,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51876,'Request for file /wp-content/uploads/wp-require.php which doesn\'t exist','152.89.196.13',1662615947,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-content/uploads/wp-require.php',NULL),(51877,'Request for file /wp-content/plugins/factory-widgets-bundle/widgets/widgets.php which doesn\'t exist','152.89.196.13',1662615950,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/wp-content/plugins/factory-widgets-bundle/widgets/widgets.php',NULL),(51878,'Request for file /wp-includes/random_compat/ccx/ which doesn\'t exist','38.242.217.26',1662616575,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/random_compat/ccx/',NULL),(51879,'Request for file /wp-includes/wp-includes.php which doesn\'t exist','152.89.196.13',1662617567,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/wp-includes/wp-includes.php',NULL),(51880,'Failed login attempt with username podct','147.78.47.233',1662618454,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51881,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662619832,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51882,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662620166,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51883,'Request for file /ccx/ which doesn\'t exist','208.109.76.101',1662620298,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/ccx/',NULL),(51884,'Failed login attempt with username podct','46.161.27.155',1662621716,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51885,'Request for file /wp-content/themes/pinboard/kon.php which doesn\'t exist','152.89.196.13',1662622045,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-content/themes/pinboard/kon.php',NULL),(51886,'Failed login attempt with username condition','185.119.81.96',1662622127,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',1,'condition',NULL),(51887,'Request for file /uun.php which doesn\'t exist','152.89.196.13',1662622929,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/uun.php',NULL),(51888,'Request for file /wp-content/themes/pridmag/rex.php which doesn\'t exist','141.94.87.67',1662623311,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/pridmag/rex.php',NULL),(51889,'Request for file /wp-content/themes/pridmag/rex.php which doesn\'t exist','141.94.87.67',1662623314,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/pridmag/rex.php',NULL),(51890,'Request for file /maill.php which doesn\'t exist','152.89.196.13',1662623721,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/maill.php',NULL),(51891,'Request for file /old/991176.php which doesn\'t exist','68.183.53.120',1662623993,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/old/991176.php',NULL),(51892,'Request for file /images/robots.txt.php which doesn\'t exist','152.89.196.13',1662624188,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/images/robots.txt.php',NULL),(51893,'Request for file /doc/doctrees/pdo.inc.php which doesn\'t exist','152.89.196.13',1662624195,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/doc/doctrees/pdo.inc.php',NULL),(51894,'Failed login attempt with username podct','46.161.27.153',1662624735,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51895,'Request for file /wp-content/plugins/db/service.php which doesn\'t exist','43.252.212.214',1662625054,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/db/service.php',NULL),(51896,'Failed login attempt with username podct','46.161.27.153',1662627873,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51897,'Request for file /wp-content/plugins/wp-freeform/0z.php which doesn\'t exist','82.165.88.225',1662629200,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-freeform/0z.php',NULL),(51898,'Request for file /wp-admin/by.php which doesn\'t exist','193.202.110.30',1662630084,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/by.php',NULL),(51899,'Request for file /wp-content/plugins/akismat/afox.php which doesn\'t exist','162.214.80.100',1662630637,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/akismat/afox.php',NULL),(51900,'Request for file /wp-content/plugins/akismat/afox.php which doesn\'t exist','162.214.80.100',1662630638,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/akismat/afox.php',NULL),(51901,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662632136,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51902,'Request for file /wp-content/plugins/BrutalShell/bypass403.php which doesn\'t exist','5.196.26.210',1662632508,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/bypass403.php',NULL),(51903,'Request for file /wp-includes/fonts/font.php which doesn\'t exist','46.253.243.143',1662632960,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/fonts/font.php',NULL),(51904,'Request for file /wp-content/uploads/uploads.php which doesn\'t exist','46.253.243.143',1662632961,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/uploads.php',NULL),(51905,'Request for file /wp-config.php~ which doesn\'t exist','46.253.243.143',1662632966,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-config.php~',NULL),(51906,'Request for file /wp-config.php.old which doesn\'t exist','46.253.243.143',1662632969,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-config.php.old',NULL),(51907,'Failed login attempt with username podct','147.78.47.233',1662633922,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51908,'Request for file /wp-admin/user/ccx/ which doesn\'t exist','185.104.44.133',1662634608,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/user/ccx/',NULL),(51909,'Request for file /wp-content/plugins/wp-freeform/wawe.php.suspected which doesn\'t exist','193.202.110.17',1662635014,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/wp-freeform/wawe.php.suspected',NULL),(51910,'Request for file /vah.php which doesn\'t exist','108.167.189.32',1662635928,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/vah.php',NULL),(51911,'Request for file /vah.php which doesn\'t exist','108.167.189.32',1662635978,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/vah.php',NULL),(51912,'Request for file /vah.php which doesn\'t exist','108.167.189.32',1662635984,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/vah.php',NULL),(51913,'Failed login attempt with username podct','46.161.27.156',1662636960,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51914,'Failed login attempt with username podct','46.161.27.155',1662639982,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51915,'Request for file /wp-includes/fonts/ccx/ which doesn\'t exist','3.141.70.212',1662641539,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/fonts/ccx/',NULL),(51916,'Request for file /wp-includes/fonts/ccx/ which doesn\'t exist','3.141.70.212',1662641549,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/fonts/ccx/',NULL),(51917,'Failed login attempt with username wadminw','167.99.78.164',1662643323,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(51918,'Failed login attempt with username wwwadmin','125.227.29.249',1662644362,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(51919,'Failed login attempt with username podct','46.161.27.155',1662644994,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51920,'Request for file /wp-config.original which doesn\'t exist','134.249.214.107',1662645139,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.original',NULL),(51921,'Request for file /wp-config.php.original which doesn\'t exist','134.249.214.107',1662645142,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.php.original',NULL),(51922,'Request for file /wp-config.txt which doesn\'t exist','134.249.214.107',1662645145,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-config.txt',NULL),(51923,'Request for file /wp-content/plugins/mac-photo-gallery/macdownload.php?albid=../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645148,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/mac-photo-gallery/macdownload.php?albid=../../../wp-config.php',NULL),(51924,'Request for file /wp-content/plugins/dm-albums/template/album.php?SECURITY_FILE=../../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645150,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/dm-albums/template/album.php?SECURITY_FILE=../../../../wp-config.php',NULL),(51925,'Request for file /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645152,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php',NULL),(51926,'Request for file /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=../../../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645156,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=../../../../../wp-config.php',NULL),(51927,'Request for file /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645159,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php',NULL),(51928,'Request for file /wp-content/plugins/filedownload/download.php/?path=../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645161,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/filedownload/download.php/?path=../../../wp-config.php',NULL),(51929,'Request for file /wp-content/plugins/filedownload/download.php?path=../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645164,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/filedownload/download.php?path=../../../wp-config.php',NULL),(51930,'Request for file /wp-content/plugins/font/AjaxProxy.php?url=../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645165,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/font/AjaxProxy.php?url=../../../wp-config.php',NULL),(51931,'Request for file /wp-content/plugins/google-mp3-audio-player/direct_download.php?file=../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645168,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/google-mp3-audio-player/direct_download.php?file=../../../wp-config.php',NULL),(51932,'Request for file /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645171,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../wp-config.php',NULL),(51933,'Request for file /wp-content/plugins/gwolle-gb/frontend/captcha/ajaxresponse.php?abspath=../../../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645173,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/gwolle-gb/frontend/captcha/ajaxresponse.php?abspath=../../../../../wp-config.php',NULL),(51934,'Request for file /wp-content/plugins/hb-audio-gallery-lite/gallery/audio-download.php?file_path=../../../../wp-config.php which doesn\'t exist','134.249.214.107',1662645174,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',1,'/wp-content/plugins/hb-audio-gallery-lite/gallery/audio-download.php?file_path=../../../../wp-config.php',NULL),(51935,'Request for file /wp-content/tf_cache_config/ccx/ which doesn\'t exist','108.167.189.65',1662646901,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/tf_cache_config/ccx/',NULL),(51936,'Request for file /wp-includes/widgets/ccx/ which doesn\'t exist','108.167.133.21',1662647815,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/widgets/ccx/',NULL),(51937,'Request for file /wp-includes/widgets/ccx/ which doesn\'t exist','108.167.133.21',1662647820,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/widgets/ccx/',NULL),(51938,'Failed login attempt with username podct','46.161.27.153',1662648151,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51939,'Request for file /cgi-bin/991176.php which doesn\'t exist','116.202.117.116',1662648476,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/cgi-bin/991176.php',NULL),(51940,'Request for file /wp-includes/block-patterns/ccx/ which doesn\'t exist','178.254.0.82',1662649093,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/block-patterns/ccx/',NULL),(51941,'Request for file /wp-admin/auto_seo.php?ARRAY[0]=123 which doesn\'t exist','128.199.179.16',1662649421,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37',1,'/wp-admin/auto_seo.php?ARRAY[0]=123',NULL),(51942,'Failed login attempt with username podct','69.163.152.12',1662649492,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(51943,'Request for file /wp-content/auto_seo.php?ARRAY[0]=123 which doesn\'t exist','128.199.179.16',1662649496,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37',1,'/wp-content/auto_seo.php?ARRAY[0]=123',NULL),(51944,'Request for file /auto_seo.php?ARRAY[0]=123 which doesn\'t exist','128.199.179.16',1662649503,'404_error','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37',1,'/auto_seo.php?ARRAY[0]=123',NULL),(51945,'Failed login attempt with username podct','167.172.168.111',1662650757,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(51946,'Failed login attempt with username podct','46.161.27.153',1662651290,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51947,'Failed login attempt with username podct','165.22.109.42',1662652021,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(51948,'Request for file /wp-includes/Requests/mxnzjdi.php which doesn\'t exist','93.157.100.49',1662652370,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/Requests/mxnzjdi.php',NULL),(51949,'Failed login attempt with username podct','159.65.200.228',1662653282,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(51950,'Failed login attempt with username podct','46.161.27.153',1662654422,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51951,'Failed login attempt with username podct','93.114.185.76',1662654526,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(51952,'Request for file /wp-includes/Text/ccx/ which doesn\'t exist','193.202.110.17',1662655489,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/Text/ccx/',NULL),(51953,'Failed login attempt with username podct','185.2.4.134',1662655771,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(51954,'Request for file /wp-content/themes/wordpress-theme-security/wwdv.php which doesn\'t exist','68.183.53.120',1662656903,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/wordpress-theme-security/wwdv.php',NULL),(51955,'Failed login attempt with username podct','46.161.27.156',1662657537,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51956,'Failed login attempt with username podct','85.91.237.106',1662658236,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(51957,'Request for file /wp-admin/js/user.php which doesn\'t exist','141.94.87.67',1662658520,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/js/user.php',NULL),(51958,'Request for file /wp-content/plugins/BrutalShell/uwes.php which doesn\'t exist','108.167.189.29',1662658969,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/uwes.php',NULL),(51959,'Failed login attempt with username podct','198.244.167.101',1662659437,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(51960,'Failed login attempt with username admin','185.119.81.96',1662659655,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36',1,'admin',NULL),(51961,'Failed login attempt with username podct','69.163.152.108',1662660627,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(51962,'Failed login attempt with username podct','46.161.27.155',1662660634,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51963,'Failed login attempt with username podct','106.52.120.186',1662661795,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(51964,'Request for file /wp-content/plugins/BrutalShell/uwes.php which doesn\'t exist','85.10.156.14',1662662060,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/uwes.php',NULL),(51965,'Failed login attempt with username podct','166.62.125.246',1662662960,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(51966,'Request for file /wp-includes/pomo/ccx/ which doesn\'t exist','160.153.153.19',1662663986,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/pomo/ccx/',NULL),(51967,'Request for file /wp-includes/pomo/ccx/ which doesn\'t exist','160.153.153.19',1662663987,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/pomo/ccx/',NULL),(51968,'Request for file /wp-content/plugins/BrutalShell/wp-read.php which doesn\'t exist','107.189.2.3',1662664237,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/wp-read.php',NULL),(51969,'Failed login attempt with username podct','148.72.207.163',1662665285,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(51970,'Request for file /wp-content/plugins/BrutalShell/mar.php which doesn\'t exist','162.144.3.171',1662666060,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/mar.php',NULL),(51971,'Request for file /wp-content/themes/seotheme/0z.php which doesn\'t exist','193.202.110.30',1662666667,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/seotheme/0z.php',NULL),(51972,'Failed login attempt with username admin','185.119.81.96',1662666921,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'admin',NULL),(51973,'Failed login attempt with username podct','46.161.27.153',1662666947,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51974,'Request for file /wp-content/themes/twentyfifteen/404.php which doesn\'t exist','193.202.110.24',1662667276,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/twentyfifteen/404.php',NULL),(51975,'Failed login attempt with username podct','192.99.201.91',1662667634,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(51976,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1662667678,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(51977,'Failed login attempt with username podct','106.15.38.206',1662668855,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(51978,'Failed login attempt with username podct','51.195.148.190',1662670052,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(51979,'Failed login attempt with username podct','46.161.27.156',1662670085,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51980,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662671247,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36',1,'andyblecherpodiatrist',NULL),(51981,'Failed login attempt with username podct','138.68.140.0',1662671264,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(51982,'Failed login attempt with username podct','91.249.163.48',1662672478,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(51983,'Request for file /wp-content/themes/blogood/doc.php which doesn\'t exist','93.157.100.49',1662672604,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/blogood/doc.php',NULL),(51984,'Failed login attempt with username podct','46.161.27.153',1662673367,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51985,'Request for file /wp-includes/PHPMailer/ccx/ which doesn\'t exist','139.59.98.113',1662673906,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/PHPMailer/ccx/',NULL),(51986,'Failed login attempt with username podct','121.243.95.160',1662674941,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(51987,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1662675224,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'andyblecherpodiatrist@gmail.com',NULL),(51988,'Request for file /wp-includes/customize/ccx/ which doesn\'t exist','198.71.236.1',1662675450,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/customize/ccx/',NULL),(51989,'Failed login attempt with username podct','120.78.15.126',1662676167,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(51990,'Failed login attempt with username podct','46.161.27.155',1662676587,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51991,'Failed login attempt with username podct','147.135.255.8',1662677388,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(51992,'Request for file /wordpress/wp-admin/install.php?step=1 which doesn\'t exist','50.63.167.184',1662677762,'404_error','python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-042stab134.3',1,'/wordpress/wp-admin/install.php?step=1',NULL),(51993,'Failed login attempt with username podct','66.33.193.231',1662678618,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(51994,'Failed login attempt with username podct','148.72.207.163',1662679844,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(51995,'Failed login attempt with username podct','46.161.27.156',1662679943,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(51996,'Request for file /wp-includes/fonts/font.php which doesn\'t exist','62.171.137.109',1662680309,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/fonts/font.php',NULL),(51997,'Request for file /wp-content/uploads/uploads.php which doesn\'t exist','62.171.137.109',1662680310,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/uploads.php',NULL),(51998,'Request for file /wp-config.php~ which doesn\'t exist','62.171.137.109',1662680315,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-config.php~',NULL),(51999,'Request for file /wp-config.php.old which doesn\'t exist','62.171.137.109',1662680318,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-config.php.old',NULL),(52000,'Failed login attempt with username podct','77.65.213.168',1662681058,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52001,'Request for file /wp-includes/css/ccx/ which doesn\'t exist','193.202.110.17',1662681232,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/css/ccx/',NULL),(52002,'Request for file /wp-content/plugins/BrutalShell/bypass.php which doesn\'t exist','193.202.110.30',1662682069,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/BrutalShell/bypass.php',NULL),(52003,'Failed login attempt with username podct','208.113.171.103',1662682304,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(52004,'Request for file /wp-includes/css/ccx/ which doesn\'t exist','69.16.200.246',1662682546,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/css/ccx/',NULL),(52005,'Request for file /wordpress/wp-content/plugins/vd454/mini001/ which doesn\'t exist','82.102.13.91',1662682860,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wordpress/wp-content/plugins/vd454/mini001/',NULL),(52006,'Failed login attempt with username podct','46.161.27.153',1662683259,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52007,'Failed login attempt with username podct','23.99.229.218',1662683551,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52008,'Request for file /wp-content/themes/astra/inc/builder/type/header/header.php which doesn\'t exist','152.89.196.13',1662683842,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-content/themes/astra/inc/builder/type/header/header.php',NULL),(52009,'Request for file /wp-content/db-cache.php which doesn\'t exist','152.89.196.13',1662684620,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/wp-content/db-cache.php',NULL),(52010,'Request for file /wp-content/db-cache.php which doesn\'t exist','152.89.196.13',1662684621,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0',1,'/wp-content/db-cache.php',NULL),(52011,'Failed login attempt with username podct','146.56.99.136',1662684802,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(52012,'Request for file /n46dgry5.php which doesn\'t exist','62.182.80.243',1662684870,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/n46dgry5.php',NULL),(52013,'Request for file /wp-includes/js/ccx/ which doesn\'t exist','104.248.88.192',1662685651,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/js/ccx/',NULL),(52014,'Failed login attempt with username podct','167.172.105.95',1662686045,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(52015,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662686219,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52016,'Failed login attempt with username podct','46.161.27.156',1662686721,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52017,'Failed login attempt with username podct','185.2.5.77',1662687288,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52018,'Request for file /wp-includes/js/tinymce/tinymce.php which doesn\'t exist','152.89.196.13',1662688307,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-includes/js/tinymce/tinymce.php',NULL),(52019,'Failed login attempt with username podct','47.114.72.18',1662688564,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52020,'Request for file /upload/upload.php which doesn\'t exist','152.89.196.13',1662688839,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/upload/upload.php',NULL),(52021,'Request for file /alumni/alumni.php which doesn\'t exist','152.89.196.13',1662689147,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/alumni/alumni.php',NULL),(52022,'Failed login attempt with username condition','185.119.81.96',1662689223,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36',1,'condition',NULL),(52023,'Request for file /wp-includes/css/ccx/ which doesn\'t exist','141.94.75.208',1662689470,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/css/ccx/',NULL),(52024,'Failed login attempt with username podct','188.166.61.228',1662689827,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'podct',NULL),(52025,'Failed login attempt with username podct','46.161.27.156',1662690182,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52026,'Request for file /wp-content/themes/busify/bindex.php?url=http://152.89.196.13/b.txt which doesn\'t exist','152.89.196.13',1662690383,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-content/themes/busify/bindex.php?url=http://152.89.196.13/b.txt',NULL),(52027,'Failed login attempt with username podct','47.105.73.13',1662691083,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(52028,'Request for file /wp-content/plugins/so-widgets-bundle/widgets/widgets.php which doesn\'t exist','152.89.196.13',1662692108,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/wp-content/plugins/so-widgets-bundle/widgets/widgets.php',NULL),(52029,'Request for file /fox-index.php which doesn\'t exist','207.180.213.185',1662692205,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/fox-index.php',NULL),(52030,'Request for file /wp-content/themes/aasta/img_screen.php which doesn\'t exist','178.60.58.81',1662692247,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/aasta/img_screen.php',NULL),(52031,'Request for file /wp-content/themes/aasta/img_screen.php which doesn\'t exist','178.60.58.81',1662692250,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/aasta/img_screen.php',NULL),(52032,'Failed login attempt with username podct','141.94.247.170',1662692328,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(52033,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1662692612,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52034,'Request for file /wp-includes/sodium_compat/src/src.php which doesn\'t exist','152.89.196.13',1662692936,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-includes/sodium_compat/src/src.php',NULL),(52035,'Failed login attempt with username podct','46.161.27.153',1662693506,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52036,'Failed login attempt with username podct','207.154.248.39',1662693566,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52037,'Failed login attempt with username podct','34.75.65.218',1662694797,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52038,'Request for file /wp-content/plugins/seoplugins/mar.php which doesn\'t exist','67.227.144.242',1662695825,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/seoplugins/mar.php',NULL),(52039,'Failed login attempt with username podct','47.115.24.165',1662696030,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(52040,'Failed login attempt with username podct','46.161.27.155',1662696719,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52041,'Request for file /wp-includes/Requests/Requests.php which doesn\'t exist','152.89.196.13',1662696795,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-includes/Requests/Requests.php',NULL),(52042,'Failed login attempt with username podct','159.203.121.12',1662697244,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(52043,'Request for file /wp-includes/css/ccx/ which doesn\'t exist','193.202.110.30',1662697560,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/css/ccx/',NULL),(52044,'Request for file /old/wp-content/vd454/991176.php which doesn\'t exist','68.178.224.109',1662698197,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/old/wp-content/vd454/991176.php',NULL),(52045,'Request for file /old/wp-content/vd454/991176.php which doesn\'t exist','68.178.224.109',1662698200,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/old/wp-content/vd454/991176.php',NULL),(52046,'Failed login attempt with username podct','192.99.201.91',1662699621,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52047,'Failed login attempt with username podct','46.161.27.153',1662699940,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52048,'Failed login attempt with username podct','138.68.84.97',1662701946,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(52049,'Failed login attempt with username podct','46.161.27.156',1662703074,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52050,'Failed login attempt with username podct','167.172.168.111',1662703102,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52051,'Failed login attempt with username podct','185.2.4.33',1662705521,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52052,'Request for file /wp-content/themes/classic/inc/index.php which doesn\'t exist','152.89.196.13',1662705740,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-content/themes/classic/inc/index.php',NULL),(52053,'Failed login attempt with username podct','46.161.27.155',1662706202,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52054,'Failed login attempt with username admin','173.212.212.180',1662706949,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'admin',NULL),(52055,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662707184,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52056,'Failed login attempt with username admin','172.104.156.149',1662708157,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'admin',NULL),(52057,'Failed login attempt with username admin','207.154.250.8',1662709370,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'admin',NULL),(52058,'Failed login attempt with username podct','46.161.27.155',1662709429,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52059,'Failed login attempt with username admin','165.22.109.42',1662710593,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(52060,'Failed login attempt with username admin','46.63.80.162',1662711817,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'admin',NULL),(52061,'Failed login attempt with username podct','46.161.27.153',1662712617,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0',1,'podct',NULL),(52062,'Failed login attempt with username admin','47.107.242.103',1662713037,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'admin',NULL),(52063,'Failed login attempt with username podct','185.2.4.33',1662715485,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(52064,'Failed login attempt with username podct','208.113.180.18',1662716711,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52065,'Failed login attempt with username podct','51.38.192.91',1662717942,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(52066,'Failed login attempt with username podct','185.2.4.33',1662719171,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(52067,'Failed login attempt with username podct','82.166.39.15',1662720401,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(52068,'Failed login attempt with username admin','81.88.52.221',1662721639,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'admin',NULL),(52069,'Failed login attempt with username admin','165.22.109.42',1662722874,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'admin',NULL),(52070,'Failed login attempt with username podct','35.244.96.107',1662723033,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'podct',NULL),(52071,'Failed login attempt with username podct','35.244.96.107',1662723034,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'podct',NULL),(52072,'Failed login attempt with username podct','35.244.96.107',1662723037,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'podct',NULL),(52073,'Failed login attempt with username podct','35.244.96.107',1662723039,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'podct',NULL),(52074,'Failed login attempt with username podct','35.244.96.107',1662723041,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'podct',NULL),(52075,'Lockout occurred: Too many failed login attempts','35.244.96.107',1662723043,'auth_lock','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'podct',NULL),(52076,'Failed login attempt with username admin','67.205.39.9',1662724112,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'admin',NULL),(52077,'Failed login attempt with username admin','209.97.162.248',1662725359,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'admin',NULL),(52078,'Failed login attempt with username admin','167.172.168.111',1662726619,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'admin',NULL),(52079,'Failed login attempt with username admin','67.205.62.27',1662727881,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'admin',NULL),(52080,'Failed login attempt with username admin','34.65.234.0',1662729139,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'admin',NULL),(52081,'Failed login attempt with username admin','64.227.183.25',1662730383,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'admin',NULL),(52082,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.85',1662730788,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(52083,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.83',1662730789,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(52084,'Failed login attempt with username admin','202.21.38.119',1662731627,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'admin',NULL),(52085,'Failed login attempt with username podct','46.63.80.162',1662732892,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(52086,'Failed login attempt with username podct','188.165.198.224',1662734162,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(52087,'Failed login attempt with username podct','167.71.117.225',1662735440,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(52088,'Failed login attempt with username podct','61.219.43.253',1662736717,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(52089,'Failed login attempt with username podct','103.130.219.13',1662737989,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52090,'Request for file /new-index.php which doesn\'t exist','77.68.35.221',1662738275,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/new-index.php',NULL),(52091,'Request for file /1index.php which doesn\'t exist','77.68.35.221',1662738278,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/1index.php',NULL),(52092,'Request for file /2index.php which doesn\'t exist','77.68.35.221',1662738279,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/2index.php',NULL),(52093,'Request for file /sindex.php which doesn\'t exist','77.68.35.221',1662738279,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/sindex.php',NULL),(52094,'Request for file /old-index.php which doesn\'t exist','77.68.35.221',1662738281,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/old-index.php',NULL),(52095,'Request for file /baindex.php which doesn\'t exist','77.68.35.221',1662738283,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/baindex.php',NULL),(52096,'Request for file /wikindex.php which doesn\'t exist','77.68.35.221',1662738285,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',1,'/wikindex.php',NULL),(52097,'Failed login attempt with username podct','181.174.125.214',1662739257,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(52098,'Failed login attempt with username podct','103.166.183.192',1662740524,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(52099,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662741369,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52100,'Failed login attempt with username podct','85.191.40.94',1662741796,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(52101,'Failed login attempt with username podct','139.59.118.238',1662743064,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(52102,'Failed login attempt with username podct','208.109.54.127',1662744342,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52103,'Request for file /.env which doesn\'t exist','20.228.205.116',1662745362,'404_error','Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30',1,'/.env',NULL),(52104,'Failed login attempt with username podct','159.203.68.240',1662745604,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52105,'Failed login attempt with username podct','67.205.39.9',1662746865,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(52106,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662747903,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52107,'Failed login attempt with username podct','159.203.143.36',1662748130,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52108,'Failed login attempt with username podct','94.231.86.20',1662749817,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52109,'Failed login attempt with username podct','185.2.4.134',1662751198,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(52110,'Failed login attempt with username podct','207.154.248.39',1662752583,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(52111,'Failed login attempt with username podct','148.72.214.245',1662753964,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52112,'Request for file /.aws/credentials.php which doesn\'t exist','88.214.43.118',1662754978,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.aws/credentials.php',NULL),(52113,'Request for file /.aws/credentials.php which doesn\'t exist','88.214.43.118',1662754978,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.aws/credentials.php',NULL),(52114,'Failed login attempt with username podct','51.91.151.60',1662756663,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(52115,'Failed login attempt with username podct','94.231.86.20',1662757997,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(52116,'Failed login attempt with username podct','111.230.202.147',1662759307,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(52117,'Failed login attempt with username podct','51.91.220.143',1662760593,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(52118,'Failed login attempt with username podct','51.195.148.190',1662761874,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(52119,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1662762132,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52120,'Failed login attempt with username podct','141.94.247.170',1662764423,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(52121,'Failed login attempt with username podct','162.240.28.177',1662765712,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(52122,'Failed login attempt with username podct','5.188.62.26',1662765928,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36',1,'podct',NULL),(52123,'Failed login attempt with username podct','159.203.68.240',1662767002,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(52124,'Failed login attempt with username podct','207.154.250.8',1662768298,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52125,'Request for file /wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml which doesn\'t exist','46.161.27.155',1662769143,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml',NULL),(52126,'Request for file /author-sitemap.xml which doesn\'t exist','46.161.27.155',1662769146,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/author-sitemap.xml',NULL),(52127,'Failed login attempt with username podct','167.71.63.47',1662769630,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(52128,'Request for file /about.php?520=1 which doesn\'t exist','139.59.77.216',1662769651,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/about.php?520=1',NULL),(52129,'Request for file /old-index.php?daksldlkdsadas=1 which doesn\'t exist','159.65.44.109',1662770058,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/old-index.php?daksldlkdsadas=1',NULL),(52130,'Request for file /css/ which doesn\'t exist','116.92.222.106',1662770214,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/css/',NULL),(52131,'Failed login attempt with username podct','47.114.72.18',1662770963,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52132,'Failed login attempt with username podct','80.88.88.149',1662772287,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52133,'Request for file /myk.php which doesn\'t exist','152.89.196.13',1662772599,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'/myk.php',NULL),(52134,'Failed login attempt with username podct','72.167.34.14',1662773612,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52135,'Failed login attempt with username podct','202.29.236.140',1662774942,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(52136,'Failed login attempt with username podct','157.245.110.251',1662776279,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52137,'Failed login attempt with username podct','157.245.110.251',1662777622,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52138,'Failed login attempt with username podct','188.165.198.224',1662778979,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52139,'Failed login attempt with username podct','185.2.4.33',1662780339,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(52140,'Failed login attempt with username podct','51.195.148.190',1662781709,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(52141,'Failed login attempt with username podiatrist','5.188.62.174',1662782332,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',1,'podiatrist',NULL),(52142,'Failed login attempt with username podct','185.2.4.56',1662783064,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52143,'Failed login attempt with username podct','34.69.109.132',1662785784,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(52144,'Failed login attempt with username podct','103.139.26.242',1662786831,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36',1,'podct',NULL),(52145,'Failed login attempt with username podct','68.183.86.247',1662787130,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52146,'Failed login attempt with username admin','185.119.81.109',1662788236,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36',1,'admin',NULL),(52147,'Failed login attempt with username podct','181.174.125.214',1662788470,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52148,'Failed login attempt with username podct','121.42.231.47',1662789799,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(52149,'Failed login attempt with username podct','81.88.52.106',1662791131,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(52150,'Failed login attempt with username podct','168.119.80.254',1662792444,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52151,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1662792923,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52152,'Failed login attempt with username podct','141.94.247.170',1662795026,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(52153,'Request for file /configbak.php which doesn\'t exist','152.89.196.13',1662795125,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0',1,'/configbak.php',NULL),(52154,'Failed login attempt with username podct','167.172.168.111',1662796321,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52155,'Failed login attempt with username condition','185.119.81.96',1662796458,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36',1,'condition',NULL),(52156,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1662796502,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52157,'Failed login attempt with username podct','47.107.242.103',1662797643,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(52158,'Failed login attempt with username podct','212.103.4.29',1662798983,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52159,'Failed login attempt with username podct','5.188.62.174',1662799169,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36',1,'podct',NULL),(52160,'Failed login attempt with username podct','159.223.170.181',1662800332,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(52161,'Failed login attempt with username podct','81.88.52.8',1662801678,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52162,'Failed login attempt with username podct','5.188.62.174',1662802759,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',1,'podct',NULL),(52163,'Failed login attempt with username podct','111.230.202.147',1662803026,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52164,'Failed login attempt with username podct','103.31.249.221',1662804378,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(52165,'Failed login attempt with username podct','5.188.62.174',1662804453,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36',1,'podct',NULL),(52166,'Failed login attempt with username podct','157.245.110.251',1662805726,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52167,'Failed login attempt with username podct','103.130.218.178',1662807075,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52168,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.96',1662809529,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52169,'Failed login attempt with username podct','181.174.125.214',1662809770,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(52170,'Failed login attempt with username podct','188.165.198.224',1662811121,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52171,'Failed login attempt with username recently','185.119.81.99',1662811950,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36',1,'recently',NULL),(52172,'Failed login attempt with username podct','64.225.65.31',1662812486,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52173,'Failed login attempt with username podct','137.184.117.52',1662813864,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(52174,'Failed login attempt with username podct','213.151.33.40',1662815231,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(52175,'Failed login attempt with username podct','13.81.59.92',1662816608,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(52176,'Failed login attempt with username podct','47.110.72.238',1662817984,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52177,'Failed login attempt with username podct','139.59.85.224',1662819355,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(52178,'Failed login attempt with username podct','85.146.18.88',1662820731,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52179,'Request for file /.git/config which doesn\'t exist','3.85.14.152',1662821114,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'/.git/config',NULL),(52180,'Failed login attempt with username podct','5.188.62.21',1662821476,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',1,'podct',NULL),(52181,'Failed login attempt with username podct','91.249.163.48',1662822103,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52182,'Failed login attempt with username admin','185.119.81.96',1662822444,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'admin',NULL),(52183,'Failed login attempt with username podct','5.188.62.21',1662823182,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36',1,'podct',NULL),(52184,'Failed login attempt with username podct','64.225.65.31',1662823482,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'podct',NULL),(52185,'Failed login attempt with username admin','185.119.81.99',1662823637,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36',1,'admin',NULL),(52186,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1662823821,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52187,'Failed login attempt with username podct','94.231.86.20',1662824870,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52188,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1662825603,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52189,'Failed login attempt with username podct','69.163.186.158',1662826249,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52190,'Failed login attempt with username podct','13.79.17.158',1662827620,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52191,'Failed login attempt with username podct','5.188.62.140',1662828045,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36',1,'podct',NULL),(52192,'Failed login attempt with username podct','173.236.184.128',1662828970,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36',1,'podct',NULL),(52193,'Request for file /_ignition/health-check/ which doesn\'t exist','147.78.47.249',1662829108,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',1,'/_ignition/health-check/',NULL),(52194,'Request for file /public/_ignition/health-check/ which doesn\'t exist','147.78.47.249',1662829111,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',1,'/public/_ignition/health-check/',NULL),(52195,'Request for file /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php which doesn\'t exist','147.78.47.249',1662829116,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',1,'/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL),(52196,'Failed login attempt with username podct','5.188.62.21',1662829969,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36',1,'podct',NULL),(52197,'Failed login attempt with username function','185.119.81.101',1662831937,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'function',NULL),(52198,'Failed login attempt with username podct','5.188.62.21',1662832182,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36',1,'podct',NULL),(52199,'Failed login attempt with username admin','185.119.81.99',1662833724,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',1,'admin',NULL),(52200,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1662835628,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52201,'Failed login attempt with username Podct','5.188.62.26',1662840283,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36',1,'Podct',NULL),(52202,'Failed login attempt with username podct','5.188.62.76',1662844767,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36',1,'podct',NULL),(52203,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1662846193,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52204,'Failed login attempt with username podct','5.188.62.76',1662850372,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',1,'podct',NULL),(52205,'Failed login attempt with username podct','5.188.62.76',1662851931,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36',1,'podct',NULL),(52206,'Request for file /.env which doesn\'t exist','20.228.205.116',1662856523,'404_error','Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30',1,'/.env',NULL),(52207,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662857277,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52208,'Failed login attempt with username podiatristcapetown','74.205.112.88',1662857391,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52209,'Failed login attempt with username over','185.119.81.109',1662858168,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/E7FBAF',1,'over',NULL),(52210,'Failed login attempt with username podiatrist','83.150.214.18',1662860537,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52211,'Failed login attempt with username podiatrist.capetown','92.53.96.102',1662860821,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52212,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662861371,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52213,'Failed login attempt with username admin','95.213.186.158',1662863202,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52214,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1662863333,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52215,'Failed login attempt with username podiatrist','5.45.118.14',1662863664,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52216,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662865786,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52217,'Failed login attempt with username admin','195.201.31.183',1662867656,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52218,'Failed login attempt with username admin','134.122.64.249',1662867813,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52219,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1662868393,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52220,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1662868881,'auth_fail','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52221,'Failed login attempt with username podct','69.163.196.200',1662869184,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(52222,'Failed login attempt with username admin','45.128.206.89',1662870140,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52223,'Failed login attempt with username podct','54.37.156.240',1662870613,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52224,'Failed login attempt with username wadminw','172.104.81.115',1662871870,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(52225,'Failed login attempt with username podct','94.231.86.20',1662872032,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52226,'Failed login attempt with username podiatristcapetown','5.45.125.232',1662872613,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52227,'Request for file /wp-includes/js/tinymce/wp-new-tinymce.php which doesn\'t exist','198.199.71.153',1662872697,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/js/tinymce/wp-new-tinymce.php',NULL),(52228,'Request for file /wp-content/plugins/handline/handline.php which doesn\'t exist','198.199.71.153',1662872704,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/handline/handline.php',NULL),(52229,'Request for file /style2.php which doesn\'t exist','198.199.71.153',1662872706,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/style2.php',NULL),(52230,'Request for file /nin.php which doesn\'t exist','198.199.71.153',1662872710,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/nin.php',NULL),(52231,'Request for file /wp-content/uploads/nin.php which doesn\'t exist','198.199.71.153',1662872712,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/nin.php',NULL),(52232,'Request for file /wp-admin/css/colors/blue/nin.php which doesn\'t exist','198.199.71.153',1662872713,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-admin/css/colors/blue/nin.php',NULL),(52233,'Request for file /wp-queryall.php which doesn\'t exist','198.199.71.153',1662872715,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-queryall.php',NULL),(52234,'Request for file /slicemap.php which doesn\'t exist','198.199.71.153',1662872716,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/slicemap.php',NULL),(52235,'Request for file /wp-slicemap.php which doesn\'t exist','198.199.71.153',1662872718,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-slicemap.php',NULL),(52236,'Request for file /wp-plain.php which doesn\'t exist','198.199.71.153',1662872719,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-plain.php',NULL),(52237,'Request for file /wp-craft-report.php which doesn\'t exist','198.199.71.153',1662872721,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-craft-report.php',NULL),(52238,'Request for file /wp-blockup.php which doesn\'t exist','198.199.71.153',1662872722,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-blockup.php',NULL),(52239,'Request for file /wp-content/uploads/wp-blockup.php which doesn\'t exist','198.199.71.153',1662872724,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/wp-blockup.php',NULL),(52240,'Request for file /wp-blockdown.php which doesn\'t exist','198.199.71.153',1662872725,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-blockdown.php',NULL),(52241,'Request for file /wp-sili-report-site.php which doesn\'t exist','198.199.71.153',1662872727,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-sili-report-site.php',NULL),(52242,'Request for file /wp-content/uploads/wp-blockdown.php which doesn\'t exist','198.199.71.153',1662872728,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/wp-blockdown.php',NULL),(52243,'Request for file /wp-content/uploads/wp-temp-ali.php which doesn\'t exist','198.199.71.153',1662872730,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/wp-temp-ali.php',NULL),(52244,'Request for file /wp-content/uploads/wp-stream.php which doesn\'t exist','198.199.71.153',1662872731,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/wp-stream.php',NULL),(52245,'Request for file /wp-content/uploads/wp-sili-report-site.php which doesn\'t exist','198.199.71.153',1662872733,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/wp-sili-report-site.php',NULL),(52246,'Lockout occurred:  Too many 404 requests for /wp-content/uploads/wp-sili-report-site.php','198.199.71.153',1662872733,'404_lockout','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/wp-sili-report-site.php',NULL),(52247,'Failed login attempt with username wwwadmin','179.127.29.102',1662873233,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(52248,'Failed login attempt with username podct','159.89.207.135',1662873460,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(52249,'Failed login attempt with username podiatrist','116.203.107.31',1662873974,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52250,'Failed login attempt with username podiatrist.capetown','195.161.68.182',1662874016,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52251,'Failed login attempt with username podct','94.231.86.20',1662874889,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(52252,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662875139,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52253,'Failed login attempt with username podct','69.163.224.107',1662876316,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(52254,'Request for file /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php which doesn\'t exist','185.244.175.181',1662877045,'404_error','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1,'/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',NULL),(52255,'Failed login attempt with username podct','77.240.13.186',1662879194,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(52256,'Failed login attempt with username podct','145.239.30.120',1662880639,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52257,'Failed login attempt with username podct','165.232.180.174',1662882088,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52258,'Failed login attempt with username wadminw','31.184.242.14',1662883352,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(52259,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1662883379,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52260,'Failed login attempt with username podct','34.76.63.113',1662883541,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52261,'Failed login attempt with username wwwadmin','61.222.243.149',1662884797,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(52262,'Failed login attempt with username podct','67.205.62.27',1662884982,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(52263,'Failed login attempt with username podct','159.203.68.240',1662886438,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(52264,'Failed login attempt with username podct','47.114.72.18',1662887896,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52265,'Failed login attempt with username podiatrist','5.101.157.206',1662888645,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52266,'Failed login attempt with username admin','5.101.157.206',1662889064,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52267,'Failed login attempt with username podct','103.149.154.8',1662889351,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(52268,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662889514,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52269,'Failed login attempt with username podiatrist','46.31.79.179',1662890221,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52270,'Failed login attempt with username podiatrist.capetown','185.99.199.206',1662890353,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52271,'Failed login attempt with username podct','185.2.4.33',1662890809,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(52272,'Failed login attempt with username podiatristcapetown','188.120.236.114',1662890885,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52273,'Failed login attempt with username admin','185.119.81.109',1662891138,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',1,'admin',NULL),(52274,'Failed login attempt with username podiatrist.capetown','185.182.57.21',1662891313,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52275,'Failed login attempt with username podiatrist','45.128.206.89',1662892107,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52276,'Failed login attempt with username podiatrist.capetown','74.208.24.30',1662892229,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52277,'Failed login attempt with username podct','52.138.180.227',1662892272,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(52278,'Failed login attempt with username podiatrist','47.91.198.167',1662892635,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52279,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662893155,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52280,'Failed login attempt with username podiatristcapetown','213.189.218.236',1662893242,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52281,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1662893420,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52282,'Failed login attempt with username podct','47.116.48.109',1662893734,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52283,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662893947,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52284,'Failed login attempt with username podct','138.68.140.0',1662895222,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52285,'Request for file /.aws/config.php which doesn\'t exist','185.83.144.103',1662896000,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.aws/config.php',NULL),(52286,'Request for file /.aws/config.php which doesn\'t exist','185.83.144.103',1662896001,'404_error','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'/.aws/config.php',NULL),(52287,'Failed login attempt with username podct','5.188.62.21',1662896097,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4758.11 Safari/537.36',1,'podct',NULL),(52288,'Failed login attempt with username podct','68.183.71.174',1662896705,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52289,'Failed login attempt with username podiatrist.capetown','77.68.122.133',1662896747,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52290,'Failed login attempt with username podct','212.110.92.155',1662898202,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52291,'Failed login attempt with username podiatristcapetown','45.128.206.89',1662898218,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52292,'Request for file /.git/config which doesn\'t exist','3.85.14.152',1662899233,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36',1,'/.git/config',NULL),(52293,'Request for file /.git/config which doesn\'t exist','3.85.14.152',1662899235,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:55.0) Gecko/20100101 Firefox/55.0',1,'/.git/config',NULL),(52294,'Failed login attempt with username admin','178.211.58.145',1662899475,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52295,'Failed login attempt with username podct','45.79.120.96',1662899686,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(52296,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662900110,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52297,'Failed login attempt with username podiatristcapetown','95.217.3.120',1662900475,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52298,'Failed login attempt with username podiatrist.capetown','5.101.157.135',1662900763,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52299,'Failed login attempt with username admin','185.119.81.107',1662901044,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'admin',NULL),(52300,'Failed login attempt with username podct','8.142.173.121',1662901184,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52301,'Failed login attempt with username suffering','185.119.81.107',1662901997,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'suffering',NULL),(52302,'Failed login attempt with username podiatrist.capetown','134.0.115.193',1662902193,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52303,'Failed login attempt with username podct','147.135.255.8',1662902676,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(52304,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662904791,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52305,'Failed login attempt with username information','185.119.81.98',1662904944,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36',1,'information',NULL),(52306,'Failed login attempt with username podct','198.244.167.101',1662905688,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(52307,'Failed login attempt with username podct','151.106.41.64',1662907193,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(52308,'Failed login attempt with username admin','185.119.81.109',1662907213,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36',1,'admin',NULL),(52309,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1662907259,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52310,'Failed login attempt with username podct','46.63.80.162',1662910196,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(52311,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1662910993,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52312,'Failed login attempt with username admin','185.119.81.98',1662911395,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'admin',NULL),(52313,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662911443,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52314,'Failed login attempt with username podct','185.2.4.56',1662911701,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(52315,'Failed login attempt with username podct','159.203.121.12',1662913210,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'podct',NULL),(52316,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1662913521,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52317,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662914597,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52318,'Failed login attempt with username podct','207.154.248.39',1662914709,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(52319,'Failed login attempt with username podct','23.97.205.210',1662916204,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(52320,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662916277,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52321,'Failed login attempt with username podct','149.56.26.54',1662917659,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52322,'Failed login attempt with username podct','111.230.202.147',1662919100,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(52323,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','176.31.105.62',1662919879,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/mar.php',NULL),(52324,'Request for file /wp-content/plugins/seoplugins/mar.php which doesn\'t exist','176.31.105.62',1662919881,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/seoplugins/mar.php',NULL),(52325,'Request for file /wp-ontent/uploads/typehub/custom/tatsu/0x.php which doesn\'t exist','176.31.105.62',1662919883,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-ontent/uploads/typehub/custom/tatsu/0x.php',NULL),(52326,'Request for file /wp-content/uploads/typehub/custom/wi/.wi.phpp which doesn\'t exist','176.31.105.62',1662919884,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/typehub/custom/wi/.wi.phpp',NULL),(52327,'Request for file /wp-content/themes/seotheme/db.php?u=1 which doesn\'t exist','176.31.105.62',1662919885,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/db.php?u=1',NULL),(52328,'Request for file /wp-content/themes/seoplugins/db.php?u=1 which doesn\'t exist','176.31.105.62',1662919886,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seoplugins/db.php?u=1',NULL),(52329,'Failed login attempt with username podct','125.227.127.195',1662920524,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52330,'Failed login attempt with username podct','188.165.198.224',1662921934,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(52331,'Request for file /wp-content/header.php which doesn\'t exist','108.167.189.17',1662922045,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/header.php',NULL),(52332,'Failed login attempt with username admin','162.55.182.187',1662922640,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52333,'Failed login attempt with username admin','87.249.44.153',1662922775,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52334,'Failed login attempt with username podct','151.106.116.118',1662923334,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52335,'Failed login attempt with username PointAppointments','185.119.81.108',1662924602,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',1,'PointAppointments',NULL),(52336,'Failed login attempt with username podct','103.130.218.189',1662924737,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(52337,'Failed login attempt with username podct','148.72.214.194',1662926145,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(52338,'Failed login attempt with username admin','37.140.241.77',1662926223,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52339,'Failed login attempt with username admin','2.59.117.3',1662926298,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52340,'Failed login attempt with username admin','5.101.157.36',1662926566,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52341,'Failed login attempt with username podct','137.184.117.52',1662927592,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(52342,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662928993,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52343,'Failed login attempt with username podct','81.88.52.8',1662929028,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(52344,'Request for file /wp-includes/header.php which doesn\'t exist','47.111.118.103',1662929601,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-includes/header.php',NULL),(52345,'Failed login attempt with username podct','91.249.163.48',1662930451,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(52346,'Failed login attempt with username information','185.119.81.98',1662932644,'auth_fail','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'information',NULL),(52347,'Failed login attempt with username podct','202.29.236.140',1662933311,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(52348,'Request for file /wp-content/wp-readme.php which doesn\'t exist','184.168.98.0',1662933889,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/wp-readme.php',NULL),(52349,'Failed login attempt with username podct','146.148.44.185',1662934747,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52350,'Request for file /wp-content/uploads/2020/ which doesn\'t exist','193.202.110.28',1662935219,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/uploads/2020/',NULL),(52351,'Request for file /wp-admin/header.php which doesn\'t exist','156.67.216.171',1662935333,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-admin/header.php',NULL),(52352,'Request for file /vim/header.php which doesn\'t exist','154.53.56.81',1662935361,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/vim/header.php',NULL),(52353,'Request for file /.well-known/header.php which doesn\'t exist','176.9.89.109',1662935498,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/.well-known/header.php',NULL),(52354,'Failed login attempt with username podct','51.91.151.60',1662936187,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(52355,'Request for file /js/header.php which doesn\'t exist','46.235.42.105',1662936492,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/js/header.php',NULL),(52356,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','85.214.141.230',1662936899,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/mar.php',NULL),(52357,'Request for file /wp-content/plugins/seoplugins/mar.php which doesn\'t exist','85.214.141.230',1662936901,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/seoplugins/mar.php',NULL),(52358,'Request for file /wp-ontent/uploads/typehub/custom/tatsu/0x.php which doesn\'t exist','85.214.141.230',1662936903,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-ontent/uploads/typehub/custom/tatsu/0x.php',NULL),(52359,'Request for file /wp-content/uploads/typehub/custom/wi/.wi.phpp which doesn\'t exist','85.214.141.230',1662936904,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/typehub/custom/wi/.wi.phpp',NULL),(52360,'Request for file /wp-content/themes/seotheme/db.php?u=1 which doesn\'t exist','85.214.141.230',1662936905,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/db.php?u=1',NULL),(52361,'Request for file /wp-content/themes/seoplugins/db.php?u=1 which doesn\'t exist','85.214.141.230',1662936906,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seoplugins/db.php?u=1',NULL),(52362,'Request for file /wp-content/plugins/spam-master/img_screen.php which doesn\'t exist','85.236.38.127',1662936956,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/plugins/spam-master/img_screen.php',NULL),(52363,'Failed login attempt with username podct','5.188.62.21',1662937580,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',1,'podct',NULL),(52364,'Failed login attempt with username podct','47.105.73.13',1662937644,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(52365,'Request for file /wp-readme.php which doesn\'t exist','192.185.4.146',1662938753,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-readme.php',NULL),(52366,'Failed login attempt with username podct','95.217.179.54',1662939076,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(52367,'Request for file /css/header.php which doesn\'t exist','106.14.30.59',1662939404,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/css/header.php',NULL),(52368,'Request for file /wp-content/wso112233.php which doesn\'t exist','44.194.87.232',1662939437,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/wso112233.php',NULL),(52369,'Request for file /wp-content/wso112233.php which doesn\'t exist','44.194.87.232',1662939441,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/wso112233.php',NULL),(52370,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662939816,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52371,'Failed login attempt with username admin','185.119.81.101',1662940490,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'admin',NULL),(52372,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662940504,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52373,'Failed login attempt with username podct','45.120.69.121',1662940519,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36',1,'podct',NULL),(52374,'Failed login attempt with username suffering','185.119.81.107',1662940728,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'suffering',NULL),(52375,'Failed login attempt with username podct','47.91.198.167',1662941824,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52376,'Failed login attempt with username podiatrist.capetown','47.91.198.167',1662941826,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52377,'Failed login attempt with username podct','47.253.50.15',1662941839,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52378,'Failed login attempt with username support','47.253.50.15',1662941840,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52379,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662941895,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52380,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1662941922,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52381,'Failed login attempt with username podct','207.188.152.249',1662941993,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52382,'Request for file /wp-content/themes/pridmag/fi.php which doesn\'t exist','69.167.168.155',1662942343,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/pridmag/fi.php',NULL),(52383,'Request for file /accesson.php which doesn\'t exist','152.89.196.13',1662943444,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0',1,'/accesson.php',NULL),(52384,'Failed login attempt with username podct','64.227.183.25',1662943475,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52385,'Failed login attempt with username admin','185.119.81.98',1662943800,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36',1,'admin',NULL),(52386,'Failed login attempt with username admin','185.119.81.99',1662944014,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'admin',NULL),(52387,'Failed login attempt with username podct','47.96.74.105',1662944973,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(52388,'Failed login attempt with username podct','79.174.13.180',1662944993,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52389,'Failed login attempt with username podiatrist.capetown','79.174.13.180',1662944994,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52390,'Failed login attempt with username podct','5.101.157.11',1662945020,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52391,'Failed login attempt with username support','5.101.157.11',1662945021,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52392,'Failed login attempt with username podct','97.107.140.174',1662945354,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52393,'Failed login attempt with username admin','97.107.140.174',1662945355,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52394,'Failed login attempt with username admin','185.119.81.107',1662945816,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'admin',NULL),(52395,'Failed login attempt with username podct','209.182.195.110',1662946470,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(52396,'Failed login attempt with username podct','5.101.157.238',1662947568,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52397,'Failed login attempt with username support','5.101.157.238',1662947568,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52398,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662948070,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52399,'Failed login attempt with username podct','5.101.157.179',1662948596,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52400,'Failed login attempt with username admin','5.101.157.179',1662948597,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52401,'Failed login attempt with username admin','91.249.163.48',1662948708,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(52402,'Failed login attempt with username podct','88.99.165.9',1662949561,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52403,'Failed login attempt with username admin','88.99.165.9',1662949562,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52404,'Failed login attempt with username podct','178.172.136.168',1662949784,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52405,'Failed login attempt with username podiatrist.capetown','178.172.136.168',1662949785,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52406,'Failed login attempt with username admin','139.59.85.224',1662950202,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'admin',NULL),(52407,'Failed login attempt with username podct','185.207.228.4',1662951454,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52408,'Failed login attempt with username podiatristcapetown','185.207.228.4',1662951455,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52409,'Failed login attempt with username admin','39.108.148.88',1662951695,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'admin',NULL),(52410,'Failed login attempt with username podct','103.130.218.101',1662952539,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52411,'Failed login attempt with username support','103.130.218.101',1662952544,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52412,'Failed login attempt with username podct','65.21.9.119',1662953010,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52413,'Failed login attempt with username podiatrist','65.21.9.119',1662953011,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52414,'Failed login attempt with username podct','87.236.20.180',1662953165,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52415,'Failed login attempt with username podiatrist.capetown','87.236.20.180',1662953166,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52416,'Failed login attempt with username admin','81.88.52.221',1662953187,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'admin',NULL),(52417,'Failed login attempt with username podct','45.147.197.20',1662953949,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52418,'Failed login attempt with username support','45.147.197.20',1662953950,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52419,'Failed login attempt with username admin','68.183.86.247',1662954696,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'admin',NULL),(52420,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','69.55.35.30',1662955276,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/mar.php',NULL),(52421,'Request for file /wp-content/plugins/seoplugins/mar.php which doesn\'t exist','69.55.35.30',1662955278,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/seoplugins/mar.php',NULL),(52422,'Request for file /wp-ontent/uploads/typehub/custom/tatsu/0x.php which doesn\'t exist','69.55.35.30',1662955280,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-ontent/uploads/typehub/custom/tatsu/0x.php',NULL),(52423,'Request for file /wp-content/uploads/typehub/custom/wi/.wi.phpp which doesn\'t exist','69.55.35.30',1662955281,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/typehub/custom/wi/.wi.phpp',NULL),(52424,'Request for file /wp-content/themes/seotheme/db.php?u=1 which doesn\'t exist','69.55.35.30',1662955282,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/db.php?u=1',NULL),(52425,'Request for file /wp-content/themes/seoplugins/db.php?u=1 which doesn\'t exist','69.55.35.30',1662955283,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seoplugins/db.php?u=1',NULL),(52426,'Failed login attempt with username podct','65.21.13.12',1662955351,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52427,'Failed login attempt with username support','65.21.13.12',1662955352,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52428,'Failed login attempt with username podct','198.71.50.144',1662955435,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52429,'Failed login attempt with username podiatrist','198.71.50.144',1662955436,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52430,'Failed login attempt with username podct','185.126.176.114',1662955696,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52431,'Failed login attempt with username admin','185.126.176.114',1662955696,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52432,'Failed login attempt with username podct','185.225.33.103',1662955699,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52433,'Failed login attempt with username support','185.225.33.103',1662955700,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52434,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1662955905,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52435,'Failed login attempt with username podct','5.101.157.36',1662955998,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52436,'Failed login attempt with username admin','5.101.157.36',1662955999,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52437,'Failed login attempt with username admin','188.166.236.35',1662956217,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'admin',NULL),(52438,'Failed login attempt with username podct','5.101.157.166',1662956257,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52439,'Failed login attempt with username support','5.101.157.166',1662956257,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52440,'Failed login attempt with username podct','82.218.176.68',1662957558,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52441,'Failed login attempt with username podiatrist','82.218.176.68',1662957559,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52442,'Failed login attempt with username podct','51.38.192.91',1662957724,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52443,'Failed login attempt with username podct','5.101.157.238',1662957798,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52444,'Failed login attempt with username podiatrist','5.101.157.238',1662957799,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52445,'Failed login attempt with username podct','8.210.55.10',1662959122,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52446,'Failed login attempt with username podiatristcapetown','8.210.55.10',1662959123,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52447,'Failed login attempt with username podct','145.239.30.120',1662959214,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(52448,'Failed login attempt with username podct','92.53.124.116',1662959682,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52449,'Failed login attempt with username podiatristcapetown','92.53.124.116',1662959683,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52450,'Request for file /.quarantine/header.php which doesn\'t exist','185.81.1.101',1662959766,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/.quarantine/header.php',NULL),(52451,'Failed login attempt with username Podct','5.188.62.174',1662959888,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36',1,'Podct',NULL),(52452,'Failed login attempt with username podct','185.225.33.34',1662960197,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52453,'Failed login attempt with username podiatrist.capetown','185.225.33.34',1662960197,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52454,'Failed login attempt with username podct','5.101.118.104',1662960261,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52455,'Failed login attempt with username admin','5.101.118.104',1662960262,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52456,'Failed login attempt with username podct','5.101.156.98',1662960296,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52457,'Failed login attempt with username support','5.101.156.98',1662960297,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52458,'Failed login attempt with username podct','185.205.246.129',1662960594,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52459,'Failed login attempt with username podiatristcapetown','185.205.246.129',1662960594,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52460,'Request for file /wp-content/themes/pridmag/mini.php which doesn\'t exist','148.72.246.134',1662960650,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/wp-content/themes/pridmag/mini.php',NULL),(52461,'Failed login attempt with username podct','81.88.52.221',1662960692,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(52462,'Failed login attempt with username podct','5.101.157.45',1662960736,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52463,'Failed login attempt with username admin','5.101.157.45',1662960737,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52464,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1662961565,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52465,'Failed login attempt with username podct','64.225.65.31',1662962156,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(52466,'Failed login attempt with username podct','5.101.156.139',1662962241,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52467,'Failed login attempt with username admin','5.101.156.139',1662962242,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52468,'Request for file /hehehe.php which doesn\'t exist','130.185.75.142',1662963068,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/hehehe.php',NULL),(52469,'Failed login attempt with username podct','213.160.71.78',1662963513,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52470,'Failed login attempt with username podiatrist','213.160.71.78',1662963513,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52471,'Failed login attempt with username podct','34.75.65.218',1662963618,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(52472,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.81',1662963714,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(52473,'Failed login attempt with username podct','46.63.80.162',1662965062,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52474,'Failed login attempt with username podct','88.99.133.202',1662965975,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52475,'Failed login attempt with username podiatrist','88.99.133.202',1662965976,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52476,'Failed login attempt with username podct','213.160.71.78',1662966251,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52477,'Failed login attempt with username podiatrist','213.160.71.78',1662966251,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52478,'Failed login attempt with username admin','137.184.117.52',1662966457,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'admin',NULL),(52479,'Failed login attempt with username podct','5.101.157.216',1662967347,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52480,'Failed login attempt with username podiatrist.capetown','5.101.157.216',1662967347,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52481,'Failed login attempt with username support','157.230.26.13',1662967450,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52482,'Failed login attempt with username admin','110.40.244.196',1662967858,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'admin',NULL),(52483,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1662968139,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52484,'Request for file /patior/header.php which doesn\'t exist','193.202.110.17',1662968521,'404_error','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'/patior/header.php',NULL),(52485,'Failed login attempt with username admin','109.168.97.89',1662969243,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'admin',NULL),(52486,'Failed login attempt with username podct','5.189.141.7',1662969417,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52487,'Failed login attempt with username support','5.189.141.7',1662969419,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52488,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1662970437,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52489,'Failed login attempt with username admin','47.105.73.13',1662970680,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(52490,'Failed login attempt with username podct','83.150.214.18',1662971415,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52491,'Failed login attempt with username podiatrist','83.150.214.18',1662971416,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52492,'Failed login attempt with username admin','147.135.255.8',1662972103,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'admin',NULL),(52493,'Failed login attempt with username podct','213.142.149.80',1662972601,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52494,'Failed login attempt with username podiatrist.capetown','213.142.149.80',1662972604,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52495,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1662973419,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52496,'Failed login attempt with username admin','119.237.81.29',1662973546,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'admin',NULL),(52497,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662974105,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52498,'Failed login attempt with username podct','3.109.16.228',1662975169,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52499,'Failed login attempt with username support','3.109.16.228',1662975172,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52500,'Failed login attempt with username podct','45.239.137.69',1662976069,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52501,'Failed login attempt with username podiatrist.capetown','45.239.137.69',1662976073,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52502,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1662976993,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52503,'Failed login attempt with username podct','45.239.137.69',1662977136,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52504,'Failed login attempt with username podiatrist.capetown','45.239.137.69',1662977137,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52505,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662977746,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52506,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1662977871,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52507,'Failed login attempt with username podct','185.104.28.48',1662977941,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52508,'Failed login attempt with username podiatristcapetown','185.104.28.48',1662977942,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52509,'Failed login attempt with username podct','80.87.199.143',1662980248,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52510,'Failed login attempt with username podiatrist.capetown','80.87.199.143',1662980250,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52511,'Failed login attempt with username over','185.119.81.109',1662980842,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36',1,'over',NULL),(52512,'Failed login attempt with username podct','185.219.42.33',1662981981,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52513,'Failed login attempt with username podiatrist.capetown','185.219.42.33',1662981982,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52514,'Failed login attempt with username podct','5.189.171.170',1662982284,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52515,'Failed login attempt with username podiatrist.capetown','5.189.171.170',1662982285,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52516,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1662982394,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52517,'Request for file /wp-content/wp-file-conficg.php which doesn\'t exist','54.207.36.58',1662982943,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/wp-file-conficg.php',NULL),(52518,'Failed login attempt with username podct','159.223.231.91',1662983391,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52519,'Failed login attempt with username podiatrist.capetown','159.223.231.91',1662983393,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52520,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1662983731,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52521,'Failed login attempt with username over','185.119.81.109',1662984612,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'over',NULL),(52522,'Failed login attempt with username podct','47.91.198.167',1662984715,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52523,'Failed login attempt with username podiatristcapetown','47.91.198.167',1662984717,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52524,'Failed login attempt with username wadminw','68.183.15.215',1662986840,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(52525,'Failed login attempt with username wwwadmin','45.119.213.225',1662987602,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(52526,'Failed login attempt with username wadminw','185.252.31.179',1662987955,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(52527,'Failed login attempt with username wwwadmin','143.198.161.19',1662988737,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(52528,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1662988947,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52529,'Failed login attempt with username podct','142.132.194.96',1662989171,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52530,'Failed login attempt with username support','142.132.194.96',1662989172,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52531,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1662991748,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52532,'Failed login attempt with username podct','212.109.221.1',1662992405,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52533,'Failed login attempt with username podiatrist','212.109.221.1',1662992405,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52534,'Failed login attempt with username admin','185.119.81.101',1662992528,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'admin',NULL),(52535,'Failed login attempt with username podct','185.205.246.129',1662992856,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52536,'Failed login attempt with username podiatristcapetown','185.205.246.129',1662992857,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52537,'Failed login attempt with username podct','217.28.222.12',1662993064,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52538,'Failed login attempt with username podiatrist.capetown','217.28.222.12',1662993066,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52539,'Failed login attempt with username podct','178.254.50.202',1662993683,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52540,'Failed login attempt with username podiatristcapetown','178.254.50.202',1662993683,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52541,'Failed login attempt with username podct','134.209.154.203',1662994589,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52542,'Failed login attempt with username podiatrist.capetown','134.209.154.203',1662994590,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52543,'Failed login attempt with username podct','142.132.194.96',1662994741,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52544,'Failed login attempt with username podiatristcapetown','142.132.194.96',1662994741,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52545,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1662995969,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52546,'Failed login attempt with username podct','178.128.53.95',1662996305,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52547,'Failed login attempt with username podiatrist','178.128.53.95',1662996307,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52548,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1662997546,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52549,'Failed login attempt with username podct','142.132.194.96',1662997901,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52550,'Failed login attempt with username podiatristcapetown','142.132.194.96',1662997902,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52551,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1662999894,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/E7FBAF',1,'andyblecherpodiatrist@gmail.com',NULL),(52552,'Failed login attempt with username podct','159.89.228.214',1663000069,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(52553,'Failed login attempt with username podct','188.165.198.224',1663001164,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',1,'podct',NULL),(52554,'Failed login attempt with username podct','45.90.34.141',1663001612,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52555,'Failed login attempt with username podiatrist','45.90.34.141',1663001613,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52556,'Failed login attempt with username podct','139.59.96.126',1663002263,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(52557,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1663002812,'auth_fail','Mozilla/5.0 (Windows NT 6.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52558,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1663003318,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52559,'Failed login attempt with username podct','138.68.140.0',1663003338,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(52560,'Failed login attempt with username podct','159.89.109.117',1663004400,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(52561,'Failed login attempt with username podct','95.213.186.158',1663004807,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52562,'Failed login attempt with username support','95.213.186.158',1663004808,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52563,'Failed login attempt with username podct','80.78.255.36',1663005318,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52564,'Failed login attempt with username podiatrist','80.78.255.36',1663005319,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52565,'Failed login attempt with username podct','167.172.168.111',1663005448,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'podct',NULL),(52566,'Failed login attempt with username admin','185.119.81.98',1663005783,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',1,'admin',NULL),(52567,'Failed login attempt with username podct','88.84.193.250',1663006461,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52568,'Failed login attempt with username support','88.84.193.250',1663006462,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52569,'Failed login attempt with username podct','164.46.122.50',1663006499,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(52570,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1663006554,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52571,'Failed login attempt with username podct','144.76.4.124',1663006754,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52572,'Failed login attempt with username podiatristcapetown','144.76.4.124',1663006755,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52573,'Failed login attempt with username podct','165.22.109.42',1663007530,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'podct',NULL),(52574,'Failed login attempt with username podct','159.223.231.91',1663007986,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52575,'Failed login attempt with username admin','159.223.231.91',1663007987,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52576,'Failed login attempt with username podct','188.212.34.69',1663008560,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(52577,'Failed login attempt with username podct','144.76.4.124',1663009053,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52578,'Failed login attempt with username podiatrist.capetown','144.76.4.124',1663009054,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52579,'Failed login attempt with username podct','157.230.127.126',1663009595,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52580,'Request for file /interesting-articles/ which doesn\'t exist','154.54.249.206',1663010108,'404_error','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',1,'/interesting-articles/',NULL),(52581,'Failed login attempt with username podct','167.71.234.124',1663010632,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(52582,'Failed login attempt with username podct','185.2.5.77',1663011682,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(52583,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1663012134,'auth_fail','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52584,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1663012705,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52585,'Failed login attempt with username podct','81.88.52.106',1663012731,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52586,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1663013202,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52587,'Failed login attempt with username PointAppointments','185.119.81.108',1663013471,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36',1,'PointAppointments',NULL),(52588,'Failed login attempt with username podct','69.163.186.158',1663013824,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52589,'Failed login attempt with username podct','103.133.133.193',1663014479,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52590,'Failed login attempt with username podiatrist','103.133.133.193',1663014481,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52591,'Failed login attempt with username podct','45.147.197.20',1663014501,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52592,'Failed login attempt with username admin','45.147.197.20',1663014503,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52593,'Failed login attempt with username podct','142.93.54.10',1663014903,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(52594,'Failed login attempt with username podct','178.208.67.7',1663015488,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52595,'Failed login attempt with username podiatristcapetown','178.208.67.7',1663015489,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52596,'Failed login attempt with username podct','159.223.231.91',1663015693,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52597,'Failed login attempt with username podiatristcapetown','159.223.231.91',1663015694,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52598,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1663015779,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52599,'Failed login attempt with username podct','109.168.97.89',1663015982,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52600,'Failed login attempt with username podct','178.128.53.95',1663016738,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52601,'Failed login attempt with username podiatristcapetown','178.128.53.95',1663016739,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52602,'Failed login attempt with username podct','178.211.58.145',1663016843,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52603,'Failed login attempt with username podiatrist.capetown','178.211.58.145',1663016844,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52604,'Failed login attempt with username podct','51.75.15.189',1663017061,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52605,'Failed login attempt with username podct','89.108.119.229',1663017272,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52606,'Failed login attempt with username podiatrist.capetown','89.108.119.229',1663017273,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52607,'Failed login attempt with username podct','34.76.63.113',1663018159,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(52608,'Failed login attempt with username podct','134.0.115.193',1663018375,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52609,'Failed login attempt with username support','134.0.115.193',1663018375,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52610,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1663018495,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52611,'Failed login attempt with username podct','92.53.124.116',1663018645,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52612,'Failed login attempt with username podiatrist','92.53.124.116',1663018645,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52613,'Failed login attempt with username podct','142.93.201.0',1663019229,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52614,'Request for file /wp-includes/customize/class-wp-customize-nav-menu.php?new which doesn\'t exist','40.118.21.153',1663019305,'404_error','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36',1,'/wp-includes/customize/class-wp-customize-nav-menu.php?new',NULL),(52615,'Request for file /wp-includes/customize/class-wp-customize-nav-menu.php?null=1 which doesn\'t exist','40.118.21.153',1663019310,'404_error','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36',1,'/wp-includes/customize/class-wp-customize-nav-menu.php?null=1',NULL),(52616,'Failed login attempt with username podct','45.83.122.37',1663019903,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52617,'Failed login attempt with username podiatrist.capetown','45.83.122.37',1663019904,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52618,'Failed login attempt with username podct','208.113.153.235',1663020318,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52619,'Failed login attempt with username podct','72.167.34.14',1663021406,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(52620,'Failed login attempt with username podct','134.209.184.76',1663022498,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52621,'Failed login attempt with username podct','46.101.202.174',1663023312,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52622,'Failed login attempt with username podiatristcapetown','46.101.202.174',1663023312,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52623,'Failed login attempt with username podct','47.98.207.210',1663023590,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',1,'podct',NULL),(52624,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.109',1663024668,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52625,'Failed login attempt with username podct','64.227.183.25',1663024674,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52626,'Failed login attempt with username podct','178.211.58.145',1663024980,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52627,'Failed login attempt with username podiatristcapetown','178.211.58.145',1663024980,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52628,'Failed login attempt with username podct','167.172.168.111',1663025766,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(52629,'Failed login attempt with username podct','91.228.7.83',1663025959,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52630,'Failed login attempt with username podiatrist.capetown','91.228.7.83',1663025960,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52631,'Failed login attempt with username recently','185.119.81.99',1663026922,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'recently',NULL),(52632,'Request for file /wp-content/themes/seotheme/rgx.php which doesn\'t exist','167.99.15.50',1663027271,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/themes/seotheme/rgx.php',NULL),(52633,'Request for file /wp-content/themes/seotheme/db.php which doesn\'t exist','167.99.15.50',1663027325,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/themes/seotheme/db.php',NULL),(52634,'Request for file /year.php which doesn\'t exist','167.99.15.50',1663027342,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/year.php',NULL),(52635,'Request for file /wp-content/themes/pridmag/db.php which doesn\'t exist','167.99.15.50',1663027371,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/themes/pridmag/db.php',NULL),(52636,'Request for file /wp-content/themes/blogood/db.php which doesn\'t exist','167.99.15.50',1663027377,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/themes/blogood/db.php',NULL),(52637,'Request for file /years.php which doesn\'t exist','167.99.15.50',1663027393,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/years.php',NULL),(52638,'Failed login attempt with username podct','51.159.155.6',1663027959,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52639,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1663028713,'auth_fail','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52640,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1663029021,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52641,'Failed login attempt with username podct','188.212.34.69',1663029055,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(52642,'Failed login attempt with username podct','150.109.148.216',1663030151,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',1,'podct',NULL),(52643,'Failed login attempt with username podct','87.249.44.153',1663030325,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52644,'Failed login attempt with username podiatrist.capetown','87.249.44.153',1663030326,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52645,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1663030445,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52646,'Failed login attempt with username podct','77.222.52.120',1663030454,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52647,'Failed login attempt with username support','77.222.52.120',1663030455,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52648,'Failed login attempt with username podct','13.81.59.92',1663031254,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52649,'Failed login attempt with username podct','178.208.67.40',1663031953,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52650,'Failed login attempt with username support','178.208.67.40',1663031954,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52651,'Request for file /admin/ which doesn\'t exist','188.225.74.67',1663032213,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'/admin/',NULL),(52652,'Failed login attempt with username podct','167.172.168.111',1663032351,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52653,'Failed login attempt with username podct','80.87.199.143',1663032353,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52654,'Failed login attempt with username support','80.87.199.143',1663032354,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52655,'Request for file /admin/ which doesn\'t exist','88.212.235.184',1663032527,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'/admin/',NULL),(52656,'Failed login attempt with username podct','88.212.235.184',1663032903,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52657,'Failed login attempt with username podiatristcapetown','88.212.235.184',1663032907,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52658,'Failed login attempt with username podct','20.101.71.221',1663033439,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(52659,'Failed login attempt with username podct','139.59.155.185',1663034349,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52660,'Failed login attempt with username podiatristcapetown','139.59.155.185',1663034350,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52661,'Failed login attempt with username podct','172.104.156.149',1663034528,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1,'podct',NULL),(52662,'Failed login attempt with username andyblecherpodiatrist','185.119.81.109',1663035238,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52663,'Failed login attempt with username podct','45.239.137.69',1663035563,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52664,'Failed login attempt with username admin','45.239.137.69',1663035566,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52665,'Failed login attempt with username podct','188.165.198.224',1663035614,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(52666,'Request for file /admin/ which doesn\'t exist','178.18.206.98',1663036046,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'/admin/',NULL),(52667,'Failed login attempt with username podct','188.212.34.69',1663036704,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36',1,'podct',NULL),(52668,'Failed login attempt with username podct','65.21.13.12',1663037452,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52669,'Failed login attempt with username podiatristcapetown','65.21.13.12',1663037454,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52670,'Failed login attempt with username podct','31.220.104.234',1663037467,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52671,'Failed login attempt with username podiatrist','31.220.104.234',1663037468,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52672,'Failed login attempt with username podct','124.153.66.86',1663037797,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(52673,'Failed login attempt with username podct','5.101.156.223',1663038626,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52674,'Failed login attempt with username support','5.101.156.223',1663038628,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52675,'Failed login attempt with username podct','163.172.110.27',1663038687,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52676,'Failed login attempt with username admin','163.172.110.27',1663038688,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52677,'Failed login attempt with username podct','51.68.11.231',1663038772,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52678,'Failed login attempt with username podiatrist.capetown','51.68.11.231',1663038773,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52679,'Failed login attempt with username podct','185.2.4.33',1663038891,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'podct',NULL),(52680,'Request for file /admin/ which doesn\'t exist','195.161.68.182',1663039985,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'/admin/',NULL),(52681,'Failed login attempt with username podct','14.241.233.205',1663039985,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(52682,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1663040076,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52683,'Failed login attempt with username podct','46.101.163.94',1663040266,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52684,'Failed login attempt with username podiatristcapetown','46.101.163.94',1663040267,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52685,'Failed login attempt with username podct','136.243.118.43',1663040658,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52686,'Failed login attempt with username admin','136.243.118.43',1663040659,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52687,'Failed login attempt with username podct','13.79.17.158',1663041080,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(52688,'Failed login attempt with username podct','118.27.30.151',1663042160,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36',1,'podct',NULL),(52689,'Failed login attempt with username podct','159.89.109.117',1663043235,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(52690,'Failed login attempt with username podct','81.88.52.8',1663044301,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(52691,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1663045057,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52692,'Failed login attempt with username podct','137.184.117.52',1663045354,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52693,'Failed login attempt with username admin','185.119.81.101',1663046292,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36',1,'admin',NULL),(52694,'Failed login attempt with username podct','157.230.127.126',1663046409,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(52695,'Failed login attempt with username function','185.119.81.101',1663046915,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',1,'function',NULL),(52696,'Failed login attempt with username podct','162.144.87.29',1663047438,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(52697,'Failed login attempt with username admin','185.119.81.107',1663048033,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'admin',NULL),(52698,'Failed login attempt with username podct','172.104.156.149',1663048454,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52699,'Failed login attempt with username podct','125.227.127.195',1663049489,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(52700,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1663049666,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52701,'Failed login attempt with username podct','39.108.148.88',1663050536,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(52702,'Failed login attempt with username podct','173.236.169.240',1663051594,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52703,'Failed login attempt with username podct','45.120.69.121',1663052655,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52704,'Failed login attempt with username suffering','185.119.81.107',1663053391,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'suffering',NULL),(52705,'Failed login attempt with username podct','162.240.28.177',1663053720,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36',1,'podct',NULL),(52706,'Failed login attempt with username podct','185.126.219.43',1663054797,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'podct',NULL),(52707,'Failed login attempt with username podct','47.105.73.13',1663055873,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(52708,'Failed login attempt with username podct','65.2.129.199',1663056299,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52709,'Failed login attempt with username support','65.2.129.199',1663056301,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52710,'Failed login attempt with username podct','5.101.156.223',1663056630,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52711,'Failed login attempt with username admin','5.101.156.223',1663056632,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52712,'Failed login attempt with username podct','47.110.72.238',1663056945,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(52713,'Failed login attempt with username podct','69.163.224.107',1663058014,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(52714,'Failed login attempt with username podct','103.41.204.187',1663058557,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52715,'Failed login attempt with username podiatristcapetown','103.41.204.187',1663058559,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52716,'Failed login attempt with username recently','185.119.81.99',1663059042,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'recently',NULL),(52717,'Failed login attempt with username podct','139.59.150.45',1663059075,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(52718,'Failed login attempt with username podct','124.153.66.86',1663060149,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(52719,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1663060991,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52720,'Failed login attempt with username podct','69.163.224.107',1663061231,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(52721,'Failed login attempt with username podct','178.254.50.202',1663061673,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52722,'Failed login attempt with username podiatrist','178.254.50.202',1663061674,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52723,'Failed login attempt with username podct','165.227.47.204',1663061881,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52724,'Failed login attempt with username podiatristcapetown','165.227.47.204',1663061883,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52725,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1663062211,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52726,'Failed login attempt with username podct','161.35.52.207',1663062311,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(52727,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1663063413,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52728,'Failed login attempt with username admin','185.119.81.108',1663067032,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'admin',NULL),(52729,'Failed login attempt with username admin','69.163.186.158',1663067969,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'admin',NULL),(52730,'Failed login attempt with username admin','75.119.157.181',1663069044,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'admin',NULL),(52731,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1663069089,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52732,'Failed login attempt with username podct','89.32.46.91',1663069588,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52733,'Failed login attempt with username support','89.32.46.91',1663069589,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52734,'Failed login attempt with username admin','212.103.4.29',1663070127,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'admin',NULL),(52735,'Failed login attempt with username podct','178.172.136.168',1663070513,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52736,'Failed login attempt with username podiatrist.capetown','178.172.136.168',1663070514,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52737,'Failed login attempt with username admin','77.240.13.186',1663071221,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'admin',NULL),(52738,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1663071319,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52739,'Failed login attempt with username podct','47.243.90.207',1663071762,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52740,'Failed login attempt with username admin','47.243.90.207',1663071764,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52741,'Failed login attempt with username podct','93.189.24.54',1663071978,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52742,'Failed login attempt with username podiatrist.capetown','93.189.24.54',1663071979,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52743,'Failed login attempt with username podct','185.126.176.114',1663072112,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52744,'Failed login attempt with username support','185.126.176.114',1663072113,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52745,'Request for file /.env which doesn\'t exist','20.38.41.5',1663072264,'404_error','Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30',1,'/.env',NULL),(52746,'Failed login attempt with username admin','47.111.116.44',1663072320,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'admin',NULL),(52747,'Failed login attempt with username admin','68.183.71.174',1663073419,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'admin',NULL),(52748,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.108',1663074365,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52749,'Failed login attempt with username podct','185.190.117.89',1663074525,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0',1,'podct',NULL),(52750,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1663075445,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52751,'Failed login attempt with username podct','134.122.35.243',1663075597,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52752,'Failed login attempt with username podiatrist.capetown','134.122.35.243',1663075599,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52753,'Failed login attempt with username podct','159.223.170.181',1663075630,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52754,'Failed login attempt with username podct','178.128.53.95',1663075915,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52755,'Failed login attempt with username admin','178.128.53.95',1663075917,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52756,'Failed login attempt with username podct','37.187.25.44',1663076494,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52757,'Failed login attempt with username podiatrist','37.187.25.44',1663076499,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52758,'Failed login attempt with username podct','168.119.80.254',1663076741,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36',1,'podct',NULL),(52759,'Request for file /apple-touch-icon-precomposed.png which doesn\'t exist','45.220.255.81',1663076747,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0',1,'/apple-touch-icon-precomposed.png',NULL),(52760,'Request for file /apple-touch-icon.png which doesn\'t exist','45.220.255.81',1663076747,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0',1,'/apple-touch-icon.png',NULL),(52761,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.99',1663077171,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52762,'Failed login attempt with username podct','69.163.196.200',1663077858,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52763,'Failed login attempt with username podct','78.135.106.191',1663078831,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52764,'Failed login attempt with username support','78.135.106.191',1663078833,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52765,'Failed login attempt with username podct','142.93.54.10',1663078983,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(52766,'Request for file /.well-known/traffic-advice which doesn\'t exist','66.249.93.53',1663079014,'404_error','Chrome Privacy Preserving Prefetch Proxy',1,'/.well-known/traffic-advice',NULL),(52767,'Failed login attempt with username podct','95.217.3.120',1663079581,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52768,'Failed login attempt with username podiatrist.capetown','95.217.3.120',1663079582,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52769,'Failed login attempt with username wadminw','91.123.18.217',1663079633,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wadminw',NULL),(52770,'Failed login attempt with username wwwadmin','128.199.68.99',1663080426,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96',1,'wwwadmin',NULL),(52771,'Request for file /.git/config which doesn\'t exist','18.221.17.249',1663080730,'404_error','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36',1,'/.git/config',NULL),(52772,'Failed login attempt with username admin','185.2.4.134',1663081235,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'admin',NULL),(52773,'Failed login attempt with username podct','46.101.62.7',1663081521,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52774,'Failed login attempt with username podiatrist.capetown','46.101.62.7',1663081525,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52775,'Failed login attempt with username podct','198.252.110.226',1663082066,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52776,'Failed login attempt with username support','198.252.110.226',1663082068,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52777,'Failed login attempt with username podct','97.74.84.167',1663083494,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52778,'Failed login attempt with username podiatrist.capetown','97.74.84.167',1663083496,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52779,'Failed login attempt with username podct','92.63.97.240',1663083632,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52780,'Failed login attempt with username admin','92.63.97.240',1663083633,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52781,'Failed login attempt with username podct','43.251.135.217',1663084064,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(52782,'Failed login attempt with username podct','65.21.9.119',1663084356,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52783,'Failed login attempt with username admin','65.21.9.119',1663084358,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52784,'Failed login attempt with username admin','185.119.81.108',1663085337,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.63 Safari/537.36',1,'admin',NULL),(52785,'Failed login attempt with username podct','85.146.18.88',1663085499,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',1,'podct',NULL),(52786,'Failed login attempt with username podct','37.187.25.44',1663085978,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52787,'Failed login attempt with username podiatrist','37.187.25.44',1663085984,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52788,'Request for file /user.zip which doesn\'t exist','185.220.101.65',1663086254,'404_error','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)',1,'/user.zip',NULL),(52789,'Request for file /www.zip which doesn\'t exist','199.249.230.189',1663086259,'404_error','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)',1,'/www.zip',NULL),(52790,'Request for file /arch.zip which doesn\'t exist','198.140.141.30',1663086265,'404_error','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)',1,'/arch.zip',NULL),(52791,'Request for file /backup.zip which doesn\'t exist','109.70.100.36',1663086267,'404_error','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)',1,'/backup.zip',NULL),(52792,'Request for file /file.zip which doesn\'t exist','198.98.59.243',1663086271,'404_error','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)',1,'/file.zip',NULL),(52793,'Request for file /files.zip which doesn\'t exist','185.100.87.192',1663086274,'404_error','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)',1,'/files.zip',NULL),(52794,'Request for file /reserv.zip which doesn\'t exist','107.189.8.65',1663086276,'404_error','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)',1,'/reserv.zip',NULL),(52795,'Failed login attempt with username podct','111.230.202.147',1663086946,'auth_fail','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36',1,'podct',NULL),(52796,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1663087442,'auth_fail','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52797,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.107',1663088228,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52798,'Failed login attempt with username admin','185.119.81.99',1663088286,'auth_fail','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36',1,'admin',NULL),(52799,'Failed login attempt with username podct','159.203.120.246',1663088393,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(52800,'Failed login attempt with username podct','93.84.114.152',1663088703,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52801,'Failed login attempt with username podiatrist.capetown','93.84.114.152',1663088705,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52802,'Failed login attempt with username podct','120.78.15.126',1663089842,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'podct',NULL),(52803,'Failed login attempt with username podct','80.78.255.36',1663091240,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52804,'Failed login attempt with username podiatrist','80.78.255.36',1663091241,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52805,'Failed login attempt with username podct','1.117.250.215',1663091255,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36',1,'podct',NULL),(52806,'Failed login attempt with username podct','185.207.228.4',1663091450,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52807,'Failed login attempt with username podiatrist.capetown','185.207.228.4',1663091452,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52808,'Failed login attempt with username podiatrist','5.101.157.136',1663092067,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52809,'Failed login attempt with username podct','167.172.168.111',1663092639,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(52810,'Failed login attempt with username podct','89.32.46.91',1663093583,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52811,'Failed login attempt with username admin','89.32.46.91',1663093584,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52812,'Failed login attempt with username podct','144.126.223.177',1663094011,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'podct',NULL),(52813,'Failed login attempt with username admin','185.119.81.101',1663094273,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'admin',NULL),(52814,'Failed login attempt with username podct','13.81.59.92',1663095352,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52815,'Failed login attempt with username podct','157.230.127.126',1663096674,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'podct',NULL),(52816,'Request for file /wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../wp-config.php which doesn\'t exist','41.76.108.25',1663096805,'404_error','Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0',1,'/wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../wp-config.php',NULL),(52817,'Failed login attempt with username andyblecherpodiatrist','185.119.81.108',1663097885,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52818,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1663097929,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52819,'Failed login attempt with username podct','157.230.127.126',1663097963,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(52820,'Failed login attempt with username podct','103.166.183.192',1663099256,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52821,'Failed login attempt with username podct','95.217.3.120',1663099525,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52822,'Failed login attempt with username podiatristcapetown','95.217.3.120',1663099526,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52823,'Request for file /wp-commentin.php which doesn\'t exist','92.53.96.244',1663099876,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',1,'/wp-commentin.php',NULL),(52824,'Failed login attempt with username podct','34.68.199.109',1663100267,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52825,'Failed login attempt with username podiatrist.capetown','34.68.199.109',1663100269,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52826,'Failed login attempt with username podct','123.25.21.16',1663100541,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52827,'Failed login attempt with username podiatristcapetown','213.136.93.169',1663100561,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52828,'Failed login attempt with username podiatrist.capetown','195.242.218.237',1663101495,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52829,'Failed login attempt with username podct','77.65.213.168',1663101846,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(52830,'Failed login attempt with username podct','143.244.177.220',1663103161,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(52831,'Failed login attempt with username podct','217.182.142.186',1663104433,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52832,'Failed login attempt with username podiatristcapetown','217.182.142.186',1663104434,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52833,'Failed login attempt with username podct','161.35.126.102',1663104475,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52834,'Failed login attempt with username podct','202.29.236.140',1663105794,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36',1,'podct',NULL),(52835,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1663106990,'auth_fail','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52836,'Failed login attempt with username podct','168.119.80.254',1663107120,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(52837,'Failed login attempt with username podct','176.53.62.61',1663107122,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52838,'Failed login attempt with username admin','176.53.62.61',1663107123,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52839,'Failed login attempt with username podct','8.210.55.10',1663108230,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52840,'Failed login attempt with username support','8.210.55.10',1663108231,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52841,'Failed login attempt with username podct','134.122.35.243',1663108380,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52842,'Failed login attempt with username admin','134.122.35.243',1663108382,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52843,'Request for file /wp-commentin.php which doesn\'t exist','135.181.254.222',1663108603,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-commentin.php',NULL),(52844,'Request for file /wp/wp-commentin.php which doesn\'t exist','135.181.254.222',1663108612,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp/wp-commentin.php',NULL),(52845,'Request for file /wordpress/wp-commentin.php which doesn\'t exist','135.181.254.222',1663108619,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wordpress/wp-commentin.php',NULL),(52846,'Request for file /blog/wp-commentin.php which doesn\'t exist','135.181.254.222',1663108624,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/blog/wp-commentin.php',NULL),(52847,'Request for file /site/wp-commentin.php which doesn\'t exist','135.181.254.222',1663108630,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/site/wp-commentin.php',NULL),(52848,'Failed login attempt with username podct','188.225.18.210',1663109595,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52849,'Failed login attempt with username support','188.225.18.210',1663109596,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52850,'Failed login attempt with username podct','128.199.14.4',1663109789,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36',1,'podct',NULL),(52851,'Failed login attempt with username podct','92.53.96.222',1663110731,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52852,'Failed login attempt with username support','92.53.96.222',1663110733,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52853,'Failed login attempt with username podct','92.53.96.222',1663110735,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52854,'Failed login attempt with username support','92.53.96.222',1663110736,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52855,'Failed login attempt with username podct','92.53.96.222',1663110836,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52856,'Lockout occurred: Too many failed login attempts','92.53.96.222',1663110837,'auth_lock','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52857,'Failed login attempt with username podct','69.163.152.12',1663111129,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52858,'Failed login attempt with username podct','65.21.105.105',1663112471,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52859,'Failed login attempt with username podct','141.94.247.170',1663113815,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52860,'Failed login attempt with username admin','185.119.81.99',1663114041,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',1,'admin',NULL),(52861,'Failed login attempt with username podct','142.93.54.10',1663115151,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36',1,'podct',NULL),(52862,'Request for file /wordpress which doesn\'t exist','173.212.224.141',1663115314,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wordpress',NULL),(52863,'Request for file /wp which doesn\'t exist','173.212.224.141',1663115316,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp',NULL),(52864,'Request for file /bc which doesn\'t exist','173.212.224.141',1663115317,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/bc',NULL),(52865,'Failed login attempt with username podct','142.132.194.96',1663115317,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52866,'Request for file /bk which doesn\'t exist','173.212.224.141',1663115318,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/bk',NULL),(52867,'Failed login attempt with username podiatrist.capetown','142.132.194.96',1663115319,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52868,'Request for file /backup which doesn\'t exist','173.212.224.141',1663115319,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/backup',NULL),(52869,'Request for file /old which doesn\'t exist','173.212.224.141',1663115319,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/old',NULL),(52870,'Request for file /new which doesn\'t exist','173.212.224.141',1663115321,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/new',NULL),(52871,'Request for file /main which doesn\'t exist','173.212.224.141',1663115322,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/main',NULL),(52872,'Request for file /home which doesn\'t exist','173.212.224.141',1663115323,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/home',NULL),(52873,'Failed login attempt with username podct','37.187.25.44',1663115767,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52874,'Failed login attempt with username podiatristcapetown','37.187.25.44',1663115769,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52875,'Failed login attempt with username podct','159.203.121.12',1663116500,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(52876,'Failed login attempt with username podct','46.101.62.7',1663116727,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52877,'Failed login attempt with username admin','46.101.62.7',1663116728,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52878,'Failed login attempt with username podiatrist.capetown','188.225.82.128',1663116978,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52879,'Request for file /wp-content/plugins/core-engine/index.php which doesn\'t exist','152.89.196.13',1663117423,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',1,'/wp-content/plugins/core-engine/index.php',NULL),(52880,'Failed login attempt with username podct','47.91.198.167',1663117473,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52881,'Failed login attempt with username admin','47.91.198.167',1663117475,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52882,'Failed login attempt with username podct','146.56.99.136',1663117852,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36',1,'podct',NULL),(52883,'Failed login attempt with username podct','185.46.9.225',1663117859,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52884,'Failed login attempt with username admin','185.46.9.225',1663117864,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52885,'Request for file /wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml which doesn\'t exist','46.161.27.156',1663118093,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/wp-content/cache/page_enhanced/podiatrist.capetown/author-sitemap.xml/_index_ssl.xml',NULL),(52886,'Request for file /author-sitemap.xml which doesn\'t exist','46.161.27.156',1663118095,'404_error','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1,'/author-sitemap.xml',NULL),(52887,'Failed login attempt with username podct','5.189.171.170',1663118940,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52888,'Failed login attempt with username podiatrist.capetown','5.189.171.170',1663118941,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52889,'Failed login attempt with username podct','145.239.30.120',1663119310,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',1,'podct',NULL),(52890,'Request for file /wp-content/plugins/core-engine/ which doesn\'t exist','148.72.177.90',1663119495,'404_error','Go-http-client/1.1',1,'/wp-content/plugins/core-engine/',NULL),(52891,'Request for file /wp-content/plugins/wpgateway/wpgateway-webservice-new.php which doesn\'t exist','148.72.177.90',1663119497,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/wpgateway/wpgateway-webservice-new.php',NULL),(52892,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','148.72.177.90',1663119498,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/mar.php',NULL),(52893,'Request for file /wp-content/plugins/seoplugins/mar.php which doesn\'t exist','148.72.177.90',1663119500,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/seoplugins/mar.php',NULL),(52894,'Request for file /wp-content/uploads/typehub/custom/tatsu/0x.php which doesn\'t exist','148.72.177.90',1663119501,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/typehub/custom/tatsu/0x.php',NULL),(52895,'Request for file /wp-content/uploads/typehub/custom/wi/.wi.php which doesn\'t exist','148.72.177.90',1663119503,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/uploads/typehub/custom/wi/.wi.php',NULL),(52896,'Request for file /wp-content/themes/seotheme/db.php?u=1 which doesn\'t exist','148.72.177.90',1663119505,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/db.php?u=1',NULL),(52897,'Request for file /wp-content/plugins/seoplugins/db.php?u=1 which doesn\'t exist','148.72.177.90',1663119506,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/plugins/seoplugins/db.php?u=1',NULL),(52898,'Request for file /wp-content/themes/seotheme/0z.php which doesn\'t exist','148.72.177.90',1663119508,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/seotheme/0z.php',NULL),(52899,'Request for file /wp-content/wp-files-conficg.php which doesn\'t exist','148.72.177.90',1663119510,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/wp-files-conficg.php',NULL),(52900,'Request for file /wp-content/wordpress-index-keyword.php which doesn\'t exist','148.72.177.90',1663119511,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/wordpress-index-keyword.php',NULL),(52901,'Request for file /wp-includes/wp-shield-icon-managed.php which doesn\'t exist','148.72.177.90',1663119513,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-includes/wp-shield-icon-managed.php',NULL),(52902,'Request for file /wp-content/themes/inunity/alpha.php which doesn\'t exist','148.72.177.90',1663119514,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-content/themes/inunity/alpha.php',NULL),(52903,'Request for file /wp-content/plugins/wpgateway/images/lead-menu-icon.png which doesn\'t exist','62.210.113.119',1663119825,'404_error','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',1,'/wp-content/plugins/wpgateway/images/lead-menu-icon.png',NULL),(52904,'Failed login attempt with username podct','69.163.224.107',1663120674,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',1,'podct',NULL),(52905,'Failed login attempt with username podct','47.107.242.103',1663122039,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(52906,'Failed login attempt with username andyblecherpodiatrist','185.119.81.101',1663122933,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52907,'Failed login attempt with username podct','208.113.171.103',1663123399,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',1,'podct',NULL),(52908,'Failed login attempt with username podct','178.20.156.80',1663123833,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52909,'Failed login attempt with username admin','178.20.156.80',1663123834,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52910,'Failed login attempt with username podct','103.149.154.8',1663124756,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'podct',NULL),(52911,'Failed login attempt with username podct','185.67.1.211',1663125109,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52912,'Failed login attempt with username podiatrist.capetown','185.67.1.211',1663125112,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52913,'Failed login attempt with username podct','5.189.175.67',1663125286,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52914,'Failed login attempt with username podiatristcapetown','5.189.175.67',1663125287,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52915,'Failed login attempt with username podct','164.90.170.66',1663125743,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52916,'Failed login attempt with username support','164.90.170.66',1663125745,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52917,'Failed login attempt with username podct','188.166.61.228',1663126123,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(52918,'Failed login attempt with username podct','83.150.214.18',1663126489,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52919,'Failed login attempt with username admin','83.150.214.18',1663126490,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52920,'Failed login attempt with username podct','104.248.129.221',1663126601,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52921,'Failed login attempt with username podiatrist','104.248.129.221',1663126602,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52922,'Failed login attempt with username podct','51.89.47.206',1663127467,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',1,'podct',NULL),(52923,'Failed login attempt with username podct','185.104.249.169',1663127611,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52924,'Failed login attempt with username podiatristcapetown','185.104.249.169',1663127613,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52925,'Failed login attempt with username podct','5.101.118.104',1663128757,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52926,'Failed login attempt with username podiatrist','5.101.118.104',1663128759,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52927,'Failed login attempt with username podct','161.35.126.102',1663128812,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',1,'podct',NULL),(52928,'Failed login attempt with username podct','78.142.211.46',1663129278,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52929,'Failed login attempt with username podiatrist.capetown','78.142.211.46',1663129279,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist.capetown',NULL),(52930,'Failed login attempt with username podct','82.202.174.35',1663129534,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52931,'Failed login attempt with username admin','82.202.174.35',1663129536,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL);
INSERT INTO `wp_defender_lockout_log` VALUES (52932,'Failed login attempt with username podct','51.91.151.60',1663130158,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',1,'podct',NULL),(52933,'Failed login attempt with username podct','34.69.109.132',1663131509,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',1,'podct',NULL),(52934,'Failed login attempt with username andyblecherpodiatrist','185.119.81.98',1663132543,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52935,'Failed login attempt with username podct','85.91.237.106',1663132861,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1,'podct',NULL),(52936,'Failed login attempt with username podct','34.136.77.170',1663132949,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52937,'Failed login attempt with username admin','34.136.77.170',1663132950,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52938,'Failed login attempt with username everything','185.119.81.99',1663134232,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',1,'everything',NULL),(52939,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.98',1663134411,'auth_fail','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52940,'Request for file /wp-content/themes/seotheme/mar.php which doesn\'t exist','41.216.188.14',1663135314,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp-content/themes/seotheme/mar.php',NULL),(52941,'Request for file /wp/wp-content/themes/seotheme/mar.php which doesn\'t exist','41.216.188.14',1663135344,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wp/wp-content/themes/seotheme/mar.php',NULL),(52942,'Request for file /wordpress/wp-content/themes/seotheme/mar.php which doesn\'t exist','41.216.188.14',1663135355,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/wordpress/wp-content/themes/seotheme/mar.php',NULL),(52943,'Request for file /blog/wp-content/themes/seotheme/mar.php which doesn\'t exist','41.216.188.14',1663135377,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/blog/wp-content/themes/seotheme/mar.php',NULL),(52944,'Request for file /site/wp-content/themes/seotheme/mar.php which doesn\'t exist','41.216.188.14',1663135383,'404_error','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',1,'/site/wp-content/themes/seotheme/mar.php',NULL),(52945,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.101',1663135493,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52946,'Failed login attempt with username podct','121.243.95.160',1663135576,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',1,'podct',NULL),(52947,'Failed login attempt with username podct','134.209.184.76',1663136948,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',1,'podct',NULL),(52948,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1663138003,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52949,'Failed login attempt with username podct','34.65.234.0',1663138325,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'podct',NULL),(52950,'Failed login attempt with username podct','202.29.236.140',1663139702,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36',1,'podct',NULL),(52951,'Failed login attempt with username podct','66.33.193.231',1663141073,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52952,'Failed login attempt with username podct','47.116.48.109',1663142452,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36',1,'podct',NULL),(52953,'Failed login attempt with username andyblecherpodiatrist@gmail.com','185.119.81.104',1663143181,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36',1,'andyblecherpodiatrist@gmail.com',NULL),(52954,'Failed login attempt with username podct','208.113.153.235',1663143835,'auth_fail','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36',1,'podct',NULL),(52955,'Failed login attempt with username podct','80.88.88.149',1663145223,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(52956,'Failed login attempt with username information','185.119.81.98',1663145827,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Safari/537.36',1,'information',NULL),(52957,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1663146582,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52958,'Failed login attempt with username podct','173.236.169.240',1663146632,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52959,'Failed login attempt with username podct','188.225.18.210',1663147509,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52960,'Failed login attempt with username podiatrist','188.225.18.210',1663147510,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52961,'Failed login attempt with username andyblecherpodiatrist','185.119.81.96',1663147772,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52962,'Failed login attempt with username podct','212.110.92.155',1663148034,'auth_fail','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4',1,'podct',NULL),(52963,'Failed login attempt with username podct','87.249.38.253',1663148981,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52964,'Failed login attempt with username support','87.249.38.253',1663148982,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'support',NULL),(52965,'Failed login attempt with username podct','185.207.228.4',1663149276,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52966,'Failed login attempt with username admin','185.207.228.4',1663149276,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'admin',NULL),(52967,'Failed login attempt with username podct','134.209.192.202',1663149326,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52968,'Failed login attempt with username podiatristcapetown','134.209.192.202',1663149327,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatristcapetown',NULL),(52969,'Failed login attempt with username podct','157.245.110.251',1663149432,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',1,'podct',NULL),(52970,'Failed login attempt with username admin','185.119.81.108',1663150574,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',1,'admin',NULL),(52971,'Failed login attempt with username podct','148.72.214.245',1663150831,'auth_fail','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',1,'podct',NULL),(52972,'Failed login attempt with username Interesting','185.119.81.107',1663151837,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36',1,'Interesting',NULL),(52973,'Failed login attempt with username podct','167.71.63.47',1663152251,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36',1,'podct',NULL),(52974,'Failed login attempt with username podct','188.127.239.132',1663153144,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52975,'Failed login attempt with username podiatrist','188.127.239.132',1663153145,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52976,'Failed login attempt with username podct','139.59.118.238',1663153668,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36',1,'podct',NULL),(52977,'Failed login attempt with username andyblecherpodiatrist','185.119.81.99',1663154499,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52978,'Failed login attempt with username andyblecherpodiatrist','185.119.81.107',1663154981,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36',1,'andyblecherpodiatrist',NULL),(52979,'Failed login attempt with username podct','47.115.24.165',1663155076,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1,'podct',NULL),(52980,'Failed login attempt with username podct','103.166.183.192',1663156486,'auth_fail','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36',1,'podct',NULL),(52981,'Request for file /wp-content/themes/TheLoft/download.php?file=../../../wp-config.php which doesn\'t exist','82.223.74.155',1663157481,'404_error','Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0',1,'/wp-content/themes/TheLoft/download.php?file=../../../wp-config.php',NULL),(52982,'Failed login attempt with username podct','202.29.236.140',1663157895,'auth_fail','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',1,'podct',NULL),(52983,'Failed login attempt with username podct','178.211.58.145',1663157928,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podct',NULL),(52984,'Failed login attempt with username podiatrist','178.211.58.145',1663157929,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0',1,'podiatrist',NULL),(52985,'Failed login attempt with username admin','207.154.248.39',1663161561,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36',1,'admin',NULL),(52986,'Failed login attempt with username admin','77.65.213.168',1663164397,'auth_fail','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36',1,'admin',NULL),(52987,'Failed login attempt with username podct','106.52.120.186',1663169687,'auth_fail','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',1,'podct',NULL),(52988,'Failed login attempt with username podct','68.183.71.174',1663170635,'auth_fail','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36',1,'podct',NULL),(52989,'Failed login attempt with username podct','167.172.105.95',1663178965,'auth_fail','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',1,'podct',NULL),(52990,'Request for file /wp-system-cloud.php which doesn\'t exist','138.201.97.39',1663195878,'404_error','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36',1,'/wp-system-cloud.php',NULL);
/*!40000 ALTER TABLE `wp_defender_lockout_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_defender_scan`
--

DROP TABLE IF EXISTS `wp_defender_scan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_defender_scan` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `percent` float NOT NULL,
  `total_tasks` tinyint(4) NOT NULL,
  `task_checkpoint` varchar(255) NOT NULL,
  `status` varchar(255) NOT NULL,
  `date_start` datetime NOT NULL,
  `date_end` datetime NOT NULL,
  `is_automation` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_defender_scan`
--

LOCK TABLES `wp_defender_scan` WRITE;
/*!40000 ALTER TABLE `wp_defender_scan` DISABLE KEYS */;
INSERT INTO `wp_defender_scan` VALUES (1,99.97,2,'','finish','2021-06-02 13:26:39','2021-06-02 13:26:39',0);
/*!40000 ALTER TABLE `wp_defender_scan` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_defender_scan_item`
--

DROP TABLE IF EXISTS `wp_defender_scan_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_defender_scan_item` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `status` varchar(255) NOT NULL,
  `raw_data` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_defender_scan_item`
--

LOCK TABLES `wp_defender_scan_item` WRITE;
/*!40000 ALTER TABLE `wp_defender_scan_item` DISABLE KEYS */;
INSERT INTO `wp_defender_scan_item` VALUES (1,1,'core_integrity','ignore','{\"file\":\"\\/home\\/podct\\/public_html\\/stats\",\"type\":\"dir\"}');
/*!40000 ALTER TABLE `wp_defender_scan_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_events`
--

DROP TABLE IF EXISTS `wp_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_events`
--

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

--
-- Table structure for table `wp_e_notes`
--

DROP TABLE IF EXISTS `wp_e_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `author_id` bigint(20) unsigned DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `route_url_index` (`route_url`(191)),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `parent_id_index` (`parent_id`),
  KEY `author_id_index` (`author_id`),
  KEY `status_index` (`status`),
  KEY `is_resolved_index` (`is_resolved`),
  KEY `is_public_index` (`is_public`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_notes`
--

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

--
-- Table structure for table `wp_e_notes_users_relations`
--

DROP TABLE IF EXISTS `wp_e_notes_users_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_notes_users_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_notes_users_relations`
--

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

--
-- Table structure for table `wp_e_submissions`
--

DROP TABLE IF EXISTS `wp_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_submissions`
--

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

--
-- Table structure for table `wp_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wp_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_submissions_actions_log`
--

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

--
-- Table structure for table `wp_e_submissions_values`
--

DROP TABLE IF EXISTS `wp_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_submissions_values`
--

LOCK TABLES `wp_e_submissions_values` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_submissions_values` 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_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=131331 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://podiatrist.capetown','yes'),(2,'home','https://podiatrist.capetown','yes'),(3,'blogname','Andy Blecher Podiatrist','yes'),(4,'blogdescription','Plumstead and Sea Point practices','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','adrian@fullerz.co.za','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','m/d/Y','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:6:{i:0;s:33:\"defender-security/wp-defender.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:42:\"hummingbird-performance/wp-hummingbird.php\";i:4;s:31:\"smartcrawl-seo/wpmu-dev-seo.php\";i:5;s:27:\"updraftplus/updraftplus.php\";i:6;s:23:\"wp-smushit/wp-smush.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','a:2:{i:0;s:67:\"/home/podct/public_html/wp-content/themes/hello-elementor/style.css\";i:1;s:0:\"\";}','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','53496','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','Africa/Johannesburg','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','69','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','87','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1678542437','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:1:{s:31:\"elementor-pro/elementor-pro.php\";s:5:\"3.7.5\";}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:27:{i:1663178980;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1663179351;a:1:{s:22:\"firewall_clean_up_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1663179744;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:1663180200;a:1:{s:21:\"wdf_maybe_send_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:14:\"thirty_minutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1800;}}}i:1663200000;a:1:{s:22:\"wdev_logger_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663201344;a:3:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1663201345;a:1:{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:1663202009;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1663202199;a:1:{s:26:\"wds_sitemap_validity_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:1663203534;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:1663209318;a:2:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663239197;a:1:{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:1663239302;a:1:{s:23:\"wds_daily_moz_data_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663244543;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663244544;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663244615;a:1:{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;}}}i:1663244616;a:1:{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:1663244621;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:1663245188;a:1:{s:27:\"wpdef_log_rotational_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:1663245928;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663250134;a:1:{s:15:\"wphb_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663250137;a:1:{s:22:\"wp_defender_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663251460;a:1:{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;}}}i:1663260697;a:1:{s:23:\"wphb_minify_clear_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663337862;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663677756;a:1:{s:21:\"wpdef_clear_scan_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1622637907;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(147,'finished_updating_comment_type','1','yes'),(151,'current_theme','Hello Elementor','yes'),(152,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"menu-1\";i:2;s:6:\"menu-2\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:16;}','yes'),(153,'theme_switched','','yes'),(158,'recently_activated','a:1:{s:31:\"elementor-pro/elementor-pro.php\";i:1662990486;}','yes'),(159,'elementor_version','3.7.4','yes'),(160,'elementor_install_history','a:33:{s:5:\"3.2.2\";i:1624272761;s:5:\"3.2.4\";i:1622638063;s:5:\"3.2.5\";i:1624272765;s:5:\"3.3.0\";i:1626265343;s:5:\"3.3.1\";i:1626828897;s:5:\"3.3.2\";i:1629827875;s:5:\"3.3.8\";i:1631622146;s:5:\"3.4.0\";i:1629160097;s:5:\"3.4.1\";i:1629332921;s:5:\"3.4.2\";i:1629827876;s:5:\"3.4.3\";i:1630328891;s:5:\"3.4.4\";i:1631622147;s:5:\"3.4.5\";i:1634085723;s:5:\"3.4.6\";i:1634651649;s:5:\"3.4.7\";i:1635727298;s:5:\"3.4.8\";i:1637646128;s:5:\"3.5.0\";i:1639529475;s:5:\"3.5.1\";i:1640003557;s:5:\"3.5.2\";i:1640223000;s:5:\"3.5.3\";i:1640738777;s:5:\"3.5.4\";i:1642941826;s:5:\"3.5.5\";i:1645597343;s:5:\"3.5.6\";i:1646141603;s:5:\"3.6.0\";i:1648036700;s:5:\"3.6.1\";i:1648082771;s:5:\"3.6.2\";i:1649766447;s:5:\"3.6.3\";i:1649810489;s:5:\"3.6.4\";i:1649896623;s:5:\"3.6.5\";i:1652747840;s:5:\"3.6.6\";i:1655339136;s:5:\"3.7.0\";i:1652747839;s:5:\"3.7.1\";i:1655339135;s:5:\"3.7.4\";i:1662990538;}','yes'),(162,'_elementor_installed_time','1622637939','yes'),(163,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:825:{i:0;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:120;a:16:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:16:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:145;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:160;a:16:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:162;a:16:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:16:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:165;a:16:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:16:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:16:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:171;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:174;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"Medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:176;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:181;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:183;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:187;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:191;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:193;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:196;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:197;a:16:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:201;a:16:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:204;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:207;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:209;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:211;a:16:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:213;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:216;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:218;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:221;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:223;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:226;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:228;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:230;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:232;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:235;a:16:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:16:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:239;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:252;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:260;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:272;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:16:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:279;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:16:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:288;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:290;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:16:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:16:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:354;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:382;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:414;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:440;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:444;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:16:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:510;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:515;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:517;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:519;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:521;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:530;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:531;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:532;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:548;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:550;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:618;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:678;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:686;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:687;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:738;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:799;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(164,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:47:\"The Complete Guide To Design Project Management\";s:7:\"excerpt\";s:347:\"Successful web creators understand that design and systems must work side by side for people to deliver high-quality work without burning out. In this guide, we will explore the practical steps you can take to shut down time-wasting activities and frustration. Say no to scope creep and build a no-fail framework that can pivot for the unexpected.\";s:7:\"created\";i:1655196509;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:131:\"https://elementor.com/blog/design-project-management-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:30:\"Elementor Websites of May 2022\";s:7:\"excerpt\";s:315:\"May’s marvelous showcase offers a taste of new design trends and reimagined retro themes that will activate your artistic mind. Hear the sound of music festivals, awaken the entrepreneurial spirit, rediscover the joy of childhood learning, glide through skateparks, and rejuvenate with a splash of the Aegean Sea.\";s:7:\"created\";i:1655101192;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:117:\"https://elementor.com/blog/showcase-may-2022/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:53:\"5 Expert Tips To Improve Your Workflow With Elementor\";s:7:\"excerpt\";s:294:\"Our team of Elementor experts got together and came up with a list of features that will improve your workflow and make Elementor even easier to use. In this article, we’ll take a look at where you can access these features and provide you with tips on how to use them the way the experts do.\";s:7:\"created\";i:1654757528;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:124:\"https://elementor.com/blog/tips-to-improve-workflow/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(171,'elementor_pro_version','3.7.2','yes'),(172,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(173,'_elementor_pro_installed_time','1622638063','yes'),(174,'elementor_submissions_db_version','5','yes'),(175,'elementor_connect_site_key','30c25db95b0a8379c064a783aab5f3ee','yes'),(176,'elementor_allow_tracking','no','yes'),(177,'elementor_tracker_last_send','1622638090','yes'),(178,'elementor_pro_license_key','ede756b2065ac490cfe6af222b166c86','yes'),(179,'_elementor_pro_license_data_fallback','a:2:{s:7:\"timeout\";i:1663063376;s:5:\"value\";s:212:\"{\"expires\":\"2022-09-06 05:35:09\",\"subscription_id\":8976379,\"success\":false,\"license\":\"inactive\",\"subscriptions\":\"disable\",\"features\":[\"experts\",\"editor_comments\",\"template_access_level_20\",\"kit_access_level_20\"]}\";}','no'),(180,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1663020176;s:5:\"value\";s:212:\"{\"expires\":\"2022-09-06 05:35:09\",\"subscription_id\":8976379,\"success\":false,\"license\":\"inactive\",\"subscriptions\":\"disable\",\"features\":[\"experts\",\"editor_comments\",\"template_access_level_20\",\"kit_access_level_20\"]}\";}','no'),(181,'_elementor_pro_api_requests_lock','a:2:{s:16:\"get_license_data\";i:1662969776;s:11:\"get_version\";i:1662985388;}','yes'),(183,'auto_update_plugins','a:7:{i:0;s:23:\"elementor/elementor.php\";i:1;s:33:\"defender-security/wp-defender.php\";i:2;s:42:\"hummingbird-performance/wp-hummingbird.php\";i:3;s:23:\"wp-smushit/wp-smush.php\";i:11;s:31:\"elementor-pro/elementor-pro.php\";i:12;s:31:\"smartcrawl-seo/wpmu-dev-seo.php\";i:13;s:27:\"updraftplus/updraftplus.php\";}','no'),(188,'wp-smush-settings','a:22:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;}','yes'),(189,'wp-smush-install-type','existing','no'),(190,'wphb_version','3.3.4','no'),(191,'wphb-notice-uptime-info-show','yes','no'),(192,'wp-smush-version','3.11.1','no'),(196,'defender_free_install_date','1622638533','no'),(198,'wphb-free-install-date','1622638533','no'),(199,'wdev-frash','a:3:{s:7:\"plugins\";a:3:{s:42:\"hummingbird-performance/wp-hummingbird.php\";i:1622638534;s:33:\"defender-security/wp-defender.php\";i:1622638536;s:23:\"wp-smushit/wp-smush.php\";i:1622638547;}s:5:\"queue\";a:0:{}s:4:\"done\";a:5:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1622638547;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1622881651;}i:1;a:6:{s:6:\"plugin\";s:42:\"hummingbird-performance/wp-hummingbird.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1622968040;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1623137502;}i:2;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1623243347;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1623321025;}i:3;a:6:{s:6:\"plugin\";s:42:\"hummingbird-performance/wp-hummingbird.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1623407418;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"7c60b771e4d53d4a9c021c4650ad8978\";s:10:\"handled_at\";i:1623650884;}i:4;a:6:{s:6:\"plugin\";s:33:\"defender-security/wp-defender.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1623737275;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"7c60b771e4d53d4a9c021c4650ad8978\";s:10:\"handled_at\";i:1623760875;}}}','no'),(200,'wd_db_version','3.3.0','no'),(202,'wpmudev_recommended_plugins_registered','a:4:{s:33:\"defender-security/wp-defender.php\";a:1:{s:13:\"registered_at\";i:1622638538;}s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1622638547;}s:42:\"hummingbird-performance/wp-hummingbird.php\";a:1:{s:13:\"registered_at\";i:1622640262;}s:31:\"smartcrawl-seo/wpmu-dev-seo.php\";a:1:{s:13:\"registered_at\";i:1624272896;}}','no'),(217,'elementor_active_kit','9','yes'),(218,'WPLANG','en_ZA','yes'),(235,'elementor_fonts_manager_font_types','a:0:{}','yes'),(236,'elementor_fonts_manager_fonts','a:0:{}','yes'),(237,'elementor_custom_icon_sets_config','a:0:{}','yes'),(252,'_elementor_settings_update_time','1662993431','yes'),(253,'elementor_cpt_support','a:1:{i:0;s:4:\"page\";}','yes'),(254,'elementor_disable_color_schemes','','yes'),(255,'elementor_disable_typography_schemes','','yes'),(256,'elementor_notice','','yes'),(257,'elementor_google_maps_api_key','','yes'),(258,'elementor_pro_recaptcha_site_key','','yes'),(259,'elementor_pro_recaptcha_secret_key','','yes'),(260,'elementor_pro_recaptcha_v3_site_key','','yes'),(261,'elementor_pro_recaptcha_v3_secret_key','','yes'),(262,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),(263,'elementor_pro_facebook_app_id','','yes'),(264,'elementor_pro_mailchimp_api_key','','yes'),(265,'elementor_validate_api_data','','yes'),(266,'elementor_pro_drip_api_token','','yes'),(267,'elementor_pro_activecampaign_api_key','','yes'),(268,'elementor_pro_activecampaign_api_url','','yes'),(269,'elementor_pro_getresponse_api_key','','yes'),(270,'elementor_pro_convertkit_api_key','','yes'),(271,'elementor_pro_mailerlite_api_key','','yes'),(272,'elementor_typekit-kit-id','','yes'),(274,'elementor_css_print_method','external','yes'),(275,'elementor_editor_break_lines','','yes'),(276,'elementor_unfiltered_files_upload','','yes'),(277,'elementor_font_display','auto','yes'),(278,'elementor_load_fa4_shim','','yes'),(279,'elementor_experiment-e_dom_optimization','active','yes'),(280,'elementor_experiment-e_optimized_assets_loading','active','yes'),(281,'elementor_experiment-a11y_improvements','active','yes'),(282,'elementor_experiment-e_import_export','active','yes'),(283,'elementor_experiment-landing-pages','active','yes'),(284,'elementor_experiment-form-submissions','active','yes'),(289,'elementor_font_awesome_pro_kit_id','','yes'),(293,'wphb-gzip-data','a:3:{s:4:\"HTML\";b:1;s:10:\"JavaScript\";b:1;s:3:\"CSS\";b:1;}','no'),(297,'wphb_settings','a:12:{s:6:\"minify\";a:18:{s:7:\"enabled\";b:1;s:7:\"use_cdn\";b:0;s:3:\"log\";b:1;s:9:\"file_path\";s:0:\"\";s:11:\"minify_blog\";b:0;s:4:\"view\";s:5:\"basic\";s:4:\"type\";s:6:\"speedy\";s:9:\"do_assets\";a:2:{s:6:\"styles\";b:1;s:7:\"scripts\";b:1;}s:5:\"block\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:11:\"dont_minify\";a:2:{s:7:\"scripts\";a:3:{i:0;s:6:\"jquery\";i:1;s:18:\"jquery-ui-position\";i:2;s:17:\"elementor-pro-app\";}s:6:\"styles\";a:19:{i:0;s:15:\"elementor-icons\";i:1;s:15:\"hello-elementor\";i:2;s:27:\"hello-elementor-theme-style\";i:3;s:20:\"elementor-animations\";i:4;s:18:\"elementor-frontend\";i:5;s:16:\"elementor-post-9\";i:6;s:13:\"elementor-pro\";i:7;s:16:\"elementor-global\";i:8;s:14:\"google-fonts-1\";i:9;s:18:\"elementor-post-193\";i:10;s:17:\"elementor-post-69\";i:11;s:18:\"elementor-post-271\";i:12;s:18:\"elementor-post-338\";i:13;s:18:\"elementor-post-362\";i:14;s:18:\"elementor-post-372\";i:15;s:18:\"elementor-post-395\";i:16;s:18:\"elementor-post-417\";i:17;s:14:\"google-fonts-2\";i:18;s:13:\"global-styles\";}}s:12:\"dont_combine\";a:2:{s:7:\"scripts\";a:11:{i:0;s:6:\"jquery\";i:1;s:18:\"jquery-ui-position\";i:2;s:17:\"elementor-pro-app\";i:3;s:29:\"elementor-pro-webpack-runtime\";i:4;s:25:\"elementor-webpack-runtime\";i:5;s:11:\"wp-polyfill\";i:6;s:14:\"jquery-ui-core\";i:7;s:24:\"elementor-common-modules\";i:8;s:17:\"elementor-web-cli\";i:9;s:16:\"elementor-common\";i:10;s:20:\"elementor-app-loader\";}s:6:\"styles\";a:19:{i:0;s:15:\"elementor-icons\";i:1;s:15:\"hello-elementor\";i:2;s:27:\"hello-elementor-theme-style\";i:3;s:20:\"elementor-animations\";i:4;s:18:\"elementor-frontend\";i:5;s:16:\"elementor-post-9\";i:6;s:13:\"elementor-pro\";i:7;s:16:\"elementor-global\";i:8;s:14:\"google-fonts-1\";i:9;s:18:\"elementor-post-193\";i:10;s:17:\"elementor-post-69\";i:11;s:18:\"elementor-post-271\";i:12;s:18:\"elementor-post-338\";i:13;s:18:\"elementor-post-362\";i:14;s:18:\"elementor-post-372\";i:15;s:18:\"elementor-post-395\";i:16;s:18:\"elementor-post-417\";i:17;s:14:\"google-fonts-2\";i:18;s:13:\"global-styles\";}}s:8:\"position\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:5:\"defer\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:6:\"inline\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:5:\"nocdn\";a:2:{s:7:\"scripts\";a:8:{i:0;s:29:\"elementor-pro-webpack-runtime\";i:1;s:25:\"elementor-webpack-runtime\";i:2;s:11:\"wp-polyfill\";i:3;s:14:\"jquery-ui-core\";i:4;s:24:\"elementor-common-modules\";i:5;s:17:\"elementor-web-cli\";i:6;s:16:\"elementor-common\";i:7;s:20:\"elementor-app-loader\";}s:6:\"styles\";a:0:{}}s:5:\"fonts\";a:0:{}s:7:\"preload\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:5:\"async\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}}s:6:\"uptime\";a:3:{s:7:\"enabled\";b:0;s:13:\"notifications\";a:1:{s:7:\"enabled\";b:0;}s:7:\"reports\";a:1:{s:7:\"enabled\";b:0;}}s:8:\"gravatar\";a:1:{s:7:\"enabled\";b:0;}s:10:\"page_cache\";a:7:{s:7:\"enabled\";b:1;s:10:\"cache_blog\";b:1;s:9:\"detection\";s:4:\"auto\";s:12:\"pages_cached\";i:15;s:12:\"integrations\";a:2:{s:7:\"varnish\";s:1:\"1\";s:7:\"opcache\";s:1:\"1\";}s:7:\"preload\";b:1;s:12:\"preload_type\";a:2:{s:9:\"home_page\";b:1;s:8:\"on_clear\";b:1;}}s:7:\"caching\";a:4:{s:10:\"expiry_css\";s:12:\"1y/A31536000\";s:17:\"expiry_javascript\";s:12:\"1y/A31536000\";s:12:\"expiry_media\";s:12:\"1y/A31536000\";s:13:\"expiry_images\";s:12:\"1y/A31536000\";}s:10:\"cloudflare\";a:13:{s:7:\"enabled\";b:0;s:9:\"connected\";b:0;s:10:\"last_check\";i:1626265529;s:5:\"email\";s:0:\"\";s:7:\"api_key\";s:0:\"\";s:10:\"account_id\";s:0:\"\";s:4:\"zone\";s:0:\"\";s:9:\"zone_name\";s:0:\"\";s:4:\"plan\";b:0;s:10:\"page_rules\";a:0:{}s:12:\"cache_expiry\";i:31536000;s:8:\"apo_paid\";b:0;s:3:\"apo\";a:0:{}}s:11:\"performance\";a:3:{s:7:\"reports\";b:0;s:13:\"subsite_tests\";b:1;s:9:\"dismissed\";b:0;}s:8:\"advanced\";a:9:{s:12:\"query_string\";b:1;s:20:\"query_strings_global\";b:0;s:5:\"emoji\";b:1;s:12:\"emoji_global\";b:0;s:8:\"prefetch\";a:0:{}s:10:\"preconnect\";a:0:{}s:14:\"cart_fragments\";b:0;s:9:\"lazy_load\";a:4:{s:7:\"enabled\";b:0;s:6:\"method\";s:5:\"click\";s:6:\"button\";a:3:{s:10:\"dimensions\";a:3:{s:6:\"height\";i:0;s:5:\"width\";i:0;s:6:\"radius\";i:0;}s:5:\"color\";a:3:{s:10:\"background\";s:0:\"\";s:6:\"border\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:9:\"alignment\";a:6:{s:5:\"align\";s:6:\"center\";s:10:\"full_width\";s:2:\"on\";s:4:\"left\";i:0;s:5:\"right\";i:0;s:3:\"top\";i:0;s:6:\"bottom\";i:0;}}s:9:\"threshold\";i:10;}s:11:\"db_cleanups\";b:0;}s:3:\"rss\";a:2:{s:7:\"enabled\";b:1;s:8:\"duration\";i:3600;}s:8:\"settings\";a:5:{s:17:\"accessible_colors\";b:0;s:15:\"remove_settings\";b:0;s:11:\"remove_data\";b:0;s:8:\"tracking\";b:0;s:7:\"control\";b:1;}s:5:\"redis\";a:1:{s:7:\"enabled\";b:0;}s:8:\"database\";a:1:{s:7:\"reports\";a:1:{s:7:\"enabled\";b:0;}}}','yes'),(316,'hardener_settings','{\"table\":\"hardener_settings\",\"issues\":[\"disable-file-editor\",\"protect-information\",\"prevent-php-executed\"],\"fixed\":[\"disable-xml-rpc\",\"wp-version\",\"hide-error\",\"php-version\",\"replace-admin-username\",\"security-key\",\"login-duration\",\"disable-trackback\",\"prevent-enum-users\"],\"ignore\":[],\"data\":[],\"last_seen\":\"\",\"last_sent\":\"\",\"automate\":false}','no'),(318,'wp_defender_shown_activator','1','no'),(319,'wd_login_lockout_settings','{\"enabled\":true,\"attempt\":5,\"timeframe\":300,\"duration\":300,\"duration_unit\":\"seconds\",\"lockout_type\":\"timeframe\",\"lockout_message\":\"You have been locked out due to too many invalid login attempts.\",\"username_blacklist\":\"\"}','no'),(320,'wd_notfound_lockout_settings','{\"enabled\":true,\"attempt\":20,\"timeframe\":300,\"duration\":300,\"duration_unit\":\"seconds\",\"lockout_type\":\"timeframe\",\"blacklist\":\"\",\"whitelist\":\".css\\n.js\\n.map\",\"lockout_message\":\"You have been locked out due to too many attempts to access a file that doesn\'t exist.\",\"detect_logged\":false}','no'),(322,'defender_security_tweeks_login-duration','7','no'),(323,'wd_scan_settings','{\"integrity_check\":true,\"check_core\":true,\"check_plugins\":false,\"scan_malware\":false,\"check_known_vuln\":true,\"filesize\":10,\"scheduled_scanning\":false,\"frequency\":\"weekly\",\"day\":\"sunday\",\"day_n\":\"1\",\"time\":\"4:00\"}','no'),(331,'wp_defender_config_default1622640410','a:5:{s:7:\"configs\";a:9:{s:15:\"security_tweaks\";a:8:{s:19:\"notification_repeat\";s:6:\"weekly\";s:11:\"subscribers\";a:1:{s:19:\"in_house_recipients\";a:1:{i:0;a:6:{s:4:\"name\";s:5:\"podct\";s:2:\"id\";i:1;s:5:\"email\";s:26:\"adrian@fullerdigital.co.za\";s:4:\"role\";s:13:\"Administrator\";s:6:\"avatar\";s:81:\"https://secure.gravatar.com/avatar/8129ef68264947ec2d0de28b14cdc64e?s=96&d=mm&r=g\";s:6:\"status\";s:10:\"subscribed\";}}}s:12:\"notification\";s:7:\"enabled\";s:8:\"automate\";b:1;s:4:\"data\";a:0:{}s:5:\"fixed\";a:9:{i:0;s:15:\"disable-xml-rpc\";i:1;s:10:\"wp-version\";i:2;s:10:\"hide-error\";i:3;s:11:\"php-version\";i:4;s:22:\"replace-admin-username\";i:5;s:12:\"security-key\";i:6;s:14:\"login-duration\";i:7;s:17:\"disable-trackback\";i:8;s:18:\"prevent-enum-users\";}s:6:\"issues\";a:3:{i:0;s:19:\"disable-file-editor\";i:1;s:19:\"protect-information\";i:2;s:20:\"prevent-php-executed\";}s:6:\"ignore\";a:0:{}}s:4:\"scan\";a:24:{s:15:\"integrity_check\";b:1;s:10:\"check_core\";b:1;s:12:\"check_themes\";b:0;s:13:\"check_plugins\";b:0;s:16:\"check_known_vuln\";b:1;s:12:\"scan_malware\";b:0;s:8:\"filesize\";i:3;s:6:\"report\";s:7:\"enabled\";s:11:\"always_send\";b:0;s:18:\"report_subscribers\";a:1:{s:19:\"in_house_recipients\";a:1:{i:0;a:6:{s:4:\"name\";s:5:\"podct\";s:2:\"id\";i:1;s:5:\"email\";s:26:\"adrian@fullerdigital.co.za\";s:4:\"role\";s:13:\"Administrator\";s:6:\"avatar\";s:81:\"https://secure.gravatar.com/avatar/8129ef68264947ec2d0de28b14cdc64e?s=96&d=mm&r=g\";s:6:\"status\";s:10:\"subscribed\";}}}s:3:\"day\";s:6:\"sunday\";s:4:\"time\";s:4:\"4:00\";s:9:\"frequency\";s:6:\"weekly\";s:7:\"dry_run\";b:0;s:12:\"notification\";s:7:\"enabled\";s:24:\"always_send_notification\";b:0;s:10:\"error_send\";b:0;s:24:\"notification_subscribers\";a:1:{s:19:\"in_house_recipients\";a:1:{i:0;a:6:{s:4:\"name\";s:5:\"podct\";s:2:\"id\";i:1;s:5:\"email\";s:26:\"adrian@fullerdigital.co.za\";s:4:\"role\";s:13:\"Administrator\";s:6:\"avatar\";s:81:\"https://secure.gravatar.com/avatar/8129ef68264947ec2d0de28b14cdc64e?s=96&d=mm&r=g\";s:6:\"status\";s:10:\"subscribed\";}}}s:25:\"email_subject_issue_found\";s:57:\"Scan of {SITE_URL} complete. {ISSUES_COUNT} issues found.\";s:29:\"email_subject_issue_not_found\";s:57:\"Scan of {SITE_URL} complete. {ISSUES_COUNT} issues found.\";s:19:\"email_subject_error\";s:48:\"Couldn’t scan {SITE_URL} for vulnerabilities. \";s:25:\"email_content_issue_found\";s:260:\"Hi {USER_NAME},\n\nWP Defender here, reporting back from the front.\n\nI\'ve finished scanning {SITE_URL} for vulnerabilities and I found {ISSUES_COUNT} issues that you should take a closer look at!\n{ISSUES_LIST}\n\nStay Safe,\nWP Defender\nOfficial WPMU DEV Superhero\n\";s:29:\"email_content_issue_not_found\";s:422:\"Hi {USER_NAME},\n\nWP Defender here, reporting back from the front.\n\nI\'ve finished scanning {SITE_URL} for vulnerabilities and I found nothing. Well done for running such a tight ship!\n\n		Keep up the good work! With regular security scans and a well-hardened installation you\'ll be just fine.\n                                                                                                           \nStay safe,\nWP Defender\n\";s:19:\"email_content_error\";s:248:\"Hi {USER_NAME},\n\nWP Defender here, reporting back from the front.\n\nI couldn’t scan {SITE_URL} for vulnerabilities. Please {follow this link} and check the logs to see what casued the failure.  \n\nStay Safe,\nWP Defender\nOfficial WPMU DEV Superhero\n\";}s:9:\"iplockout\";a:38:{s:16:\"login_protection\";b:1;s:30:\"login_protection_login_attempt\";s:1:\"5\";s:34:\"login_protection_lockout_timeframe\";s:3:\"300\";s:28:\"login_protection_lockout_ban\";b:0;s:33:\"login_protection_lockout_duration\";s:1:\"4\";s:38:\"login_protection_lockout_duration_unit\";s:5:\"hours\";s:32:\"login_protection_lockout_message\";s:64:\"You have been locked out due to too many invalid login attempts.\";s:18:\"username_blacklist\";s:5:\"admin\";s:10:\"detect_404\";b:1;s:20:\"detect_404_threshold\";s:2:\"20\";s:20:\"detect_404_timeframe\";s:3:\"300\";s:22:\"detect_404_lockout_ban\";b:0;s:27:\"detect_404_lockout_duration\";s:1:\"4\";s:32:\"detect_404_lockout_duration_unit\";s:5:\"hours\";s:26:\"detect_404_lockout_message\";s:86:\"You have been locked out due to too many attempts to access a file that doesn\'t exist.\";s:20:\"detect_404_blacklist\";s:0:\"\";s:20:\"detect_404_whitelist\";s:23:\".css\n.js\n.jpg\n.png\n.gif\";s:17:\"detect_404_logged\";b:1;s:12:\"ip_blacklist\";s:0:\"\";s:12:\"ip_whitelist\";s:12:\"197.94.64.85\";s:17:\"country_blacklist\";s:0:\"\";s:17:\"country_whitelist\";s:0:\"\";s:18:\"ip_lockout_message\";s:66:\"The administrator has blocked your IP from accessing this website.\";s:26:\"login_lockout_notification\";b:1;s:23:\"ip_lockout_notification\";b:1;s:12:\"notification\";s:7:\"enabled\";s:24:\"notification_subscribers\";a:1:{s:19:\"in_house_recipients\";a:1:{i:0;a:6:{s:4:\"name\";s:5:\"podct\";s:2:\"id\";i:1;s:5:\"email\";s:26:\"adrian@fullerdigital.co.za\";s:4:\"role\";s:13:\"Administrator\";s:6:\"avatar\";s:81:\"https://secure.gravatar.com/avatar/8129ef68264947ec2d0de28b14cdc64e?s=96&d=mm&r=g\";s:6:\"status\";s:10:\"subscribed\";}}}s:16:\"cooldown_enabled\";b:0;s:23:\"cooldown_number_lockout\";s:1:\"3\";s:15:\"cooldown_period\";s:2:\"24\";s:6:\"report\";s:7:\"enabled\";s:18:\"report_subscribers\";a:1:{s:19:\"in_house_recipients\";a:1:{i:0;a:6:{s:4:\"name\";s:5:\"podct\";s:2:\"id\";i:1;s:5:\"email\";s:26:\"adrian@fullerdigital.co.za\";s:4:\"role\";s:13:\"Administrator\";s:6:\"avatar\";s:81:\"https://secure.gravatar.com/avatar/8129ef68264947ec2d0de28b14cdc64e?s=96&d=mm&r=g\";s:6:\"status\";s:10:\"subscribed\";}}}s:16:\"report_frequency\";s:6:\"weekly\";s:3:\"day\";s:6:\"sunday\";s:5:\"day_n\";s:1:\"1\";s:11:\"report_time\";s:4:\"4:00\";s:7:\"dry_run\";b:0;s:12:\"storage_days\";s:3:\"180\";}s:10:\"two_factor\";a:12:{s:7:\"enabled\";b:1;s:10:\"lost_phone\";b:1;s:10:\"force_auth\";b:0;s:15:\"force_auth_mess\";s:0:\"\";s:10:\"user_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:16:\"force_auth_roles\";a:0:{}s:14:\"custom_graphic\";b:0;s:18:\"custom_graphic_url\";s:96:\"https://podiatrist.capetown/wp-content/plugins/defender-security/assets/img/2factor-disabled.svg\";s:13:\"email_subject\";s:13:\"Your OTP code\";s:12:\"email_sender\";s:5:\"admin\";s:10:\"email_body\";s:210:\"Hi {{display_name}},\r\n\r\nYour temporary login passcode is <strong>{{passcode}}</strong>.\r\n\r\nCopy and paste the passcode into the input field on the login screen to complete logging in.\r\n\r\nRegards,\r\nAdministrator\";s:9:\"app_title\";s:23:\"Andy Blecher Podiatrist\";}s:10:\"mask_login\";a:5:{s:9:\"mask_url \";s:0:\"\";s:16:\"redirect_traffic\";s:3:\"off\";s:20:\"redirect_traffic_url\";s:0:\"\";s:7:\"enabled\";b:0;s:24:\"redirect_traffic_page_id\";i:0;}s:16:\"security_headers\";a:16:{s:9:\"sh_xframe\";b:1;s:14:\"sh_xframe_mode\";s:10:\"sameorigin\";s:14:\"sh_xframe_urls\";s:0:\"\";s:17:\"sh_xss_protection\";b:1;s:22:\"sh_xss_protection_mode\";s:8:\"sanitize\";s:23:\"sh_content_type_options\";b:1;s:28:\"sh_content_type_options_mode\";s:7:\"nosniff\";s:19:\"sh_strict_transport\";b:1;s:12:\"hsts_preload\";b:0;s:17:\"include_subdomain\";b:0;s:19:\"hsts_cache_duration\";s:7:\"30 days\";s:18:\"sh_referrer_policy\";b:1;s:23:\"sh_referrer_policy_mode\";s:24:\"origin-when-cross-origin\";s:17:\"sh_feature_policy\";b:1;s:22:\"sh_feature_policy_mode\";s:4:\"self\";s:22:\"sh_feature_policy_urls\";s:0:\"\";}s:8:\"settings\";a:5:{s:14:\"uninstall_data\";s:4:\"keep\";s:18:\"uninstall_settings\";s:8:\"preserve\";s:9:\"translate\";s:22:\"English (South Africa)\";s:14:\"usage_tracking\";b:0;s:18:\"high_contrast_mode\";b:0;}s:5:\"audit\";a:1:{s:7:\"enabled\";b:0;}s:17:\"blocklist_monitor\";a:1:{s:7:\"enabled\";b:0;}}s:7:\"strings\";a:8:{s:15:\"security_tweaks\";a:2:{i:0;s:30:\"9/12 recommendations activated\";i:1;s:26:\"Email notifications active\";}s:4:\"scan\";a:3:{i:0;s:6:\"Active\";i:1;s:26:\"Email notifications active\";i:2;s:66:\"Email report inactive <span class=\"sui-tag sui-tag-pro\">Pro</span>\";}s:9:\"iplockout\";a:3:{i:0;s:6:\"Active\";i:1;s:26:\"Email notifications active\";i:2;s:66:\"Email report inactive <span class=\"sui-tag sui-tag-pro\">Pro</span>\";}s:10:\"two_factor\";a:1:{i:0;s:6:\"Active\";}s:10:\"mask_login\";a:1:{i:0;s:8:\"Inactive\";}s:16:\"security_headers\";a:1:{i:0;s:8:\"Inactive\";}s:5:\"audit\";a:1:{i:0;s:53:\"Inactive <span class=\"sui-tag sui-tag-pro\">Pro</span>\";}s:17:\"blocklist_monitor\";a:1:{i:0;s:53:\"Inactive <span class=\"sui-tag sui-tag-pro\">Pro</span>\";}}s:4:\"name\";s:12:\"Basic Config\";s:11:\"description\";s:45:\"Recommended default protection for every site\";s:8:\"immortal\";b:1;}','no'),(332,'defender_config_indexer','a:1:{s:36:\"wp_defender_config_default1622640410\";s:36:\"wp_defender_config_default1622640410\";}','no'),(339,'defender_scan_ignore_index','a:1:{i:0;s:29:\"/home/podct/public_html/stats\";}','no'),(354,'smush_global_stats','a:9:{s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;s:7:\"percent\";d:0;s:5:\"human\";s:3:\"0 B\";s:5:\"bytes\";i:0;s:12:\"total_images\";i:0;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(356,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(358,'wp-smush-lazy_load','a:9:{s:6:\"format\";a:5:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;s:6:\"native\";b:0;s:8:\"noscript\";b:0;}','yes'),(359,'skip-smush-setup','1','yes'),(785,'elementor_pro_theme_builder_conditions','a:1:{s:14:\"elementor_head\";a:1:{i:613;a:1:{i:0;s:15:\"include/general\";}}}','yes'),(1113,'elementor_log','a:42:{s:32:\"6a3cb14ae4f4be88adc4fcc17959f64c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 02:41:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-13 02:41:28\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3d0b24bd53fb2f7b105793f628987a47\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 02:41:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-13 02:41:28\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4dec0769f2bba2f7f6a35dc4e6bb412f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-13 02:41:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-13 02:41:28\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.2\";s:2:\"to\";s:5:\"3.6.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b3e07cbb70df89e61b478a119922c9dc\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-14 02:37:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-14 02:37:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c4f957d156a64985cce1ba3c04d8638d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-14 02:37:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-14 02:37:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"3b2a3594bb7f193ae1c1d5506fbf449d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-14 02:37:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-14 02:37:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"b3f92819477e986c8650857768941850\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-14 02:37:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-14 02:37:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"cdd82db5bd967f0c6c47b5a04fd6b1be\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-14 02:37:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-14 02:37:03\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.3\";s:2:\"to\";s:5:\"3.6.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"263db119528b92a8344f2ab811a275ad\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-28 02:30:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-28 02:30:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4116cc6b324bbfd20148ba8dddedd5f4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-28 02:30:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-28 02:30:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"c55e7653f5fb5153290289181626ba11\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-28 02:30:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-28 02:30:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"b8de9425d37e13b6f0f9cd0e8e2a39e9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-28 02:30:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-28 02:30:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"a9f3fb0979ac2b2ac4e7de3aeb180509\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-04-28 02:30:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-04-28 02:30:03\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.4\";s:2:\"to\";s:5:\"3.6.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d5e43b629241bc631187cc5da9bad842\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-11 14:37:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.7.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-11 14:37:21\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.7.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6b88f0a8a59ef1ace866cb7a3cf31550\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-11 14:37:31\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-11 14:37:31\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"40d1bcfee71fd8ae1d16d5bee792b22b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-11 14:37:31\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-11 14:37:31\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"c855d2fcd52271197a5a863131b23e26\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-11 14:37:31\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-11 14:37:31\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"60dc53517c4ec46411b2fbbf319a06d9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-11 14:37:31\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.7.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-11 14:37:31\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.7.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"62551f9c1c1306c400b75d0ae2538644\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-17 02:37:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.0\";s:2:\"to\";s:5:\"3.7.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-17 02:37:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.0\";s:2:\"to\";s:5:\"3.7.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"a412841097f4777487471e7d670f4d7e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-17 02:37:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-17 02:37:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"24cba19bd9128e9a328b775e87d4916d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-17 02:37:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-17 02:37:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4747c2dc008b5cb1eae313bbeee9adaa\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-17 02:37:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-17 02:37:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"0b50ac7b4516e2daa3bb5fde3a60807e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-05-17 02:37:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.0\";s:2:\"to\";s:5:\"3.7.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-17 02:37:20\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.0\";s:2:\"to\";s:5:\"3.7.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1bba1900be64b6c772d5bc3527a9764c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:76:\"/home/podct/public_html/wp-content/plugins/elementor-pro/license/updater.php\";s:7:\"\0*\0line\";i:84;s:7:\"\0*\0date\";s:19:\"2022-05-25 14:24:04\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:28:\"Undefined index: new_version\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-05-25 14:24:04\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:28:\"Undefined index: new_version\";s:4:\"file\";s:76:\"/home/podct/public_html/wp-content/plugins/elementor-pro/license/updater.php\";s:4:\"line\";i:84;s:5:\"trace\";b:1;}}s:32:\"42217b88da0181bc2c6aea557796cddb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-08 14:29:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.6.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-08 14:29:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.6.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"76d2bf25ce2e70ab9236872a2dca692b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-08 14:29:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-08 14:29:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"df83f818cde6880e7d79fa4df10ffe49\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-08 14:29:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-08 14:29:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4267e2f346fa2741f3efc0b3bbbda842\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-08 14:29:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-08 14:29:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"ac32589927925b64a41eb6b85ed47420\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-08 14:29:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.6.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-08 14:29:20\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.6.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"2e61d6bb55f85cff9b150e7dce013df0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-08 14:29:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.6.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-08 14:29:20\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.5\";s:2:\"to\";s:5:\"3.6.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9b6f306b7d3d89a650571f7cd9e2d734\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-16 02:25:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-16 02:25:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"5710a9b1b7b587e71c9e585a2accb984\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-16 02:25:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-16 02:25:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"8a19ceaf749ffaa8bc59e38bd464fa95\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-16 02:25:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-16 02:25:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"89499309da47611219d258b16c4bfbcf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-16 02:25:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:87:\"Elementor Pro/Upgrades - _v_3_7_2_woocommerce_rename_related_to_related_products Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-16 02:25:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:87:\"Elementor Pro/Upgrades - _v_3_7_2_woocommerce_rename_related_to_related_products Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e4ca51423e27782a5858504d2c8e0389\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-16 02:25:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:89:\"Elementor Pro/Upgrades - _v_3_7_2_woocommerce_rename_related_to_related_products Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-16 02:25:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:89:\"Elementor Pro/Upgrades - _v_3_7_2_woocommerce_rename_related_to_related_products Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"b640ecf2641bff61971f063f9fbac670\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-16 02:25:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.1\";s:2:\"to\";s:5:\"3.7.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-16 02:25:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.1\";s:2:\"to\";s:5:\"3.7.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"7358e2c00c5a147d51ac20b15a35abf8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-06-16 02:25:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.1\";s:2:\"to\";s:5:\"3.7.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-06-16 02:25:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"3.7.1\";s:2:\"to\";s:5:\"3.7.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fac5e2786b10f2919d6978ed6d40bcae\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-09-12 15:48:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-09-12 15:48:57\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"f5c7cd080486f0d3fd7c48983ff3c3a1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-09-12 15:48:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-09-12 15:48:58\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"97c295052c32b0454c03ace86c87516a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-09-12 15:48:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-09-12 15:48:58\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"2d762f8f2333969aa2158c4b2274a087\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-09-12 15:48:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.6\";s:2:\"to\";s:5:\"3.7.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-09-12 15:48:58\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.6.6\";s:2:\"to\";s:5:\"3.7.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"2f8b22503014336f8315fad251903af4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"873489\";s:7:\"\0*\0file\";s:90:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.7.4\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2022-09-12 14:03:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:32:\"elementorFrontend is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:9;s:14:\"\0*\0times_dates\";a:9:{i:0;s:19:\"2022-09-12 14:03:19\";i:1;s:19:\"2022-09-12 14:07:14\";i:2;s:19:\"2022-09-12 14:12:30\";i:3;s:19:\"2022-09-12 14:13:56\";i:4;s:19:\"2022-09-12 14:17:25\";i:5;s:19:\"2022-09-12 14:24:03\";i:6;s:19:\"2022-09-12 14:33:04\";i:7;s:19:\"2022-09-12 14:37:44\";i:8;s:19:\"2022-09-12 14:41:52\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1662991399\";s:7:\"message\";s:32:\"elementorFrontend is not defined\";s:3:\"url\";s:90:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.7.4\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"873489\";}}}','no'),(1381,'elementor_pro_tracker_notice','1','yes'),(1382,'elementor_tracker_notice','1','yes'),(1403,'wphb-notice-minification-optimized-show','yes','yes'),(1404,'wphb-notice-http2-info-show','yes','yes'),(1406,'wphb_styles_collection','a:37:{s:9:\"dashicons\";a:8:{s:6:\"handle\";s:9:\"dashicons\";s:3:\"src\";s:34:\"/wp-includes/css/dashicons.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:9:\"admin-bar\";a:8:{s:6:\"handle\";s:9:\"admin-bar\";s:3:\"src\";s:34:\"/wp-includes/css/admin-bar.min.css\";s:4:\"deps\";a:1:{i:0;s:9:\"dashicons\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:2:{s:3:\"rtl\";s:7:\"replace\";s:6:\"suffix\";s:4:\".min\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:15:\"elementor-icons\";a:8:{s:6:\"handle\";s:15:\"elementor-icons\";s:3:\"src\";s:102:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"5.16.0\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"elementor-common\";a:8:{s:6:\"handle\";s:16:\"elementor-common\";s:3:\"src\";s:82:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/common.min.css\";s:4:\"deps\";a:1:{i:0;s:15:\"elementor-icons\";}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"wp-block-library\";a:8:{s:6:\"handle\";s:16:\"wp-block-library\";s:3:\"src\";s:49:\"/wp-includes/css/dist/block-library/style.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:3:{s:4:\"path\";s:73:\"/home/podct/public_html//wp-includes/css/dist/block-library/style.min.css\";s:3:\"rtl\";s:7:\"replace\";s:6:\"suffix\";s:4:\".min\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:15:\"hello-elementor\";a:8:{s:6:\"handle\";s:15:\"hello-elementor\";s:3:\"src\";s:75:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/style.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"2.6.1\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:27:\"hello-elementor-theme-style\";a:8:{s:6:\"handle\";s:27:\"hello-elementor-theme-style\";s:3:\"src\";s:75:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/theme.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"2.6.1\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:20:\"elementor-animations\";a:8:{s:6:\"handle\";s:20:\"elementor-animations\";s:3:\"src\";s:97:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/animations/animations.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.2.5\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-frontend\";a:8:{s:6:\"handle\";s:18:\"elementor-frontend\";s:3:\"src\";s:89:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/frontend-lite.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"elementor-post-9\";a:8:{s:6:\"handle\";s:16:\"elementor-post-9\";s:3:\"src\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1662994512\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:13:\"elementor-pro\";a:8:{s:6:\"handle\";s:13:\"elementor-pro\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.7.3\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"elementor-global\";a:8:{s:6:\"handle\";s:16:\"elementor-global\";s:3:\"src\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/global.css?ver=1662994512\";s:4:\"deps\";a:0:{}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:17:\"elementor-post-11\";a:8:{s:6:\"handle\";s:17:\"elementor-post-11\";s:3:\"src\";s:87:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-11.css?ver=1630363915\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"google-fonts-1\";a:8:{s:6:\"handle\";s:14:\"google-fonts-1\";s:3:\"src\";s:326:\"https://fonts.googleapis.com/css?family=Averia+Libre:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic%7CRoboto:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-193\";a:8:{s:6:\"handle\";s:18:\"elementor-post-193\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-193.css?ver=1663010187\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:17:\"elementor-post-69\";a:8:{s:6:\"handle\";s:17:\"elementor-post-69\";s:3:\"src\";s:87:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-69.css?ver=1663000070\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-271\";a:8:{s:6:\"handle\";s:18:\"elementor-post-271\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-271.css?ver=1663010131\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-311\";a:8:{s:6:\"handle\";s:18:\"elementor-post-311\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-311.css?ver=1663000053\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-338\";a:8:{s:6:\"handle\";s:18:\"elementor-post-338\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-338.css?ver=1662994512\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:17:\"elementor-gallery\";a:8:{s:6:\"handle\";s:17:\"elementor-gallery\";s:3:\"src\";s:99:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"1.2.0\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-362\";a:8:{s:6:\"handle\";s:18:\"elementor-post-362\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-362.css?ver=1663005238\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-372\";a:8:{s:6:\"handle\";s:18:\"elementor-post-372\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-372.css?ver=1663004156\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-390\";a:8:{s:6:\"handle\";s:18:\"elementor-post-390\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-390.css?ver=1663010304\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-395\";a:8:{s:6:\"handle\";s:18:\"elementor-post-395\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-395.css?ver=1663006635\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-post-417\";a:8:{s:6:\"handle\";s:18:\"elementor-post-417\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-417.css?ver=1663010357\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"yoast-seo-adminbar\";a:8:{s:6:\"handle\";s:18:\"yoast-seo-adminbar\";s:3:\"src\";s:87:\"https://podiatrist.capetown/wp-content/plugins/wordpress-seo/css/dist/adminbar-1650.css\";s:4:\"deps\";a:1:{i:0;s:9:\"admin-bar\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"elementor-preview-464\";a:8:{s:6:\"handle\";s:21:\"elementor-preview-464\";s:3:\"src\";s:87:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-69.css?ver=1623405458\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"elementor-preview-555\";a:8:{s:6:\"handle\";s:21:\"elementor-preview-555\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-417.css?ver=1623611580\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"elementor-preview-565\";a:8:{s:6:\"handle\";s:21:\"elementor-preview-565\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-271.css?ver=1623651301\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"elementor-preview-568\";a:8:{s:6:\"handle\";s:21:\"elementor-preview-568\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-417.css?ver=1623652765\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"elementor-preview-604\";a:8:{s:6:\"handle\";s:21:\"elementor-preview-604\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-390.css?ver=1623670981\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"google-fonts-2\";a:8:{s:6:\"handle\";s:14:\"google-fonts-2\";s:3:\"src\";s:184:\"https://fonts.googleapis.com/css?family=Dosis:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"elementor-preview-614\";a:8:{s:6:\"handle\";s:21:\"elementor-preview-614\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-338.css?ver=1623761079\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:24:\"elementor-icons-shared-0\";a:8:{s:6:\"handle\";s:24:\"elementor-icons-shared-0\";s:3:\"src\";s:104:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"5.15.3\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:24:\"elementor-icons-fa-solid\";a:8:{s:6:\"handle\";s:24:\"elementor-icons-fa-solid\";s:3:\"src\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css\";s:4:\"deps\";a:1:{i:0;s:24:\"elementor-icons-shared-0\";}s:3:\"ver\";s:6:\"5.15.3\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:12:\"e-animations\";a:8:{s:6:\"handle\";s:12:\"e-animations\";s:3:\"src\";s:97:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/animations/animations.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.4.8\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"elementor-preview-850\";a:8:{s:6:\"handle\";s:21:\"elementor-preview-850\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-395.css?ver=1631626555\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";N;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}}','yes'),(1407,'wphb_scripts_collection','a:42:{s:14:\"hoverintent-js\";a:8:{s:6:\"handle\";s:14:\"hoverintent-js\";s:3:\"src\";s:37:\"/wp-includes/js/hoverintent-js.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"2.2.1\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:9:\"admin-bar\";a:8:{s:6:\"handle\";s:9:\"admin-bar\";s:3:\"src\";s:32:\"/wp-includes/js/admin-bar.min.js\";s:4:\"deps\";a:1:{i:0;s:14:\"hoverintent-js\";}s:3:\"ver\";b:0;s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:10:\"underscore\";a:8:{s:6:\"handle\";s:10:\"underscore\";s:3:\"src\";s:33:\"/wp-includes/js/underscore.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"1.13.3\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:11:\"jquery-core\";a:8:{s:6:\"handle\";s:11:\"jquery-core\";s:3:\"src\";s:36:\"/wp-includes/js/jquery/jquery.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.6.0\";s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"jquery-migrate\";a:8:{s:6:\"handle\";s:14:\"jquery-migrate\";s:3:\"src\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.3.2\";s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:11:\"wphb-global\";a:8:{s:6:\"handle\";s:11:\"wphb-global\";s:3:\"src\";s:105:\"https://podiatrist.capetown/wp-content/plugins/hummingbird-performance/admin/assets/js/wphb-global.min.js\";s:4:\"deps\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}s:3:\"ver\";s:5:\"3.3.4\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:4:\"data\";s:108:\"var wphbGlobal = {\"ajaxurl\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin-ajax.php\",\"nonce\":\"7ff2aa4c3f\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:15:\"smush-lazy-load\";a:8:{s:6:\"handle\";s:15:\"smush-lazy-load\";s:3:\"src\";s:94:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"3.11.1\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"jquery-ui-core\";a:8:{s:6:\"handle\";s:14:\"jquery-ui-core\";s:3:\"src\";s:37:\"/wp-includes/js/jquery/ui/core.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:6:\"1.13.1\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:15:\"jquery-ui-mouse\";a:8:{s:6:\"handle\";s:15:\"jquery-ui-mouse\";s:3:\"src\";s:38:\"/wp-includes/js/jquery/ui/mouse.min.js\";s:4:\"deps\";a:1:{i:0;s:14:\"jquery-ui-core\";}s:3:\"ver\";s:6:\"1.13.1\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:19:\"jquery-ui-draggable\";a:8:{s:6:\"handle\";s:19:\"jquery-ui-draggable\";s:3:\"src\";s:42:\"/wp-includes/js/jquery/ui/draggable.min.js\";s:4:\"deps\";a:1:{i:0;s:15:\"jquery-ui-mouse\";}s:3:\"ver\";s:6:\"1.13.1\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:8:\"backbone\";a:8:{s:6:\"handle\";s:8:\"backbone\";s:3:\"src\";s:31:\"/wp-includes/js/backbone.min.js\";s:4:\"deps\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}s:3:\"ver\";s:5:\"1.4.1\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:19:\"backbone-marionette\";a:8:{s:6:\"handle\";s:19:\"backbone-marionette\";s:3:\"src\";s:103:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js\";s:4:\"deps\";a:1:{i:0;s:8:\"backbone\";}s:3:\"ver\";s:8:\"2.4.5.e1\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"backbone-radio\";a:8:{s:6:\"handle\";s:14:\"backbone-radio\";s:3:\"src\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js\";s:4:\"deps\";a:1:{i:0;s:8:\"backbone\";}s:3:\"ver\";s:5:\"1.0.4\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:24:\"elementor-common-modules\";a:8:{s:6:\"handle\";s:24:\"elementor-common-modules\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/common-modules.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"elementor-dialog\";a:8:{s:6:\"handle\";s:16:\"elementor-dialog\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js\";s:4:\"deps\";a:1:{i:0;s:18:\"jquery-ui-position\";}s:3:\"ver\";s:5:\"4.9.0\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"wp-api-request\";a:8:{s:6:\"handle\";s:14:\"wp-api-request\";s:3:\"src\";s:34:\"/wp-includes/js/api-request.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";b:0;s:4:\"args\";i:1;s:5:\"extra\";a:1:{s:4:\"data\";s:120:\"var wpApiSettings = {\"root\":\"https:\\/\\/podiatrist.capetown\\/wp-json\\/\",\"nonce\":\"26dad2d752\",\"versionString\":\"wp\\/v2\\/\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:11:\"wp-polyfill\";a:8:{s:6:\"handle\";s:11:\"wp-polyfill\";s:3:\"src\";s:46:\"/wp-includes/js/dist/vendor/wp-polyfill.min.js\";s:4:\"deps\";a:1:{i:0;s:19:\"regenerator-runtime\";}s:3:\"ver\";s:6:\"3.15.0\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:8:\"wp-hooks\";a:8:{s:6:\"handle\";s:8:\"wp-hooks\";s:3:\"src\";s:33:\"/wp-includes/js/dist/hooks.min.js\";s:4:\"deps\";a:1:{i:0;s:11:\"wp-polyfill\";}s:3:\"ver\";s:32:\"c6d64f2cb8f5c6bb49caca37f8828ce3\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:7:\"wp-i18n\";a:8:{s:6:\"handle\";s:7:\"wp-i18n\";s:3:\"src\";s:32:\"/wp-includes/js/dist/i18n.min.js\";s:4:\"deps\";a:2:{i:0;s:8:\"wp-hooks\";i:1;s:11:\"wp-polyfill\";}s:3:\"ver\";s:32:\"ebee46757c6a411e38fd079a7ac71d94\";s:4:\"args\";i:1;s:5:\"extra\";a:1:{s:5:\"after\";a:2:{i:0;b:0;i:1;s:66:\"wp.i18n.setLocaleData( { \'text direction\\u0004ltr\': [ \'ltr\' ] } );\";}}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"elementor-common\";a:8:{s:6:\"handle\";s:16:\"elementor-common\";s:3:\"src\";s:80:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/common.min.js\";s:4:\"deps\";a:10:{i:0;s:6:\"jquery\";i:1;s:19:\"jquery-ui-draggable\";i:2;s:19:\"backbone-marionette\";i:3;s:14:\"backbone-radio\";i:4;s:24:\"elementor-common-modules\";i:5;s:17:\"elementor-web-cli\";i:6;s:16:\"elementor-dialog\";i:7;s:14:\"wp-api-request\";i:8;s:19:\"elementor-dev-tools\";i:9;s:7:\"wp-i18n\";}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:6:\"before\";a:2:{i:0;b:0;i:1;s:7471:\"var elementorCommonConfig = {\"version\":\"3.7.4\",\"isRTL\":false,\"isDebug\":false,\"isElementorDebug\":false,\"activeModules\":[\"ajax\",\"finder\",\"connect\",\"event-tracker\"],\"experimentalFeatures\":{\"e_dom_optimization\":true,\"e_optimized_assets_loading\":true,\"e_optimized_css_loading\":true,\"e_font_icon_svg\":true,\"a11y_improvements\":true,\"additional_custom_breakpoints\":true,\"e_import_export\":true,\"e_hidden_wordpress_widgets\":true,\"container\":true,\"hello-theme-header-footer\":true,\"landing-pages\":true,\"elements-color-picker\":true,\"favorite-widgets\":true,\"admin-top-bar\":true},\"urls\":{\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\",\"rest\":\"https:\\/\\/podiatrist.capetown\\/wp-json\\/\"},\"filesUpload\":{\"unfilteredFiles\":false},\"library_connect\":{\"is_connected\":true,\"subscription_plans\":{\"0\":{\"label\":null,\"promotion_url\":null,\"color\":null},\"1\":{\"label\":\"Pro\",\"promotion_url\":\"https:\\/\\/elementor.com\\/pro\\/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=gopro\",\"color\":\"#92003B\"},\"20\":{\"label\":\"Expert\",\"promotion_url\":\"https:\\/\\/elementor.com\\/pro\\/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=goexpert\",\"color\":\"#010051\"}},\"base_access_level\":0,\"current_access_level\":0},\"ajax\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin-ajax.php\",\"nonce\":\"cb94b06fb3\"},\"finder\":{\"data\":{\"edit\":{\"title\":\"Edit\",\"dynamic\":true,\"name\":\"edit\"},\"general\":{\"title\":\"General\",\"dynamic\":false,\"items\":{\"saved-templates\":{\"title\":\"Saved Templates\",\"icon\":\"library-save\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/edit.php?post_type=elementor_library&tabs_group=library\",\"keywords\":[\"template\",\"section\",\"page\",\"library\"]},\"system-info\":{\"title\":\"System Info\",\"icon\":\"info-circle-o\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-system-info\",\"keywords\":[\"system\",\"info\",\"environment\",\"elementor\"]},\"role-manager\":{\"title\":\"Role Manager\",\"icon\":\"person\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-role-manager\",\"keywords\":[\"role\",\"manager\",\"user\",\"elementor\"]},\"knowledge-base\":{\"title\":\"Knowledge Base\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=go_knowledge_base_site\",\"keywords\":[\"help\",\"knowledge\",\"docs\",\"elementor\"]},\"theme-builder\":{\"title\":\"Theme Builder\",\"icon\":\"library-save\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-app&ver=3.7.4#site-editor\\/promotion\",\"keywords\":[\"template\",\"header\",\"footer\",\"single\",\"archive\",\"search\",\"404\",\"library\"]},\"kit-library\":{\"title\":\"Kit Library\",\"icon\":\"kit-parts\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-app&ver=3.7.4#\\/kit-library\",\"keywords\":[\"kit library\",\"kit\",\"library\",\"site parts\",\"parts\",\"assets\",\"templates\"]}},\"name\":\"general\"},\"create\":{\"title\":\"Create\",\"dynamic\":false,\"items\":{\"page\":{\"title\":\"Add New Page Template\",\"icon\":\"plus-circle-o\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/edit.php?action=elementor_new_post&post_type=elementor_library&template_type=page&_wpnonce=1c51b8f2c4\",\"keywords\":[\"Add New Page Template\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"section\":{\"title\":\"Add New Section\",\"icon\":\"plus-circle-o\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/edit.php?action=elementor_new_post&post_type=elementor_library&template_type=section&_wpnonce=1c51b8f2c4\",\"keywords\":[\"Add New Section\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"container\":{\"title\":\"Add New Container\",\"icon\":\"plus-circle-o\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/edit.php?action=elementor_new_post&post_type=elementor_library&template_type=stack&_wpnonce=1c51b8f2c4\",\"keywords\":[\"Add New Container\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"wp-post\":{\"title\":\"Add New Post\",\"icon\":\"plus-circle-o\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/edit.php?action=elementor_new_post&post_type=post&template_type=wp-post&_wpnonce=1c51b8f2c4\",\"keywords\":[\"Add New Post\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"wp-page\":{\"title\":\"Add New Page\",\"icon\":\"plus-circle-o\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/edit.php?action=elementor_new_post&post_type=page&template_type=wp-page&_wpnonce=1c51b8f2c4\",\"keywords\":[\"Add New Page\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"landing-page\":{\"title\":\"Add New Landing Page\",\"icon\":\"plus-circle-o\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/edit.php?action=elementor_new_post&post_type=e-landing-page&template_type=landing-page&_wpnonce=1c51b8f2c4#library\",\"keywords\":[\"Add New Landing Page\",\"post\",\"page\",\"template\",\"new\",\"create\"]}},\"name\":\"create\"},\"site\":{\"title\":\"Site\",\"dynamic\":false,\"items\":{\"homepage\":{\"title\":\"Home page\",\"url\":\"https:\\/\\/podiatrist.capetown\",\"icon\":\"home-heart\",\"keywords\":[\"home\",\"page\"]},\"wordpress-dashboard\":{\"title\":\"Dashboard\",\"icon\":\"dashboard\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/\",\"keywords\":[\"dashboard\",\"wordpress\"]},\"wordpress-menus\":{\"title\":\"Menus\",\"icon\":\"wordpress\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/nav-menus.php\",\"keywords\":[\"menu\",\"wordpress\"]},\"wordpress-themes\":{\"title\":\"Themes\",\"icon\":\"wordpress\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/themes.php\",\"keywords\":[\"themes\",\"wordpress\"]},\"wordpress-customizer\":{\"title\":\"Customiser\",\"icon\":\"wordpress\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/customize.php\",\"keywords\":[\"customizer\",\"wordpress\"]},\"wordpress-plugins\":{\"title\":\"Plugins\",\"icon\":\"wordpress\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/plugins.php\",\"keywords\":[\"plugins\",\"wordpress\"]},\"wordpress-users\":{\"title\":\"Users\",\"icon\":\"wordpress\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/users.php\",\"keywords\":[\"users\",\"profile\",\"wordpress\"]}},\"name\":\"site\"},\"settings\":{\"title\":\"Settings\",\"dynamic\":false,\"items\":{\"general-settings\":{\"title\":\"General Settings\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor\",\"keywords\":[\"general\",\"settings\",\"elementor\"]},\"advanced\":{\"title\":\"Advanced\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor#tab-advanced\",\"keywords\":[\"advanced\",\"settings\",\"elementor\"]},\"experiments\":{\"title\":\"Experiments\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor#tab-experiments\",\"keywords\":[\"settings\",\"elementor\",\"experiments\"]}},\"name\":\"settings\"},\"tools\":{\"title\":\"Tools\",\"dynamic\":false,\"items\":{\"tools\":{\"title\":\"Tools\",\"icon\":\"tools\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-tools\",\"keywords\":[\"tools\",\"regenerate css\",\"safe mode\",\"debug bar\",\"sync library\",\"elementor\"]},\"replace-url\":{\"title\":\"Replace URL\",\"icon\":\"tools\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-tools#tab-replace_url\",\"keywords\":[\"tools\",\"replace url\",\"domain\",\"elementor\"]},\"maintenance-mode\":{\"title\":\"Maintenance Mode\",\"icon\":\"tools\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-tools#tab-maintenance_mode\",\"keywords\":[\"tools\",\"maintenance\",\"coming soon\",\"elementor\"]},\"import-export\":{\"title\":\"Import Export\",\"icon\":\"import-export\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-tools#tab-import-export-kit\",\"keywords\":[\"tools\",\"import export\",\"import\",\"export\",\"kit\"]},\"version-control\":{\"title\":\"Version Control\",\"icon\":\"time-line\",\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-tools#tab-versions\",\"keywords\":[\"tools\",\"version\",\"control\",\"rollback\",\"beta\",\"elementor\"]}},\"name\":\"tools\"}}},\"connect\":[],\"event-tracker\":{\"isUserDataShared\":false}};\";}}s:10:\"textdomain\";s:9:\"elementor\";s:17:\"translations_path\";N;}s:20:\"elementor-app-loader\";a:8:{s:6:\"handle\";s:20:\"elementor-app-loader\";s:3:\"src\";s:84:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/app-loader.min.js\";s:4:\"deps\";a:1:{i:0;s:16:\"elementor-common\";}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:6:\"before\";a:2:{i:0;b:0;i:1;s:610:\"var elementorAppConfig = {\"menu_url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-app&ver=3.7.4#site-editor\\/promotion\",\"assets_url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\",\"return_url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/post.php?post=9&action=elementor\",\"hasPro\":false,\"admin_url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/\",\"login_url\":\"https:\\/\\/podiatrist.capetown\\/wp-login.php\",\"base_url\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-app&ver=3.7.4\",\"site-editor\":[],\"import-export\":[],\"kit-library\":[],\"onboarding\":[]};\";}}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:8:\"wp-embed\";a:8:{s:6:\"handle\";s:8:\"wp-embed\";s:3:\"src\";s:31:\"/wp-includes/js/wp-embed.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:29:\"elementor-pro-webpack-runtime\";a:8:{s:6:\"handle\";s:29:\"elementor-pro-webpack-runtime\";s:3:\"src\";s:97:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.7.3\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:25:\"elementor-webpack-runtime\";a:8:{s:6:\"handle\";s:25:\"elementor-webpack-runtime\";s:3:\"src\";s:89:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:26:\"elementor-frontend-modules\";a:8:{s:6:\"handle\";s:26:\"elementor-frontend-modules\";s:3:\"src\";s:90:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:4:\"deps\";a:2:{i:0;s:25:\"elementor-webpack-runtime\";i:1;s:6:\"jquery\";}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"elementor-sticky\";a:8:{s:6:\"handle\";s:16:\"elementor-sticky\";s:3:\"src\";s:99:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"3.3.1\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:22:\"elementor-pro-frontend\";a:8:{s:6:\"handle\";s:22:\"elementor-pro-frontend\";s:3:\"src\";s:86:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/frontend.min.js\";s:4:\"deps\";a:3:{i:0;s:29:\"elementor-pro-webpack-runtime\";i:1;s:26:\"elementor-frontend-modules\";i:2;s:7:\"wp-i18n\";}s:3:\"ver\";s:5:\"3.7.3\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:6:\"before\";a:2:{i:0;b:0;i:1;s:1175:\"var ElementorProFrontendConfig = {\"ajaxurl\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin-ajax.php\",\"nonce\":\"12625dbca7\",\"urls\":{\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor-pro\\/assets\\/\",\"rest\":\"https:\\/\\/podiatrist.capetown\\/wp-json\\/\"},\"shareButtonsNetworks\":{\"facebook\":{\"title\":\"Facebook\",\"has_counter\":true},\"twitter\":{\"title\":\"Twitter\"},\"linkedin\":{\"title\":\"LinkedIn\",\"has_counter\":true},\"pinterest\":{\"title\":\"Pinterest\",\"has_counter\":true},\"reddit\":{\"title\":\"Reddit\",\"has_counter\":true},\"vk\":{\"title\":\"VK\",\"has_counter\":true},\"odnoklassniki\":{\"title\":\"OK\",\"has_counter\":true},\"tumblr\":{\"title\":\"Tumblr\"},\"digg\":{\"title\":\"Digg\"},\"skype\":{\"title\":\"Skype\"},\"stumbleupon\":{\"title\":\"StumbleUpon\",\"has_counter\":true},\"mix\":{\"title\":\"Mix\"},\"telegram\":{\"title\":\"Telegram\"},\"pocket\":{\"title\":\"Pocket\",\"has_counter\":true},\"xing\":{\"title\":\"XING\",\"has_counter\":true},\"whatsapp\":{\"title\":\"WhatsApp\"},\"email\":{\"title\":\"Email\"},\"print\":{\"title\":\"Print\"}},\"facebook_sdk\":{\"lang\":\"en_ZA\",\"app_id\":\"\"},\"lottie\":{\"defaultAnimationUrl\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor-pro\\/modules\\/lottie\\/assets\\/animations\\/default.json\"}};\";}}s:10:\"textdomain\";s:13:\"elementor-pro\";s:17:\"translations_path\";s:66:\"/home/podct/public_html/wp-content/plugins/elementor-pro/languages\";}s:19:\"elementor-waypoints\";a:8:{s:6:\"handle\";s:19:\"elementor-waypoints\";s:3:\"src\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"4.0.2\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:6:\"swiper\";a:8:{s:6:\"handle\";s:6:\"swiper\";s:3:\"src\";s:88:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"5.3.6\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:10:\"share-link\";a:8:{s:6:\"handle\";s:10:\"share-link\";s:3:\"src\";s:96:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"3.4.8\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"elementor-frontend\";a:8:{s:6:\"handle\";s:18:\"elementor-frontend\";s:3:\"src\";s:82:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend.min.js\";s:4:\"deps\";a:3:{i:0;s:26:\"elementor-frontend-modules\";i:1;s:19:\"elementor-waypoints\";i:2;s:18:\"jquery-ui-position\";}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:6:\"before\";a:2:{i:0;b:0;i:1;s:2285:\"var elementorFrontendConfig = {\"environmentMode\":{\"edit\":false,\"wpPreview\":false,\"isScriptDebug\":false},\"i18n\":{\"shareOnFacebook\":\"Share on Facebook\",\"shareOnTwitter\":\"Share on Twitter\",\"pinIt\":\"Pin it\",\"download\":\"Download\",\"downloadImage\":\"Download image\",\"fullscreen\":\"Fullscreen\",\"zoom\":\"Zoom\",\"share\":\"Share\",\"playVideo\":\"Play Video\",\"previous\":\"Tap to select the previous period\",\"next\":\"Next\",\"close\":\"Close\"},\"is_rtl\":false,\"breakpoints\":{\"xs\":0,\"sm\":480,\"md\":768,\"lg\":1025,\"xl\":1440,\"xxl\":1600},\"responsive\":{\"breakpoints\":{\"mobile\":{\"label\":\"Mobile\",\"value\":767,\"default_value\":767,\"direction\":\"max\",\"is_enabled\":true},\"mobile_extra\":{\"label\":\"Mobile Extra\",\"value\":880,\"default_value\":880,\"direction\":\"max\",\"is_enabled\":false},\"tablet\":{\"label\":\"Tablet\",\"value\":1024,\"default_value\":1024,\"direction\":\"max\",\"is_enabled\":true},\"tablet_extra\":{\"label\":\"Tablet Extra\",\"value\":1200,\"default_value\":1200,\"direction\":\"max\",\"is_enabled\":false},\"laptop\":{\"label\":\"Laptop\",\"value\":1366,\"default_value\":1366,\"direction\":\"max\",\"is_enabled\":false},\"widescreen\":{\"label\":\"Widescreen\",\"value\":2400,\"default_value\":2400,\"direction\":\"min\",\"is_enabled\":false}}},\"version\":\"3.7.4\",\"is_static\":false,\"experimentalFeatures\":{\"e_dom_optimization\":true,\"e_optimized_assets_loading\":true,\"e_optimized_css_loading\":true,\"e_font_icon_svg\":true,\"a11y_improvements\":true,\"additional_custom_breakpoints\":true,\"e_import_export\":true,\"e_hidden_wordpress_widgets\":true,\"container\":true,\"hello-theme-header-footer\":true,\"landing-pages\":true,\"elements-color-picker\":true,\"favorite-widgets\":true,\"admin-top-bar\":true},\"urls\":{\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\"},\"settings\":{\"page\":[],\"editorPreferences\":[]},\"kit\":{\"active_breakpoints\":[\"viewport_mobile\",\"viewport_tablet\"],\"global_image_lightbox\":\"yes\",\"lightbox_enable_counter\":\"yes\",\"lightbox_enable_fullscreen\":\"yes\",\"lightbox_enable_zoom\":\"yes\",\"lightbox_enable_share\":\"yes\",\"lightbox_title_src\":\"title\",\"lightbox_description_src\":\"description\",\"hello_header_logo_type\":\"logo\",\"hello_header_menu_layout\":\"horizontal\",\"hello_footer_logo_type\":\"logo\"},\"post\":{\"id\":311,\"title\":\"Full%20range%20of%20medical%20footwear%20and%20orthotics%20-%20Andy%20Blecher%20Podiatrist.\",\"excerpt\":\"\",\"featuredImage\":false}};\";}}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:31:\"pro-preloaded-elements-handlers\";a:8:{s:6:\"handle\";s:31:\"pro-preloaded-elements-handlers\";s:3:\"src\";s:105:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";s:5:\"3.5.1\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:17:\"preloaded-modules\";a:8:{s:6:\"handle\";s:17:\"preloaded-modules\";s:3:\"src\";s:91:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";s:5:\"3.4.8\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:19:\"elementor-admin-bar\";a:8:{s:6:\"handle\";s:19:\"elementor-admin-bar\";s:3:\"src\";s:93:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js\";s:4:\"deps\";a:1:{i:0;s:26:\"elementor-frontend-modules\";}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:6:\"before\";a:2:{i:0;b:0;i:1;s:743:\"var elementorAdminBarConfig = {\"elementor_edit_page\":{\"id\":\"elementor_edit_page\",\"title\":\"Edit with Elementor\",\"href\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/post.php?post=69&action=elementor\",\"children\":{\"70\":{\"id\":\"elementor_site_settings\",\"title\":\"Site Settings\",\"sub_title\":\"Site\",\"href\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/post.php?post=69&action=elementor#e:run:panel\\/global\\/open\",\"class\":\"elementor-site-settings\",\"parent_class\":\"elementor-second-section\"},\"71\":{\"id\":\"elementor_app_site_editor\",\"title\":\"Theme Builder\",\"sub_title\":\"Site\",\"href\":\"https:\\/\\/podiatrist.capetown\\/wp-admin\\/admin.php?page=elementor-app&ver=3.7.4#site-editor\\/promotion\",\"class\":\"elementor-app-link\",\"parent_class\":\"elementor-second-section\"}}}};\";}}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:17:\"elementor-gallery\";a:8:{s:6:\"handle\";s:17:\"elementor-gallery\";s:3:\"src\";s:97:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"1.2.0\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:10:\"smartmenus\";a:8:{s:6:\"handle\";s:10:\"smartmenus\";s:3:\"src\";s:107:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"1.0.1\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:8:\"e-sticky\";a:8:{s:6:\"handle\";s:8:\"e-sticky\";s:3:\"src\";s:99:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"3.5.1\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:19:\"regenerator-runtime\";a:8:{s:6:\"handle\";s:19:\"regenerator-runtime\";s:3:\"src\";s:54:\"/wp-includes/js/dist/vendor/regenerator-runtime.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:6:\"0.13.9\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"pro-elements-handlers\";a:8:{s:6:\"handle\";s:21:\"pro-elements-handlers\";s:3:\"src\";s:95:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js\";s:4:\"deps\";a:1:{i:0;s:18:\"elementor-frontend\";}s:3:\"ver\";s:5:\"3.7.3\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:17:\"elementor-web-cli\";a:8:{s:6:\"handle\";s:17:\"elementor-web-cli\";s:3:\"src\";s:81:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/web-cli.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:6:\"before\";a:3:{i:0;b:0;i:1;s:227:\"var elementorWebCliConfig = {\"isDebug\":false,\"urls\":{\"rest\":\"https:\\/\\/podiatrist.capetown\\/wp-json\\/\",\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\"},\"nonce\":\"26dad2d752\",\"version\":\"3.7.4\"};\";i:2;s:227:\"var elementorWebCliConfig = {\"isDebug\":false,\"urls\":{\"rest\":\"https:\\/\\/podiatrist.capetown\\/wp-json\\/\",\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\"},\"nonce\":\"26dad2d752\",\"version\":\"3.7.4\"};\";}}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:19:\"elementor-dev-tools\";a:8:{s:6:\"handle\";s:19:\"elementor-dev-tools\";s:3:\"src\";s:83:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/dev-tools.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.7.4\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:6:\"before\";a:4:{i:0;b:0;i:1;s:246:\"var elementorDevToolsConfig = {\"isDebug\":false,\"urls\":{\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\"},\"deprecation\":{\"soft_notices\":[],\"soft_version_count\":4,\"hard_version_count\":8,\"current_version\":\"3.7.4\"}};\";i:2;s:246:\"var elementorDevToolsConfig = {\"isDebug\":false,\"urls\":{\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\"},\"deprecation\":{\"soft_notices\":[],\"soft_version_count\":4,\"hard_version_count\":8,\"current_version\":\"3.7.4\"}};\";i:3;s:246:\"var elementorDevToolsConfig = {\"isDebug\":false,\"urls\":{\"assets\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/elementor\\/assets\\/\"},\"deprecation\":{\"soft_notices\":[],\"soft_version_count\":4,\"hard_version_count\":8,\"current_version\":\"3.7.4\"}};\";}}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:20:\"hello-theme-frontend\";a:8:{s:6:\"handle\";s:20:\"hello-theme-frontend\";s:3:\"src\";s:93:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/assets/js/hello-frontend.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"1.0.0\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}}','yes'),(1529,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"16.5\";}','yes'),(1530,'wpseo','a:44:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:0;s:7:\"version\";s:4:\"16.5\";s:16:\"previous_version\";s:4:\"16.4\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;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:13:\"smallBusiness\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;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:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1622816262;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:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:8:\"home_url\";s:27:\"https://podiatrist.capetown\";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:3:{s:22:\"elementor_library_type\";s:22:\"elementor_library_type\";s:26:\"elementor_library_category\";s:26:\"elementor_library_category\";s:19:\"elementor_font_type\";s:19:\"elementor_font_type\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;}','yes'),(1531,'wpseo_titles','a:133:{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:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;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:7:\"&raquo;\";s:12:\"website_name\";s:23:\"Andy Blecher Podiatrist\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:77:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\";s:12:\"company_name\";s:23:\"Andy Blecher Podiatrist\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b: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:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:1;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:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";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: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: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: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:20:\"title-e-landing-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-e-landing-page\";s:0:\"\";s:22:\"noindex-e-landing-page\";b:1;s:33:\"display-metabox-pt-e-landing-page\";b:1;s:33:\"post_types-e-landing-page-maintax\";i:0;s:31:\"schema-page-type-e-landing-page\";s:7:\"WebPage\";s:34:\"schema-article-type-e-landing-page\";s:4:\"None\";s:27:\"social-title-e-landing-page\";s:9:\"%%title%%\";s:33:\"social-description-e-landing-page\";s:0:\"\";s:31:\"social-image-url-e-landing-page\";s:0:\"\";s:30:\"social-image-id-e-landing-page\";i:0;s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:1;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;s:34:\"schema-page-type-elementor_library\";s:7:\"WebPage\";s:37:\"schema-article-type-elementor_library\";s:4:\"None\";s:30:\"social-title-elementor_library\";s:9:\"%%title%%\";s:36:\"social-description-elementor_library\";s:0:\"\";s:34:\"social-image-url-elementor_library\";s:0:\"\";s:33:\"social-image-id-elementor_library\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:16;s:17:\"company_logo_meta\";a:9:{s:5:\"width\";i:1621;s:6:\"height\";i:509;s:3:\"url\";s:77:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\";s:4:\"path\";s:73:\"/home/podct/public_html/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:16;s:3:\"alt\";s:28:\"Andy Blecher Podiatrist logo\";s:6:\"pixels\";i:825089;s:4:\"type\";s:10:\"image/jpeg\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;s:23:\"social-title-attachment\";s:9:\"%%title%%\";s:29:\"social-description-attachment\";s:0:\"\";s:27:\"social-image-url-attachment\";s:0:\"\";s:26:\"social-image-id-attachment\";i:0;}','yes'),(1532,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";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:\"\";}','yes'),(1551,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1624029248;}','yes'),(2925,'category_children','a:0:{}','yes'),(4912,'defender_days_rating_later_dismiss','1','yes'),(5288,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(8515,'rewrite_rules','a:118:{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:26:\"^news-sitemap\\.xml(\\.gz)?$\";s:90:\"index.php?wds_news_sitemap=1&wds_news_sitemap_type=index&wds_news_sitemap_gzip=$matches[1]\";s:44:\"^news-([^/]+?)-sitemap([0-9]+)?\\.xml(\\.gz)?$\";s:130:\"index.php?wds_news_sitemap=1&wds_news_sitemap_type=$matches[1]&wds_news_sitemap_page=$matches[2]&wds_news_sitemap_gzip=$matches[3]\";s:21:\"^sitemap\\.xml(\\.gz)?$\";s:75:\"index.php?wds_sitemap=1&wds_sitemap_type=index&wds_sitemap_gzip=$matches[1]\";s:39:\"^([^/]+?)-sitemap([0-9]+)?\\.xml(\\.gz)?$\";s:110:\"index.php?wds_sitemap=1&wds_sitemap_type=$matches[1]&wds_sitemap_page=$matches[2]&wds_sitemap_gzip=$matches[3]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/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:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=69&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(9809,'wds_schema_options','a:36:{s:16:\"person_job_title\";s:0:\"\";s:19:\"person_phone_number\";s:0:\"\";s:17:\"organization_type\";s:0:\"\";s:25:\"organization_contact_type\";s:16:\"customer support\";s:25:\"organization_phone_number\";s:0:\"\";s:27:\"schema_main_navigation_menu\";s:0:\"\";s:31:\"schema_archive_main_entity_type\";s:0:\"\";s:17:\"schema_yt_api_key\";s:0:\"\";s:17:\"person_brand_name\";s:0:\"\";s:10:\"person_bio\";s:0:\"\";s:24:\"organization_description\";s:0:\"\";s:19:\"schema_website_logo\";i:0;s:15:\"person_portrait\";i:0;s:19:\"person_contact_page\";i:0;s:25:\"organization_contact_page\";i:0;s:18:\"schema_output_page\";i:0;s:17:\"schema_about_page\";i:0;s:19:\"schema_contact_page\";i:0;s:20:\"schema_default_image\";i:0;s:17:\"person_brand_logo\";i:0;s:20:\"sitelinks_search_box\";b:1;s:23:\"schema_wp_header_footer\";b:0;s:22:\"schema_enable_comments\";b:0;s:24:\"schema_enable_author_url\";b:1;s:29:\"schema_enable_author_gravatar\";b:0;s:32:\"schema_enable_post_type_archives\";b:1;s:34:\"schema_disabled_post_type_archives\";a:0:{}s:29:\"schema_enable_author_archives\";b:1;s:20:\"schema_enable_search\";b:1;s:27:\"schema_enable_date_archives\";b:1;s:31:\"schema_enable_taxonomy_archives\";b:1;s:33:\"schema_disabled_taxonomy_archives\";a:0:{}s:19:\"schema_enable_audio\";b:0;s:19:\"schema_enable_video\";b:0;s:20:\"schema_enable_yt_api\";b:0;s:25:\"schema_enable_test_button\";b:1;}','yes'),(9814,'wds-free-install-date','1624280097','no'),(9822,'wds_sitemap_options','a:30:{s:24:\"verification-google-meta\";s:0:\"\";s:22:\"verification-bing-meta\";s:0:\"\";s:30:\"post_types-post-not_in_sitemap\";b:1;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:0;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:40:\"post_types-e-landing-page-not_in_sitemap\";b:1;s:43:\"post_types-elementor_library-not_in_sitemap\";b:1;s:18:\"sitemap-stylesheet\";i:1;s:11:\"sitemappath\";s:54:\"/home/podct/public_html/wp-content/uploads/sitemap.xml\";s:10:\"sitemapurl\";s:39:\"https://podiatrist.capetown/sitemap.xml\";s:14:\"sitemap-images\";i:0;s:24:\"sitemap-dashboard-widget\";i:0;s:38:\"sitemap-disable-automatic-regeneration\";i:0;s:18:\"verification-pages\";s:0:\"\";s:25:\"sitemap-buddypress-groups\";i:0;s:27:\"sitemap-buddypress-profiles\";i:0;s:15:\"additiona-metas\";a:0:{}s:19:\"crawler-cron-enable\";b:0;s:17:\"crawler-frequency\";s:6:\"weekly\";s:11:\"crawler-dow\";i:1;s:11:\"crawler-tod\";i:5;s:13:\"split-sitemap\";b:0;s:17:\"items-per-sitemap\";i:2000;s:15:\"override-native\";b:1;s:19:\"enable-news-sitemap\";b:0;s:16:\"news-publication\";s:23:\"Andy Blecher Podiatrist\";s:32:\"news-sitemap-included-post-types\";a:1:{i:0;s:4:\"post\";}s:30:\"news-sitemap-excluded-post-ids\";a:0:{}}','yes'),(9823,'wds_settings_options','a:22:{s:20:\"analysis-readability\";b:1;s:12:\"analysis-seo\";b:1;s:16:\"extras-admin_bar\";b:1;s:7:\"sitemap\";b:1;s:6:\"social\";b:1;s:6:\"onpage\";b:1;s:28:\"seo_metabox_permission_level\";a:1:{i:0;s:10:\"list_users\";}s:35:\"urlmetrics_metabox_permission_level\";a:1:{i:0;s:10:\"list_users\";}s:32:\"seo_metabox_301_permission_level\";a:1:{i:0;s:10:\"list_users\";}s:9:\"access-id\";s:0:\"\";s:10:\"secret-key\";s:0:\"\";s:13:\"high-contrast\";b:0;s:26:\"keep_settings_on_uninstall\";b:0;s:22:\"keep_data_on_uninstall\";b:0;s:9:\"autolinks\";b:0;s:7:\"checkup\";b:0;s:10:\"robots-txt\";b:1;s:17:\"analysis_strategy\";s:6:\"strict\";s:23:\"metabox-lax_enforcement\";b:0;s:26:\"general-suppress-generator\";b:0;s:36:\"general-suppress-redundant_canonical\";b:0;s:17:\"redirections-code\";i:301;}','yes'),(9824,'wds_onpage_options','a:125:{s:24:\"meta_robots-noindex-date\";b:1;s:24:\"meta_robots-noindex-post\";b:1;s:34:\"meta_robots-noindex-e-landing-page\";b:1;s:37:\"meta_robots-noindex-elementor_library\";b:1;s:10:\"title-home\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:13:\"metadesc-home\";s:12:\"%%sitedesc%%\";s:14:\"og-active-home\";b:1;s:13:\"og-title-home\";s:0:\"\";s:19:\"og-description-home\";s:0:\"\";s:14:\"og-images-home\";a:0:{}s:19:\"twitter-active-home\";b:1;s:19:\"twitter-images-home\";a:0:{}s:12:\"title-search\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-search\";s:0:\"\";s:16:\"og-active-search\";b:1;s:16:\"og-images-search\";a:0:{}s:21:\"twitter-active-search\";b:1;s:21:\"twitter-images-search\";a:0:{}s:9:\"title-404\";s:35:\"Page not found %%sep%% %%sitename%%\";s:12:\"metadesc-404\";s:0:\"\";s:13:\"og-active-404\";b:1;s:13:\"og-images-404\";a:0:{}s:18:\"twitter-active-404\";b:1;s:18:\"twitter-images-404\";a:0:{}s:15:\"title-bp_groups\";s:38:\"%%bp_group_name%% %%sep%% %%sitename%%\";s:18:\"metadesc-bp_groups\";s:24:\"%%bp_group_description%%\";s:19:\"og-active-bp_groups\";b:1;s:19:\"og-images-bp_groups\";a:0:{}s:24:\"twitter-active-bp_groups\";b:1;s:24:\"twitter-images-bp_groups\";a:0:{}s:16:\"title-bp_profile\";s:41:\"%%bp_user_username%% %%sep%% %%sitename%%\";s:19:\"metadesc-bp_profile\";s:21:\"%%bp_user_full_name%%\";s:20:\"og-active-bp_profile\";b:1;s:20:\"og-images-bp_profile\";a:0:{}s:25:\"twitter-active-bp_profile\";b:1;s:25:\"twitter-images-bp_profile\";a:0:{}s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:11:\"%%excerpt%%\";s:14:\"og-active-post\";b:1;s:14:\"og-images-post\";a:0:{}s:19:\"twitter-active-post\";b:1;s:19:\"twitter-images-post\";a:0:{}s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:11:\"%%excerpt%%\";s:14:\"og-active-page\";b:1;s:14:\"og-images-page\";a:0:{}s:19:\"twitter-active-page\";b:1;s:19:\"twitter-images-page\";a:0:{}s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:11:\"%%excerpt%%\";s:20:\"og-active-attachment\";b:1;s:20:\"og-images-attachment\";a:0:{}s:25:\"twitter-active-attachment\";b:1;s:25:\"twitter-images-attachment\";a:0:{}s:20:\"title-e-landing-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-e-landing-page\";s:11:\"%%excerpt%%\";s:24:\"og-active-e-landing-page\";b:1;s:24:\"og-images-e-landing-page\";a:0:{}s:29:\"twitter-active-e-landing-page\";b:1;s:29:\"twitter-images-e-landing-page\";a:0:{}s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:11:\"%%excerpt%%\";s:27:\"og-active-elementor_library\";b:1;s:27:\"og-images-elementor_library\";a:0:{}s:32:\"twitter-active-elementor_library\";b:1;s:32:\"twitter-images-elementor_library\";a:0:{}s:28:\"title-elementor_library_type\";s:35:\"%%term_title%% %%sep%% %%sitename%%\";s:31:\"metadesc-elementor_library_type\";s:20:\"%%term_description%%\";s:32:\"og-active-elementor_library_type\";b:1;s:32:\"og-images-elementor_library_type\";a:0:{}s:37:\"twitter-active-elementor_library_type\";b:1;s:37:\"twitter-images-elementor_library_type\";a:0:{}s:32:\"title-elementor_library_category\";s:35:\"%%term_title%% %%sep%% %%sitename%%\";s:35:\"metadesc-elementor_library_category\";s:20:\"%%term_description%%\";s:36:\"og-active-elementor_library_category\";b:1;s:36:\"og-images-elementor_library_category\";a:0:{}s:41:\"twitter-active-elementor_library_category\";b:1;s:41:\"twitter-images-elementor_library_category\";a:0:{}s:25:\"title-elementor_font_type\";s:35:\"%%term_title%% %%sep%% %%sitename%%\";s:28:\"metadesc-elementor_font_type\";s:20:\"%%term_description%%\";s:29:\"og-active-elementor_font_type\";b:1;s:29:\"og-images-elementor_font_type\";a:0:{}s:34:\"twitter-active-elementor_font_type\";b:1;s:34:\"twitter-images-elementor_font_type\";a:0:{}s:14:\"title-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-category\";s:24:\"%%category_description%%\";s:18:\"og-active-category\";b:1;s:18:\"og-images-category\";a:0:{}s:23:\"twitter-active-category\";b:1;s:23:\"twitter-images-category\";a:0:{}s:14:\"title-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-post_tag\";s:19:\"%%tag_description%%\";s:18:\"og-active-post_tag\";b:1;s:18:\"og-images-post_tag\";a:0:{}s:23:\"twitter-active-post_tag\";b:1;s:23:\"twitter-images-post_tag\";a:0:{}s:12:\"title-author\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:15:\"metadesc-author\";s:20:\"%%user_description%%\";s:16:\"og-active-author\";b:1;s:16:\"og-images-author\";a:0:{}s:21:\"twitter-active-author\";b:1;s:21:\"twitter-images-author\";a:0:{}s:10:\"title-date\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-date\";s:0:\"\";s:14:\"og-active-date\";b:1;s:14:\"og-images-date\";a:0:{}s:19:\"twitter-active-date\";b:1;s:19:\"twitter-images-date\";a:0:{}s:21:\"enable-author-archive\";b:0;s:19:\"enable-date-archive\";b:1;s:16:\"preset-separator\";s:4:\"dash\";s:9:\"separator\";s:0:\"\";s:25:\"custom_title_char_lengths\";b:0;s:23:\"custom_title_min_length\";i:50;s:23:\"custom_title_max_length\";i:65;s:28:\"custom_metadesc_char_lengths\";b:0;s:26:\"custom_metadesc_min_length\";i:135;s:26:\"custom_metadesc_max_length\";i:300;s:17:\"onpage-stylesheet\";i:0;s:23:\"onpage-dashboard-widget\";i:1;s:37:\"onpage-disable-automatic-regeneration\";i:0;s:30:\"meta_robots-noindex-attachment\";b:1;s:31:\"meta_robots-nofollow-attachment\";b:1;s:18:\"title-action-group\";s:35:\"%%term_title%% %%sep%% %%sitename%%\";s:21:\"metadesc-action-group\";s:20:\"%%term_description%%\";}','yes'),(9825,'wds_autolinks_options','a:9:{s:20:\"redirect-attachments\";b:1;s:10:\"ignorepost\";s:0:\"\";s:6:\"ignore\";s:0:\"\";s:9:\"customkey\";s:0:\"\";s:14:\"cpt_char_limit\";s:0:\"\";s:14:\"tax_char_limit\";s:0:\"\";s:10:\"link_limit\";s:0:\"\";s:17:\"single_link_limit\";s:0:\"\";s:32:\"redirect-attachments-images_only\";b:1;}','yes'),(9826,'wds_social_options','a:18:{s:14:\"disable-schema\";b:0;s:8:\"sitename\";s:23:\"Andy Blecher Podiatrist\";s:17:\"organization_name\";s:23:\"Andy Blecher Podiatrist\";s:17:\"organization_logo\";s:77:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\";s:11:\"schema_type\";s:12:\"Organization\";s:17:\"twitter-card-type\";s:19:\"summary_large_image\";s:9:\"og-enable\";b:1;s:19:\"twitter-card-enable\";b:1;s:29:\"pinterest-verification-status\";b:0;s:13:\"override_name\";s:0:\"\";s:16:\"twitter_username\";s:0:\"\";s:12:\"facebook_url\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:16:\"pinterest-verify\";s:0:\"\";s:9:\"fb-app-id\";s:0:\"\";}','yes'),(9827,'wds_taxonomy_meta','a:0:{}','yes'),(9828,'wds-sitemap-rewrite-rules-flushed','3.2.0','yes'),(9829,'wds_checkup_options','a:5:{s:19:\"checkup-cron-enable\";b:0;s:17:\"checkup-frequency\";s:6:\"weekly\";s:11:\"checkup-dow\";i:3;s:11:\"checkup-tod\";i:4;s:24:\"checkup-email-recipients\";a:1:{i:0;a:2:{s:4:\"name\";s:5:\"podct\";s:5:\"email\";s:26:\"adrian@fullerdigital.co.za\";}}}','yes'),(9924,'wds_engine_notification','a:0:{}','yes'),(9946,'wds-model-service-checkup-last','1624280880','yes'),(9949,'wds-onboarding-done','2.10.2','yes'),(9954,'wds-model-service-checkup-progress','','yes'),(9963,'wds-fake-checkup-progress','21','yes'),(9967,'wds_sitemap_dashboard','a:2:{s:5:\"items\";i:1;s:4:\"time\";i:1663016807;}','yes'),(9971,'wds-welcome-modal-dismissed','2.10.2','yes'),(10008,'wds-model-service-checkup-result','a:3:{s:7:\"overall\";a:4:{s:5:\"score\";i:95;s:13:\"pcnt_complete\";i:100;s:6:\"counts\";a:4:{s:8:\"critical\";i:0;s:7:\"warning\";i:1;s:4:\"info\";i:0;s:2:\"ok\";i:23;}s:11:\"is_complete\";b:1;}s:3:\"seo\";a:8:{s:5:\"score\";i:95;s:11:\"is_complete\";b:1;s:13:\"pcnt_complete\";i:100;s:19:\"is_plugin_installed\";b:0;s:5:\"items\";a:24:{s:9:\"canonical\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:13:\"Canonical Tag\";s:4:\"body\";s:322:\"<div class=\'report status ok\'><p>A canonical tag is currently set as <strong>https://podiatrist.capetown/</strong></p></div><p>Double check the listed URL is your preferred one for your homepage. If it matches what you want as your root domain, awesome you can ignore this item. If not, specify your root domain below.</p>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:757:\"<p>If you have two pages of your website with the exact same content, search engines will get confused as to which one to index and will generally penalize you for having duplicate content. A common example of this, is where your domain is served both on the www prefix and the non-www prefix - I.e. https://website.com and https://www.website.com… Search engines don’t want to index both of these, so we need to tell them which one is the preferred URL for search results. Canonical tags are how we do this.</p><p>There are many exceptions to this rule, that is why this SEO item is an informational item to prompt you to check if this URL has potential duplicates of it’s content, and if so, to tell search engines which one is the one to index.</p>\";}s:8:\"favicons\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:7:\"Favicon\";s:4:\"body\";s:361:\"<div class=\'report status ok\'><p>We found a favicon for your website, nice work.</p></div><p>Your page has the following favicons</p><table><thead><tr><th>Favicons</th></tr></thead><tbody><tr><td>https://podiatrist.capetown/favicon.ico</td></tr><tr><td>https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg</td></tr></tbody></table>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:224:\"<p>Favicons are the small icons that appear in the URL navigation bar and are saved with the title when a page is bookmarked. Favicons help brand your site and make navigation easier when a visitor has lots of tabs open.</p>\";}s:8:\"headings\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:12:\"Page Heading\";s:4:\"body\";s:96:\"<div class=\'report status ok\'><p>We found a single &lt;h1&gt; heading tag – perfect.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:725:\"<p>H1 headings are HTML tags used to help clarify the overall message of your page to search engines - the page topic. Having a page heading that clearly describes that topic of your page will not only be crawled by search engines, but is also just plain old good user experience.</p><p>A good heading will match what the visitor came for, but also entice them into staying longer. To ensure you have the best page headings possible, follow these simple rules:</p><ol><li>Describe the topic of your page, and match up the keywords of your page and meta titles.</li><li>Write titles between 20-70 characters in length.</li><li>Use only one &lt;h1&gt; tag per page.</li><li>Make your page headings stand out visually.</li></ol>\";}s:5:\"https\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:5:\"Https\";s:4:\"body\";s:124:\"<div class=\'report status ok\'><p>Nice! you’re using HTTPS which improves privacy, overall security and PageRank.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:353:\"<p>HTTPS is a secure protocol for sending and receiving data over the internet. HTTPS should be used on any site that collects sensitive customer information such as credit card information. If your site does not collect personal data, switching to https will help improve privacy and overall security. Google is now using https in setting PageRank.</p>\";}s:7:\"imgalts\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:14:\"Image Alt Text\";s:4:\"body\";s:101:\"<div class=\'report status ok\'><p>Way to go! It appears all your images have alt image text.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:370:\"<p>Alt image text is used if an image cannot be displayed because the image can’t be found or the internet connection is slow. It also used by screen-readers to describe images to visually impaired users, and search engines will use it for indexing content. Good, descriptive alt image text helps users and search engines better understand the subject of an image.</p>\";}s:11:\"meta_robots\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:24:\"Search Engine Visibility\";s:4:\"body\";s:158:\"<div class=\'report status ok\'><p>Your WordPress Settings are set to <strong>index, follow</strong> - allowing search engine bots to index this site.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:423:\"<p>Search engines have built-in mechanisms that allow websites to tell them what they should and shouldn’t do with content. These mechanisms indicate whether they should index your pages (or not), and whether they should crawl links they find on them. For the average Wordpress website, you should always be allowing search engines full access to index and crawl everything (unless you have a specific reason not to).</p>\";}s:4:\"meta\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:16:\"Meta Description\";s:4:\"body\";s:208:\"<div class=\'report status ok\'><p>Your homepage description is <strong>Andy Blecher podiatrist can help you to keep your feet in a fit state to carry out the function they were designed for.</strong></p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:420:\"<p>A meta description is an HTML tag used by search engines to identify your page topic and is often displayed in search results. A clear friendly description helps search engines determine page relevance and rank and helps visitors decide if they will click on your page.</p><p>A meta description tag looks like <strong>&lt;meta name=“description&quot; content=&quot;Page description goes here&quot;&gt;</strong>.</p>\";}s:9:\"microdata\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:9:\"Microdata\";s:4:\"body\";s:541:\"<div class=\'report status ok\'><p>It looks like you have metadata on your homepage, good stuff.</p></div><p>Here are the types we found on your page:</p><table><thead><tr><th>Types</th></tr></thead><tbody><tr><td>https://schema.org/Organization</td></tr><tr><td>https://schema.org/ImageObject</td></tr><tr><td>https://schema.org/WebSite</td></tr><tr><td>https://schema.org/SearchAction</td></tr><tr><td>https://schema.org/WebPage</td></tr><tr><td>https://schema.org/Article</td></tr><tr><td>https://schema.org/Person</td></tr></tbody></table>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:370:\"<p>Microdata is nested metadata within existing content on your web page and tells search engines what specific bits of information on the page are important. For example you can indicate who the author is, when it was written or what type of content it is (video, product, book etc). This helps search engines categorize content so that it can be found more easily.</p>\";}s:10:\"open_graph\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:9:\"OpenGraph\";s:4:\"body\";s:665:\"<div class=\'report status ok\'><p>We detected OpenGraph tags on your homepage, well done.</p></div><p>You have the following OpenGraph values on your page:</p><table><thead><tr><th>Name</th><th>Value</th></tr></thead><tbody><tr><td><strong>og:type</strong></td><td>website</td></tr><tr><td><strong>og:url</strong></td><td>https://podiatrist.capetown/</td></tr><tr><td><strong>og:title</strong></td><td>Andy Blecher Podiatrist will keep your feet healthy and happy</td></tr><tr><td><strong>og:description</strong></td><td>Andy Blecher podiatrist can help you to keep your feet in a fit state to carry out the function they were designed for.</td></tr></tbody></table>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:297:\"<p>OpenGraph ensures your pages look great when shared on social platforms. Primarily used by Facebook, OpenGraph adds additional meta tags to your &lt;head&gt; tag like title, description, image and other handy data that display pages nicely. We highly recommend you enable OpenGraph support.</p>\";}s:6:\"robots\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:10:\"Robots.txt\";s:4:\"body\";s:87:\"<div class=\'report status ok\'><p>We\'ve detected a robots.txt file, nice work.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:705:\"<p>There are two key files that search engine bots use to index your content:</p><p>- A robots.txt file</p><p>- A sitemap.xml file</p><p>A robots.txt file is placed on your site’s root directory and instructs search engines what pages/media to crawl and index, or not. Search bots will look for the robots.txt file as soon as they arrive, and will follow it’s instructions. Even if you want your entire website to be indexed, a default robots.txt is recommended.</p><p>Sitemaps are a big list of all your pages, posts and media that you want search engines to find and make available for people to search and find. We also recommend making sure your sitemap is linked to from your robots.txt file.</p>\";}s:8:\"sitemaps\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:8:\"Sitemaps\";s:4:\"body\";s:352:\"<div class=\'report status ok\'><p>We found one or more valid sitemap files for your site</p></div><p>Here are the sitemaps we found for your site:</p><table><thead><tr><th>Sitemap</th><th>Items</th><th>Index</th><th>Valid</th></tr></thead><tbody><tr><td>https://podiatrist.capetown/sitemap.xml</td><td>11</td><td>No</td><td>Yes</td></tr></tbody></table>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:778:\"<p>A sitemap is a list of all the pages, posts and media on your website that you want to be found by someone who is searching for your content. A sitemap makes it easier for search engines to navigate, index and share relevant content in search results.</p><p>Search engine bots will naturally begin crawling your website from the root domain, I.e. https://example.com/. Before they follow any links, they will look for a robots.txt file (explained in another checkup item) to find out what they should and shouldn’t index. Next, the bot will try to locate a sitemap.xml file in your root folder that tells it where all of your links are. Sitemaps mean 100% of your links will get indexed, instead of relying on having all of those links publicly crawlable on your pages.</p>\";}s:5:\"title\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:10:\"Meta Title\";s:4:\"body\";s:144:\"<div class=\'report status ok\'><p>Your homepage title is <strong>Andy Blecher Podiatrist will keep your feet healthy and happy</strong></p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:330:\"<p>A meta title is an HTML tag <strong>&lt;title&gt;Example Title&lt;/title&gt;</strong> used by search engines in their results, at the top of the browser and when a page is bookmarked. A clear descriptive title helps search engines determine page relevance and rank and helps visitors decide if they will click on your page.</p>\";}s:16:\"url_structure-qv\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:15:\"Query Variables\";s:4:\"body\";s:101:\"<div class=\'report status ok\'><p>We didn\'t detect any query variables in your homepage URL.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:301:\"<p>Query variables in your URL look like ?p=125 or ?v=123498. Having these random values in your URLs make them hard to read alongside the title of a post, and also look less trustworthy. Clean URLs look more professional and are more likely to be clicked when shared on social media or in a blog.</p>\";}s:18:\"url_structure-dash\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:11:\"Underscores\";s:4:\"body\";s:91:\"<div class=\'report status ok\'><p>Your homepage isn\'t using underscores, good job.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:252:\"<p>Search engines use hyphens and underscores differently. Google has clearly stated that when it comes to URL structure, using hyphens rather than underscores makes it easier for them to identify what the page is about and therefore best practice.</p>\";}s:17:\"url_structure-cpt\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:18:\"URL Capitalization\";s:4:\"body\";s:90:\"<div class=\'report status ok\'><p>No capitals were detected in your homepage URL.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:488:\"<p>In general, it’s good practice to keep all your URLs lowercase, and separate words with hyphens. There may be URLs, or parts of URLs, where case doesn\'t matter, but identifying these may not be easy.</p><p>In addition to user experience, uppercase letters can cause issues in some cases with duplicate pages. For example, <strong>example.com/Blog</strong> and <strong>example.com/blog</strong> might be seen as two distinct URLs, which might create issues with duplicate content.</p>\";}s:17:\"url_structure-hsh\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:6:\"Hashes\";s:4:\"body\";s:96:\"<div class=\'report status ok\'><p>No hashes were detected in your homepage URL, woohoo!</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:377:\"<p>Search engines such as Google ignore URL parameters that come after the hash. Hashes can be useful when pointing people to sections of a page, however it’s not good practice for your homepage. If your URL has a hash it may not properly be indexed by search engines and so can negatively affect your SEO overall - particularly if necessary keywords come after the hash.</p>\";}s:21:\"anchors-uninformative\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:17:\"Anchor Usefulness\";s:4:\"body\";s:79:\"<div class=\'report status ok\'><p>No generic anchor text was detected.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:330:\"<p>Anchor text should be helpful for your visitors to understand what the link is about, particularly for visually impaired users who are dictating each bit of your website using a screen reader. Anchor text that is not descriptive e.g. \"click here\" or \"read more\" is consider less useful than a proper description of the URL.</p>\";}s:15:\"anchors-invalid\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:10:\"Anchor IDs\";s:4:\"body\";s:98:\"<div class=\'report status ok\'><p>All of your relative anchors are pointing to valid IDs.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:253:\"<p>Relative links (internal) that use anchor tags to send users to specific content snippets require IDs on those receiving pages. This check exists to make sure the links on the crawled page actually have corresponding IDs on the page they link to.</p>\";}s:17:\"anchors-redundant\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:21:\"Redundant Link Titles\";s:4:\"body\";s:104:\"<div class=\'report status ok\'><p>All links appear to have distinct anchor title and link text.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:742:\"<p>Link titles should provide detailed information of where your links are going to take your visitors. A redundant link title looks like <strong>&lt;a href=&quot;/contact&quot; title&quot;Contact Us&quot;&gt;Contact Us&lt;/a&gt;</strong> where you are using the same descriptor for both your link text and title attribute. You aren’t utilizing an opportunity to describe what the user can expect to read.</p><p>An improved example of the above link would be… \"<strong>When you are ready, &lt;a href=&quot;/contact&quot; title=&quot;Contact our team to arrange a free quote for your paint job&quot;&gt;get in touch&lt;/a&gt; to arrange a quote.</strong>\" where the link title gives the user (and screen readers) much more information.</p>\";}s:13:\"anchors-empty\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:9:\"Link Text\";s:4:\"body\";s:89:\"<div class=\'report status ok\'><p>We didn\'t find any empty link text, nice work.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:220:\"<p>Screen readers use anchor tags to describe what the link is and/or where it is pointed. Each link should have descriptive text inside the &lt;a&gt; tags to make them accessible to both screen readers and visitors.</p>\";}s:13:\"duplicate_ids\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:13:\"Duplicate IDs\";s:4:\"body\";s:79:\"<div class=\'report status ok\'><p>No duplicate IDs have been detected.</p></div>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:515:\"<p>An element\'s unique identifier can be used for a variety of purposes, most notably as a way to link to specific parts of a document using fragment identifiers, as a way to target an element when scripting, and as a way to style a specific element from CSS.</p><p>Duplicate element IDs cause problems for assistive technologies when they are trying to parse content that has the same ID attribute on different elements. You can avoid these errors by making sure the web page does not have duplicate ID values.</p>\";}s:14:\"aria-landmarks\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:14:\"Aria Landmarks\";s:4:\"body\";s:282:\"<div class=\'report status ok\'><p>We found valid aria landmarks on your homepage, nicely done.</p></div><p>Here are the ARIA role landmarks we found on your page.</p><table><thead><tr><th>Landmarks</th></tr></thead><tbody><tr><td><strong>navigation</strong></td></tr></tbody></table>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:286:\"<p>ARIA landmarks are like \"skip to\" links that improve navigation for people using screen readers so they can jump to sections on a page. The ARIA landmarks to define the following regions include: application, banner, complementary, contentinfo, form, main, navigation and search.</p>\";}s:15:\"aria-duplicates\";a:8:{s:4:\"type\";s:7:\"warning\";s:5:\"title\";s:24:\"Duplicate Aria Landmarks\";s:4:\"body\";s:454:\"<div class=\'report status warning\'><p>We\'ve detected duplicate aria landmarks on your homepage.</p></div><p>You have the following duplicate landmarks in your code. Please add identifying labels to them to identify what each ones does.</p><table><thead><tr><th>Duplicate Landmarks</th></tr></thead><tbody><tr><td><strong>navigation</strong></td></tr><tr><td><strong>button</strong></td></tr><tr><td><strong>presentation</strong></td></tr></tbody></table>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:793:\"<p>It’s great that you have aria landmarks specified in your code, but duplicates that don’t have an identifier will be confusing to visually impaired users who can’t see the difference between two landmarks,. It’s an easy problem to solve, just add the complimentary aria-label to the duplicate landmarks and clearly label what they are. For example:</p><ul><li><strong>&lt;div role=&quot;navigation&quot; aria-label=&quot;Main menu&quot;&gt;</strong></li><li><strong>&lt;div role=&quot;navigation&quot; aria-label=&quot;User menu&quot;&gt;</strong></li></ul><p>Note: Because aria landmarks are usually containers around sections of your website, it’s likely the output is from your theme itself, or a plugin. Contact your developer and have them adjust the duplicate landmarks.</p>\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:286:\"<p>ARIA landmarks are like \"skip to\" links that improve navigation for people using screen readers so they can jump to sections on a page. The ARIA landmarks to define the following regions include: application, banner, complementary, contentinfo, form, main, navigation and search.</p>\";}s:10:\"aria-roles\";a:8:{s:4:\"type\";s:2:\"ok\";s:5:\"title\";s:10:\"Aria Roles\";s:4:\"body\";s:337:\"<div class=\'report status ok\'><p>We found multiple aria roles on your homepage, awesome.</p></div><p>Your page has the following aria roles.</p><table><thead><tr><th>Aria Roles</th></tr></thead><tbody><tr><td>navigation</td></tr><tr><td>button (Menu Toggle)</td></tr><tr><td>presentation</td></tr><tr><td>button</td></tr></tbody></table>\";s:7:\"tooltip\";s:0:\"\";s:5:\"class\";s:0:\"\";s:3:\"fix\";s:0:\"\";s:13:\"display_value\";s:0:\"\";s:7:\"details\";s:204:\"<p>ARIA role attributes define general objects on a web page (e.g. article, alert, or slider) to make it easier for visually impaired people using a screen reader understand the structure of the page.</p>\";}}s:5:\"error\";b:0;s:7:\"ignored\";a:0:{}s:6:\"counts\";a:4:{s:8:\"critical\";i:0;s:7:\"warning\";i:1;s:4:\"info\";i:0;s:2:\"ok\";i:23;}}s:11:\"checkup_url\";s:28:\"https://podiatrist.capetown/\";}','yes'),(10021,'wds-redirections','a:1:{s:39:\"https://www.podiatristandyblecher.co.za\";s:27:\"https://podiatrist.capetown\";}','yes'),(10022,'wds-redirections-types','a:1:{s:39:\"https://www.podiatristandyblecher.co.za\";i:301;}','yes'),(11230,'wp-smush-show_upgrade_modal','1','no'),(13999,'wds_lighthouse_options','a:9:{s:34:\"lighthouse-dashboard-widget-device\";s:7:\"desktop\";s:22:\"lighthouse-cron-enable\";b:0;s:20:\"lighthouse-frequency\";s:6:\"weekly\";s:14:\"lighthouse-dow\";i:4;s:14:\"lighthouse-tod\";i:6;s:21:\"lighthouse-recipients\";a:1:{i:0;a:2:{s:4:\"name\";s:5:\"podct\";s:5:\"email\";s:26:\"adrian@fullerdigital.co.za\";}}s:38:\"lighthouse-reporting-condition-enabled\";b:0;s:30:\"lighthouse-reporting-condition\";i:90;s:27:\"lighthouse-reporting-device\";s:4:\"both\";}','yes'),(14000,'wds_health_options','a:1:{s:16:\"health-test-mode\";s:11:\"seo-checkup\";}','yes'),(14039,'wphb-preset_configs','a:1:{i:0;a:5:{s:2:\"id\";i:1;s:4:\"name\";s:14:\"Default config\";s:11:\"description\";s:46:\"Recommended performance config for every site.\";s:7:\"default\";b:1;s:6:\"config\";a:2:{s:7:\"configs\";a:1:{s:8:\"settings\";a:7:{s:8:\"advanced\";a:5:{s:12:\"query_string\";b:0;s:5:\"emoji\";b:0;s:11:\"db_cleanups\";b:0;s:14:\"cart_fragments\";b:0;s:9:\"lazy_load\";a:1:{s:7:\"enabled\";b:0;}}s:8:\"gravatar\";a:1:{s:7:\"enabled\";b:1;}s:10:\"page_cache\";a:4:{s:7:\"enabled\";b:1;s:9:\"detection\";s:4:\"auto\";s:12:\"integrations\";a:2:{s:7:\"varnish\";b:0;s:7:\"opcache\";b:0;}s:7:\"preload\";b:0;}s:11:\"performance\";a:0:{}s:3:\"rss\";a:2:{s:7:\"enabled\";b:1;s:8:\"duration\";i:3600;}s:8:\"settings\";a:4:{s:17:\"accessible_colors\";b:0;s:15:\"remove_settings\";b:0;s:11:\"remove_data\";b:0;s:7:\"control\";b:1;}s:6:\"uptime\";a:1:{s:7:\"enabled\";b:0;}}}s:7:\"strings\";a:6:{s:8:\"advanced\";a:1:{i:0;s:201:\"Remove query strings from assets - Inactive\nRemove Emoji JS & CSS files - Inactive\nScheduled database cleanups - Inactive\nDisable WooCommerce cart fragments - Inactive\nComments lazy loading - Inactive\n\";}s:8:\"gravatar\";a:1:{i:0;s:24:\"Gravatar cache - Active\n\";}s:10:\"page_cache\";a:1:{i:0;s:133:\"Page cache - Active\nFile change detection - Auto\nPurge Varnish cache - Inactive\nPurge OpCache - Inactive\nCache preloading - Inactive\n\";}s:3:\"rss\";a:1:{i:0;s:21:\"RSS caching - Active\n\";}s:8:\"settings\";a:1:{i:0;s:142:\"High contrast mode - Inactive\nRemove settings on uninstall - Inactive\nRemove data on uninstall - Inactive\nCache control in admin bar - Active\n\";}s:6:\"uptime\";a:1:{i:0;s:18:\"Uptime - Inactive\n\";}}}}}','no'),(14049,'wphb-stop-report','1','no'),(14050,'wphb-last-report','O:8:\"stdClass\":4:{s:4:\"code\";i:200;s:7:\"message\";s:0:\"\";s:4:\"data\";O:8:\"stdClass\":5:{s:2:\"id\";s:7:\"5184805\";s:4:\"time\";s:10:\"1622738905\";s:3:\"url\";s:28:\"https://podiatrist.capetown/\";s:7:\"desktop\";O:8:\"stdClass\":5:{s:5:\"score\";i:83;s:11:\"score_class\";s:1:\"b\";s:7:\"metrics\";O:8:\"stdClass\":6:{s:11:\"speed-index\";O:8:\"stdClass\":6:{s:12:\"numericValue\";d:4583.456156665356;s:11:\"description\";s:119:\"Speed Index shows how quickly the contents of a page are visibly populated. [Learn more](https://web.dev/speed-index/).\";s:12:\"displayValue\";s:6:\"4.6 s\";s:5:\"score\";d:0.06;s:5:\"title\";s:11:\"Speed Index\";s:6:\"weight\";i:10;}s:24:\"largest-contentful-paint\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:1671;s:11:\"description\";s:153:\"Largest Contentful Paint marks the time at which the largest text or image is painted. [Learn more](https://web.dev/lighthouse-largest-contentful-paint/)\";s:12:\"displayValue\";s:6:\"1.7 s\";s:5:\"score\";d:0.75;s:5:\"title\";s:24:\"Largest Contentful Paint\";s:6:\"weight\";i:25;}s:22:\"first-contentful-paint\";O:8:\"stdClass\":6:{s:12:\"numericValue\";d:1015.5;s:11:\"description\";s:137:\"First Contentful Paint marks the time at which the first text or image is painted. [Learn more](https://web.dev/first-contentful-paint/).\";s:12:\"displayValue\";s:6:\"1.0 s\";s:5:\"score\";d:0.86;s:5:\"title\";s:22:\"First Contentful Paint\";s:6:\"weight\";i:10;}s:11:\"interactive\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:1671;s:11:\"description\";s:136:\"Time to interactive is the amount of time it takes for the page to become fully interactive. [Learn more](https://web.dev/interactive/).\";s:12:\"displayValue\";s:6:\"1.7 s\";s:5:\"score\";d:0.98;s:5:\"title\";s:19:\"Time to Interactive\";s:6:\"weight\";i:10;}s:23:\"cumulative-layout-shift\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:0.04318991331757289;s:11:\"description\";s:122:\"Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more](https://web.dev/cls/).\";s:7:\"details\";O:8:\"stdClass\":2:{s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:30:\"cumulativeLayoutShiftMainFrame\";d:0.04318991331757289;s:26:\"totalCumulativeLayoutShift\";d:0.04318991331757289;}}s:4:\"type\";s:9:\"debugdata\";}s:12:\"displayValue\";s:5:\"0.043\";s:5:\"score\";d:0.99;s:5:\"title\";s:23:\"Cumulative Layout Shift\";s:6:\"weight\";i:15;}s:19:\"total-blocking-time\";O:8:\"stdClass\":6:{s:12:\"numericValue\";d:25.5;s:11:\"description\";s:182:\"Sum of all time periods between FCP and Time to Interactive, when task length exceeded 50ms, expressed in milliseconds. [Learn more](https://web.dev/lighthouse-total-blocking-time/).\";s:12:\"displayValue\";s:6:\"30 ms\";s:5:\"score\";i:1;s:5:\"title\";s:19:\"Total Blocking Time\";s:6:\"weight\";i:30;}}s:6:\"audits\";O:8:\"stdClass\":3:{s:13:\"opportunities\";O:8:\"stdClass\":2:{s:20:\"server-response-time\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:1671.733;s:11:\"description\";s:149:\"Keep the server response time for the main document short because all other requests depend on it. [Learn more](https://web.dev/time-to-first-byte/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";d:1571.733;s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:12:\"responseTime\";d:1671.733;s:3:\"url\";s:28:\"https://podiatrist.capetown/\";}}s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:3:\"url\";s:9:\"valueType\";s:3:\"url\";s:5:\"label\";s:3:\"URL\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:12:\"responseTime\";s:9:\"valueType\";s:10:\"timespanMs\";s:5:\"label\";s:10:\"Time Spent\";}}}s:12:\"displayValue\";s:28:\"Root document took 1,670 ms\";s:5:\"score\";i:0;s:5:\"title\";s:35:\"Reduce initial server response time\";s:6:\"weight\";i:0;}s:25:\"render-blocking-resources\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:704;s:11:\"description\";s:195:\"Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. [Learn more](https://web.dev/render-blocking-resources/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:704;s:5:\"items\";a:11:{i:0;O:8:\"stdClass\":3:{s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-includes/css/dist/block-library/style.min.css?ver=5.7.2\";s:8:\"wastedMs\";i:110;s:10:\"totalBytes\";i:9022;}i:1;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:2642;s:8:\"wastedMs\";i:150;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/style.min.css?ver=2.3.1\";}i:2;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:1812;s:8:\"wastedMs\";i:150;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/theme.min.css?ver=2.3.1\";}i:3;O:8:\"stdClass\":3:{s:8:\"wastedMs\";i:150;s:10:\"totalBytes\";i:3935;s:3:\"url\";s:113:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.11.0\";}i:4;O:8:\"stdClass\":3:{s:3:\"url\";s:107:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.2.4\";s:8:\"wastedMs\";i:150;s:10:\"totalBytes\";i:2929;}i:5;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:17109;s:3:\"url\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.2.4\";s:8:\"wastedMs\";i:230;}i:6;O:8:\"stdClass\":3:{s:8:\"wastedMs\";i:70;s:10:\"totalBytes\";i:691;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1622738209\";}i:7;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:23463;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";s:8:\"wastedMs\";i:150;}i:8;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:3645;s:8:\"wastedMs\";i:70;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/global.css?ver=1622738209\";}i:9;O:8:\"stdClass\":3:{s:3:\"url\";s:87:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-11.css?ver=1622738829\";s:10:\"totalBytes\";i:542;s:8:\"wastedMs\";i:70;}i:10;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:2077;s:3:\"url\";s:408:\"https://fonts.googleapis.com/css?family=Averia+Libre%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=5.7.2\";s:8:\"wastedMs\";i:230;}}s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:5:\"label\";s:3:\"URL\";s:3:\"key\";s:3:\"url\";s:9:\"valueType\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:5:\"label\";s:13:\"Transfer Size\";s:3:\"key\";s:10:\"totalBytes\";s:9:\"valueType\";s:5:\"bytes\";}i:2;O:8:\"stdClass\":3:{s:5:\"label\";s:17:\"Potential Savings\";s:9:\"valueType\";s:10:\"timespanMs\";s:3:\"key\";s:8:\"wastedMs\";}}}s:12:\"displayValue\";s:28:\"Potential savings of 700 ms\";s:5:\"score\";d:0.53;s:5:\"title\";s:35:\"Eliminate render-blocking resources\";s:6:\"weight\";i:0;}}s:11:\"diagnostics\";O:8:\"stdClass\":4:{s:21:\"layout-shift-elements\";O:8:\"stdClass\":5:{s:11:\"description\";s:58:\"These DOM elements contribute most to the CLS of the page.\";s:7:\"details\";O:8:\"stdClass\":3:{s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"node\";O:8:\"stdClass\":7:{s:4:\"type\";s:4:\"node\";s:8:\"selector\";s:82:\"body.home > div.elementor > div.elementor-section-wrap > section.elementor-section\";s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:6:\"height\";i:104;s:3:\"top\";i:519;s:4:\"left\";i:0;s:6:\"bottom\";i:623;s:5:\"right\";i:1350;s:5:\"width\";i:1350;}s:4:\"path\";s:35:\"1,HTML,1,BODY,0,DIV,0,DIV,2,SECTION\";s:7:\"snippet\";s:141:\"<section class=\"elementor-section elementor-top-section elementor-element elementor-elemen…\" data-id=\"05f8d2d\" data-element_type=\"section\">\";s:9:\"nodeLabel\";s:82:\"In the meantime, visit my existing website at https://www.podiatristandyblecher…\";s:4:\"lhId\";s:14:\"page-1-SECTION\";}s:5:\"score\";d:0.04318991331757289;}}s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:4:\"node\";s:8:\"itemType\";s:4:\"node\";s:4:\"text\";s:7:\"Element\";}i:1;O:8:\"stdClass\":4:{s:4:\"text\";s:16:\"CLS Contribution\";s:8:\"itemType\";s:7:\"numeric\";s:3:\"key\";s:5:\"score\";s:11:\"granularity\";d:0.001;}}s:4:\"type\";s:5:\"table\";}s:12:\"displayValue\";s:15:\"1 element found\";s:5:\"title\";s:25:\"Avoid large layout shifts\";s:6:\"weight\";i:0;}s:12:\"font-display\";O:8:\"stdClass\":6:{s:11:\"description\";s:141:\"Leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. [Learn more](https://web.dev/font-display/).\";s:7:\"details\";O:8:\"stdClass\":3:{s:5:\"items\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"url\";s:83:\"https://fonts.gstatic.com/s/averialibre/v9/2V0aKIcMGZEnV6xygz7eNjESBanIRWbh8g.woff2\";s:8:\"wastedMs\";d:3.4410000080242753;}i:1;O:8:\"stdClass\":2:{s:8:\"wastedMs\";d:3.989000018918887;s:3:\"url\";s:71:\"https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2\";}}s:4:\"type\";s:5:\"table\";s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:3:\"URL\";s:8:\"itemType\";s:3:\"url\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"wastedMs\";s:4:\"text\";s:17:\"Potential Savings\";s:8:\"itemType\";s:2:\"ms\";}}}s:5:\"score\";i:0;s:5:\"title\";s:47:\"Ensure text remains visible during webfont load\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:32:\"largest-contentful-paint-element\";O:8:\"stdClass\":5:{s:11:\"description\";s:134:\"This is the largest contentful element painted within the viewport. [Learn More](https://web.dev/lighthouse-largest-contentful-paint/)\";s:7:\"details\";O:8:\"stdClass\":3:{s:8:\"headings\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:7:\"Element\";s:8:\"itemType\";s:4:\"node\";s:3:\"key\";s:4:\"node\";}}s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"node\";O:8:\"stdClass\":7:{s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:4:\"left\";i:291;s:3:\"top\";i:268;s:6:\"height\";i:241;s:5:\"width\";i:768;s:6:\"bottom\";i:509;s:5:\"right\";i:1059;}s:4:\"type\";s:4:\"node\";s:8:\"selector\";s:112:\"div.elementor-widget-wrap > div.elementor-element > div.elementor-widget-container > img.attachment-medium_large\";s:4:\"lhId\";s:10:\"page-0-IMG\";s:9:\"nodeLabel\";s:28:\"Andy Blecher Podiatrist logo\";s:4:\"path\";s:71:\"1,HTML,1,BODY,0,DIV,0,DIV,1,SECTION,0,DIV,0,DIV,0,DIV,0,DIV,0,DIV,0,IMG\";s:7:\"snippet\";s:567:\"<img width=\"768\" height=\"241\" alt=\"Andy Blecher Podiatrist logo\" data-srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" data-src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" data-sizes=\"(max-width: 768px) 100vw, 768px\" class=\"attachment-medium_large size-medium_large lazyloaded\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" …>\";}}}s:4:\"type\";s:5:\"table\";}s:12:\"displayValue\";s:15:\"1 element found\";s:5:\"title\";s:32:\"Largest Contentful Paint element\";s:6:\"weight\";i:0;}s:19:\"uses-long-cache-ttl\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:310221;s:11:\"description\";s:114:\"A long cache lifetime can speed up repeat visits to your page. [Learn more](https://web.dev/uses-long-cache-ttl/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:4:\"type\";s:5:\"table\";s:5:\"items\";a:29:{i:0;O:8:\"stdClass\":5:{s:3:\"url\";s:115:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js?ver=3.2.2\";s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:37707;s:10:\"totalBytes\";i:37707;}i:1;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:35845;s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js?ver=5.3.6\";s:10:\"totalBytes\";i:35845;s:19:\"cacheHitProbability\";i:0;}i:2;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:73:\"https://podiatrist.capetown/wp-includes/js/jquery/jquery.min.js?ver=3.5.1\";s:11:\"wastedBytes\";i:31270;s:10:\"totalBytes\";i:31270;s:15:\"cacheLifetimeMs\";i:0;}i:3;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:24355;s:11:\"wastedBytes\";i:24355;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\";}i:4;O:8:\"stdClass\":5:{s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";s:11:\"wastedBytes\";i:23463;s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:23463;}i:5;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:22084;s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:22084;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:100:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.2.4\";}i:6;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:19999;s:10:\"totalBytes\";i:19999;s:3:\"url\";s:92:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.2.4\";s:19:\"cacheHitProbability\";i:0;}i:7;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:17762;s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:96:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.2.2\";s:11:\"wastedBytes\";i:17762;}i:8;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:17386;s:3:\"url\";s:101:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js?ver=3.2.4\";s:10:\"totalBytes\";i:17386;s:19:\"cacheHitProbability\";i:0;}i:9;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:17109;s:3:\"url\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.2.4\";s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:17109;s:19:\"cacheHitProbability\";i:0;}i:10;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:9022;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-includes/css/dist/block-library/style.min.css?ver=5.7.2\";s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:9022;s:15:\"cacheLifetimeMs\";i:0;}i:11;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:7216;s:3:\"url\";s:75:\"https://podiatrist.capetown/wp-includes/js/jquery/ui/core.min.js?ver=1.12.1\";s:10:\"totalBytes\";i:7216;}i:12;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:5013;s:10:\"totalBytes\";i:5013;s:3:\"url\";s:76:\"https://podiatrist.capetown/wp-includes/js/wp-emoji-release.min.js?ver=5.7.2\";}i:13;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:81:\"https://podiatrist.capetown/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2\";s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:4521;s:11:\"wastedBytes\";i:4521;}i:14;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:4036;s:3:\"url\";s:104:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js?ver=3.8.5\";s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:4036;s:19:\"cacheHitProbability\";i:0;}i:15;O:8:\"stdClass\":5:{s:3:\"url\";s:113:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.11.0\";s:11:\"wastedBytes\";i:3935;s:10:\"totalBytes\";i:3935;s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;}i:16;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:3862;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js?ver=4.8.1\";s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:3862;s:15:\"cacheLifetimeMs\";i:0;}i:17;O:8:\"stdClass\":5:{s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/global.css?ver=1622738209\";s:11:\"wastedBytes\";i:3645;s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:3645;s:19:\"cacheHitProbability\";i:0;}i:18;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:3344;s:3:\"url\";s:104:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js?ver=4.0.2\";s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:3344;s:19:\"cacheHitProbability\";i:0;}i:19;O:8:\"stdClass\":5:{s:3:\"url\";s:107:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.2.4\";s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:2929;s:10:\"totalBytes\";i:2929;s:19:\"cacheHitProbability\";i:0;}i:20;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:2778;s:10:\"totalBytes\";i:2778;s:3:\"url\";s:107:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.2.2\";s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;}i:21;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:2642;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/style.min.css?ver=2.3.1\";s:11:\"wastedBytes\";i:2642;}i:22;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:2442;s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:2442;s:3:\"url\";s:99:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.2.4\";}i:23;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:2247;s:10:\"totalBytes\";i:2247;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:109:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.2.2\";}i:24;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/theme.min.css?ver=2.3.1\";s:11:\"wastedBytes\";i:1812;s:10:\"totalBytes\";i:1812;s:19:\"cacheHitProbability\";i:0;}i:25;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:106:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js?ver=3.2.4\";s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:1450;s:11:\"wastedBytes\";i:1450;}i:26;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:1114;s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:1114;s:3:\"url\";s:68:\"https://podiatrist.capetown/wp-includes/js/wp-embed.min.js?ver=5.7.2\";s:15:\"cacheLifetimeMs\";i:0;}i:27;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:691;s:11:\"wastedBytes\";i:691;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1622738209\";s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;}i:28;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:87:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-11.css?ver=1622738829\";s:11:\"wastedBytes\";i:542;s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:542;}}s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:3:\"URL\";s:8:\"itemType\";s:3:\"url\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":4:{s:8:\"itemType\";s:2:\"ms\";s:3:\"key\";s:15:\"cacheLifetimeMs\";s:11:\"displayUnit\";s:8:\"duration\";s:4:\"text\";s:9:\"Cache TTL\";}i:2;O:8:\"stdClass\":5:{s:4:\"text\";s:13:\"Transfer Size\";s:8:\"itemType\";s:5:\"bytes\";s:11:\"displayUnit\";s:2:\"kb\";s:3:\"key\";s:10:\"totalBytes\";s:11:\"granularity\";i:1;}}s:7:\"summary\";O:8:\"stdClass\":1:{s:11:\"wastedBytes\";i:310221;}}s:12:\"displayValue\";s:18:\"29 resources found\";s:5:\"score\";d:0.23;s:5:\"title\";s:50:\"Serve static assets with an efficient cache policy\";s:6:\"weight\";i:0;}}s:6:\"passed\";O:8:\"stdClass\":17:{s:16:\"unused-css-rules\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:40;s:11:\"description\";s:183:\"Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. [Learn more](https://web.dev/unused-css-rules/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:5:\"items\";a:2:{i:0;O:8:\"stdClass\":4:{s:13:\"wastedPercent\";i:100;s:11:\"wastedBytes\";i:23463;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";s:10:\"totalBytes\";i:23463;}i:1;O:8:\"stdClass\":4:{s:3:\"url\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.2.4\";s:13:\"wastedPercent\";d:98.0853447397902;s:11:\"wastedBytes\";i:16781;s:10:\"totalBytes\";i:17109;}}s:19:\"overallSavingsBytes\";i:40244;s:4:\"type\";s:11:\"opportunity\";s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:9:\"valueType\";s:3:\"url\";s:5:\"label\";s:3:\"URL\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:5:\"label\";s:13:\"Transfer Size\";s:9:\"valueType\";s:5:\"bytes\";s:3:\"key\";s:10:\"totalBytes\";}i:2;O:8:\"stdClass\":3:{s:9:\"valueType\";s:5:\"bytes\";s:5:\"label\";s:17:\"Potential Savings\";s:3:\"key\";s:11:\"wastedBytes\";}}s:16:\"overallSavingsMs\";i:40;}s:12:\"displayValue\";s:28:\"Potential savings of 39 KiB\";s:5:\"score\";d:0.97;s:5:\"title\";s:17:\"Reduce unused CSS\";s:6:\"weight\";i:0;}s:16:\"uses-rel-preload\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:166:\"Consider using `<link rel=preload>` to prioritize fetching resources that are currently requested later in page load. [Learn more](https://web.dev/uses-rel-preload/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:16:\"overallSavingsMs\";i:0;s:4:\"type\";s:11:\"opportunity\";s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:20:\"Preload key requests\";s:6:\"weight\";i:0;}s:22:\"uses-responsive-images\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:141:\"Serve images that are appropriately-sized to save cellular data and improve load time. [Learn more](https://web.dev/uses-responsive-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:16:\"overallSavingsMs\";i:0;s:5:\"items\";a:0:{}s:19:\"overallSavingsBytes\";i:0;s:8:\"headings\";a:0:{}s:4:\"type\";s:11:\"opportunity\";}s:5:\"score\";i:1;s:5:\"title\";s:20:\"Properly size images\";s:6:\"weight\";i:0;}s:17:\"total-byte-weight\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:366327;s:11:\"description\";s:142:\"Large network payloads cost users real money and are highly correlated with long load times. [Learn more](https://web.dev/total-byte-weight/).\";s:7:\"details\";O:8:\"stdClass\":3:{s:5:\"items\";a:10:{i:0;O:8:\"stdClass\":2:{s:3:\"url\";s:115:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js?ver=3.2.2\";s:10:\"totalBytes\";i:37707;}i:1;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:37208;s:3:\"url\";s:83:\"https://fonts.gstatic.com/s/averialibre/v9/2V0aKIcMGZEnV6xygz7eNjESBanIRWbh8g.woff2\";}i:2;O:8:\"stdClass\":2:{s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js?ver=5.3.6\";s:10:\"totalBytes\";i:35845;}i:3;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:31270;s:3:\"url\";s:73:\"https://podiatrist.capetown/wp-includes/js/jquery/jquery.min.js?ver=3.5.1\";}i:4;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:24355;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\";}i:5;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:23463;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";}i:6;O:8:\"stdClass\":2:{s:3:\"url\";s:100:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.2.4\";s:10:\"totalBytes\";i:22084;}i:7;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:19999;s:3:\"url\";s:92:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.2.4\";}i:8;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:17762;s:3:\"url\";s:96:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.2.2\";}i:9;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:17386;s:3:\"url\";s:101:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js?ver=3.2.4\";}}s:4:\"type\";s:5:\"table\";s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:3:\"URL\";s:3:\"key\";s:3:\"url\";s:8:\"itemType\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:8:\"itemType\";s:5:\"bytes\";s:3:\"key\";s:10:\"totalBytes\";s:4:\"text\";s:13:\"Transfer Size\";}}}s:12:\"displayValue\";s:23:\"Total size was 358 KiB\";s:5:\"score\";i:1;s:5:\"title\";s:32:\"Avoids enormous network payloads\";s:6:\"weight\";i:0;}s:11:\"bootup-time\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:33.10700000000002;s:11:\"description\";s:175:\"Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. [Learn more](https://web.dev/bootup-time/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:7:\"summary\";O:8:\"stdClass\":1:{s:8:\"wastedMs\";d:33.10700000000002;}s:4:\"type\";s:5:\"table\";s:8:\"headings\";a:4:{i:0;O:8:\"stdClass\":3:{s:8:\"itemType\";s:3:\"url\";s:3:\"key\";s:3:\"url\";s:4:\"text\";s:3:\"URL\";}i:1;O:8:\"stdClass\":4:{s:3:\"key\";s:5:\"total\";s:8:\"itemType\";s:2:\"ms\";s:11:\"granularity\";i:1;s:4:\"text\";s:14:\"Total CPU Time\";}i:2;O:8:\"stdClass\":4:{s:4:\"text\";s:17:\"Script Evaluation\";s:11:\"granularity\";i:1;s:3:\"key\";s:9:\"scripting\";s:8:\"itemType\";s:2:\"ms\";}i:3;O:8:\"stdClass\":4:{s:11:\"granularity\";i:1;s:4:\"text\";s:12:\"Script Parse\";s:3:\"key\";s:18:\"scriptParseCompile\";s:8:\"itemType\";s:2:\"ms\";}}s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":4:{s:18:\"scriptParseCompile\";d:2.0949999999999998;s:9:\"scripting\";d:31.01200000000002;s:5:\"total\";d:78.96600000000002;s:3:\"url\";s:28:\"https://podiatrist.capetown/\";}}}s:12:\"displayValue\";s:6:\"0.0 s\";s:5:\"score\";i:1;s:5:\"title\";s:25:\"JavaScript execution time\";s:6:\"weight\";i:0;}s:8:\"dom-size\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:45;s:11:\"description\";s:329:\"A large DOM will increase memory usage, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://web.dev/dom-size/).\";s:7:\"details\";O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"table\";s:5:\"items\";a:3:{i:0;O:8:\"stdClass\":2:{s:9:\"statistic\";s:18:\"Total DOM Elements\";s:5:\"value\";i:45;}i:1;O:8:\"stdClass\":3:{s:4:\"node\";O:8:\"stdClass\":7:{s:7:\"snippet\";s:50:\"<a href=\"https://www.podiatristandyblecher.co.za\">\";s:4:\"path\";s:73:\"1,HTML,1,BODY,0,DIV,0,DIV,2,SECTION,0,DIV,0,DIV,0,DIV,0,DIV,0,DIV,0,P,1,A\";s:8:\"selector\";s:62:\"div.elementor-element > div.elementor-widget-container > p > a\";s:9:\"nodeLabel\";s:41:\"https://www.podiatristandyblecher.co.za \";s:4:\"lhId\";s:6:\"6-47-A\";s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:3:\"top\";i:568;s:6:\"height\";i:27;s:4:\"left\";i:696;s:6:\"bottom\";i:595;s:5:\"width\";i:423;s:5:\"right\";i:1119;}s:4:\"type\";s:4:\"node\";}s:9:\"statistic\";s:17:\"Maximum DOM Depth\";s:5:\"value\";i:11;}i:2;O:8:\"stdClass\":3:{s:4:\"node\";O:8:\"stdClass\":7:{s:4:\"lhId\";s:9:\"6-48-BODY\";s:7:\"snippet\";s:129:\"<body class=\"home page-template page-template-elementor_canvas page page-id-11 wp-custo…\" data-elementor-device-mode=\"desktop\">\";s:4:\"type\";s:4:\"node\";s:4:\"path\";s:13:\"1,HTML,1,BODY\";s:8:\"selector\";s:9:\"body.home\";s:9:\"nodeLabel\";s:4:\"body\";s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:5:\"right\";i:1350;s:3:\"top\";i:0;s:4:\"left\";i:0;s:6:\"height\";i:623;s:6:\"bottom\";i:623;s:5:\"width\";i:1350;}}s:9:\"statistic\";s:22:\"Maximum Child Elements\";s:5:\"value\";i:21;}}s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:9:\"statistic\";s:8:\"itemType\";s:4:\"text\";s:4:\"text\";s:9:\"Statistic\";}i:1;O:8:\"stdClass\":3:{s:8:\"itemType\";s:4:\"node\";s:4:\"text\";s:7:\"Element\";s:3:\"key\";s:4:\"node\";}i:2;O:8:\"stdClass\":3:{s:4:\"text\";s:5:\"Value\";s:8:\"itemType\";s:7:\"numeric\";s:3:\"key\";s:5:\"value\";}}}s:12:\"displayValue\";s:11:\"45 elements\";s:5:\"score\";i:1;s:5:\"title\";s:28:\"Avoids an excessive DOM size\";s:6:\"weight\";i:0;}s:21:\"duplicated-javascript\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:114:\"Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity. \";s:7:\"details\";O:8:\"stdClass\":5:{s:5:\"items\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:19:\"overallSavingsBytes\";i:0;s:16:\"overallSavingsMs\";i:0;s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:46:\"Remove duplicate modules in JavaScript bundles\";s:6:\"weight\";i:0;}s:20:\"modern-image-formats\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:203:\"Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption. [Learn more](https://web.dev/uses-webp-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:8:\"headings\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:5:\"items\";a:0:{}s:19:\"overallSavingsBytes\";i:0;s:16:\"overallSavingsMs\";i:0;}s:5:\"score\";i:1;s:5:\"title\";s:32:\"Serve images in next-gen formats\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:16:\"offscreen-images\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:179:\"Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive. [Learn more](https://web.dev/offscreen-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:5:\"items\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:19:\"overallSavingsBytes\";i:0;s:16:\"overallSavingsMs\";i:0;s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:22:\"Defer offscreen images\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:21:\"unminified-javascript\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:128:\"Minifying JavaScript files can reduce payload sizes and script parse time. [Learn more](https://web.dev/unminified-javascript/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:16:\"overallSavingsMs\";i:0;s:19:\"overallSavingsBytes\";i:0;s:5:\"items\";a:0:{}s:8:\"headings\";a:0:{}s:4:\"type\";s:11:\"opportunity\";}s:5:\"score\";i:1;s:5:\"title\";s:17:\"Minify JavaScript\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:14:\"unminified-css\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:100:\"Minifying CSS files can reduce network payload sizes. [Learn more](https://web.dev/unminified-css/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}s:19:\"overallSavingsBytes\";i:0;}s:5:\"score\";i:1;s:5:\"title\";s:10:\"Minify CSS\";s:6:\"weight\";i:0;}s:19:\"uses-rel-preconnect\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:178:\"Consider adding `preconnect` or `dns-prefetch` resource hints to establish early connections to important third-party origins. [Learn more](https://web.dev/uses-rel-preconnect/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:16:\"overallSavingsMs\";i:0;s:4:\"type\";s:11:\"opportunity\";s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:30:\"Preconnect to required origins\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:21:\"uses-text-compression\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:167:\"Text-based resources should be served with compression (gzip, deflate or brotli) to minimize total network bytes. [Learn more](https://web.dev/uses-text-compression/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:19:\"overallSavingsBytes\";i:0;s:16:\"overallSavingsMs\";i:0;}s:5:\"score\";i:1;s:5:\"title\";s:23:\"Enable text compression\";s:6:\"weight\";i:0;}s:21:\"uses-optimized-images\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:114:\"Optimized images load faster and consume less cellular data. [Learn more](https://web.dev/uses-optimized-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:8:\"headings\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:19:\"overallSavingsBytes\";i:0;s:5:\"items\";a:0:{}s:16:\"overallSavingsMs\";i:0;}s:5:\"score\";i:1;s:5:\"title\";s:25:\"Efficiently encode images\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:26:\"efficient-animated-content\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:234:\"Large GIFs are inefficient for delivering animated content. Consider using MPEG4/WebM videos for animations and PNG/WebP for static images instead of GIF to save network bytes. [Learn more](https://web.dev/efficient-animated-content/)\";s:7:\"details\";O:8:\"stdClass\":5:{s:8:\"headings\";a:0:{}s:16:\"overallSavingsMs\";i:0;s:19:\"overallSavingsBytes\";i:0;s:4:\"type\";s:11:\"opportunity\";s:5:\"items\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:38:\"Use video formats for animated content\";s:6:\"weight\";i:0;}s:9:\"redirects\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:110:\"Redirects introduce additional delays before the page can be loaded. [Learn more](https://web.dev/redirects/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:8:\"headings\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:5:\"items\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:29:\"Avoid multiple page redirects\";s:6:\"weight\";i:0;}s:25:\"mainthread-work-breakdown\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:279.955;s:11:\"description\";s:187:\"Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. [Learn more](https://web.dev/mainthread-work-breakdown/)\";s:7:\"details\";O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"table\";s:5:\"items\";a:7:{i:0;O:8:\"stdClass\":3:{s:8:\"duration\";d:148.58699999999982;s:10:\"groupLabel\";s:17:\"Script Evaluation\";s:5:\"group\";s:16:\"scriptEvaluation\";}i:1;O:8:\"stdClass\":3:{s:8:\"duration\";d:52.3880000000001;s:5:\"group\";s:5:\"other\";s:10:\"groupLabel\";s:5:\"Other\";}i:2;O:8:\"stdClass\":3:{s:10:\"groupLabel\";s:16:\"Parse HTML & CSS\";s:8:\"duration\";d:32.037000000000006;s:5:\"group\";s:9:\"parseHTML\";}i:3;O:8:\"stdClass\":3:{s:8:\"duration\";d:22.11;s:5:\"group\";s:18:\"scriptParseCompile\";s:10:\"groupLabel\";s:28:\"Script Parsing & Compilation\";}i:4;O:8:\"stdClass\":3:{s:5:\"group\";s:11:\"styleLayout\";s:10:\"groupLabel\";s:14:\"Style & Layout\";s:8:\"duration\";d:17.60600000000001;}i:5;O:8:\"stdClass\":3:{s:8:\"duration\";d:3.889;s:5:\"group\";s:17:\"garbageCollection\";s:10:\"groupLabel\";s:18:\"Garbage Collection\";}i:6;O:8:\"stdClass\":3:{s:8:\"duration\";d:3.3379999999999987;s:5:\"group\";s:20:\"paintCompositeRender\";s:10:\"groupLabel\";s:9:\"Rendering\";}}s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:8:\"Category\";s:3:\"key\";s:10:\"groupLabel\";s:8:\"itemType\";s:4:\"text\";}i:1;O:8:\"stdClass\":4:{s:3:\"key\";s:8:\"duration\";s:11:\"granularity\";i:1;s:8:\"itemType\";s:2:\"ms\";s:4:\"text\";s:10:\"Time Spent\";}}}s:12:\"displayValue\";s:6:\"0.3 s\";s:5:\"score\";i:1;s:5:\"title\";s:26:\"Minimizes main-thread work\";s:6:\"weight\";i:0;}}}s:10:\"field_data\";N;}s:6:\"mobile\";O:8:\"stdClass\":5:{s:5:\"score\";i:55;s:11:\"score_class\";s:1:\"b\";s:7:\"metrics\";O:8:\"stdClass\":6:{s:11:\"speed-index\";O:8:\"stdClass\":6:{s:12:\"numericValue\";d:13331.420480069162;s:11:\"description\";s:119:\"Speed Index shows how quickly the contents of a page are visibly populated. [Learn more](https://web.dev/speed-index/).\";s:12:\"displayValue\";s:7:\"13.3 s\";s:5:\"score\";d:0.02;s:5:\"title\";s:11:\"Speed Index\";s:6:\"weight\";i:10;}s:24:\"largest-contentful-paint\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:5419;s:11:\"description\";s:153:\"Largest Contentful Paint marks the time at which the largest text or image is painted. [Learn more](https://web.dev/lighthouse-largest-contentful-paint/)\";s:12:\"displayValue\";s:6:\"5.4 s\";s:5:\"score\";d:0.2;s:5:\"title\";s:24:\"Largest Contentful Paint\";s:6:\"weight\";i:25;}s:22:\"first-contentful-paint\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:3713;s:11:\"description\";s:137:\"First Contentful Paint marks the time at which the first text or image is painted. [Learn more](https://web.dev/first-contentful-paint/).\";s:12:\"displayValue\";s:6:\"3.7 s\";s:5:\"score\";d:0.3;s:5:\"title\";s:22:\"First Contentful Paint\";s:6:\"weight\";i:10;}s:11:\"interactive\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:5586;s:11:\"description\";s:136:\"Time to interactive is the amount of time it takes for the page to become fully interactive. [Learn more](https://web.dev/interactive/).\";s:12:\"displayValue\";s:6:\"5.6 s\";s:5:\"score\";d:0.7;s:5:\"title\";s:19:\"Time to Interactive\";s:6:\"weight\";i:10;}s:19:\"total-blocking-time\";O:8:\"stdClass\":6:{s:12:\"numericValue\";d:269.5;s:11:\"description\";s:182:\"Sum of all time periods between FCP and Time to Interactive, when task length exceeded 50ms, expressed in milliseconds. [Learn more](https://web.dev/lighthouse-total-blocking-time/).\";s:12:\"displayValue\";s:7:\"270 ms\";s:5:\"score\";d:0.82;s:5:\"title\";s:19:\"Total Blocking Time\";s:6:\"weight\";i:30;}s:23:\"cumulative-layout-shift\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:0.05405864715576172;s:11:\"description\";s:122:\"Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more](https://web.dev/cls/).\";s:7:\"details\";O:8:\"stdClass\":2:{s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:30:\"cumulativeLayoutShiftMainFrame\";d:0.05405864715576172;s:26:\"totalCumulativeLayoutShift\";d:0.05405864715576172;}}s:4:\"type\";s:9:\"debugdata\";}s:12:\"displayValue\";s:5:\"0.054\";s:5:\"score\";d:0.98;s:5:\"title\";s:23:\"Cumulative Layout Shift\";s:6:\"weight\";i:15;}}s:6:\"audits\";O:8:\"stdClass\":3:{s:13:\"opportunities\";O:8:\"stdClass\":5:{s:20:\"server-response-time\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:1761.717;s:11:\"description\";s:149:\"Keep the server response time for the main document short because all other requests depend on it. [Learn more](https://web.dev/time-to-first-byte/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:9:\"valueType\";s:3:\"url\";s:5:\"label\";s:3:\"URL\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:9:\"valueType\";s:10:\"timespanMs\";s:3:\"key\";s:12:\"responseTime\";s:5:\"label\";s:10:\"Time Spent\";}}s:4:\"type\";s:11:\"opportunity\";s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:12:\"responseTime\";d:1761.717;s:3:\"url\";s:28:\"https://podiatrist.capetown/\";}}s:16:\"overallSavingsMs\";d:1661.717;}s:12:\"displayValue\";s:28:\"Root document took 1,760 ms\";s:5:\"score\";i:0;s:5:\"title\";s:35:\"Reduce initial server response time\";s:6:\"weight\";i:0;}s:25:\"render-blocking-resources\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:1948;s:11:\"description\";s:195:\"Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. [Learn more](https://web.dev/render-blocking-resources/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:3:\"url\";s:5:\"label\";s:3:\"URL\";s:9:\"valueType\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"totalBytes\";s:9:\"valueType\";s:5:\"bytes\";s:5:\"label\";s:13:\"Transfer Size\";}i:2;O:8:\"stdClass\":3:{s:5:\"label\";s:17:\"Potential Savings\";s:9:\"valueType\";s:10:\"timespanMs\";s:3:\"key\";s:8:\"wastedMs\";}}s:5:\"items\";a:11:{i:0;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:9023;s:8:\"wastedMs\";i:480;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-includes/css/dist/block-library/style.min.css?ver=5.7.2\";}i:1;O:8:\"stdClass\":3:{s:8:\"wastedMs\";i:480;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/style.min.css?ver=2.3.1\";s:10:\"totalBytes\";i:2642;}i:2;O:8:\"stdClass\":3:{s:8:\"wastedMs\";i:480;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/theme.min.css?ver=2.3.1\";s:10:\"totalBytes\";i:1812;}i:3;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:3936;s:3:\"url\";s:113:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.11.0\";s:8:\"wastedMs\";i:630;}i:4;O:8:\"stdClass\":3:{s:8:\"wastedMs\";i:630;s:3:\"url\";s:107:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.2.4\";s:10:\"totalBytes\";i:2930;}i:5;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:17110;s:3:\"url\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.2.4\";s:8:\"wastedMs\";i:1080;}i:6;O:8:\"stdClass\":3:{s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1622738209\";s:10:\"totalBytes\";i:692;s:8:\"wastedMs\";i:180;}i:7;O:8:\"stdClass\":3:{s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";s:10:\"totalBytes\";i:23464;s:8:\"wastedMs\";i:930;}i:8;O:8:\"stdClass\":3:{s:8:\"wastedMs\";i:330;s:10:\"totalBytes\";i:3646;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/global.css?ver=1622738209\";}i:9;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:543;s:3:\"url\";s:87:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-11.css?ver=1622738829\";s:8:\"wastedMs\";i:180;}i:10;O:8:\"stdClass\":3:{s:10:\"totalBytes\";i:2243;s:8:\"wastedMs\";i:780;s:3:\"url\";s:408:\"https://fonts.googleapis.com/css?family=Averia+Libre%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=5.7.2\";}}s:16:\"overallSavingsMs\";i:1948;s:4:\"type\";s:11:\"opportunity\";}s:12:\"displayValue\";s:30:\"Potential savings of 1,950 ms\";s:5:\"score\";d:0.36;s:5:\"title\";s:35:\"Eliminate render-blocking resources\";s:6:\"weight\";i:0;}s:22:\"uses-responsive-images\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:150;s:11:\"description\";s:141:\"Serve images that are appropriately-sized to save cellular data and improve load time. [Learn more](https://web.dev/uses-responsive-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:19:\"overallSavingsBytes\";i:8176;s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":4:{s:11:\"wastedBytes\";i:8176;s:10:\"totalBytes\";i:34104;s:13:\"wastedPercent\";d:23.97341520889945;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg\";}}s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:150;s:8:\"headings\";a:4:{i:0;O:8:\"stdClass\":2:{s:9:\"valueType\";s:9:\"thumbnail\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:9:\"valueType\";s:3:\"url\";s:3:\"key\";s:3:\"url\";s:5:\"label\";s:3:\"URL\";}i:2;O:8:\"stdClass\":3:{s:5:\"label\";s:13:\"Resource Size\";s:3:\"key\";s:10:\"totalBytes\";s:9:\"valueType\";s:5:\"bytes\";}i:3;O:8:\"stdClass\":3:{s:5:\"label\";s:17:\"Potential Savings\";s:3:\"key\";s:11:\"wastedBytes\";s:9:\"valueType\";s:5:\"bytes\";}}}s:12:\"displayValue\";s:27:\"Potential savings of 8 KiB\";s:5:\"score\";d:0.88;s:5:\"title\";s:20:\"Properly size images\";s:6:\"weight\";i:0;}s:16:\"unused-css-rules\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:150;s:11:\"description\";s:183:\"Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. [Learn more](https://web.dev/unused-css-rules/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:16:\"overallSavingsMs\";i:150;s:5:\"items\";a:2:{i:0;O:8:\"stdClass\":4:{s:10:\"totalBytes\";i:23464;s:13:\"wastedPercent\";i:100;s:11:\"wastedBytes\";i:23464;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";}i:1;O:8:\"stdClass\":4:{s:13:\"wastedPercent\";d:98.06752215093186;s:3:\"url\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.2.4\";s:10:\"totalBytes\";i:17110;s:11:\"wastedBytes\";i:16779;}}s:19:\"overallSavingsBytes\";i:40243;s:4:\"type\";s:11:\"opportunity\";s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:5:\"label\";s:3:\"URL\";s:3:\"key\";s:3:\"url\";s:9:\"valueType\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"totalBytes\";s:9:\"valueType\";s:5:\"bytes\";s:5:\"label\";s:13:\"Transfer Size\";}i:2;O:8:\"stdClass\":3:{s:5:\"label\";s:17:\"Potential Savings\";s:9:\"valueType\";s:5:\"bytes\";s:3:\"key\";s:11:\"wastedBytes\";}}}s:12:\"displayValue\";s:28:\"Potential savings of 39 KiB\";s:5:\"score\";d:0.88;s:5:\"title\";s:17:\"Reduce unused CSS\";s:6:\"weight\";i:0;}s:20:\"modern-image-formats\";O:8:\"stdClass\":8:{s:12:\"numericValue\";i:150;s:11:\"description\";s:203:\"Image formats like JPEG 2000, JPEG XR, and WebP often provide better compression than PNG or JPEG, which means faster downloads and less data consumption. [Learn more](https://web.dev/uses-webp-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:8:\"headings\";a:4:{i:0;O:8:\"stdClass\":2:{s:9:\"valueType\";s:9:\"thumbnail\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:3:\"url\";s:9:\"valueType\";s:3:\"url\";s:5:\"label\";s:3:\"URL\";}i:2;O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"totalBytes\";s:5:\"label\";s:13:\"Resource Size\";s:9:\"valueType\";s:5:\"bytes\";}i:3;O:8:\"stdClass\":3:{s:9:\"valueType\";s:5:\"bytes\";s:5:\"label\";s:17:\"Potential Savings\";s:3:\"key\";s:11:\"wastedBytes\";}}s:19:\"overallSavingsBytes\";i:11754;s:16:\"overallSavingsMs\";i:150;s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":5:{s:12:\"fromProtocol\";b:1;s:11:\"wastedBytes\";i:11754;s:10:\"totalBytes\";i:34104;s:13:\"isCrossOrigin\";b:0;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg\";}}s:4:\"type\";s:11:\"opportunity\";}s:12:\"displayValue\";s:28:\"Potential savings of 11 KiB\";s:5:\"score\";d:0.88;s:5:\"title\";s:32:\"Serve images in next-gen formats\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}}s:11:\"diagnostics\";O:8:\"stdClass\":4:{s:21:\"layout-shift-elements\";O:8:\"stdClass\":5:{s:11:\"description\";s:58:\"These DOM elements contribute most to the CLS of the page.\";s:7:\"details\";O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"table\";s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:5:\"score\";d:0.05405864715576172;s:4:\"node\";O:8:\"stdClass\":7:{s:7:\"snippet\";s:63:\"<div class=\"elementor-widget-wrap elementor-element-populated\">\";s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:4:\"left\";i:0;s:6:\"bottom\";i:717;s:5:\"right\";i:360;s:3:\"top\";i:545;s:6:\"height\";i:172;s:5:\"width\";i:360;}s:8:\"selector\";s:102:\"section.elementor-section > div.elementor-container > div.elementor-column > div.elementor-widget-wrap\";s:9:\"nodeLabel\";s:82:\"In the meantime, visit my existing website at https://www.podiatristandyblecher…\";s:4:\"path\";s:53:\"1,HTML,1,BODY,0,DIV,0,DIV,2,SECTION,0,DIV,0,DIV,0,DIV\";s:4:\"lhId\";s:10:\"page-1-DIV\";s:4:\"type\";s:4:\"node\";}}}s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:7:\"Element\";s:3:\"key\";s:4:\"node\";s:8:\"itemType\";s:4:\"node\";}i:1;O:8:\"stdClass\":4:{s:4:\"text\";s:16:\"CLS Contribution\";s:3:\"key\";s:5:\"score\";s:8:\"itemType\";s:7:\"numeric\";s:11:\"granularity\";d:0.001;}}}s:12:\"displayValue\";s:15:\"1 element found\";s:5:\"title\";s:25:\"Avoid large layout shifts\";s:6:\"weight\";i:0;}s:12:\"font-display\";O:8:\"stdClass\":6:{s:11:\"description\";s:141:\"Leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. [Learn more](https://web.dev/font-display/).\";s:7:\"details\";O:8:\"stdClass\":3:{s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:3:\"url\";s:4:\"text\";s:3:\"URL\";s:8:\"itemType\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:8:\"itemType\";s:2:\"ms\";s:4:\"text\";s:17:\"Potential Savings\";s:3:\"key\";s:8:\"wastedMs\";}}s:5:\"items\";a:2:{i:0;O:8:\"stdClass\":2:{s:8:\"wastedMs\";d:36.46499989554286;s:3:\"url\";s:83:\"https://fonts.gstatic.com/s/averialibre/v9/2V0aKIcMGZEnV6xygz7eNjESBanIRWbh8g.woff2\";}i:1;O:8:\"stdClass\":2:{s:8:\"wastedMs\";d:2.5959997437894344;s:3:\"url\";s:71:\"https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2\";}}s:4:\"type\";s:5:\"table\";}s:5:\"score\";i:0;s:5:\"title\";s:47:\"Ensure text remains visible during webfont load\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:32:\"largest-contentful-paint-element\";O:8:\"stdClass\":5:{s:11:\"description\";s:134:\"This is the largest contentful element painted within the viewport. [Learn More](https://web.dev/lighthouse-largest-contentful-paint/)\";s:7:\"details\";O:8:\"stdClass\":3:{s:8:\"headings\";a:1:{i:0;O:8:\"stdClass\":3:{s:8:\"itemType\";s:4:\"node\";s:4:\"text\";s:7:\"Element\";s:3:\"key\";s:4:\"node\";}}s:4:\"type\";s:5:\"table\";s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"node\";O:8:\"stdClass\":7:{s:8:\"selector\";s:112:\"div.elementor-widget-wrap > div.elementor-element > div.elementor-widget-container > img.attachment-medium_large\";s:4:\"lhId\";s:10:\"page-0-IMG\";s:9:\"nodeLabel\";s:28:\"Andy Blecher Podiatrist logo\";s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:5:\"right\";i:350;s:6:\"height\";i:107;s:4:\"left\";i:10;s:6:\"bottom\";i:535;s:5:\"width\";i:340;s:3:\"top\";i:428;}s:7:\"snippet\";s:567:\"<img width=\"768\" height=\"241\" alt=\"Andy Blecher Podiatrist logo\" data-srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" data-src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" data-sizes=\"(max-width: 768px) 100vw, 768px\" class=\"attachment-medium_large size-medium_large lazyloaded\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-…\" …>\";s:4:\"type\";s:4:\"node\";s:4:\"path\";s:71:\"1,HTML,1,BODY,0,DIV,0,DIV,1,SECTION,0,DIV,0,DIV,0,DIV,0,DIV,0,DIV,0,IMG\";}}}}s:12:\"displayValue\";s:15:\"1 element found\";s:5:\"title\";s:32:\"Largest Contentful Paint element\";s:6:\"weight\";i:0;}s:19:\"uses-long-cache-ttl\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:320272;s:11:\"description\";s:114:\"A long cache lifetime can speed up repeat visits to your page. [Learn more](https://web.dev/uses-long-cache-ttl/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:7:\"summary\";O:8:\"stdClass\":1:{s:11:\"wastedBytes\";i:320272;}s:5:\"items\";a:29:{i:0;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:37707;s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:115:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js?ver=3.2.2\";s:10:\"totalBytes\";i:37707;}i:1;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:35844;s:11:\"wastedBytes\";i:35844;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js?ver=5.3.6\";s:15:\"cacheLifetimeMs\";i:0;}i:2;O:8:\"stdClass\":5:{s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg\";s:11:\"wastedBytes\";i:34392;s:10:\"totalBytes\";i:34392;s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;}i:3;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:31270;s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:73:\"https://podiatrist.capetown/wp-includes/js/jquery/jquery.min.js?ver=3.5.1\";s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:31270;}i:4;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:23464;s:10:\"totalBytes\";i:23464;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";}i:5;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:22085;s:10:\"totalBytes\";i:22085;s:3:\"url\";s:100:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.2.4\";s:19:\"cacheHitProbability\";i:0;}i:6;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:19999;s:10:\"totalBytes\";i:19999;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:92:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.2.4\";}i:7;O:8:\"stdClass\":5:{s:3:\"url\";s:96:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.2.2\";s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:17763;s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:17763;}i:8;O:8:\"stdClass\":5:{s:3:\"url\";s:101:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js?ver=3.2.4\";s:11:\"wastedBytes\";i:17387;s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:17387;s:15:\"cacheLifetimeMs\";i:0;}i:9;O:8:\"stdClass\":5:{s:3:\"url\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.2.4\";s:11:\"wastedBytes\";i:17110;s:10:\"totalBytes\";i:17110;s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;}i:10;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:9023;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-includes/css/dist/block-library/style.min.css?ver=5.7.2\";s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:9023;}i:11;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:75:\"https://podiatrist.capetown/wp-includes/js/jquery/ui/core.min.js?ver=1.12.1\";s:10:\"totalBytes\";i:7217;s:11:\"wastedBytes\";i:7217;s:15:\"cacheLifetimeMs\";i:0;}i:12;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:5013;s:11:\"wastedBytes\";i:5013;s:3:\"url\";s:76:\"https://podiatrist.capetown/wp-includes/js/wp-emoji-release.min.js?ver=5.7.2\";}i:13;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:4521;s:3:\"url\";s:81:\"https://podiatrist.capetown/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2\";s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:4521;s:15:\"cacheLifetimeMs\";i:0;}i:14;O:8:\"stdClass\":5:{s:3:\"url\";s:104:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js?ver=3.8.5\";s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:4036;s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:4036;}i:15;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:3936;s:3:\"url\";s:113:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.11.0\";s:10:\"totalBytes\";i:3936;s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;}i:16;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:3862;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js?ver=4.8.1\";s:10:\"totalBytes\";i:3862;s:15:\"cacheLifetimeMs\";i:0;}i:17;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:3646;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/global.css?ver=1622738209\";s:11:\"wastedBytes\";i:3646;}i:18;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:3345;s:3:\"url\";s:104:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js?ver=4.0.2\";s:11:\"wastedBytes\";i:3345;s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;}i:19;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:2930;s:3:\"url\";s:107:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.2.4\";s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:2930;}i:20;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:2779;s:10:\"totalBytes\";i:2779;s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:107:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.2.2\";s:19:\"cacheHitProbability\";i:0;}i:21;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:2642;s:10:\"totalBytes\";i:2642;s:15:\"cacheLifetimeMs\";i:0;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/style.min.css?ver=2.3.1\";}i:22;O:8:\"stdClass\":5:{s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:99:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.2.4\";s:11:\"wastedBytes\";i:2443;s:10:\"totalBytes\";i:2443;}i:23;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:10:\"totalBytes\";i:2247;s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:2247;s:3:\"url\";s:109:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.2.2\";}i:24;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:1812;s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:11:\"wastedBytes\";i:1812;s:3:\"url\";s:85:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/theme.min.css?ver=2.3.1\";}i:25;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:1450;s:15:\"cacheLifetimeMs\";i:0;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:106:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js?ver=3.2.4\";s:10:\"totalBytes\";i:1450;}i:26;O:8:\"stdClass\":5:{s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:68:\"https://podiatrist.capetown/wp-includes/js/wp-embed.min.js?ver=5.7.2\";s:10:\"totalBytes\";i:1114;s:15:\"cacheLifetimeMs\";i:0;s:11:\"wastedBytes\";i:1114;}i:27;O:8:\"stdClass\":5:{s:10:\"totalBytes\";i:692;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1622738209\";s:11:\"wastedBytes\";i:692;s:15:\"cacheLifetimeMs\";i:0;}i:28;O:8:\"stdClass\":5:{s:11:\"wastedBytes\";i:543;s:19:\"cacheHitProbability\";i:0;s:3:\"url\";s:87:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-11.css?ver=1622738829\";s:15:\"cacheLifetimeMs\";i:0;s:10:\"totalBytes\";i:543;}}s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:3:\"URL\";s:8:\"itemType\";s:3:\"url\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":4:{s:8:\"itemType\";s:2:\"ms\";s:3:\"key\";s:15:\"cacheLifetimeMs\";s:4:\"text\";s:9:\"Cache TTL\";s:11:\"displayUnit\";s:8:\"duration\";}i:2;O:8:\"stdClass\":5:{s:3:\"key\";s:10:\"totalBytes\";s:8:\"itemType\";s:5:\"bytes\";s:4:\"text\";s:13:\"Transfer Size\";s:11:\"granularity\";i:1;s:11:\"displayUnit\";s:2:\"kb\";}}s:4:\"type\";s:5:\"table\";}s:12:\"displayValue\";s:18:\"29 resources found\";s:5:\"score\";d:0.23;s:5:\"title\";s:50:\"Serve static assets with an efficient cache policy\";s:6:\"weight\";i:0;}}s:6:\"passed\";O:8:\"stdClass\":14:{s:11:\"bootup-time\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:760.376;s:11:\"description\";s:175:\"Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. [Learn more](https://web.dev/bootup-time/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:8:\"headings\";a:4:{i:0;O:8:\"stdClass\":3:{s:8:\"itemType\";s:3:\"url\";s:4:\"text\";s:3:\"URL\";s:3:\"key\";s:3:\"url\";}i:1;O:8:\"stdClass\":4:{s:4:\"text\";s:14:\"Total CPU Time\";s:3:\"key\";s:5:\"total\";s:11:\"granularity\";i:1;s:8:\"itemType\";s:2:\"ms\";}i:2;O:8:\"stdClass\":4:{s:3:\"key\";s:9:\"scripting\";s:11:\"granularity\";i:1;s:8:\"itemType\";s:2:\"ms\";s:4:\"text\";s:17:\"Script Evaluation\";}i:3;O:8:\"stdClass\":4:{s:8:\"itemType\";s:2:\"ms\";s:4:\"text\";s:12:\"Script Parse\";s:11:\"granularity\";i:1;s:3:\"key\";s:18:\"scriptParseCompile\";}}s:7:\"summary\";O:8:\"stdClass\":1:{s:8:\"wastedMs\";d:760.376;}s:5:\"items\";a:8:{i:0;O:8:\"stdClass\":4:{s:3:\"url\";s:28:\"https://podiatrist.capetown/\";s:5:\"total\";d:373.01199999999994;s:18:\"scriptParseCompile\";d:8.92;s:9:\"scripting\";d:127.20400000000005;}i:1;O:8:\"stdClass\":4:{s:9:\"scripting\";d:236.50799999999992;s:3:\"url\";s:73:\"https://podiatrist.capetown/wp-includes/js/jquery/jquery.min.js?ver=3.5.1\";s:5:\"total\";d:247.93599999999992;s:18:\"scriptParseCompile\";d:6.532;}i:2;O:8:\"stdClass\":4:{s:9:\"scripting\";d:11.727999999999998;s:5:\"total\";d:182.8000000000001;s:3:\"url\";s:14:\"Unattributable\";s:18:\"scriptParseCompile\";d:0.604;}i:3;O:8:\"stdClass\":4:{s:3:\"url\";s:115:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js?ver=3.2.2\";s:18:\"scriptParseCompile\";d:13.739999999999998;s:5:\"total\";d:105.96;s:9:\"scripting\";d:92.22;}i:4;O:8:\"stdClass\":4:{s:5:\"total\";d:81.264;s:9:\"scripting\";d:75.672;s:3:\"url\";s:100:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.2.4\";s:18:\"scriptParseCompile\";d:5.592;}i:5;O:8:\"stdClass\":4:{s:18:\"scriptParseCompile\";d:5.483999999999999;s:9:\"scripting\";d:61.97599999999999;s:3:\"url\";s:96:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.2.2\";s:5:\"total\";d:70.52399999999999;}i:6;O:8:\"stdClass\":4:{s:18:\"scriptParseCompile\";d:5.4319999999999995;s:5:\"total\";d:68.808;s:9:\"scripting\";d:60.82800000000001;s:3:\"url\";s:92:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.2.4\";}i:7;O:8:\"stdClass\":4:{s:18:\"scriptParseCompile\";d:3.94;s:9:\"scripting\";d:43.99599999999993;s:3:\"url\";s:104:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js?ver=3.8.5\";s:5:\"total\";d:64.89999999999993;}}s:4:\"type\";s:5:\"table\";}s:12:\"displayValue\";s:6:\"0.8 s\";s:5:\"score\";d:0.97;s:5:\"title\";s:25:\"JavaScript execution time\";s:6:\"weight\";i:0;}s:25:\"mainthread-work-breakdown\";O:8:\"stdClass\":7:{s:12:\"numericValue\";d:1421.4679999999996;s:11:\"description\";s:187:\"Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. [Learn more](https://web.dev/mainthread-work-breakdown/)\";s:7:\"details\";O:8:\"stdClass\":3:{s:5:\"items\";a:6:{i:0;O:8:\"stdClass\":3:{s:10:\"groupLabel\";s:17:\"Script Evaluation\";s:5:\"group\";s:16:\"scriptEvaluation\";s:8:\"duration\";d:773.1719999999997;}i:1;O:8:\"stdClass\":3:{s:5:\"group\";s:5:\"other\";s:8:\"duration\";d:249.31199999999995;s:10:\"groupLabel\";s:5:\"Other\";}i:2;O:8:\"stdClass\":3:{s:10:\"groupLabel\";s:16:\"Parse HTML & CSS\";s:8:\"duration\";d:154.74000000000004;s:5:\"group\";s:9:\"parseHTML\";}i:3;O:8:\"stdClass\":3:{s:10:\"groupLabel\";s:14:\"Style & Layout\";s:5:\"group\";s:11:\"styleLayout\";s:8:\"duration\";d:102.75999999999996;}i:4;O:8:\"stdClass\":3:{s:8:\"duration\";d:93.92399999999998;s:10:\"groupLabel\";s:28:\"Script Parsing & Compilation\";s:5:\"group\";s:18:\"scriptParseCompile\";}i:5;O:8:\"stdClass\":3:{s:5:\"group\";s:20:\"paintCompositeRender\";s:8:\"duration\";d:47.559999999999995;s:10:\"groupLabel\";s:9:\"Rendering\";}}s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:8:\"Category\";s:8:\"itemType\";s:4:\"text\";s:3:\"key\";s:10:\"groupLabel\";}i:1;O:8:\"stdClass\":4:{s:4:\"text\";s:10:\"Time Spent\";s:3:\"key\";s:8:\"duration\";s:11:\"granularity\";i:1;s:8:\"itemType\";s:2:\"ms\";}}s:4:\"type\";s:5:\"table\";}s:12:\"displayValue\";s:6:\"1.4 s\";s:5:\"score\";d:0.97;s:5:\"title\";s:26:\"Minimizes main-thread work\";s:6:\"weight\";i:0;}s:16:\"uses-rel-preload\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:166:\"Consider using `<link rel=preload>` to prioritize fetching resources that are currently requested later in page load. [Learn more](https://web.dev/uses-rel-preload/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:5:\"items\";a:0:{}s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:20:\"Preload key requests\";s:6:\"weight\";i:0;}s:21:\"unminified-javascript\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:128:\"Minifying JavaScript files can reduce payload sizes and script parse time. [Learn more](https://web.dev/unminified-javascript/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:16:\"overallSavingsMs\";i:0;s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:19:\"overallSavingsBytes\";i:0;}s:5:\"score\";i:1;s:5:\"title\";s:17:\"Minify JavaScript\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:9:\"redirects\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:110:\"Redirects introduce additional delays before the page can be loaded. [Learn more](https://web.dev/redirects/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:5:\"items\";a:0:{}s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:29:\"Avoid multiple page redirects\";s:6:\"weight\";i:0;}s:26:\"efficient-animated-content\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:234:\"Large GIFs are inefficient for delivering animated content. Consider using MPEG4/WebM videos for animations and PNG/WebP for static images instead of GIF to save network bytes. [Learn more](https://web.dev/efficient-animated-content/)\";s:7:\"details\";O:8:\"stdClass\":5:{s:19:\"overallSavingsBytes\";i:0;s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:5:\"items\";a:0:{}s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:38:\"Use video formats for animated content\";s:6:\"weight\";i:0;}s:21:\"uses-optimized-images\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:114:\"Optimized images load faster and consume less cellular data. [Learn more](https://web.dev/uses-optimized-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:19:\"overallSavingsBytes\";i:0;s:8:\"headings\";a:0:{}s:16:\"overallSavingsMs\";i:0;s:5:\"items\";a:0:{}s:4:\"type\";s:11:\"opportunity\";}s:5:\"score\";i:1;s:5:\"title\";s:25:\"Efficiently encode images\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:21:\"uses-text-compression\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:167:\"Text-based resources should be served with compression (gzip, deflate or brotli) to minimize total network bytes. [Learn more](https://web.dev/uses-text-compression/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:8:\"headings\";a:0:{}s:19:\"overallSavingsBytes\";i:0;s:5:\"items\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:23:\"Enable text compression\";s:6:\"weight\";i:0;}s:19:\"uses-rel-preconnect\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:178:\"Consider adding `preconnect` or `dns-prefetch` resource hints to establish early connections to important third-party origins. [Learn more](https://web.dev/uses-rel-preconnect/).\";s:7:\"details\";O:8:\"stdClass\":4:{s:5:\"items\";a:0:{}s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:30:\"Preconnect to required origins\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:14:\"unminified-css\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:100:\"Minifying CSS files can reduce network payload sizes. [Learn more](https://web.dev/unminified-css/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:16:\"overallSavingsMs\";i:0;s:4:\"type\";s:11:\"opportunity\";s:19:\"overallSavingsBytes\";i:0;s:8:\"headings\";a:0:{}s:5:\"items\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:10:\"Minify CSS\";s:6:\"weight\";i:0;}s:16:\"offscreen-images\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:0;s:11:\"description\";s:179:\"Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive. [Learn more](https://web.dev/offscreen-images/).\";s:7:\"details\";O:8:\"stdClass\":5:{s:5:\"items\";a:0:{}s:16:\"overallSavingsMs\";i:0;s:4:\"type\";s:11:\"opportunity\";s:19:\"overallSavingsBytes\";i:0;s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:22:\"Defer offscreen images\";s:8:\"warnings\";a:0:{}s:6:\"weight\";i:0;}s:21:\"duplicated-javascript\";O:8:\"stdClass\":6:{s:12:\"numericValue\";i:0;s:11:\"description\";s:114:\"Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity. \";s:7:\"details\";O:8:\"stdClass\":5:{s:19:\"overallSavingsBytes\";i:0;s:4:\"type\";s:11:\"opportunity\";s:16:\"overallSavingsMs\";i:0;s:5:\"items\";a:0:{}s:8:\"headings\";a:0:{}}s:5:\"score\";i:1;s:5:\"title\";s:46:\"Remove duplicate modules in JavaScript bundles\";s:6:\"weight\";i:0;}s:8:\"dom-size\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:45;s:11:\"description\";s:329:\"A large DOM will increase memory usage, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://web.dev/dom-size/).\";s:7:\"details\";O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"table\";s:5:\"items\";a:3:{i:0;O:8:\"stdClass\":2:{s:9:\"statistic\";s:18:\"Total DOM Elements\";s:5:\"value\";i:45;}i:1;O:8:\"stdClass\":3:{s:5:\"value\";i:11;s:4:\"node\";O:8:\"stdClass\":7:{s:4:\"path\";s:73:\"1,HTML,1,BODY,0,DIV,0,DIV,2,SECTION,0,DIV,0,DIV,0,DIV,0,DIV,0,DIV,0,P,1,A\";s:4:\"lhId\";s:6:\"6-47-A\";s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:3:\"top\";i:662;s:6:\"bottom\";i:689;s:6:\"height\";i:27;s:5:\"right\";i:433;s:4:\"left\";i:10;s:5:\"width\";i:423;}s:8:\"selector\";s:62:\"div.elementor-element > div.elementor-widget-container > p > a\";s:7:\"snippet\";s:50:\"<a href=\"https://www.podiatristandyblecher.co.za\">\";s:4:\"type\";s:4:\"node\";s:9:\"nodeLabel\";s:41:\"https://www.podiatristandyblecher.co.za \";}s:9:\"statistic\";s:17:\"Maximum DOM Depth\";}i:2;O:8:\"stdClass\":3:{s:5:\"value\";i:21;s:9:\"statistic\";s:22:\"Maximum Child Elements\";s:4:\"node\";O:8:\"stdClass\":7:{s:9:\"nodeLabel\";s:4:\"body\";s:4:\"type\";s:4:\"node\";s:4:\"lhId\";s:9:\"6-48-BODY\";s:4:\"path\";s:13:\"1,HTML,1,BODY\";s:7:\"snippet\";s:128:\"<body class=\"home page-template page-template-elementor_canvas page page-id-11 wp-custo…\" data-elementor-device-mode=\"mobile\">\";s:8:\"selector\";s:9:\"body.home\";s:12:\"boundingRect\";O:8:\"stdClass\":6:{s:5:\"right\";i:360;s:3:\"top\";i:0;s:4:\"left\";i:0;s:6:\"bottom\";i:717;s:6:\"height\";i:717;s:5:\"width\";i:360;}}}}s:8:\"headings\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:9:\"Statistic\";s:8:\"itemType\";s:4:\"text\";s:3:\"key\";s:9:\"statistic\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:4:\"node\";s:8:\"itemType\";s:4:\"node\";s:4:\"text\";s:7:\"Element\";}i:2;O:8:\"stdClass\":3:{s:3:\"key\";s:5:\"value\";s:4:\"text\";s:5:\"Value\";s:8:\"itemType\";s:7:\"numeric\";}}}s:12:\"displayValue\";s:11:\"45 elements\";s:5:\"score\";i:1;s:5:\"title\";s:28:\"Avoids an excessive DOM size\";s:6:\"weight\";i:0;}s:17:\"total-byte-weight\";O:8:\"stdClass\":7:{s:12:\"numericValue\";i:376659;s:11:\"description\";s:142:\"Large network payloads cost users real money and are highly correlated with long load times. [Learn more](https://web.dev/total-byte-weight/).\";s:7:\"details\";O:8:\"stdClass\":3:{s:5:\"items\";a:10:{i:0;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:37707;s:3:\"url\";s:115:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js?ver=3.2.2\";}i:1;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:37323;s:3:\"url\";s:83:\"https://fonts.gstatic.com/s/averialibre/v9/2V0aKIcMGZEnV6xygz7eNjESBanIRWbh8g.woff2\";}i:2;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:35844;s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js?ver=5.3.6\";}i:3;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:34392;s:3:\"url\";s:86:\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg\";}i:4;O:8:\"stdClass\":2:{s:3:\"url\";s:73:\"https://podiatrist.capetown/wp-includes/js/jquery/jquery.min.js?ver=3.5.1\";s:10:\"totalBytes\";i:31270;}i:5;O:8:\"stdClass\":2:{s:3:\"url\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.2.2\";s:10:\"totalBytes\";i:23464;}i:6;O:8:\"stdClass\":2:{s:3:\"url\";s:100:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.2.4\";s:10:\"totalBytes\";i:22085;}i:7;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:19999;s:3:\"url\";s:92:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.2.4\";}i:8;O:8:\"stdClass\":2:{s:3:\"url\";s:96:\"https://podiatrist.capetown/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.2.2\";s:10:\"totalBytes\";i:17763;}i:9;O:8:\"stdClass\":2:{s:10:\"totalBytes\";i:17387;s:3:\"url\";s:101:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js?ver=3.2.4\";}}s:8:\"headings\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"text\";s:3:\"URL\";s:3:\"key\";s:3:\"url\";s:8:\"itemType\";s:3:\"url\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"totalBytes\";s:8:\"itemType\";s:5:\"bytes\";s:4:\"text\";s:13:\"Transfer Size\";}}s:4:\"type\";s:5:\"table\";}s:12:\"displayValue\";s:23:\"Total size was 368 KiB\";s:5:\"score\";i:1;s:5:\"title\";s:32:\"Avoids enormous network payloads\";s:6:\"weight\";i:0;}}}s:10:\"field_data\";N;}}s:5:\"error\";b:0;}','no'),(14057,'wphb-caching-data','a:4:{s:10:\"JavaScript\";i:31536000;s:3:\"CSS\";i:31536000;s:5:\"Media\";i:31536000;s:6:\"Images\";i:31536000;}','no'),(14103,'updraftplus_version','1.22.21','yes'),(14104,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-776ad973dfd201c3795832c8e011f9a3\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(14105,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-23ed35f02bb72cf8a097cb07268bb982\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),(14106,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-648e8e552199b85e73d0f06198601528\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(14107,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-78c7f40bcb8bf4e615c100a356e7d0ea\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(14108,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-8eefe3d64d864fda1eca9d70a44c56f8\";a:9:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";s:7:\"user_id\";s:64:\"982acbae3b102d3d288a86149de2cac1835f724d45fe9b842128eada38863355\";s:16:\"tmp_access_token\";a:4:{s:12:\"access_token\";s:213:\"ya29.a0AVA9y1v1pgw7MdhJGbF-MWEcNqf367fonfQvEuPylsWFi_sCw3XxvxTc2_eXJDm6_H4UenxgtB_L3te_Gha9Dyb7xcCtwheLaK-QIR7Jp75PfhlFQQ4mBJDrmpBXZsubFrjTElfobk2zu9mzPA-Hw6rp0E78SNoaCgYKATASAQASFQE65dr8POM7Z0G_s-AHBIggatzxCw0166\";s:7:\"created\";i:1662604925;s:10:\"expires_in\";i:3599;s:13:\"refresh_token\";s:0:\"\";}s:10:\"expires_in\";i:1662608494;s:9:\"ownername\";s:13:\"Adrian Fuller\";s:16:\"instance_enabled\";i:1;}}}','yes'),(14109,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(14110,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-c92251b0e46ef86607eca93b8151385e\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),(14111,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(14112,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(14113,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(14114,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(14115,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(14116,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-a54be4d493dde793c15a0809235ece39\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";s:19:\"bucket_access_style\";s:10:\"path_style\";}}}','yes'),(14117,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-72a3a928dea5b7e7ec4940e2bb5be213\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(14118,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-8d168bf6f7e9002e4b4ff1462c5b447f\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),(14119,'updraftplus-addons_siteid','4709d58fa6029e88f5215883b34014b6','no'),(14122,'updraftplus_tour_cancelled_on','premium','yes'),(14131,'updraft_retain_extrarules','a:0:{}','yes'),(14132,'updraft_email','','yes'),(14133,'updraft_report_warningsonly','a:0:{}','yes'),(14134,'updraft_report_wholebackup','a:0:{}','yes'),(14135,'updraft_extradbs','a:0:{}','yes'),(14136,'updraft_include_more_path','a:0:{}','yes'),(14137,'updraft_interval','weekly','yes'),(14138,'updraft_retain','2','yes'),(14141,'updraft_interval_database','weekly','yes'),(14142,'updraft_retain_db','2','yes'),(14143,'updraft_service','googledrive','yes'),(14144,'updraft_include_plugins','1','yes'),(14145,'updraft_include_themes','1','yes'),(14146,'updraft_include_uploads','1','yes'),(14147,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),(14148,'updraft_include_others','1','yes'),(14149,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(14150,'updraft_split_every','400','yes'),(14151,'updraft_delete_local','1','yes'),(14152,'updraft_dir','updraft','yes'),(14153,'updraft_debug_mode','0','yes'),(14154,'updraft_ssl_useservercerts','0','yes'),(14155,'updraft_ssl_disableverify','0','yes'),(14156,'updraft_ssl_nossl','0','yes'),(14172,'updraft_lastmessage','Deleting old temporary file: backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-themes.zip.list.tmp (Sep 09 02:36:10)','yes'),(14173,'updraftplus_unlocked_fd','1','no'),(14174,'updraftplus_last_lock_time_fd','2022-09-08 02:41:29','no'),(14175,'updraftplus_semaphore_fd','0','no'),(14176,'updraft_last_scheduled_fd','1662604889','yes'),(14191,'updraft_backup_history','a:2:{i:1662604889;a:15:{s:7:\"plugins\";a:1:{i:0;s:71:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-plugins.zip\";}s:6:\"themes\";a:1:{i:0;s:70:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-themes.zip\";}s:7:\"uploads\";a:1:{i:0;s:71:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-uploads.zip\";}s:6:\"others\";a:1:{i:0;s:70:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-others.zip\";}s:2:\"db\";s:65:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-db.gz\";s:7:\"db-size\";i:1036852;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"3c2d221cca90e72b5a8e7fec55f1cd4809080420\";s:7:\"themes0\";s:40:\"0aa095bb80902cb717758a0a59e2b4f9d4983886\";s:8:\"uploads0\";s:40:\"f6c59ae06da326e8691e626710b2f6aa6f3cdbe6\";s:7:\"others0\";s:40:\"f8a5dfe57d62e230495d7bbd03b987c9993596b4\";s:3:\"db0\";s:40:\"69f412844a9a5882a4b0ed8acfac290f971b2d0b\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"a2c997869d2514518b01912f2b763caff231f2f5776a0c3a7c7ac64e9b922a67\";s:7:\"themes0\";s:64:\"4cd83ab1547652c53c8360c7b3d3c544845fe365beb8307baa38ea661642ee74\";s:8:\"uploads0\";s:64:\"c28db38706e1cde6f2e68d22722bca9315335d7276fdabd5d8aada56da46bc27\";s:7:\"others0\";s:64:\"7260cb9b4fc2fee623363f6d9a352882c3e30d89f617d3c12ca0f2495d728b33\";s:3:\"db0\";s:64:\"3e094023da2889d869a14760cb81f916d3d3fea7e06fa77c7797c309f03e9ffa\";}}s:5:\"nonce\";s:12:\"2d5667d395ae\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-8eefe3d64d864fda1eca9d70a44c56f8\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1662604890;s:6:\"themes\";i:1662604929;s:7:\"uploads\";i:1662604932;s:6:\"others\";i:1662604939;}s:18:\"created_by_version\";s:7:\"1.22.20\";s:21:\"last_saved_by_version\";s:7:\"1.22.20\";s:12:\"is_multisite\";b:0;}i:1661999901;a:19:{s:7:\"plugins\";a:1:{i:0;s:71:\"backup_2022-09-01-0438_Andy_Blecher_Podiatrist_fc1122bc3455-plugins.zip\";}s:12:\"plugins-size\";i:41505706;s:6:\"themes\";a:1:{i:0;s:70:\"backup_2022-09-01-0438_Andy_Blecher_Podiatrist_fc1122bc3455-themes.zip\";}s:11:\"themes-size\";i:4035816;s:7:\"uploads\";a:1:{i:0;s:71:\"backup_2022-09-01-0438_Andy_Blecher_Podiatrist_fc1122bc3455-uploads.zip\";}s:12:\"uploads-size\";i:3880104;s:6:\"others\";a:1:{i:0;s:70:\"backup_2022-09-01-0438_Andy_Blecher_Podiatrist_fc1122bc3455-others.zip\";}s:11:\"others-size\";i:1490465;s:2:\"db\";s:65:\"backup_2022-09-01-0438_Andy_Blecher_Podiatrist_fc1122bc3455-db.gz\";s:7:\"db-size\";i:987876;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"8f22d638167a2df51d3e9a4bf2e25b92789fa6f5\";s:7:\"themes0\";s:40:\"b1aa29059df91e667cfd9e5f7ea68d0634260bee\";s:8:\"uploads0\";s:40:\"03fca6e0b0ea97c3dcaff82e9900bea76236188a\";s:7:\"others0\";s:40:\"4ddf1a1644273ab99a590572cdae880db1ce5aae\";s:3:\"db0\";s:40:\"099a671fc68b129e0b989aa4ae8301bcf8fb64b5\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"ec368a8a3a4b5f4cdd1d0e6163633acd11f37805938c885ebee05e949cc34ec4\";s:7:\"themes0\";s:64:\"547df1d2ef7712900994f59b37fb4cbad2123407ecf7faa83aadeaca3528d5a1\";s:8:\"uploads0\";s:64:\"19eded84f5cde64e4a8ae6b319a1e3dc9e6ac0e91eb5600fd3582a32686607c1\";s:7:\"others0\";s:64:\"defc062f026f495a6f4c5489d8e437d58e89c51cc108d6a48a19ff3eb7bed677\";s:3:\"db0\";s:64:\"73605053d39ff7f28aee313a5f125f8833f9d00dc331a65f586bc0e3c2dfad9e\";}}s:5:\"nonce\";s:12:\"fc1122bc3455\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-8eefe3d64d864fda1eca9d70a44c56f8\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1661999902;s:6:\"themes\";i:1661999952;s:7:\"uploads\";i:1661999966;s:6:\"others\";i:1661999970;}s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}}','no'),(14207,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1662604889;s:11:\"backup_time\";i:1662604889;s:12:\"backup_array\";a:7:{s:7:\"plugins\";a:1:{i:0;s:71:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-plugins.zip\";}s:6:\"themes\";a:1:{i:0;s:70:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-themes.zip\";}s:7:\"uploads\";a:1:{i:0;s:71:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-uploads.zip\";}s:6:\"others\";a:1:{i:0;s:70:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-others.zip\";}s:2:\"db\";s:65:\"backup_2022-09-08-0441_Andy_Blecher_Podiatrist_2d5667d395ae-db.gz\";s:7:\"db-size\";i:1036852;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"3c2d221cca90e72b5a8e7fec55f1cd4809080420\";s:7:\"themes0\";s:40:\"0aa095bb80902cb717758a0a59e2b4f9d4983886\";s:8:\"uploads0\";s:40:\"f6c59ae06da326e8691e626710b2f6aa6f3cdbe6\";s:7:\"others0\";s:40:\"f8a5dfe57d62e230495d7bbd03b987c9993596b4\";s:3:\"db0\";s:40:\"69f412844a9a5882a4b0ed8acfac290f971b2d0b\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"a2c997869d2514518b01912f2b763caff231f2f5776a0c3a7c7ac64e9b922a67\";s:7:\"themes0\";s:64:\"4cd83ab1547652c53c8360c7b3d3c544845fe365beb8307baa38ea661642ee74\";s:8:\"uploads0\";s:64:\"c28db38706e1cde6f2e68d22722bca9315335d7276fdabd5d8aada56da46bc27\";s:7:\"others0\";s:64:\"7260cb9b4fc2fee623363f6d9a352882c3e30d89f617d3c12ca0f2495d728b33\";s:3:\"db0\";s:64:\"3e094023da2889d869a14760cb81f916d3d3fea7e06fa77c7797c309f03e9ffa\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"2d5667d395ae\";}','yes'),(14216,'dismissed_season_notices_until','1657888749','yes'),(14308,'hello_theme_version','2.6.1','yes'),(14314,'updraftplus_dismissedautobackup','1633524634','yes'),(14641,'_transient_health-check-site-status-result','{\"good\":\"18\",\"recommended\":\"2\",\"critical\":\"1\"}','yes'),(15796,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(15802,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"adrian@fullerz.co.za\";s:7:\"version\";s:5:\"6.0.2\";s:9:\"timestamp\";i:1661909839;}','no'),(18978,'wd_nofresh_install','1','no'),(24670,'wds_version','3.2.0','yes'),(24687,'wphb_show_upgrade_summary','1','no'),(24690,'wp_force_deactivated_plugins','a:0:{}','yes'),(26141,'wd_show_feature_file_extensions','1','no'),(29105,'wd_show_feature_user_agent','1','no'),(29143,'wds_last_version','3.1.0','yes'),(29144,'wds_blog_tabs','a:6:{s:10:\"wds_onpage\";b:1;s:10:\"wds_schema\";b:1;s:10:\"wds_social\";b:1;s:11:\"wds_sitemap\";b:1;s:13:\"wds_autolinks\";b:1;s:12:\"wds_settings\";b:1;}','no'),(31667,'action_scheduler_hybrid_store_demarkation','883','yes'),(31668,'schema-ActionScheduler_StoreSchema','5.0.1635169441','yes'),(31669,'schema-ActionScheduler_LoggerSchema','3.0.1635169441','yes'),(31670,'wd_show_feature_woo_recaptcha','1','no'),(32415,'action_scheduler_lock_async-request-runner','1663107180','yes'),(33178,'wphb-show-black-friday','1','no'),(33247,'wd_show_feature_plugin_vulnerability','1','no'),(36530,'elementor_controls_usage','a:2:{s:7:\"section\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:10:\"image_size\";i:2;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}s:7:\"wp-page\";a:10:{s:5:\"image\";a:2:{s:5:\"count\";i:33;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:8:{s:5:\"image\";i:33;s:10:\"image_size\";i:22;s:5:\"align\";i:11;s:7:\"link_to\";i:9;s:12:\"align_tablet\";i:9;s:4:\"link\";i:9;s:14:\"caption_source\";i:4;s:7:\"caption\";i:4;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:12;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:9;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:9;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:9;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:9;s:27:\"menu_typography_font_family\";i:9;s:25:\"menu_typography_font_size\";i:9;s:15:\"color_menu_item\";i:9;s:27:\"menu_typography_font_weight\";i:9;s:21:\"color_menu_item_hover\";i:9;s:13:\"pointer_width\";i:9;s:28:\"padding_horizontal_menu_item\";i:9;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:9;s:8:\"dropdown\";i:9;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:73;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:64;s:16:\"content_position\";i:18;s:19:\"_inline_size_tablet\";i:18;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:14:\"padding_tablet\";i:9;s:7:\"padding\";i:9;s:6:\"margin\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:53;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:18;s:12:\"height_inner\";i:9;s:19:\"custom_height_inner\";i:9;s:6:\"layout\";i:9;s:6:\"_title\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:18;s:13:\"margin_tablet\";i:9;s:13:\"margin_mobile\";i:9;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:9;s:12:\"border_width\";i:9;s:12:\"border_color\";i:9;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:17;s:11:\"header_size\";i:8;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:35;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:35;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:11;s:21:\"typography_typography\";i:14;s:22:\"typography_font_family\";i:14;s:20:\"typography_font_size\";i:14;s:22:\"typography_font_weight\";i:14;s:12:\"align_tablet\";i:9;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:5;s:11:\"button_type\";i:4;s:4:\"link\";i:5;s:5:\"align\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:4;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:2;s:4:\"zoom\";i:2;s:6:\"height\";i:2;}}}}s:7:\"gallery\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:8:\"settings\";a:5:{s:7:\"gallery\";i:3;s:9:\"galleries\";i:3;s:7:\"columns\";i:2;s:3:\"gap\";i:2;s:20:\"thumbnail_image_size\";i:1;}}s:5:\"style\";a:1:{s:11:\"image_style\";a:2:{s:18:\"image_border_width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:2;}}}}}}','no'),(38335,'new_admin_email','adrian@fullerz.co.za','yes'),(52438,'wd_show_feature_scheduled_scanning','1','no'),(52439,'wd_2auth_settings','{\"enabled\":false,\"lost_phone\":true,\"force_auth\":false,\"force_auth_mess\":\"You are required to setup two-factor authentication to use this site.\",\"user_roles\":[],\"force_auth_roles\":[],\"custom_graphic\":false,\"custom_graphic_type\":\"upload\",\"custom_graphic_url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/plugins\\/defender-security\\/assets\\/img\\/2factor-disabled.svg\",\"custom_graphic_link\":\"\",\"email_subject\":\"Your OTP code\",\"email_sender\":\"admin\",\"email_body\":\"Hi {{display_name}},\\n\\nYour temporary password is {{passcode}}. To finish logging in, copy and paste the temporary password into the Password field on the login screen.\",\"app_title\":\"Andy Blecher Podiatrist\",\"detect_woo\":false}','no'),(52440,'wd_malware_scanning_report','{\"title\":\"Malware Scanning - Reporting\",\"slug\":\"malware-report\",\"description\":\"Automatically run regular scans of your website and email you reports.\",\"status\":\"disabled\",\"type\":\"report\",\"frequency\":\"weekly\",\"day\":\"sunday\",\"day_n\":\"1\",\"time\":\"4:00\",\"in_house_recipients\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}],\"out_house_recipients\":[],\"dry_run\":false,\"configs\":{\"always_send\":false,\"error_send\":false,\"template\":{\"found\":{\"subject\":\"Scan of {SITE_URL} complete. {ISSUES_COUNT} issues found.\",\"body\":\"Hi {USER_NAME},\\n\\n{ISSUES_COUNT} vulnerabilities were identified for {SITE_URL} during a Malware Scan. See details for each issue below.\\n\\n{ISSUES_LIST}\"},\"not_found\":{\"subject\":\"Scan of {SITE_URL} complete. {ISSUES_COUNT} issues found.\",\"body\":\"Hi {USER_NAME},\\n\\nNo vulnerabilities have been found for {SITE_URL}.\\n                                                                                                           \"},\"error\":{\"subject\":\"Couldn\\u2019t scan {SITE_URL} for vulnerabilities. \",\"body\":\"Hi {USER_NAME},\\n\\nWe couldn\\u2019t scan {SITE_URL} for vulnerabilities. Please visit your site and run a manual scan.\\n\\nStay Safe,\\nWP Defender\\nWPMU DEV Superhero \"}}},\"last_sent\":1643027588,\"est_timestamp\":0,\"next_run\":\"Never\",\"all_subscribers\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}]}','no'),(52687,'db_upgraded','','yes'),(56973,'wp_smartcrawl_redirects_version','1.0.0','yes'),(56974,'wds_redirects_upgraded_to_217','1','yes'),(61335,'wds_checkup_removed','1','yes'),(66151,'wd_show_feature_auth_methods','1','no'),(66152,'wd_audit_report','{\"title\":\"Audit Logging - Reporting\",\"slug\":\"audit-report\",\"description\":\"Schedule Defender to automatically email you a summary of all your website events.\",\"status\":\"disabled\",\"type\":\"report\",\"frequency\":\"weekly\",\"day\":\"sunday\",\"day_n\":\"1\",\"time\":\"4:00\",\"in_house_recipients\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}],\"out_house_recipients\":[],\"dry_run\":false,\"configs\":[],\"last_sent\":1647261021,\"est_timestamp\":0,\"next_run\":\"Never\",\"all_subscribers\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}]}','no'),(66153,'wd_malware_firewall_notification','{\"title\":\"Firewall - Notification\",\"slug\":\"firewall-notification\",\"description\":\"Get email when a user or IP is locked out for trying to access your login area.\",\"status\":\"disabled\",\"type\":\"notification\",\"frequency\":\"\",\"day\":\"\",\"day_n\":\"0\",\"time\":\"\",\"in_house_recipients\":[],\"out_house_recipients\":[],\"dry_run\":false,\"configs\":{\"login_lockout\":false,\"nf_lockout\":false,\"limit\":false,\"threshold\":3,\"cool_off\":24,\"ua_lockout\":false},\"last_sent\":1647261021,\"est_timestamp\":0,\"next_run\":\"Never\",\"all_subscribers\":[]}','no'),(66154,'wd_lockout_report','{\"title\":\"Firewall - Reporting\",\"slug\":\"firewall-report\",\"description\":\"Configure Defender to automatically email you a lockout report for this website.\",\"status\":\"disabled\",\"type\":\"report\",\"frequency\":\"weekly\",\"day\":\"sunday\",\"day_n\":\"1\",\"time\":\"4:00\",\"in_house_recipients\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}],\"out_house_recipients\":[],\"dry_run\":false,\"configs\":[],\"last_sent\":1647261021,\"est_timestamp\":0,\"next_run\":\"Never\",\"all_subscribers\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}]}','no'),(66155,'wd_malware_scanning_notification','{\"title\":\"Malware Scanning - Notification\",\"slug\":\"malware-notification\",\"description\":\"Get email notifications when Defender has finished manual malware scans.\",\"status\":\"disabled\",\"type\":\"notification\",\"frequency\":\"\",\"day\":\"\",\"day_n\":\"0\",\"time\":\"\",\"in_house_recipients\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}],\"out_house_recipients\":[],\"dry_run\":false,\"configs\":{\"always_send\":false,\"error_send\":false,\"template\":{\"found\":{\"subject\":\"Scan of {SITE_URL} complete. {ISSUES_COUNT} issues found.\",\"body\":\"Hi {USER_NAME},\\n\\n{ISSUES_COUNT} vulnerabilities were identified for {SITE_URL} during a Malware Scan. See details for each issue below.\\n\\n{ISSUES_LIST}\"},\"not_found\":{\"subject\":\"Scan of {SITE_URL} complete. {ISSUES_COUNT} issues found.\",\"body\":\"Hi {USER_NAME},\\n\\nNo vulnerabilities have been found for {SITE_URL}.\"},\"error\":{\"subject\":\"Couldn\\u2019t scan {SITE_URL} for vulnerabilities.\",\"body\":\"Hi {USER_NAME},\\n\\nWe couldn\'t scan {SITE_URL} for vulnerabilities. Please visit your site and run a manual scan.\"}}},\"last_sent\":1647261021,\"est_timestamp\":0,\"next_run\":\"Never\",\"all_subscribers\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}]}','no'),(66156,'wd_security_tweaks_reminder','{\"title\":\"Security Recommendations - Notification\",\"slug\":\"tweak-reminder\",\"description\":\"Get email notifications if\\/when a security recommendation needs fixing.\",\"status\":\"disabled\",\"type\":\"notification\",\"frequency\":\"\",\"day\":\"\",\"day_n\":\"0\",\"time\":\"\",\"in_house_recipients\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}],\"out_house_recipients\":[],\"dry_run\":false,\"configs\":{\"reminder\":\"weekly\"},\"last_sent\":1647261021,\"est_timestamp\":0,\"next_run\":\"Never\",\"all_subscribers\":[{\"name\":\"Guest\",\"id\":\"0\",\"email\":\"Guest\",\"role\":null,\"avatar\":\"https:\\/\\/secure.gravatar.com\\/avatar\\/084e0343a0486ff05530df6c705c8bb4?s=96&d=mm&r=g\",\"status\":\"subscribed\"}]}','no'),(68602,'elementor_events_db_version','1.0.0','no'),(68836,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(68837,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(68838,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(85023,'elementor_notes_db_version','5','yes'),(96700,'wd_show_feature_biometric_login','1','no'),(97771,'elementor_1_elementor_pro_updater_batch_915643cceabb302e2c2c153b','a:2:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}i:1;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:55:\"_v_3_7_2_woocommerce_rename_related_to_related_products\";}}}','no'),(106331,'wd_show_feature_yubico','1','no'),(106962,'user_count','1','no'),(124846,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_ZA/wordpress-6.0.2.zip\";s:6:\"locale\";s:5:\"en_ZA\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_ZA/wordpress-6.0.2.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.2\";s:7:\"version\";s:5:\"6.0.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1663158385;s:15:\"version_checked\";s:5:\"6.0.2\";s:12:\"translations\";a:0:{}}','no'),(127975,'updraft_combine_jobs_around','1663209318','yes'),(129864,'elementor_pro_remote_info_api_data_3.7.3','a:2:{s:7:\"timeout\";i:1663035789;s:5:\"value\";s:171692:\"{\"stable_version\":\"3.7.5\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:159833:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.7.5\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.0.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY2MzA3MTc4OTplZGU3NTZiMjA2NWFjNDkwY2ZlNmFmMjIyYjE2NmM4NjoxOjM0ZmNlMWIzNDMzNzU2MjUyOWFhMWM0OTU3MjEyMTg5Omh0dHBzQC8vcG9kaWF0cmlzdC5jYXBldG93bjow\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/package_download\\/MTY2MzA3MTc4OTplZGU3NTZiMjA2NWFjNDkwY2ZlNmFmMjIyYjE2NmM4NjoxOjM0ZmNlMWIzNDMzNzU2MjUyOWFhMWM0OTU3MjEyMTg5Omh0dHBzQC8vcG9kaWF0cmlzdC5jYXBldG93bjow\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.0.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY2MzA3MTc4OTplZGU3NTZiMjA2NWFjNDkwY2ZlNmFmMjIyYjE2NmM4NjoxOjMuNy4wOmM3MTg2YzI2ZGE0YzAxYzM4Y2VjZThkYjg1NzI4ZTJmOmh0dHBzQC8vcG9kaWF0cmlzdC5jYXBldG93bg==\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v1\\/plugin\\/previous_download\\/MTY2MzA3MTc4OTplZGU3NTZiMjA2NWFjNDkwY2ZlNmFmMjIyYjE2NmM4NjoxOjMuNy4wOmM3MTg2YzI2ZGE0YzAxYzM4Y2VjZThkYjg1NzI4ZTJmOmh0dHBzQC8vcG9kaWF0cmlzdC5jYXBldG93bg==\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"translations\":[],\"cloud\":false}\";}','no'),(129865,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1663158387;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:33:\"defender-security/wp-defender.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/defender-security\";s:4:\"slug\";s:17:\"defender-security\";s:6:\"plugin\";s:33:\"defender-security/wp-defender.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/defender-security/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/defender-security.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/defender-security/assets/icon-256x256.png?rev=2746819\";s:2:\"1x\";s:70:\"https://ps.w.org/defender-security/assets/icon-128x128.png?rev=2746819\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/defender-security/assets/banner-1544x500.png?rev=2625059\";s:2:\"1x\";s:72:\"https://ps.w.org/defender-security/assets/banner-772x250.png?rev=2625059\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.7.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:42:\"hummingbird-performance/wp-hummingbird.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/hummingbird-performance\";s:4:\"slug\";s:23:\"hummingbird-performance\";s:6:\"plugin\";s:42:\"hummingbird-performance/wp-hummingbird.php\";s:11:\"new_version\";s:5:\"3.3.4\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/hummingbird-performance/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/hummingbird-performance.3.3.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/hummingbird-performance/assets/icon-256x256.png?rev=2647642\";s:2:\"1x\";s:76:\"https://ps.w.org/hummingbird-performance/assets/icon-128x128.png?rev=2647642\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/hummingbird-performance/assets/banner-1544x500.png?rev=2647642\";s:2:\"1x\";s:78:\"https://ps.w.org/hummingbird-performance/assets/banner-772x250.png?rev=2647642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:31:\"smartcrawl-seo/wpmu-dev-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/smartcrawl-seo\";s:4:\"slug\";s:14:\"smartcrawl-seo\";s:6:\"plugin\";s:31:\"smartcrawl-seo/wpmu-dev-seo.php\";s:11:\"new_version\";s:5:\"3.2.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/smartcrawl-seo/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/smartcrawl-seo.3.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/smartcrawl-seo/assets/icon-256x256.png?rev=2746494\";s:2:\"1x\";s:67:\"https://ps.w.org/smartcrawl-seo/assets/icon-128x128.png?rev=2746494\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/smartcrawl-seo/assets/banner-1544x500.png?rev=2625090\";s:2:\"1x\";s:69:\"https://ps.w.org/smartcrawl-seo/assets/banner-772x250.png?rev=2625090\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.11.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.11.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.22.21\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.22.21.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";}}s:7:\"checked\";a:6:{s:33:\"defender-security/wp-defender.php\";s:5:\"3.3.0\";s:23:\"elementor/elementor.php\";s:5:\"3.7.4\";s:42:\"hummingbird-performance/wp-hummingbird.php\";s:5:\"3.3.4\";s:31:\"smartcrawl-seo/wpmu-dev-seo.php\";s:5:\"3.2.0\";s:23:\"wp-smushit/wp-smush.php\";s:6:\"3.11.1\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.22.21\";}}','no'),(129866,'wd_show_feature_recaptcha_integration','1','no'),(129885,'_site_transient_timeout_browser_620eeaccf0f03dc51ea5a9f1f3fb4360','1663595240','no'),(129886,'_site_transient_browser_620eeaccf0f03dc51ea5a9f1f3fb4360','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"105.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(129887,'_site_transient_timeout_php_check_6066c4cd94cbb3daf46a8c633bb69b3e','1663595240','no'),(129888,'_site_transient_php_check_6066c4cd94cbb3daf46a8c633bb69b3e','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(129891,'wpmudev_notices','a:3:{s:7:\"plugins\";a:2:{s:8:\"defender\";i:1622638536;s:10:\"smartcrawl\";i:1662990441;}s:5:\"queue\";a:2:{s:8:\"defender\";a:3:{s:5:\"email\";i:1623847265;s:4:\"rate\";i:1663595241;s:8:\"giveaway\";i:1662990441;}s:10:\"smartcrawl\";a:3:{s:5:\"email\";i:1662990441;s:4:\"rate\";i:1663595241;s:8:\"giveaway\";i:1663163241;}}s:4:\"done\";a:0:{}}','no'),(129893,'can_compress_scripts','0','no'),(129937,'action_scheduler_migration_status','complete','yes'),(129975,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1663158387;s:7:\"checked\";a:2:{s:15:\"hello-elementor\";s:5:\"2.6.1\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:2:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"2.6.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.2.6.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no');
INSERT INTO `wp_options` VALUES (129983,'wphb-minification-errors','a:2:{s:7:\"scripts\";a:5:{s:14:\"jquery-ui-core\";a:3:{s:4:\"code\";s:18:\"import-not-allowed\";s:5:\"error\";s:42:\"import directive is not allowed in scripts\";s:7:\"disable\";a:2:{i:0;s:7:\"combine\";i:1;s:5:\"nocdn\";}}s:24:\"elementor-common-modules\";a:3:{s:4:\"code\";s:18:\"import-not-allowed\";s:5:\"error\";s:42:\"import directive is not allowed in scripts\";s:7:\"disable\";a:2:{i:0;s:7:\"combine\";i:1;s:5:\"nocdn\";}}s:17:\"elementor-web-cli\";a:3:{s:4:\"code\";s:18:\"import-not-allowed\";s:5:\"error\";s:42:\"import directive is not allowed in scripts\";s:7:\"disable\";a:2:{i:0;s:7:\"combine\";i:1;s:5:\"nocdn\";}}s:16:\"elementor-common\";a:3:{s:4:\"code\";s:18:\"import-not-allowed\";s:5:\"error\";s:42:\"import directive is not allowed in scripts\";s:7:\"disable\";a:2:{i:0;s:7:\"combine\";i:1;s:5:\"nocdn\";}}s:20:\"elementor-app-loader\";a:3:{s:4:\"code\";s:18:\"import-not-allowed\";s:5:\"error\";s:42:\"import directive is not allowed in scripts\";s:7:\"disable\";a:2:{i:0;s:7:\"combine\";i:1;s:5:\"nocdn\";}}}s:6:\"styles\";a:0:{}}','yes'),(129999,'elementor_experiment-e_optimized_css_loading','active','yes'),(130000,'elementor_experiment-e_font_icon_svg','active','yes'),(130001,'elementor_experiment-container','active','yes'),(130002,'elementor_experiment-additional_custom_breakpoints','active','yes'),(130003,'elementor_experiment-e_hidden_wordpress_widgets','active','yes'),(130004,'elementor_experiment-hello-theme-header-footer','active','yes'),(130005,'elementor_experiment-elements-color-picker','active','yes'),(130006,'elementor_experiment-favorite-widgets','active','yes'),(130007,'elementor_experiment-admin-top-bar','active','yes'),(130067,'elementor_library_category_children','a:0:{}','yes'),(130094,'_elementor_editor_upgrade_notice_dismissed','1662991649','yes'),(130311,'_elementor_global_css','a:6:{s:4:\"time\";i:1662994512;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(130314,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:6:{s:5:\"image\";a:2:{s:7:\"content\";s:268:\"<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:5:\"3.7.4\";}s:7:\"heading\";a:2:{s:7:\"content\";s:672:\"<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:5:\"3.7.4\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:718:\"<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:5:\"3.7.4\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.7.4\";}s:5:\"video\";a:2:{s:7:\"content\";s:830:\"<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-widget-video .elementor-widget-container{overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-size:cover;background-position:50%}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{display:block;width:100%}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}.e-container>.elementor-widget-video{width:var(--container-widget-width,100%)}</style>\";s:7:\"version\";s:5:\"3.7.4\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:178:\"<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:5:\"3.7.4\";}}}}','yes'),(130456,'wds_sitemap_cache_pristine','a:1:{i:0;i:1;}','no'),(131274,'_site_transient_timeout_theme_roots','1663160186','no'),(131275,'_site_transient_theme_roots','a:2:{s:15:\"hello-elementor\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(131290,'_transient_doing_cron','1665086112.1176888942718505859375','yes'),(131291,'_transient_timeout_global_styles_hello-elementor','1663195941','no'),(131292,'_transient_global_styles_hello-elementor','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(131293,'_transient_timeout_global_styles_svg_filters_hello-elementor','1663195941','no'),(131294,'_transient_global_styles_svg_filters_hello-elementor','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(131325,'_site_transient_timeout_available_translations','1665096877','no'),(131326,'_site_transient_available_translations','a:129:{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:63:\"http://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.2\";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:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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:5:\"6.0.2\";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:61:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-05-30 20:47:16\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.20\";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:62:\"http://downloads.wordpress.org/translation/core/4.8.20/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:\"5.8.5\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.8.5/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:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/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:60:\"http://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.21\";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:62:\"http://downloads.wordpress.org/translation/core/4.9.21/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.0.2\";s:7:\"updated\";s:19:\"2022-09-29 19:41:58\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/5.4.11/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}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:63:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-08-09 10:47:25\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-10-06 07:09:15\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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:61:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-09-29 13:50:41\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.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.0.2\";s:7:\"updated\";s:19:\"2022-09-07 14:38:01\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-30 09:36:12\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-09-12 12:11:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:70:\"http://downloads.wordpress.org/translation/core/6.0.2/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_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-03-17 12:58:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-05-24 09:00:33\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-05-24 08:57:04\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:72:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-12 12:07:21\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.0.2\";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:61:\"http://downloads.wordpress.org/translation/core/6.0.2/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:61:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-07-05 18:29:18\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-07-05 17:05:41\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-07-18 03:40:33\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-08-25 06:38:18\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-29 20:39:44\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-07-06 15:13:59\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-08-01 00:22:12\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-05-17 18:49:06\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-10-01 09:27:15\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-09-30 16:59:28\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.5\";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:63:\"http://downloads.wordpress.org/translation/core/5.8.5/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_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.5\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.8.5/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_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:66:\"http://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_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:66:\"http://downloads.wordpress.org/translation/core/5.8-beta/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_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.11\";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:64:\"http://downloads.wordpress.org/translation/core/5.4.11/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_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-07-07 20:37:41\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.16\";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:64:\"http://downloads.wordpress.org/translation/core/5.2.16/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.0.2\";s:7:\"updated\";s:19:\"2022-07-22 14:08:10\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.8-beta/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.0.2\";s:7:\"updated\";s:19:\"2022-10-02 17:59:27\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-07 13:34:46\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-13 06:47:49\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-08-31 18:07:18\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-07-13 18:56:33\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:66:\"http://downloads.wordpress.org/translation/core/5.8-beta/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:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-09-06 12:40:10\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.20\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"http://downloads.wordpress.org/translation/core/4.8.20/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:\"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:60:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-09-25 11:39:42\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:6:\"4.9.21\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.9.21/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:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.28\";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:62:\"http://downloads.wordpress.org/translation/core/4.4.28/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.0.2\";s:7:\"updated\";s:19:\"2022-07-10 09:13:56\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/5.4.11/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.0.2\";s:7:\"updated\";s:19:\"2022-10-03 09:47:04\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-07-18 19:40:10\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-27 12:11:52\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:60:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-10-06 09:02:34\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.21\";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:64:\"http://downloads.wordpress.org/translation/core/4.9.21/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.0.2\";s:7:\"updated\";s:19:\"2022-10-04 19:00:07\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-08-24 06:10:37\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.21\";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:64:\"http://downloads.wordpress.org/translation/core/4.9.21/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.0.2\";s:7:\"updated\";s:19:\"2022-05-08 19:36:41\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-29 14:49:24\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/6.0.2/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:6:\"4.9.21\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.9.21/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.16\";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:61:\"http://downloads.wordpress.org/translation/core/5.2.16/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.0.2\";s:7:\"updated\";s:19:\"2022-09-30 17:57:15\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-25 12:03:54\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:\"5.8.5\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/5.8.5/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: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:60:\"http://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:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:66:\"http://downloads.wordpress.org/translation/core/5.8-beta/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.0.2\";s:7:\"updated\";s:19:\"2022-10-01 09:24:54\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.2\";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:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.7.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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/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:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.9.21/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.10\";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:64:\"http://downloads.wordpress.org/translation/core/5.5.10/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.33\";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:64:\"http://downloads.wordpress.org/translation/core/4.2.33/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.0.2\";s:7:\"updated\";s:19:\"2022-07-05 23:14:19\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-29 21:11:21\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.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:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-09-28 13:34:21\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-06-02 21:03:02\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:70:\"http://downloads.wordpress.org/translation/core/6.0.2/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_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-10-01 20:37:33\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:66:\"http://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.20\";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:62:\"http://downloads.wordpress.org/translation/core/4.8.20/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:63:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-09-28 06:05:43\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.29\";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:61:\"http://downloads.wordpress.org/translation/core/4.3.29/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:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-08-09 12:26:21\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:68:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-10-01 12:16:29\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-09-14 11:16:32\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.0.2\";s:7:\"updated\";s:19:\"2022-08-03 04:00:34\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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: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:61:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-10-05 16:26:57\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-07-06 10:04:56\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:61:\"http://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.11\";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:62:\"http://downloads.wordpress.org/translation/core/5.4.11/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:63:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-09-20 12:05:25\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-10-01 10:44:41\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/6.0.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.0.2\";s:7:\"updated\";s:19:\"2022-09-05 12:27:18\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-07-16 11:26:37\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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:\"5.8.5\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.8.5/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.0.2\";s:7:\"updated\";s:19:\"2022-10-04 16:20:13\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:6:\"5.3.13\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/5.3.13/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:61:\"http://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:63:\"http://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.33\";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:64:\"http://downloads.wordpress.org/translation/core/4.2.33/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:60:\"http://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:5:\"5.8.5\";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:60:\"http://downloads.wordpress.org/translation/core/5.8.5/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.20\";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:61:\"http://downloads.wordpress.org/translation/core/4.8.20/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.0.2\";s:7:\"updated\";s:19:\"2022-07-17 18:26:53\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:63:\"http://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:61:\"http://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:6:\"4.9.21\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/4.9.21/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.0.2\";s:7:\"updated\";s:19:\"2022-09-11 15:51:48\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.11\";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:61:\"http://downloads.wordpress.org/translation/core/5.4.11/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:66:\"http://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.0.2\";s:7:\"updated\";s:19:\"2022-08-24 07:53:05\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-08-30 23:30:57\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";s:7:\"updated\";s:19:\"2022-08-15 08:22:28\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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.0.2\";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:63:\"http://downloads.wordpress.org/translation/core/6.0.2/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:\"繼續\";}}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) 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=17821 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (15,9,'_elementor_edit_mode','builder'),(16,9,'_elementor_template_type','kit'),(17,9,'_elementor_version','3.7.4'),(18,9,'_elementor_pro_version','3.6.4'),(23,9,'_wp_page_template','default'),(24,9,'_elementor_page_settings','a:21:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:17:\"hello_footer_menu\";s:1:\"2\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:3:{s:23:\"hello_footer_menu_color\";s:25:\"globals/colors?id=primary\";s:23:\"hello_header_menu_color\";s:25:\"globals/colors?id=primary\";s:30:\"hello_header_menu_toggle_color\";s:0:\"\";}s:17:\"hello_header_menu\";s:1:\"2\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:23:\"hello_header_menu_color\";s:7:\"#00B0F2\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#00B0F2\";s:23:\"hello_footer_menu_color\";s:7:\"#00B0F2\";s:25:\"hello_header_custom_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1138;s:5:\"sizes\";a:0:{}}s:16:\"hello_header_gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:103;s:5:\"sizes\";a:0:{}}}'),(55,16,'_wp_attached_file','2021/06/Andy-new-logo-2019.jpg'),(56,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1621;s:6:\"height\";i:509;s:4:\"file\";s:30:\"2021/06/Andy-new-logo-2019.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Andy-new-logo-2019-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Andy-new-logo-2019-1024x322.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Andy-new-logo-2019-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Andy-new-logo-2019-768x241.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Andy-new-logo-2019-1536x482.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:4:\"Wade\";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\";}}'),(57,16,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.622430713279984;s:5:\"bytes\";i:15013;s:11:\"size_before\";i:141333;s:10:\"size_after\";i:126320;s:4:\"time\";d:0.28;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.49;s:5:\"bytes\";i:408;s:11:\"size_before\";i:7433;s:10:\"size_after\";i:7025;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.54;s:5:\"bytes\";i:4017;s:11:\"size_before\";i:38121;s:10:\"size_after\";i:34104;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92;s:5:\"bytes\";i:542;s:11:\"size_before\";i:6079;s:10:\"size_after\";i:5537;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.73;s:5:\"bytes\";i:2595;s:11:\"size_before\";i:26662;s:10:\"size_after\";i:24067;s:4:\"time\";d:0.06;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.82;s:5:\"bytes\";i:7451;s:11:\"size_before\";i:63038;s:10:\"size_after\";i:55587;s:4:\"time\";d:0.14;}}}'),(61,18,'_wp_attached_file','2021/06/CAWCC-pic.jpg'),(62,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:871;s:6:\"height\";i:583;s:4:\"file\";s:21:\"2021/06/CAWCC-pic.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"CAWCC-pic-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"CAWCC-pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"CAWCC-pic-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(63,19,'_wp_attached_file','2021/06/Classic-Black-3_4-1.jpg'),(64,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:295;s:6:\"height\";i:213;s:4:\"file\";s:31:\"2021/06/Classic-Black-3_4-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Classic-Black-3_4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:2:\"22\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1276266476\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"155\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";}}'),(65,18,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.622747791195648;s:5:\"bytes\";i:6025;s:11:\"size_before\";i:51838;s:10:\"size_after\";i:45813;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.32;s:5:\"bytes\";i:823;s:11:\"size_before\";i:9896;s:10:\"size_after\";i:9073;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92;s:5:\"bytes\";i:397;s:11:\"size_before\";i:5014;s:10:\"size_after\";i:4617;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.01;s:5:\"bytes\";i:4805;s:11:\"size_before\";i:36928;s:10:\"size_after\";i:32123;s:4:\"time\";d:0.04;}}}'),(66,19,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.578209277238404;s:5:\"bytes\";i:281;s:11:\"size_before\";i:3708;s:10:\"size_after\";i:3427;s:4:\"time\";d:0.06;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.58;s:5:\"bytes\";i:281;s:11:\"size_before\";i:3708;s:10:\"size_after\";i:3427;s:4:\"time\";d:0.06;}}}'),(67,20,'_wp_attached_file','2021/06/ClearSense-image.jpg'),(68,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:227;s:4:\"file\";s:28:\"2021/06/ClearSense-image.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"ClearSense-image-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ClearSense-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"ClearSense-image-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(69,21,'_wp_attached_file','2021/06/DFWG-logo.jpg'),(70,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:234;s:6:\"height\";i:122;s:4:\"file\";s:21:\"2021/06/DFWG-logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"DFWG-logo-150x122.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(71,20,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.196154074425782;s:5:\"bytes\";i:1751;s:11:\"size_before\";i:33698;s:10:\"size_after\";i:31947;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.53;s:5:\"bytes\";i:278;s:11:\"size_before\";i:6137;s:10:\"size_after\";i:5859;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3;s:5:\"bytes\";i:362;s:11:\"size_before\";i:4364;s:10:\"size_after\";i:4002;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:1111;s:11:\"size_before\";i:23197;s:10:\"size_after\";i:22086;s:4:\"time\";d:0.07;}}}'),(72,21,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.746243739565943;s:5:\"bytes\";i:464;s:11:\"size_before\";i:5990;s:10:\"size_after\";i:5526;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:464;s:11:\"size_before\";i:5990;s:10:\"size_after\";i:5526;s:4:\"time\";d:0.05;}}}'),(73,22,'_wp_attached_file','2021/06/dr-comfort-header.png'),(74,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:472;s:6:\"height\";i:89;s:4:\"file\";s:29:\"2021/06/dr-comfort-header.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"dr-comfort-header-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"dr-comfort-header-150x89.png\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(75,22,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.068039805600556;s:5:\"bytes\";i:1913;s:11:\"size_before\";i:17284;s:10:\"size_after\";i:15371;s:4:\"time\";d:0.17;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.14;s:5:\"bytes\";i:1255;s:11:\"size_before\";i:15415;s:10:\"size_after\";i:14160;s:4:\"time\";d:0.13;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.21;s:5:\"bytes\";i:658;s:11:\"size_before\";i:1869;s:10:\"size_after\";i:1211;s:4:\"time\";d:0.04;}}}'),(78,24,'_wp_attached_file','2021/06/Happy-feet-compressed.jpg'),(79,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:401;s:4:\"file\";s:33:\"2021/06/Happy-feet-compressed.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Happy-feet-compressed-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Happy-feet-compressed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:11:\"Bill Oxford\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:10:\"Happy Feet\";s:17:\"created_timestamp\";s:10:\"1312701273\";s:9:\"copyright\";s:22:\"Copyright: Bill Oxford\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:10:\"Happy Feet\";s:11:\"orientation\";s:1:\"0\";}}'),(80,24,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.177319378111981;s:5:\"bytes\";i:1019;s:11:\"size_before\";i:19682;s:10:\"size_after\";i:18663;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.68;s:5:\"bytes\";i:639;s:11:\"size_before\";i:13652;s:10:\"size_after\";i:13013;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3;s:5:\"bytes\";i:380;s:11:\"size_before\";i:6030;s:10:\"size_after\";i:5650;s:4:\"time\";d:0.04;}}}'),(82,25,'_wp_attached_file','2021/06/Happy-feet-cropped.jpg'),(83,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:566;s:6:\"height\";i:676;s:4:\"file\";s:30:\"2021/06/Happy-feet-cropped.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Happy-feet-cropped-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Happy-feet-cropped-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:11:\"Bill Oxford\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:10:\"Happy Feet\";s:17:\"created_timestamp\";s:10:\"1312701273\";s:9:\"copyright\";s:22:\"Copyright: Bill Oxford\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:10:\"Happy Feet\";s:11:\"orientation\";s:1:\"0\";}}'),(84,25,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.503502724341154;s:5:\"bytes\";i:810;s:11:\"size_before\";i:17986;s:10:\"size_after\";i:17176;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.97;s:5:\"bytes\";i:495;s:11:\"size_before\";i:12484;s:10:\"size_after\";i:11989;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.73;s:5:\"bytes\";i:315;s:11:\"size_before\";i:5502;s:10:\"size_after\";i:5187;s:4:\"time\";d:0.02;}}}'),(85,26,'_wp_attached_file','2021/06/Happy-feet.jpg'),(86,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:566;s:6:\"height\";i:848;s:4:\"file\";s:22:\"2021/06/Happy-feet.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Happy-feet-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Happy-feet-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:11:\"Bill Oxford\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:33:\"Smiling toes  on white background\";s:17:\"created_timestamp\";s:10:\"1312761129\";s:9:\"copyright\";s:22:\"Copyright: Bill Oxford\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:10:\"Happy Feet\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:31:{i:0;s:11:\"Photography\";i:1;s:8:\"barefoot\";i:2;s:9:\"caucasian\";i:3;s:6:\"clouds\";i:4;s:7:\"comfort\";i:5;s:11:\"comfortable\";i:6;s:10:\"copy space\";i:7;s:5:\"faces\";i:8;s:4:\"feet\";i:9;s:7:\"feet up\";i:10;s:5:\"happy\";i:11;s:10:\"happy feet\";i:12;s:10:\"human foot\";i:13;s:10:\"human skin\";i:14;s:9:\"human toe\";i:15;s:4:\"legs\";i:16;s:9:\"no people\";i:17;s:6:\"nobody\";i:18;s:10:\"one person\";i:19;s:8:\"outdoors\";i:20;s:10:\"relaxation\";i:21;s:8:\"relaxing\";i:22;s:7:\"resting\";i:23;s:3:\"sky\";i:24;s:7:\"smiling\";i:25;s:6:\"summer\";i:26;s:3:\"tan\";i:27;s:4:\"toes\";i:28;s:8:\"vertical\";i:29;s:9:\"wellbeing\";i:30;s:16:\"white background\";}}}'),(87,26,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.480291374497924;s:5:\"bytes\";i:805;s:11:\"size_before\";i:14689;s:10:\"size_after\";i:13884;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.56;s:5:\"bytes\";i:523;s:11:\"size_before\";i:9413;s:10:\"size_after\";i:8890;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.34;s:5:\"bytes\";i:282;s:11:\"size_before\";i:5276;s:10:\"size_after\";i:4994;s:4:\"time\";d:0.01;}}}'),(91,28,'_wp_attached_file','2021/06/Latest-news-flash.jpg'),(92,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2021/06/Latest-news-flash.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Latest-news-flash-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Latest-news-flash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Adrian\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1346865870\";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\";}}'),(93,29,'_wp_attached_file','2021/06/Laura.jpg'),(94,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:475;s:6:\"height\";i:311;s:4:\"file\";s:17:\"2021/06/Laura.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Laura-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Laura-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(95,28,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.777515491295366;s:5:\"bytes\";i:1461;s:11:\"size_before\";i:13556;s:10:\"size_after\";i:12095;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.81;s:5:\"bytes\";i:805;s:11:\"size_before\";i:7445;s:10:\"size_after\";i:6640;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.73;s:5:\"bytes\";i:656;s:11:\"size_before\";i:6111;s:10:\"size_after\";i:5455;s:4:\"time\";d:0.11;}}}'),(96,30,'_wp_attached_file','2021/06/Mediflex-colours.jpg'),(97,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:174;s:4:\"file\";s:28:\"2021/06/Mediflex-colours.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Mediflex-colours-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Mediflex-colours-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(98,29,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.815781839280533;s:5:\"bytes\";i:996;s:11:\"size_before\";i:20682;s:10:\"size_after\";i:19686;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.64;s:5:\"bytes\";i:663;s:11:\"size_before\";i:14292;s:10:\"size_after\";i:13629;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.21;s:5:\"bytes\";i:333;s:11:\"size_before\";i:6390;s:10:\"size_after\";i:6057;s:4:\"time\";d:0.02;}}}'),(99,30,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.342181667357942;s:5:\"bytes\";i:644;s:11:\"size_before\";i:12055;s:10:\"size_after\";i:11411;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5;s:5:\"bytes\";i:401;s:11:\"size_before\";i:7286;s:10:\"size_after\";i:6885;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1;s:5:\"bytes\";i:243;s:11:\"size_before\";i:4769;s:10:\"size_after\";i:4526;s:4:\"time\";d:0.01;}}}'),(100,31,'_wp_attached_file','2021/06/Mediflex-German-design.jpg'),(101,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:382;s:6:\"height\";i:224;s:4:\"file\";s:34:\"2021/06/Mediflex-German-design.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Mediflex-German-design-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Mediflex-German-design-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(102,31,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.269680558825837;s:5:\"bytes\";i:544;s:11:\"size_before\";i:12741;s:10:\"size_after\";i:12197;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12;s:5:\"bytes\";i:331;s:11:\"size_before\";i:8032;s:10:\"size_after\";i:7701;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.52;s:5:\"bytes\";i:213;s:11:\"size_before\";i:4709;s:10:\"size_after\";i:4496;s:4:\"time\";d:0.06;}}}'),(103,32,'_wp_attached_file','2021/06/Mediflex-health-focus.jpg'),(104,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:395;s:6:\"height\";i:292;s:4:\"file\";s:33:\"2021/06/Mediflex-health-focus.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Mediflex-health-focus-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Mediflex-health-focus-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(105,33,'_wp_attached_file','2021/06/Mediflex-lightweight.jpg'),(106,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:472;s:6:\"height\";i:208;s:4:\"file\";s:32:\"2021/06/Mediflex-lightweight.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Mediflex-lightweight-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Mediflex-lightweight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(107,32,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.899614412976998;s:5:\"bytes\";i:737;s:11:\"size_before\";i:15042;s:10:\"size_after\";i:14305;s:4:\"time\";d:0.06999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.65;s:5:\"bytes\";i:449;s:11:\"size_before\";i:9663;s:10:\"size_after\";i:9214;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.35;s:5:\"bytes\";i:288;s:11:\"size_before\";i:5379;s:10:\"size_after\";i:5091;s:4:\"time\";d:0.06;}}}'),(108,34,'_wp_attached_file','2021/06/Mediflex-shoe.jpg'),(109,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:319;s:4:\"file\";s:25:\"2021/06/Mediflex-shoe.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Mediflex-shoe-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Mediflex-shoe-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(110,35,'_wp_attached_file','2021/06/News-flash-pointer.jpg'),(111,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:147;s:4:\"file\";s:30:\"2021/06/News-flash-pointer.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"News-flash-pointer-150x147.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Adrian\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1339152723\";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\";}}'),(112,33,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.741511851377322;s:5:\"bytes\";i:717;s:11:\"size_before\";i:12488;s:10:\"size_after\";i:11771;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.08;s:5:\"bytes\";i:428;s:11:\"size_before\";i:7039;s:10:\"size_after\";i:6611;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3;s:5:\"bytes\";i:289;s:11:\"size_before\";i:5449;s:10:\"size_after\";i:5160;s:4:\"time\";d:0.03;}}}'),(113,36,'_wp_attached_file','2021/06/pasa-logo.png'),(114,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:183;s:4:\"file\";s:21:\"2021/06/pasa-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"pasa-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(115,36,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.509740259740262;s:5:\"bytes\";i:5085;s:11:\"size_before\";i:30800;s:10:\"size_after\";i:25715;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.51;s:5:\"bytes\";i:5085;s:11:\"size_before\";i:30800;s:10:\"size_after\";i:25715;s:4:\"time\";d:0.1;}}}'),(116,35,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.643283836832223;s:5:\"bytes\";i:565;s:11:\"size_before\";i:5859;s:10:\"size_after\";i:5294;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.64;s:5:\"bytes\";i:565;s:11:\"size_before\";i:5859;s:10:\"size_after\";i:5294;s:4:\"time\";d:0.01;}}}'),(122,39,'_wp_attached_file','2021/06/product_armstrong_tn.jpg'),(123,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:170;s:4:\"file\";s:32:\"2021/06/product_armstrong_tn.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"product_armstrong_tn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(125,40,'_wp_attached_file','2021/06/product_customs_medium_tn.jpg'),(126,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:170;s:4:\"file\";s:37:\"2021/06/product_customs_medium_tn.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"product_customs_medium_tn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(127,39,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.22568093385214;s:5:\"bytes\";i:208;s:11:\"size_before\";i:3341;s:10:\"size_after\";i:3133;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.23;s:5:\"bytes\";i:208;s:11:\"size_before\";i:3341;s:10:\"size_after\";i:3133;s:4:\"time\";d:0.01;}}}'),(128,41,'_wp_attached_file','2021/06/product_sandal_tn.jpg'),(129,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:170;s:4:\"file\";s:29:\"2021/06/product_sandal_tn.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"product_sandal_tn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(130,40,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.946604458268533;s:5:\"bytes\";i:268;s:11:\"size_before\";i:3858;s:10:\"size_after\";i:3590;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95;s:5:\"bytes\";i:268;s:11:\"size_before\";i:3858;s:10:\"size_after\";i:3590;s:4:\"time\";d:0.01;}}}'),(131,42,'_wp_attached_file','2021/06/Revere-shoes-logo.png'),(132,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:99;s:4:\"file\";s:29:\"2021/06/Revere-shoes-logo.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Revere-shoes-logo-300x87.png\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Revere-shoes-logo-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(133,41,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.45085532038272;s:5:\"bytes\";i:188;s:11:\"size_before\";i:3449;s:10:\"size_after\";i:3261;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45;s:5:\"bytes\";i:188;s:11:\"size_before\";i:3449;s:10:\"size_after\";i:3261;s:4:\"time\";d:0.05;}}}'),(134,43,'_wp_attached_file','2021/06/revere_3-4_geneva_grey_nubuck_3.jpg'),(135,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:395;s:4:\"file\";s:43:\"2021/06/revere_3-4_geneva_grey_nubuck_3.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"revere_3-4_geneva_grey_nubuck_3-235x300.jpg\";s:5:\"width\";i:235;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"revere_3-4_geneva_grey_nubuck_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(136,42,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.419043681962243;s:5:\"bytes\";i:3605;s:11:\"size_before\";i:29028;s:10:\"size_after\";i:25423;s:4:\"time\";d:0.53;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.06;s:5:\"bytes\";i:1880;s:11:\"size_before\";i:20758;s:10:\"size_after\";i:18878;s:4:\"time\";d:0.44;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.86;s:5:\"bytes\";i:1725;s:11:\"size_before\";i:8270;s:10:\"size_after\";i:6545;s:4:\"time\";d:0.09;}}}'),(137,44,'_wp_attached_file','2021/06/revere_3-4_miami_red_croc_5.jpg'),(138,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:395;s:4:\"file\";s:39:\"2021/06/revere_3-4_miami_red_croc_5.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"revere_3-4_miami_red_croc_5-235x300.jpg\";s:5:\"width\";i:235;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"revere_3-4_miami_red_croc_5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(139,43,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.453255425709516;s:5:\"bytes\";i:906;s:11:\"size_before\";i:9584;s:10:\"size_after\";i:8678;s:4:\"time\";d:0.09;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2;s:5:\"bytes\";i:637;s:11:\"size_before\";i:6245;s:10:\"size_after\";i:5608;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.06;s:5:\"bytes\";i:269;s:11:\"size_before\";i:3339;s:10:\"size_after\";i:3070;s:4:\"time\";d:0.04;}}}'),(140,45,'_wp_attached_file','2021/06/revere_3-4_monaco_white_snake_4.jpg'),(141,44,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.2014652014652;s:5:\"bytes\";i:1114;s:11:\"size_before\";i:10920;s:10:\"size_after\";i:9806;s:4:\"time\";d:0.21000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.65;s:5:\"bytes\";i:751;s:11:\"size_before\";i:7052;s:10:\"size_after\";i:6301;s:4:\"time\";d:0.08;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.38;s:5:\"bytes\";i:363;s:11:\"size_before\";i:3868;s:10:\"size_after\";i:3505;s:4:\"time\";d:0.13;}}}'),(142,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:395;s:4:\"file\";s:43:\"2021/06/revere_3-4_monaco_white_snake_4.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"revere_3-4_monaco_white_snake_4-235x300.jpg\";s:5:\"width\";i:235;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"revere_3-4_monaco_white_snake_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(143,46,'_wp_attached_file','2021/06/revere_3-4_venice_pearl_patent_3.jpg'),(144,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:395;s:4:\"file\";s:44:\"2021/06/revere_3-4_venice_pearl_patent_3.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"revere_3-4_venice_pearl_patent_3-235x300.jpg\";s:5:\"width\";i:235;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"revere_3-4_venice_pearl_patent_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(145,45,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.18375241779497;s:5:\"bytes\";i:1053;s:11:\"size_before\";i:10340;s:10:\"size_after\";i:9287;s:4:\"time\";d:0.12000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.86;s:5:\"bytes\";i:738;s:11:\"size_before\";i:6794;s:10:\"size_after\";i:6056;s:4:\"time\";d:0.07;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.88;s:5:\"bytes\";i:315;s:11:\"size_before\";i:3546;s:10:\"size_after\";i:3231;s:4:\"time\";d:0.05;}}}'),(146,47,'_wp_attached_file','2021/06/Stallion.jpg'),(147,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:295;s:6:\"height\";i:213;s:4:\"file\";s:20:\"2021/06/Stallion.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Stallion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:2:\"25\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1259806087\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"160\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";}}'),(148,46,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.555580685287799;s:5:\"bytes\";i:845;s:11:\"size_before\";i:8843;s:10:\"size_after\";i:7998;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2;s:5:\"bytes\";i:583;s:11:\"size_before\";i:5715;s:10:\"size_after\";i:5132;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.38;s:5:\"bytes\";i:262;s:11:\"size_before\";i:3128;s:10:\"size_after\";i:2866;s:4:\"time\";d:0.02;}}}'),(149,47,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.563813973242727;s:5:\"bytes\";i:262;s:11:\"size_before\";i:4709;s:10:\"size_after\";i:4447;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.56;s:5:\"bytes\";i:262;s:11:\"size_before\";i:4709;s:10:\"size_after\";i:4447;s:4:\"time\";d:0.02;}}}'),(150,48,'_wp_attached_file','2021/06/sunshine.jpg'),(151,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:20:\"2021/06/sunshine.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"sunshine-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sunshine-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(152,49,'_wp_attached_file','2021/06/suzie-white.jpg'),(153,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:295;s:6:\"height\";i:213;s:4:\"file\";s:23:\"2021/06/suzie-white.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"suzie-white-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:2:\"29\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1262410889\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"170\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";}}'),(154,48,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.656243776140211;s:5:\"bytes\";i:1420;s:11:\"size_before\";i:25105;s:10:\"size_after\";i:23685;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:964;s:11:\"size_before\";i:17655;s:10:\"size_after\";i:16691;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12;s:5:\"bytes\";i:456;s:11:\"size_before\";i:7450;s:10:\"size_after\";i:6994;s:4:\"time\";d:0.04;}}}'),(155,50,'_wp_attached_file','2021/06/wing-chestnut.jpg'),(156,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:295;s:6:\"height\";i:213;s:4:\"file\";s:25:\"2021/06/wing-chestnut.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"wing-chestnut-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:2:\"22\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1276267864\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"155\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";}}'),(157,49,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.002718868950517;s:5:\"bytes\";i:184;s:11:\"size_before\";i:3678;s:10:\"size_after\";i:3494;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:184;s:11:\"size_before\";i:3678;s:10:\"size_after\";i:3494;s:4:\"time\";d:0.03;}}}'),(158,50,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.958883628208323;s:5:\"bytes\";i:199;s:11:\"size_before\";i:4013;s:10:\"size_after\";i:3814;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:199;s:11:\"size_before\";i:4013;s:10:\"size_after\";i:3814;s:4:\"time\";d:0.04;}}}'),(159,16,'_wp_attachment_image_alt','Andy Blecher Podiatrist'),(160,18,'_wp_attachment_image_alt','diabetic foot podiatrist'),(161,19,'_wp_attachment_image_alt','Dr Comfort Podiatrist classic black shoe'),(162,20,'_wp_attachment_image_alt','Clear Sense podiatry'),(163,21,'_wp_attachment_image_alt','diabetic foot podiatrist'),(164,22,'_wp_attachment_image_alt','Dr Comfort logo'),(166,24,'_wp_attachment_image_alt','Happy Feet'),(167,25,'_wp_attachment_image_alt','Andy Blecher Podiatrist'),(169,28,'_wp_attachment_image_alt','Latest news'),(170,29,'_wp_attachment_image_alt','Dr Comfort Laura shoes'),(171,30,'_wp_attachment_image_alt','Mediflex shoe colour range'),(172,31,'_wp_attachment_image_alt','Mediflex shoe sole German design'),(173,32,'_wp_attachment_image_alt','Mediflex health focus shoe'),(174,33,'_wp_attachment_image_alt','Mediflex lightweight shoe'),(175,34,'_wp_attachment_image_alt','Mediflex shoe side view'),(176,36,'_wp_attachment_image_alt','Podiatry Association logo'),(177,39,'_wp_attachment_image_alt','Armstrong shoe insert'),(178,40,'_wp_attachment_image_alt','Vasyli Custom shoe insert'),(179,41,'_wp_attachment_image_alt','Sandals'),(180,42,'_wp_attachment_image_alt','Revere shoes logo'),(181,43,'_wp_attachment_image_alt','Revere grey nubuck'),(182,44,'_wp_attachment_image_alt','Revere Miami Red Crocodile'),(183,45,'_wp_attachment_image_alt','Revere Monaco White Snake'),(184,46,'_wp_attachment_image_alt','Revere Venice Pearl Patent'),(185,47,'_wp_attachment_image_alt','Stallion black shoe'),(186,48,'_wp_attachment_image_alt','Dr Comfort Sunshine shoes'),(187,49,'_wp_attachment_image_alt','Suzie shoe white'),(188,50,'_wp_attachment_image_alt','Dr Comfort wing chestnut shoe'),(189,26,'_wp_attachment_image_alt','Happy toes'),(321,68,'_wp_attached_file','2021/06/cropped-Happy-feet-compressed.jpg'),(322,68,'_wp_attachment_context','site-icon'),(323,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:41:\"2021/06/cropped-Happy-feet-compressed.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"cropped-Happy-feet-compressed-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"cropped-Happy-feet-compressed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:41:\"cropped-Happy-feet-compressed-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:41:\"cropped-Happy-feet-compressed-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:41:\"cropped-Happy-feet-compressed-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:39:\"cropped-Happy-feet-compressed-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(324,68,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.200220764089041;s:5:\"bytes\";i:2544;s:11:\"size_before\";i:48921;s:10:\"size_after\";i:46377;s:4:\"time\";d:0.18;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.24;s:5:\"bytes\";i:609;s:11:\"size_before\";i:14355;s:10:\"size_after\";i:13746;s:4:\"time\";d:0.06;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03;s:5:\"bytes\";i:352;s:11:\"size_before\";i:5838;s:10:\"size_after\";i:5486;s:4:\"time\";d:0.06;}s:13:\"site_icon-270\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.72;s:5:\"bytes\";i:584;s:11:\"size_before\";i:12385;s:10:\"size_after\";i:11801;s:4:\"time\";d:0.02;}s:13:\"site_icon-192\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:425;s:11:\"size_before\";i:7788;s:10:\"size_after\";i:7363;s:4:\"time\";d:0.01;}s:13:\"site_icon-180\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.65;s:5:\"bytes\";i:419;s:11:\"size_before\";i:7422;s:10:\"size_after\";i:7003;s:4:\"time\";d:0.01;}s:12:\"site_icon-32\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.68;s:5:\"bytes\";i:155;s:11:\"size_before\";i:1133;s:10:\"size_after\";i:978;s:4:\"time\";d:0.02;}}}'),(327,69,'_edit_lock','1662991836:1'),(328,69,'_elementor_edit_mode','builder'),(329,69,'_elementor_template_type','wp-page'),(330,69,'_elementor_version','3.7.4'),(331,69,'_elementor_pro_version','3.6.4'),(332,69,'_wp_page_template','elementor_canvas'),(333,69,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/em><\\/p><p><em>Thursdays and Fridays\\u00a08h30 - 13h00<\\/em><\\/p><p>House calls available where necessary.<\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point,\\u00a076 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p><p>We welcome Taariq Jacobs to the practice.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":[],\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2022. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(346,69,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(361,9,'_edit_lock','1662993760:1'),(376,9,'_elementor_data','[]'),(458,87,'_wp_attached_file','2021/06/Andy-Blecher-podiatrist.jpg'),(459,87,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:80;s:6:\"height\";i:100;s:4:\"file\";s:35:\"2021/06/Andy-Blecher-podiatrist.jpg\";s:10:\"image_meta\";a:11:{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\";}}'),(460,87,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:43.42849262170735;s:5:\"bytes\";i:3149;s:11:\"size_before\";i:7251;s:10:\"size_after\";i:4102;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.43;s:5:\"bytes\";i:3149;s:11:\"size_before\";i:7251;s:10:\"size_after\";i:4102;s:4:\"time\";d:0.03;}}}'),(461,87,'_wp_attachment_image_alt','Andy Blecher Podiatrist'),(718,122,'_wp_attached_file','2021/06/Bella-Toepost-Sandal.jpg'),(719,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:690;s:4:\"file\";s:32:\"2021/06/Bella-Toepost-Sandal.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Bella-Toepost-Sandal-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Bella-Toepost-Sandal-1024x589.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:589;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Bella-Toepost-Sandal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Bella-Toepost-Sandal-768x442.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(720,123,'_wp_attached_file','2021/06/Genoa_Black_3_4.jpg'),(721,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2021/06/Genoa_Black_3_4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Genoa_Black_3_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(722,122,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.879905117773838;s:5:\"bytes\";i:6963;s:11:\"size_before\";i:78413;s:10:\"size_after\";i:71450;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.35;s:5:\"bytes\";i:449;s:11:\"size_before\";i:6105;s:10:\"size_after\";i:5656;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.31;s:5:\"bytes\";i:3938;s:11:\"size_before\";i:42310;s:10:\"size_after\";i:38372;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71;s:5:\"bytes\";i:230;s:11:\"size_before\";i:4029;s:10:\"size_after\";i:3799;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03;s:5:\"bytes\";i:2346;s:11:\"size_before\";i:25969;s:10:\"size_after\";i:23623;s:4:\"time\";d:0.03;}}}'),(723,123,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.884238646482636;s:5:\"bytes\";i:333;s:11:\"size_before\";i:3369;s:10:\"size_after\";i:3036;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.88;s:5:\"bytes\";i:333;s:11:\"size_before\";i:3369;s:10:\"size_after\";i:3036;s:4:\"time\";d:0.01;}}}'),(724,124,'_wp_attached_file','2021/06/HD-Madrid-Red-Croc.jpg'),(725,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2021/06/HD-Madrid-Red-Croc.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"HD-Madrid-Red-Croc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(726,124,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.61850443599493;s:5:\"bytes\";i:340;s:11:\"size_before\";i:3945;s:10:\"size_after\";i:3605;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.62;s:5:\"bytes\";i:340;s:11:\"size_before\";i:3945;s:10:\"size_after\";i:3605;s:4:\"time\";d:0.02;}}}'),(727,125,'_wp_attached_file','2021/06/HD-Miami-Natural-Snake-2.jpg'),(728,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:36:\"2021/06/HD-Miami-Natural-Snake-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HD-Miami-Natural-Snake-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(729,125,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.542679479932165;s:5:\"bytes\";i:373;s:11:\"size_before\";i:3538;s:10:\"size_after\";i:3165;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.54;s:5:\"bytes\";i:373;s:11:\"size_before\";i:3538;s:10:\"size_after\";i:3165;s:4:\"time\";d:0.04;}}}'),(730,126,'_wp_attached_file','2021/06/HD-Santa-Monica-Navy-Snake.jpg'),(731,126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:38:\"2021/06/HD-Santa-Monica-Navy-Snake.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"HD-Santa-Monica-Navy-Snake-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(732,126,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.901285471743876;s:5:\"bytes\";i:367;s:11:\"size_before\";i:4123;s:10:\"size_after\";i:3756;s:4:\"time\";d:0.23;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9;s:5:\"bytes\";i:367;s:11:\"size_before\";i:4123;s:10:\"size_after\";i:3756;s:4:\"time\";d:0.23;}}}'),(733,127,'_wp_attached_file','2021/06/HD-Valencia-Natural-Snake-High-Res.jpg'),(734,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:46:\"2021/06/HD-Valencia-Natural-Snake-High-Res.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"HD-Valencia-Natural-Snake-High-Res-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(735,127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.18159141930656;s:5:\"bytes\";i:328;s:11:\"size_before\";i:4009;s:10:\"size_after\";i:3681;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.18;s:5:\"bytes\";i:328;s:11:\"size_before\";i:4009;s:10:\"size_after\";i:3681;s:4:\"time\";d:0.01;}}}'),(736,128,'_wp_attached_file','2021/06/Karina-Toepost-Sandal.jpg'),(737,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:690;s:4:\"file\";s:33:\"2021/06/Karina-Toepost-Sandal.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Karina-Toepost-Sandal-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Karina-Toepost-Sandal-1024x589.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:589;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Karina-Toepost-Sandal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Karina-Toepost-Sandal-768x442.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(738,129,'_wp_attached_file','2021/06/Ladies-Islander.png'),(739,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2021/06/Ladies-Islander.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Ladies-Islander-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(740,129,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.7182354768561665;s:5:\"bytes\";i:350;s:11:\"size_before\";i:12876;s:10:\"size_after\";i:12526;s:4:\"time\";d:0.34;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.72;s:5:\"bytes\";i:350;s:11:\"size_before\";i:12876;s:10:\"size_after\";i:12526;s:4:\"time\";d:0.34;}}}'),(741,128,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.474384379806827;s:5:\"bytes\";i:6837;s:11:\"size_before\";i:72163;s:10:\"size_after\";i:65326;s:4:\"time\";d:0.21000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95;s:5:\"bytes\";i:491;s:11:\"size_before\";i:6178;s:10:\"size_after\";i:5687;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2;s:5:\"bytes\";i:3853;s:11:\"size_before\";i:37790;s:10:\"size_after\";i:33937;s:4:\"time\";d:0.09;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.09;s:5:\"bytes\";i:291;s:11:\"size_before\";i:4104;s:10:\"size_after\";i:3813;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.14;s:5:\"bytes\";i:2202;s:11:\"size_before\";i:24091;s:10:\"size_after\";i:21889;s:4:\"time\";d:0.07;}}}'),(742,130,'_wp_attached_file','2021/06/Malibu_Champagne_3_4.jpg'),(743,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2021/06/Malibu_Champagne_3_4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Malibu_Champagne_3_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(744,130,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.64261614326499;s:5:\"bytes\";i:333;s:11:\"size_before\";i:3853;s:10:\"size_after\";i:3520;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.64;s:5:\"bytes\";i:333;s:11:\"size_before\";i:3853;s:10:\"size_after\";i:3520;s:4:\"time\";d:0.04;}}}'),(745,131,'_wp_attached_file','2021/06/Not-available-flash.png'),(746,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:415;s:6:\"height\";i:164;s:4:\"file\";s:31:\"2021/06/Not-available-flash.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Not-available-flash-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Not-available-flash-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(747,131,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.85973375388469;s:5:\"bytes\";i:15462;s:11:\"size_before\";i:43118;s:10:\"size_after\";i:27656;s:4:\"time\";d:0.41000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.45;s:5:\"bytes\";i:8469;s:11:\"size_before\";i:23892;s:10:\"size_after\";i:15423;s:4:\"time\";d:0.31;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.37;s:5:\"bytes\";i:6993;s:11:\"size_before\";i:19226;s:10:\"size_after\";i:12233;s:4:\"time\";d:0.1;}}}'),(748,132,'_wp_attached_file','2021/06/Olympia_Gold-Wash_3_4.jpg'),(749,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2021/06/Olympia_Gold-Wash_3_4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Olympia_Gold-Wash_3_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(750,133,'_wp_attached_file','2021/06/REV-Bali.jpg'),(751,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2021/06/REV-Bali.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"REV-Bali-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(752,132,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.916218293620293;s:5:\"bytes\";i:348;s:11:\"size_before\";i:3903;s:10:\"size_after\";i:3555;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92;s:5:\"bytes\";i:348;s:11:\"size_before\";i:3903;s:10:\"size_after\";i:3555;s:4:\"time\";d:0.02;}}}'),(753,134,'_wp_attached_file','2021/06/REV-Geneva-Pewter.jpg'),(754,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2021/06/REV-Geneva-Pewter.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"REV-Geneva-Pewter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(755,133,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.659549228944247;s:5:\"bytes\";i:292;s:11:\"size_before\";i:3372;s:10:\"size_after\";i:3080;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.66;s:5:\"bytes\";i:292;s:11:\"size_before\";i:3372;s:10:\"size_after\";i:3080;s:4:\"time\";d:0.02;}}}'),(756,135,'_wp_attached_file','2021/06/REVERE-charlotte.png'),(757,134,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.889001009081735;s:5:\"bytes\";i:294;s:11:\"size_before\";i:2973;s:10:\"size_after\";i:2679;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.89;s:5:\"bytes\";i:294;s:11:\"size_before\";i:2973;s:10:\"size_after\";i:2679;s:4:\"time\";d:0.05;}}}'),(758,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2021/06/REVERE-charlotte.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"REVERE-charlotte-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(759,135,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.342925659472422;s:5:\"bytes\";i:196;s:11:\"size_before\";i:14595;s:10:\"size_after\";i:14399;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.34;s:5:\"bytes\";i:196;s:11:\"size_before\";i:14595;s:10:\"size_after\";i:14399;s:4:\"time\";d:0.07;}}}'),(760,136,'_wp_attached_file','2021/06/Siena_Black_3_4.jpg'),(761,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2021/06/Siena_Black_3_4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Siena_Black_3_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(762,137,'_wp_attached_file','2021/06/Toledo_Gunmetal_3_4.jpg'),(763,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2021/06/Toledo_Gunmetal_3_4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Toledo_Gunmetal_3_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(764,136,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.671107028020212;s:5:\"bytes\";i:334;s:11:\"size_before\";i:4354;s:10:\"size_after\";i:4020;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67;s:5:\"bytes\";i:334;s:11:\"size_before\";i:4354;s:10:\"size_after\";i:4020;s:4:\"time\";d:0.01;}}}'),(765,138,'_wp_attached_file','2021/06/VasyliLogo.jpg'),(766,137,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.256878374903573;s:5:\"bytes\";i:360;s:11:\"size_before\";i:3889;s:10:\"size_after\";i:3529;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.26;s:5:\"bytes\";i:360;s:11:\"size_before\";i:3889;s:10:\"size_after\";i:3529;s:4:\"time\";d:0.02;}}}'),(767,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:136;s:4:\"file\";s:22:\"2021/06/VasyliLogo.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"VasyliLogo-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"VasyliLogo-150x136.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(768,139,'_wp_attached_file','2021/06/VIONIC-Bella.png'),(769,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2021/06/VIONIC-Bella.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"VIONIC-Bella-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(770,138,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.02599935001625;s:5:\"bytes\";i:1234;s:11:\"size_before\";i:12308;s:10:\"size_after\";i:11074;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3;s:5:\"bytes\";i:712;s:11:\"size_before\";i:6911;s:10:\"size_after\";i:6199;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67;s:5:\"bytes\";i:522;s:11:\"size_before\";i:5397;s:10:\"size_after\";i:4875;s:4:\"time\";d:0.01;}}}'),(771,140,'_wp_attached_file','2021/06/Vionic_Innovation_Lab_logo.gif'),(772,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:817;s:6:\"height\";i:170;s:4:\"file\";s:38:\"2021/06/Vionic_Innovation_Lab_logo.gif\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Vionic_Innovation_Lab_logo-300x62.gif\";s:5:\"width\";i:300;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Vionic_Innovation_Lab_logo-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Vionic_Innovation_Lab_logo-768x160.gif\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{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\";}}'),(773,139,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14961;s:10:\"size_after\";i:14961;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14961;s:10:\"size_after\";i:14961;s:4:\"time\";d:0.16;}}}'),(774,140,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.1057737899843163;s:5:\"bytes\";i:29;s:11:\"size_before\";i:27417;s:10:\"size_after\";i:27388;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5416;s:10:\"size_after\";i:5416;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4092;s:10:\"size_after\";i:4092;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.16;s:5:\"bytes\";i:29;s:11:\"size_before\";i:17909;s:10:\"size_after\";i:17880;s:4:\"time\";d:0.02;}}}'),(775,141,'_wp_attached_file','2021/06/Neo-V-aser.jpg'),(776,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:325;s:6:\"height\";i:246;s:4:\"file\";s:22:\"2021/06/Neo-V-aser.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Neo-V-aser-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Neo-V-aser-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(777,141,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.367165386170643;s:5:\"bytes\";i:756;s:11:\"size_before\";i:17311;s:10:\"size_after\";i:16555;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.99;s:5:\"bytes\";i:470;s:11:\"size_before\";i:11784;s:10:\"size_after\";i:11314;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.17;s:5:\"bytes\";i:286;s:11:\"size_before\";i:5527;s:10:\"size_after\";i:5241;s:4:\"time\";d:0.01;}}}'),(778,141,'_wp_attachment_image_alt','Neo V Laser'),(823,148,'_wp_attached_file','2021/06/Neo-Laser-logo.png'),(824,148,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:140;s:6:\"height\";i:102;s:4:\"file\";s:26:\"2021/06/Neo-Laser-logo.png\";s:10:\"image_meta\";a:11:{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\";}}'),(825,148,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.314998582364615;s:5:\"bytes\";i:258;s:11:\"size_before\";i:3527;s:10:\"size_after\";i:3269;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.31;s:5:\"bytes\";i:258;s:11:\"size_before\";i:3527;s:10:\"size_after\";i:3269;s:4:\"time\";d:0.02;}}}'),(826,148,'_wp_attachment_image_alt','Neo Laser logo'),(907,158,'_dont_combine','a:0:{}'),(908,158,'_dont_enqueue','a:0:{}'),(909,158,'_defer','a:0:{}'),(910,158,'_inline','a:0:{}'),(911,158,'_handle_dependencies','a:1:{s:9:\"dashicons\";a:0:{}}'),(912,158,'_handle_original_sizes','a:1:{s:9:\"dashicons\";s:4:\"59.1\";}'),(913,158,'_handle_compressed_sizes','a:1:{s:9:\"dashicons\";s:4:\"59.1\";}'),(914,158,'_hash','665abb7a10e76e80bd7f0e38640d40f9'),(915,158,'_file_id','158'),(916,158,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/665abb7a10e76e80bd7f0e38640d40f9.css'),(917,158,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/665abb7a10e76e80bd7f0e38640d40f9.css'),(918,158,'_expires','1627923101'),(924,159,'_type','styles'),(925,159,'_dont_minify','a:1:{i:0;s:9:\"admin-bar\";}'),(926,159,'_dont_combine','a:0:{}'),(927,159,'_dont_enqueue','a:0:{}'),(928,159,'_defer','a:0:{}'),(929,159,'_inline','a:0:{}'),(930,159,'_handle_dependencies','a:1:{s:9:\"admin-bar\";a:1:{i:0;s:9:\"dashicons\";}}'),(931,159,'_handle_original_sizes','a:1:{s:9:\"admin-bar\";s:4:\"19.6\";}'),(932,159,'_handle_compressed_sizes','a:1:{s:9:\"admin-bar\";s:4:\"19.6\";}'),(933,159,'_hash','5199d5626b7963a5aeb7d48619c6af5d'),(934,159,'_file_id','159'),(935,159,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/5199d5626b7963a5aeb7d48619c6af5d.css'),(936,159,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/5199d5626b7963a5aeb7d48619c6af5d.css'),(937,159,'_expires','1627923104'),(1041,165,'_dont_enqueue','a:0:{}'),(1042,165,'_defer','a:0:{}'),(1043,165,'_inline','a:0:{}'),(1044,165,'_handle_dependencies','a:2:{s:11:\"wphb-global\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}s:15:\"smush-lazy-load\";a:0:{}}'),(1045,165,'_handle_original_sizes','a:2:{s:11:\"wphb-global\";s:3:\"1.4\";s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(1046,165,'_handle_compressed_sizes','a:2:{s:11:\"wphb-global\";s:3:\"1.4\";s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(1047,165,'_hash','d5136aa2d78d906b74e73715e3eedd27'),(1048,165,'_file_id','165'),(1049,165,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/d5136aa2d78d906b74e73715e3eedd27.js'),(1050,165,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/d5136aa2d78d906b74e73715e3eedd27.js'),(1051,165,'_expires','1627923132'),(1489,189,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/be3c66d5a5eb5b010cbb39ff670ff1a9.css'),(1490,189,'_expires','1628000518'),(1493,190,'_handle_versions','a:6:{s:15:\"smush-lazy-load\";s:5:\"3.8.5\";s:8:\"wp-embed\";s:0:\"\";s:29:\"elementor-pro-webpack-runtime\";s:0:\"\";s:25:\"elementor-webpack-runtime\";s:0:\"\";s:11:\"jquery-core\";s:0:\"\";s:14:\"jquery-migrate\";s:0:\"\";}'),(1494,190,'_extra','a:1:{s:5:\"group\";i:1;}'),(1495,190,'_args',NULL),(1496,190,'_type','scripts'),(1497,190,'_dont_minify','a:6:{i:0;s:15:\"smush-lazy-load\";i:1;s:8:\"wp-embed\";i:2;s:29:\"elementor-pro-webpack-runtime\";i:3;s:25:\"elementor-webpack-runtime\";i:4;s:11:\"jquery-core\";i:5;s:14:\"jquery-migrate\";}'),(1498,190,'_dont_combine','a:0:{}'),(1499,190,'_dont_enqueue','a:0:{}'),(1500,190,'_defer','a:0:{}'),(1501,190,'_inline','a:0:{}'),(1502,190,'_handle_dependencies','a:6:{s:15:\"smush-lazy-load\";a:0:{}s:8:\"wp-embed\";a:0:{}s:29:\"elementor-pro-webpack-runtime\";a:0:{}s:25:\"elementor-webpack-runtime\";a:0:{}s:11:\"jquery-core\";a:0:{}s:14:\"jquery-migrate\";a:0:{}}'),(1503,190,'_handle_original_sizes','a:6:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";s:29:\"elementor-pro-webpack-runtime\";s:3:\"5.5\";s:25:\"elementor-webpack-runtime\";s:3:\"4.8\";s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(1504,190,'_handle_compressed_sizes','a:6:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";s:29:\"elementor-pro-webpack-runtime\";s:3:\"5.5\";s:25:\"elementor-webpack-runtime\";s:3:\"4.8\";s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(1505,190,'_hash','efc778ce4105e227e287721353ecfd19'),(1506,190,'_file_id','190'),(1507,190,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/efc778ce4105e227e287721353ecfd19.js'),(1508,190,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/efc778ce4105e227e287721353ecfd19.js'),(1509,190,'_expires','1628000521'),(1548,193,'_edit_lock','1631625644:1'),(1552,194,'_extra','a:1:{s:5:\"after\";a:1:{i:0;s:803:\"@font-face{font-family:eicons;src:url(https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0);src:url(https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0#iefix) format(\"embedded-opentype\"),url(https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.10.0) format(\"woff2\"),url(https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.10.0) format(\"woff\"),url(https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.10.0) format(\"truetype\"),url(https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.10.0#eicon) format(\"svg\");font-weight:400;font-style:normal}\";}}'),(1553,194,'_args','all'),(1554,194,'_type','styles'),(1555,194,'_dont_minify','a:6:{i:0;s:15:\"hello-elementor\";i:1;s:27:\"hello-elementor-theme-style\";i:2;s:15:\"elementor-icons\";i:3;s:20:\"elementor-animations\";i:4;s:18:\"elementor-frontend\";i:5;s:13:\"elementor-pro\";}'),(1556,194,'_dont_combine','a:0:{}'),(1557,194,'_dont_enqueue','a:0:{}'),(1558,194,'_defer','a:0:{}'),(1559,194,'_inline','a:0:{}'),(1560,194,'_handle_dependencies','a:9:{s:15:\"hello-elementor\";a:0:{}s:27:\"hello-elementor-theme-style\";a:0:{}s:15:\"elementor-icons\";a:0:{}s:20:\"elementor-animations\";a:0:{}s:18:\"elementor-frontend\";a:0:{}s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}s:13:\"elementor-pro\";a:0:{}s:16:\"elementor-global\";a:0:{}s:17:\"elementor-post-11\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(1561,194,'_handle_original_sizes','a:9:{s:15:\"hello-elementor\";s:3:\"6.6\";s:27:\"hello-elementor-theme-style\";s:3:\"5.4\";s:15:\"elementor-icons\";s:4:\"17.7\";s:20:\"elementor-animations\";s:4:\"18.5\";s:18:\"elementor-frontend\";s:5:\"117.8\";s:16:\"elementor-post-9\";s:3:\"1.1\";s:13:\"elementor-pro\";s:5:\"210.9\";s:16:\"elementor-global\";s:4:\"62.4\";s:17:\"elementor-post-11\";s:3:\"0.5\";}'),(1562,194,'_handle_compressed_sizes','a:9:{s:15:\"hello-elementor\";s:3:\"6.6\";s:27:\"hello-elementor-theme-style\";s:3:\"5.4\";s:15:\"elementor-icons\";s:4:\"17.7\";s:20:\"elementor-animations\";s:4:\"18.5\";s:18:\"elementor-frontend\";s:5:\"117.8\";s:16:\"elementor-post-9\";s:3:\"1.1\";s:13:\"elementor-pro\";s:5:\"210.9\";s:16:\"elementor-global\";s:4:\"61.3\";s:17:\"elementor-post-11\";s:3:\"0.5\";}'),(1563,194,'_hash','be3c66d5a5eb5b010cbb39ff670ff1a9'),(1564,194,'_file_id','194'),(1565,194,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/be3c66d5a5eb5b010cbb39ff670ff1a9.css'),(1566,194,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/be3c66d5a5eb5b010cbb39ff670ff1a9.css'),(1567,194,'_expires','1628000715'),(1587,193,'_elementor_edit_mode','builder'),(1588,193,'_elementor_template_type','wp-page'),(1589,193,'_elementor_version','3.4.4'),(1590,193,'_elementor_pro_version','3.4.1'),(1610,193,'_wp_page_template','elementor_canvas'),(1611,193,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1612,193,'_elementor_data','[{\"id\":\"3694d183\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"359a85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6488b54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce002a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f681a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1338c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fully qualified and registered Podiatrist\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f7e4fa7\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d0ad40\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"6f7eeeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.595},\"elements\":[{\"id\":\"7c75c75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11db7a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":91.07},\"elements\":[{\"id\":\"d061f2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a fully qualified and registered podiatrist.\\u00a0 She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).<\\/p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.\\u00a0\\u00a0She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.<\\/p>\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a959b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"b83934f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7baae44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Memberships\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"200\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8892d0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a member of the <strong>South African <\\/strong><strong>Podiatry Association <\\/strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\\\"http:\\/\\/www.podiatrist.co.za\\/\\\">www.podiatrist.co.za<\\/a><\\/p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)<\\/strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\\\"http:\\/\\/www.hpcsa.co.za\\/\\\">www.hpcsa.co.za<\\/a><\\/p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine <\\/strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\\\"https:\\/\\/sweetlife.org.za\\/\\\">https:\\/\\/sweetlife.org.za\\/<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a086644\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4240772\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/pasa-logo.png\",\"id\":36},\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e29e602\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Sweet-Life-logo.png\",\"id\":227},\"_margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f666be2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9aba29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7807fe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Andy\'s clients have to say\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31c18c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Read some of the good things people have to say about Andy and her professional foot care:<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fcc7cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><em>Your feet will be in good hands.<\\/em><\\/li><li><em>Andy Blecher is the most professional, clued up podiatrist. She has treated all my children over the years and we even look forward to the visits.<\\/em><\\/li><li><em>She is caring, professional and easy to talk to.\\u00a0 I would highly recommend her to anyone suffering from chronic foot pain.<\\/em><\\/li><li><em>My apprehension melted away while she was busy with my feet.\\u00a0 Great, friendly service, I\'m definitely going back.<\\/em><\\/li><li><em>Among Andy\'s specialities is her TCC (total touch cast technique) fibreglass foot and ankle casting\\u00a0 Andy has been casting my diabetic Charcot foot for more than a year now. She is very professional, caring and highly competent. I recently had to unexpectedly fly to Asia for 2 and a half weeks with my foot in a cast. On my return, my foot was still perfectly secure and supported thanks to Andy\'s wonderful care.<\\/em><\\/li><li><em>I wanted to let you know that my warts have shrunk down in size signi\\ufb01cantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.<\\/em><\\/li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.<\\/em><\\/li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.<\\/em><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6769bf40\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"3135d227\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29c7954c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"1386bac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2ce357f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"515a67c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"1a3e73a0\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3dbb950a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1613,193,'_yoast_wpseo_estimated-reading-time-minutes','3'),(1641,199,'_handles','a:2:{i:0;s:15:\"smush-lazy-load\";i:1;s:8:\"wp-embed\";}'),(1642,199,'_handle_urls','a:2:{s:15:\"smush-lazy-load\";s:94:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js\";s:8:\"wp-embed\";s:31:\"/wp-includes/js/wp-embed.min.js\";}'),(1643,199,'_handle_versions','a:2:{s:15:\"smush-lazy-load\";s:5:\"3.8.5\";s:8:\"wp-embed\";s:0:\"\";}'),(1644,199,'_extra','a:1:{s:5:\"group\";i:1;}'),(1645,199,'_args',NULL),(1646,199,'_type','scripts'),(1647,199,'_dont_minify','a:2:{i:0;s:15:\"smush-lazy-load\";i:1;s:8:\"wp-embed\";}'),(1648,199,'_dont_combine','a:0:{}'),(1649,199,'_dont_enqueue','a:0:{}'),(1650,199,'_defer','a:0:{}'),(1651,199,'_inline','a:0:{}'),(1652,199,'_handle_dependencies','a:2:{s:15:\"smush-lazy-load\";a:0:{}s:8:\"wp-embed\";a:0:{}}'),(1653,199,'_handle_original_sizes','a:2:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";}'),(1654,199,'_handle_compressed_sizes','a:2:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";}'),(1655,199,'_hash','53a36e5ab54911b64b66ba5fda022899'),(1658,199,'_file_id','199'),(1660,199,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/53a36e5ab54911b64b66ba5fda022899.js'),(1662,199,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/53a36e5ab54911b64b66ba5fda022899.js'),(1664,199,'_expires','1628000843'),(1672,201,'_args','all'),(1673,201,'_type','styles'),(1674,201,'_dont_minify','a:6:{i:0;s:15:\"hello-elementor\";i:1;s:27:\"hello-elementor-theme-style\";i:2;s:15:\"elementor-icons\";i:3;s:20:\"elementor-animations\";i:4;s:18:\"elementor-frontend\";i:5;s:13:\"elementor-pro\";}'),(1675,201,'_dont_combine','a:0:{}'),(1676,201,'_dont_enqueue','a:0:{}'),(1677,201,'_defer','a:0:{}'),(1678,201,'_inline','a:0:{}'),(1679,201,'_handle_dependencies','a:9:{s:15:\"hello-elementor\";a:0:{}s:27:\"hello-elementor-theme-style\";a:0:{}s:15:\"elementor-icons\";a:0:{}s:20:\"elementor-animations\";a:0:{}s:18:\"elementor-frontend\";a:0:{}s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}s:13:\"elementor-pro\";a:0:{}s:16:\"elementor-global\";a:0:{}s:18:\"elementor-post-193\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(1680,201,'_handle_original_sizes','a:9:{s:15:\"hello-elementor\";s:3:\"6.6\";s:27:\"hello-elementor-theme-style\";s:3:\"5.4\";s:15:\"elementor-icons\";s:4:\"17.7\";s:20:\"elementor-animations\";s:4:\"18.5\";s:18:\"elementor-frontend\";s:5:\"117.8\";s:16:\"elementor-post-9\";s:3:\"1.1\";s:13:\"elementor-pro\";s:5:\"210.9\";s:16:\"elementor-global\";s:4:\"62.4\";s:18:\"elementor-post-193\";s:3:\"0.0\";}'),(1681,201,'_handle_compressed_sizes','a:9:{s:15:\"hello-elementor\";s:3:\"6.6\";s:27:\"hello-elementor-theme-style\";s:3:\"5.4\";s:15:\"elementor-icons\";s:4:\"17.7\";s:20:\"elementor-animations\";s:4:\"18.5\";s:18:\"elementor-frontend\";s:5:\"117.8\";s:16:\"elementor-post-9\";s:3:\"1.1\";s:13:\"elementor-pro\";s:5:\"210.9\";s:16:\"elementor-global\";s:4:\"61.3\";s:18:\"elementor-post-193\";s:3:\"0.0\";}'),(1682,201,'_hash','8f9ae0af8a31f1c17fba55800940758f'),(1683,201,'_file_id','201'),(1684,201,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/8f9ae0af8a31f1c17fba55800940758f.css'),(1685,201,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/8f9ae0af8a31f1c17fba55800940758f.css'),(1686,201,'_expires','1628000852'),(1715,193,'_yoast_wpseo_content_score','60'),(1716,204,'_handles','a:2:{i:0;s:15:\"hello-elementor\";i:1;s:27:\"hello-elementor-theme-style\";}'),(1717,204,'_handle_urls','a:2:{s:15:\"hello-elementor\";s:75:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/style.min.css\";s:27:\"hello-elementor-theme-style\";s:75:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/theme.min.css\";}'),(1718,204,'_handle_versions','a:2:{s:15:\"hello-elementor\";s:5:\"2.3.1\";s:27:\"hello-elementor-theme-style\";s:0:\"\";}'),(1719,204,'_extra','a:0:{}'),(1720,204,'_args','all'),(1721,204,'_type','styles'),(1722,204,'_dont_minify','a:2:{i:0;s:15:\"hello-elementor\";i:1;s:27:\"hello-elementor-theme-style\";}'),(1723,204,'_dont_combine','a:0:{}'),(1724,204,'_dont_enqueue','a:0:{}'),(1725,204,'_defer','a:0:{}'),(1726,204,'_inline','a:0:{}'),(1727,204,'_handle_dependencies','a:2:{s:15:\"hello-elementor\";a:0:{}s:27:\"hello-elementor-theme-style\";a:0:{}}'),(1728,204,'_handle_original_sizes','a:2:{s:15:\"hello-elementor\";s:3:\"6.6\";s:27:\"hello-elementor-theme-style\";s:3:\"5.4\";}'),(1729,204,'_handle_compressed_sizes','a:2:{s:15:\"hello-elementor\";s:3:\"6.6\";s:27:\"hello-elementor-theme-style\";s:3:\"5.4\";}'),(1730,204,'_hash','1aa8dd8d5a5ba0219fd3f576905e6d98'),(1731,204,'_file_id','204'),(1732,204,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/1aa8dd8d5a5ba0219fd3f576905e6d98.css'),(1733,204,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/1aa8dd8d5a5ba0219fd3f576905e6d98.css'),(1734,204,'_expires','1628000865'),(1743,205,'_dont_combine','a:0:{}'),(1744,205,'_dont_enqueue','a:0:{}'),(1745,205,'_defer','a:0:{}'),(1746,205,'_inline','a:0:{}'),(1747,205,'_handle_dependencies','a:2:{s:15:\"smush-lazy-load\";a:0:{}s:8:\"wp-embed\";a:0:{}}'),(1748,205,'_handle_original_sizes','a:2:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";}'),(1749,205,'_handle_compressed_sizes','a:2:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";}'),(1750,205,'_hash','53a36e5ab54911b64b66ba5fda022899'),(1751,205,'_file_id','205'),(1752,205,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/53a36e5ab54911b64b66ba5fda022899.js'),(1753,205,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/53a36e5ab54911b64b66ba5fda022899.js'),(1754,205,'_expires','1628000868'),(1832,211,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(1833,211,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(1834,211,'_file_id','211'),(1835,211,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(1836,211,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(1837,211,'_expires','1628001615'),(1883,215,'_handles','a:1:{i:0;s:16:\"elementor-post-9\";}'),(1884,215,'_handle_urls','a:1:{s:16:\"elementor-post-9\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1622738209\";}'),(1885,215,'_handle_versions','a:1:{s:16:\"elementor-post-9\";s:0:\"\";}'),(1886,215,'_extra','a:0:{}'),(1887,215,'_args','all'),(1888,215,'_type','styles'),(1889,215,'_dont_minify','a:0:{}'),(1890,215,'_dont_combine','a:1:{i:0;s:16:\"elementor-post-9\";}'),(1891,215,'_dont_enqueue','a:0:{}'),(1892,215,'_defer','a:0:{}'),(1893,215,'_inline','a:0:{}'),(1894,215,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(1895,215,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(1896,215,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(1897,215,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(1898,215,'_file_id','215'),(1899,215,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(1900,215,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(1901,215,'_expires','1628001631'),(1917,217,'_dont_combine','a:1:{i:0;s:16:\"elementor-post-9\";}'),(1918,217,'_dont_enqueue','a:0:{}'),(1919,217,'_defer','a:0:{}'),(1920,217,'_inline','a:0:{}'),(1921,217,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(1922,217,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(1923,217,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(1924,217,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(1925,217,'_file_id','217'),(1926,217,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(1927,217,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(1928,217,'_expires','1628001643'),(1938,193,'_yoast_wpseo_focuskw','registered podiatrist'),(1939,193,'_yoast_wpseo_linkdex','62'),(2042,227,'_wp_attached_file','2021/06/Sweet-Life-logo.png'),(2043,227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:66;s:4:\"file\";s:27:\"2021/06/Sweet-Life-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sweet-Life-logo-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2044,227,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.880520588862815;s:5:\"bytes\";i:2801;s:11:\"size_before\";i:9374;s:10:\"size_after\";i:6573;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.88;s:5:\"bytes\";i:2801;s:11:\"size_before\";i:9374;s:10:\"size_after\";i:6573;s:4:\"time\";d:0.05;}}}'),(2045,227,'_wp_attachment_image_alt',''),(2150,193,'_yoast_wpseo_title','Registered podiatrist Andy Blecher specialises in foot care for children'),(2151,193,'_yoast_wpseo_metadesc','Andy Blecher is a fully qualified and registered podiatrist in private practice in both Plumstead and Sea Point, specialising in foot care.'),(2187,193,'_yoast_wpseo_opengraph-title','Andy Blecher is a fully qualified and registered podiatrist'),(2188,193,'_yoast_wpseo_opengraph-image','https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-compressed.jpg'),(2189,193,'_yoast_wpseo_opengraph-image-id','24'),(2348,69,'_yoast_wpseo_content_score','60'),(2349,69,'_yoast_wpseo_estimated-reading-time-minutes','4'),(2395,69,'_yoast_wpseo_focuskw','Andy Blecher podiatrist'),(2396,69,'_yoast_wpseo_linkdex','55'),(2468,69,'_yoast_wpseo_metadesc','Andy Blecher podiatrist can help you to keep your feet in a fit state to carry out the function they were designed for.'),(2470,271,'_edit_lock','1623651239:1'),(2471,271,'_edit_last','1'),(2472,271,'_elementor_edit_mode','builder'),(2473,271,'_elementor_template_type','wp-page'),(2474,271,'_elementor_version','3.2.4'),(2475,271,'_elementor_pro_version','3.2.2'),(2476,271,'_yoast_wpseo_estimated-reading-time-minutes','3'),(2477,271,'_wp_page_template','elementor_canvas'),(2478,271,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2479,271,'_elementor_data','[{\"id\":\"75fc778a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e931f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"15853b1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7493b5c8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ba6f8b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3bfa182\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31cf0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy\'s fields of interest\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba35733\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher\'s main fields of interest are as follows:<\\/p><ol><li><strong>General foot care<\\/strong> - the treatment of corns, calluses, nail conditions and ingrown toenails<\\/li><li><strong>Verruca\\/Plantar Warts<\\/strong> - Andy has a special interest in treating warts, especially in children Sports podiatry - this includes the assessment of the foot in motion and the prescription of appropriate insoles and\\/or orthotics)<\\/li><li><strong>Paediatric\\/Child footcare<\\/strong><\\/li><li><strong>Diabetic foot assessment and treatment<\\/strong>, including the gold standard treatment of foot ulcers by the application of a <a href=\\\"https:\\/\\/podiatrist.capetown\\/interesting-articles\\/\\\">Total Contact Cast (TCC).<\\/a>\\u00a0<\\/li><\\/ol><p>Whatever your foot problem, Andy will give you sound advice as to the optimum path of treatment to follow.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8649cbd\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"ae88655\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"acddddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"The diabetic foot\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b24ee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/DFWG-logo.jpg\",\"id\":21},\"align\":\"left\",\"_element_width\":\"auto\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d8db2de\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"9bc10da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As this is one of Andy\'s special interests, she serves on the Western Cape committee of the <strong>Diabetic Foot Working Group (DFWG).\\u00a0\\u00a0<\\/strong>This voluntary association serves as the overall representative body to promote awareness and optimal management of diabetics with foot problems. Its objectives include the prevention of amputation, promoting academic standards and the establishment of relationships amongst role players.\\u00a0<\\/p><p>Andy also currently runs the <strong>Western Cape Diabetic Foot Clinic <\\/strong>with a team of other specialists.<\\/p><p>What\'s more, she is the only podiatrist in the Western Cape with an advanced wound care private practitioner on her premises. <strong>Anne Berzen<\\/strong> shares Andy\'s special interest and this adds great value in terms of the multidisciplinary approach that is expected today in diabetic foot clinics worldwide.<\\/p>\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a330786\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eed26c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8af161a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy is also a member of the <strong>CAWCC Working Group <\\/strong>- brief details below. See <a href=\\\"https:\\/\\/wound.capetown\\\">https:\\/\\/wound.capetown<\\/a>\\u00a0for full details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890cf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/CAWCC-pic.jpg\",\"id\":18}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c819a74\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"246a084d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"384d7913\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"19eac573\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"70105430\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4e86e4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"24586d85\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"588b3828\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2496,275,'_handles','a:1:{i:0;s:18:\"elementor-post-271\";}'),(2498,275,'_handle_urls','a:1:{s:18:\"elementor-post-271\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-271.css?ver=1622895633\";}'),(2500,275,'_handle_versions','a:1:{s:18:\"elementor-post-271\";s:0:\"\";}'),(2502,275,'_extra','a:0:{}'),(2504,275,'_args','all'),(2506,275,'_type','styles'),(2508,275,'_dont_minify','a:0:{}'),(2510,275,'_dont_combine','a:0:{}'),(2512,275,'_dont_enqueue','a:0:{}'),(2513,275,'_defer','a:0:{}'),(2514,275,'_inline','a:0:{}'),(2515,275,'_handle_dependencies','a:1:{s:18:\"elementor-post-271\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(2516,275,'_handle_original_sizes','a:1:{s:18:\"elementor-post-271\";s:3:\"0.0\";}'),(2517,275,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-271\";s:3:\"0.0\";}'),(2519,275,'_hash','d53f8fd77194e628d7ffe077806c5d55'),(2520,275,'_file_id','275'),(2521,275,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/d53f8fd77194e628d7ffe077806c5d55.css'),(2522,275,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/d53f8fd77194e628d7ffe077806c5d55.css'),(2523,275,'_expires','1628079692'),(2524,271,'_yoast_wpseo_content_score','60'),(2743,271,'_yoast_wpseo_focuskw','diabetic foot'),(2744,271,'_yoast_wpseo_title','Diabetic foot assessment and treatment - %%sitename%%'),(2745,271,'_yoast_wpseo_metadesc','Diabetic foot assessment and treatment, including the gold standard treatment of diabetic foot ulcers by Total Contact Cast (TCC)'),(2746,271,'_yoast_wpseo_linkdex','59'),(2773,271,'_yoast_wpseo_opengraph-title','Diabetic foot assessment and treatment'),(2774,271,'_yoast_wpseo_opengraph-description','Diabetic foot assessment and treatment, including the gold standard treatment of diabetic foot ulcers by Total Contact Cast (TCC)'),(2775,271,'_yoast_wpseo_opengraph-image','https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg'),(2776,271,'_yoast_wpseo_opengraph-image-id','16'),(2856,311,'_edit_lock','1623142592:1'),(2857,311,'_elementor_edit_mode','builder'),(2858,311,'_elementor_template_type','wp-page'),(2859,311,'_elementor_version','3.2.4'),(2860,311,'_elementor_pro_version','3.2.2'),(2861,311,'_wp_page_template','elementor_canvas'),(2862,311,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2863,311,'_elementor_data','[{\"id\":\"bded98a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bc13455\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89b7571\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical footwear from Andy Blecher\",\"header_size\":\"h1\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cee309\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e48997\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1db8da3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medical footwear consists of shoes, sandals and supportive devices to address conditions that affect the feet and lower limbs.<\\/p><p>From diabetics to athletes and working men and women, medical footwear promotes foot health, maximum mobility and comfort.<\\/p><p>Andy Blecher offers a full range of medical and health footwear and orthotics. Some of the respected brands she stocks are as follows:<\\/p><p><a href=\\\"https:\\/\\/www.podiatristandyblecher.co.za\\/medical-footwear\\/dr-comfort-shoes\\/\\\">Dr Comfort<\\/a><\\/p><p><a href=\\\"https:\\/\\/www.podiatristandyblecher.co.za\\/medical-footwear\\/revere-comfort-shoes\\/\\\">Revere<\\/a><\\/p><p><a href=\\\"https:\\/\\/www.podiatristandyblecher.co.za\\/medical-footwear\\/vasyli-orthotics\\/\\\">Vasyli<\\/a><\\/p><p><a href=\\\"https:\\/\\/www.podiatristandyblecher.co.za\\/medical-footwear\\/vionic-sandals\\/\\\">Vionic<\\/a><\\/p><p>Click through to the brand above that interests you.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9671943\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"97826a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.069},\"elements\":[{\"id\":\"ef954ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/wing-chestnut.jpg\",\"id\":50},\"caption_source\":\"custom\",\"caption\":\"Dr Comfort\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8c52351\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26.931},\"elements\":[{\"id\":\"b78e229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/HD-Santa-Monica-Navy-Snake.jpg\",\"id\":126},\"caption_source\":\"custom\",\"caption\":\"Revere\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"15de7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9334ac9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/product_customs_medium_tn.jpg\",\"id\":40},\"caption_source\":\"custom\",\"caption\":\"Vasyli\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"86175e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"91ba336\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Ladies-Islander.png\",\"id\":129},\"caption_source\":\"custom\",\"caption\":\"Vionic\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2864,311,'_yoast_wpseo_estimated-reading-time-minutes','2'),(2890,311,'_yoast_wpseo_content_score','90'),(2920,126,'_wp_attachment_image_alt','Revere Santa Monica navy'),(2921,129,'_wp_attachment_image_alt','Vionic Ladies Islander'),(3056,311,'_yoast_wpseo_focuskw','medical footwear'),(3057,311,'_yoast_wpseo_linkdex','50'),(3084,311,'_yoast_wpseo_title','Full range of medical footwear and orthotics - Andy Blecher Podiatrist.'),(3085,311,'_yoast_wpseo_metadesc','Andy Blecher offers a full range of medical footwear, health footwear and orthotics, all internationally respected brands.'),(3086,311,'_yoast_wpseo_opengraph-title','Andy Blecher offers a full range of medical footwear and orthotics.'),(3087,311,'_yoast_wpseo_opengraph-description','Andy Blecher offers a full range of medical and health footwear and orthotics.'),(3088,311,'_yoast_wpseo_opengraph-image','https://podiatrist.capetown/wp-content/uploads/2021/06/suzie-white.jpg'),(3089,311,'_yoast_wpseo_opengraph-image-id','49'),(3134,311,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:14:\"caption_source\";i:4;s:7:\"caption\";i:4;}}}}}'),(3164,311,'_edit_last','1'),(3165,338,'_edit_lock','1623761860:1'),(3185,338,'_elementor_edit_mode','builder'),(3186,338,'_edit_last','1'),(3187,338,'_elementor_template_type','wp-page'),(3188,338,'_elementor_version','3.2.4'),(3189,338,'_elementor_pro_version','3.2.2'),(3190,338,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3191,338,'_wp_page_template','elementor_canvas'),(3192,338,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3193,338,'_elementor_data','[{\"id\":\"68733b16\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"741ac4f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a4d5b42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1ba490d\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"158cb61\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"571da9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d4e1772\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr Comfort Diabetic Footwear\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"013d9c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"cc-m-6599176783\\\" class=\\\"j-module n j-text \\\"><p>Dr Comfort is the worldwide leading provider of diabetic footwear. \\u00a0It recognises the need for STYLE, COMFORT and QUALITY in the therapeutic shoe industry.<\\/p><p>Today the Dr Comfort family of comfort footwear includes diabetic shoes, prescription and non-prescription inserts, diabetic socks, slippers, sandals and compression hosiery.<\\/p><p><strong>Your Comfort Comes First<\\/strong><\\/p><p>The classic craftsmanship and sophisticated style of Dr Comfort are a must for anyone in search of the finest quality in a comfort shoe. Designed as a diabetic shoe, it also provides many protective and comfort features for all kinds of wearers. Prescription diabetic footwear can help you to prevent more serious foot health complications that can arise as a result of diabetes.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e7a0ae1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8b41183\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c2852e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":48,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/sunshine.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Laura.jpg\"},{\"id\":50,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/wing-chestnut.jpg\"},{\"id\":49,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/suzie-white.jpg\"},{\"id\":47,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Stallion.jpg\"},{\"id\":19,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Classic-Black-3_4-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"0947e53\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"},{\"id\":\"ae4a181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For further information on the full Dr Comfort diabetic footwear range, or if you\'d like to try on or buy a pair, contact Andy Blecher on <strong>021 797 6967<\\/strong>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651cc45e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"1c536a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5375c6eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"2690066a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63b0c020\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6f94859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"155b539d\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"48387523\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3194,338,'_yoast_wpseo_content_score','30'),(3203,342,'_handles','a:1:{i:0;s:18:\"elementor-post-338\";}'),(3204,342,'_handle_urls','a:1:{s:18:\"elementor-post-338\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-338.css?ver=1623142792\";}'),(3205,342,'_handle_versions','a:1:{s:18:\"elementor-post-338\";s:0:\"\";}'),(3206,342,'_extra','a:0:{}'),(3207,342,'_args','all'),(3208,342,'_type','styles'),(3209,342,'_dont_minify','a:0:{}'),(3210,342,'_dont_combine','a:0:{}'),(3211,342,'_dont_enqueue','a:0:{}'),(3212,342,'_defer','a:0:{}'),(3213,342,'_inline','a:0:{}'),(3214,342,'_handle_dependencies','a:1:{s:18:\"elementor-post-338\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(3215,342,'_handle_original_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3216,342,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3217,342,'_hash','06ae9a63a3bcc01ee05ebbcc873f59fa'),(3218,342,'_file_id','342'),(3219,342,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3220,342,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3221,342,'_expires','1628326812'),(3238,344,'_dont_minify','a:0:{}'),(3240,344,'_dont_combine','a:0:{}'),(3242,344,'_dont_enqueue','a:0:{}'),(3244,344,'_defer','a:0:{}'),(3246,344,'_inline','a:0:{}'),(3248,344,'_handle_dependencies','a:1:{s:18:\"elementor-post-338\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(3250,344,'_handle_original_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3251,344,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3252,344,'_hash','06ae9a63a3bcc01ee05ebbcc873f59fa'),(3253,344,'_file_id','344'),(3254,344,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3256,344,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3257,344,'_expires','1628326835'),(3295,349,'_handles','a:1:{i:0;s:18:\"elementor-post-338\";}'),(3297,349,'_handle_urls','a:1:{s:18:\"elementor-post-338\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-338.css?ver=1623143057\";}'),(3299,349,'_handle_versions','a:1:{s:18:\"elementor-post-338\";s:0:\"\";}'),(3301,349,'_extra','a:0:{}'),(3303,349,'_args','all'),(3305,349,'_type','styles'),(3307,349,'_dont_minify','a:0:{}'),(3309,349,'_dont_combine','a:0:{}'),(3310,349,'_dont_enqueue','a:0:{}'),(3312,349,'_defer','a:0:{}'),(3313,349,'_inline','a:0:{}'),(3314,349,'_handle_dependencies','a:1:{s:18:\"elementor-post-338\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(3315,349,'_handle_original_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3316,349,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3317,349,'_hash','06ae9a63a3bcc01ee05ebbcc873f59fa'),(3318,349,'_file_id','349'),(3319,349,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3320,349,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3321,349,'_expires','1628327072'),(3322,351,'_handles','a:1:{i:0;s:18:\"elementor-post-338\";}'),(3323,351,'_handle_urls','a:1:{s:18:\"elementor-post-338\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-338.css?ver=1623143057\";}'),(3324,351,'_handle_versions','a:1:{s:18:\"elementor-post-338\";s:0:\"\";}'),(3325,351,'_extra','a:0:{}'),(3326,351,'_args','all'),(3328,351,'_type','styles'),(3330,351,'_dont_minify','a:0:{}'),(3332,351,'_dont_combine','a:0:{}'),(3334,351,'_dont_enqueue','a:0:{}'),(3336,351,'_defer','a:0:{}'),(3338,351,'_inline','a:0:{}'),(3340,351,'_handle_dependencies','a:1:{s:18:\"elementor-post-338\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(3342,351,'_handle_original_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3343,351,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-338\";s:3:\"0.0\";}'),(3344,351,'_hash','06ae9a63a3bcc01ee05ebbcc873f59fa'),(3346,351,'_file_id','351'),(3347,351,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3348,351,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/06ae9a63a3bcc01ee05ebbcc873f59fa.css'),(3349,351,'_expires','1628327087'),(3446,338,'_yoast_wpseo_focuskw','Dr Comfort diabetic footwear'),(3448,338,'_yoast_wpseo_metadesc','Prescription diabetic footwear can help you to prevent more serious foot health complications that can arise as a result of diabetes.'),(3449,338,'_yoast_wpseo_linkdex','22'),(3451,362,'_edit_lock','1623670685:1'),(3452,362,'_elementor_edit_mode','builder'),(3453,362,'_elementor_template_type','wp-page'),(3454,362,'_elementor_version','3.2.4'),(3455,362,'_elementor_pro_version','3.2.2'),(3456,362,'_wp_page_template','elementor_canvas'),(3457,362,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3458,362,'_elementor_data','[{\"id\":\"526ec78c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e578e00\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"570b527a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2ac34f10\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5396569\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1bd8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d821f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Revere Comfort Footwear\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32f1cf6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8b46d49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9633aa9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/9mQgDmWIHa8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"c4a70ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"cc-m-9766414083\\\" class=\\\"j-module n j-header \\\"><h1 id=\\\"cc-m-header-9766414083\\\" class=\\\"\\\">Revere shoes - devoted to style and comfort<\\/h1><\\/div><div id=\\\"cc-m-10754021583\\\" class=\\\"j-module n j-text \\\"><p>A young and exciting Australian brand, with international demand, REVERE footwear provides all-day comfort and support by enhancing foot health for those experiencing heel pain, tired aching feet, sore knees and lower back pain.<\\/p><p>REVERE sandals have been designed in collaboration with leading footwear designers and manufacturers to provide maximum adjustability to support many foot types.<\\/p><p>These sandals provide an extra depth removable footbed to accommodate a wide variety of custom orthotics to be inserted without taking away from the comfortable feel &amp;stylish look of the shoes.<\\/p><p>The production of the REVERE sandals combines the use of premium quality materials and craftsmanship to produce the shoes by hand. All materials are hand-picked and tested to guarantee that they meet quality requirements before entering production. Throughout the production process, quality inspectors control every aspect from stitching accuracy to leather thickness to ensure high quality and comfort.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8587208\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"337f000\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4a56ea\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":136,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Siena_Black_3_4.jpg\"},{\"id\":135,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/REVERE-charlotte.png\"},{\"id\":123,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Genoa_Black_3_4.jpg\"},{\"id\":133,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/REV-Bali.jpg\"},{\"id\":132,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Olympia_Gold-Wash_3_4.jpg\"},{\"id\":126,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/HD-Santa-Monica-Navy-Snake.jpg\"},{\"id\":130,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Malibu_Champagne_3_4.jpg\"},{\"id\":125,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/HD-Miami-Natural-Snake-2.jpg\"},{\"id\":46,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/revere_3-4_venice_pearl_patent_3.jpg\"},{\"id\":45,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/revere_3-4_monaco_white_snake_4.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"4bcc593\"}],\"columns\":5,\"gap\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"thumbnail_image_size\":\"medium_large\",\"show_all_galleries_label\":\"All\"},\"elements\":[],\"widgetType\":\"gallery\"},{\"id\":\"5f8fe45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"cc-m-9766414483\\\" class=\\\"j-module n j-header \\\"><h3 id=\\\"cc-m-header-9766414483\\\" class=\\\"\\\">All-day comfort and support for those experiencing heel pain, tired aching feet, sore knees and lower back pain.<\\/h3><\\/div><div id=\\\"cc-m-9766414383\\\" class=\\\"j-module n j-text \\\"><ul class=\\\"feature\\\" style=\\\"margin: 0px 0px 0px 36px; padding: 0px; list-style: square; color: #656565; font-family: Verdana, sans-serif; font-size: 13px; line-height: 20px;\\\"><li style=\\\"margin: 0px; padding: 0px;\\\"><h6>Cushioned heel for extra comfort and shock absorption<\\/h6><\\/li><li style=\\\"margin: 0px; padding: 0px;\\\"><h6>Contoured arch profile to support the feet whilst walking<\\/h6><\\/li><li style=\\\"margin: 0px; padding: 0px;\\\"><h6>Premium handcrafted leather upper and linings<\\/h6><\\/li><li style=\\\"margin: 0px; padding: 0px;\\\"><h6>Orthotic friendly design with additional depth to accommodate custom orthotics<\\/h6><\\/li><li style=\\\"margin: 0px; padding: 0px;\\\"><h6>Uppers designed with maximum adjustability, for a perfect fit<\\/h6><\\/li><\\/ul><\\/div><div id=\\\"cc-m-9766424083\\\" class=\\\"j-module n j-text \\\"><p>For further information, contact Andy Blecher on\\u00a0<strong>021 797 6967<\\/strong>\\u00a0<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e7de942\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"361b032\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"743ae1f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"54770c1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ce32801\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"5225148d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3f2a14b2\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"5e1e10d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3459,362,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3460,362,'_yoast_wpseo_content_score','60'),(3461,136,'_wp_attachment_image_alt','Revere Siena_Black_3_4'),(3462,135,'_wp_attachment_image_alt','REVERE charlotte'),(3463,123,'_wp_attachment_image_alt','Revere Genoa_Black_3_4'),(3464,133,'_wp_attachment_image_alt','Revere Bali'),(3465,132,'_wp_attachment_image_alt','Revere Olympia_Gold Wash_3_4'),(3466,130,'_wp_attachment_image_alt','Revere Malibu_Champagne_3_4'),(3467,125,'_wp_attachment_image_alt','Revere HD Miami Natural Snake 2'),(3468,362,'_yoast_wpseo_focuskw','revere comfort footwear'),(3469,362,'_yoast_wpseo_title','Revere comfort footwear provides all-day support for your tired aching feet'),(3470,362,'_yoast_wpseo_linkdex','75'),(3522,362,'_yoast_wpseo_metadesc','REVERE comfort sandals provide all-day comfort and support by enhancing foot health for those with heel pain or tired aching feet.'),(3568,362,'_yoast_wpseo_opengraph-title','Revere sandals provide all-day comfort and support for your feet'),(3570,372,'_edit_lock','1623669537:1'),(3571,372,'_edit_last','1'),(3572,372,'_elementor_edit_mode','builder'),(3573,372,'_elementor_template_type','wp-page'),(3574,372,'_elementor_version','3.2.4'),(3575,372,'_elementor_pro_version','3.2.2'),(3576,372,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3577,372,'_wp_page_template','elementor_canvas'),(3578,372,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3579,372,'_elementor_data','[{\"id\":\"5747ff9e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2c34f2b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1566b19b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"74c280eb\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23751db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bec0985\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a4877e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vionic Ladies Orthotic Sandals\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c68eb33\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":129,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Ladies-Islander.png\"},{\"id\":122,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Bella-Toepost-Sandal.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"c0a701c\"}],\"show_all_galleries_label\":\"All\",\"image_border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"gallery\"},{\"id\":\"e2ce9e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"cc-m-10135511083\\\" class=\\\"j-module n j-text \\\"><p>Looking for orthotic sandals that look a little less orthotic and a lot more stylish? Vionic offers breakthrough technology to help reduce common foot pains associated with over-pronation and plantar fasciitis. Vionic also boasts the first and only sandal proven to effectively alleviate heel pain.<\\/p><p><strong>What makes Vionic with Orthaheel Technology different?<\\/strong><\\/p><\\/div><div id=\\\"cc-m-10135511983\\\" class=\\\"j-module n j-text \\\"><p>Designed with your style needs in mind, Vionic ladies orthotic sandals\' scientifically proven foot support allows you to walk through your day without pain. The podiatrist-designed contours are built right into summer footwear to create first-of-their-kind orthotic sandals. With more than 30 years of podiatric medical success and research to support this innovative technology, Vionic brings you the best orthotic sandals for women. Trusted support, designed with your style needs in mind, so you can walk through your day - looking good and feeling good too.<\\/p><\\/div><div id=\\\"cc-m-9769882583\\\" class=\\\"j-module n j-text \\\"><p>For further info,\\u00a0contact Andy Blecher on\\u00a0<strong>021 797 6967<\\/strong>\\u00a0 or visit\\u00a0 <a href=\\\"https:\\/\\/www.blmed.co.za\\/\\\">https:\\/\\/www.blmed.co.za\\/<\\/a><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7230205\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d37db44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8a26f05\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/M07D8QOwbkA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42edacc8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5d6fb457\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b4bbe8e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"4785a8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"11e3cbad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"79ccd077\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"417b83a3\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"ff3f5f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3580,372,'_yoast_wpseo_content_score','60'),(3581,122,'_wp_attachment_image_alt','Vionic Bella Toepost Sandal'),(3664,381,'_handle_urls','a:1:{s:18:\"elementor-post-372\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-372.css?ver=1623148844\";}'),(3666,381,'_handle_versions','a:1:{s:18:\"elementor-post-372\";s:0:\"\";}'),(3668,381,'_extra','a:0:{}'),(3670,381,'_args','all'),(3672,381,'_type','styles'),(3674,381,'_dont_minify','a:0:{}'),(3676,381,'_dont_combine','a:0:{}'),(3678,381,'_dont_enqueue','a:0:{}'),(3680,381,'_defer','a:0:{}'),(3681,381,'_inline','a:0:{}'),(3682,381,'_handle_dependencies','a:1:{s:18:\"elementor-post-372\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(3683,381,'_handle_original_sizes','a:1:{s:18:\"elementor-post-372\";s:3:\"0.4\";}'),(3684,381,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-372\";s:3:\"0.4\";}'),(3685,381,'_hash','fc87a04bc163fc139bcb48bb756dd90f'),(3686,381,'_file_id','381'),(3687,381,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/fc87a04bc163fc139bcb48bb756dd90f.css'),(3688,381,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/fc87a04bc163fc139bcb48bb756dd90f.css'),(3689,381,'_expires','1628332857'),(3751,372,'_yoast_wpseo_focuskw','vionic ladies orthotic sandals'),(3752,372,'_yoast_wpseo_title','Vionic ladies orthotic sandals help you to reduce common foot pains'),(3753,372,'_yoast_wpseo_metadesc','Vionic ladies orthotic sandal breakthrough technology helps to reduce common foot pains associated with over-pronation and plantar fasciitis.'),(3754,372,'_yoast_wpseo_linkdex','60'),(3775,390,'_edit_lock','1623671360:1'),(3776,390,'_elementor_edit_mode','builder'),(3777,390,'_elementor_template_type','wp-page'),(3778,390,'_elementor_version','3.2.4'),(3779,390,'_elementor_pro_version','3.2.2'),(3780,390,'_wp_page_template','elementor_canvas'),(3781,390,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3782,390,'_elementor_data','[{\"id\":\"231c8848\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ff63838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d7744dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"769a25b0\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18ca9d0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3f766a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e789b18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vasyli Medical Orthotics\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92a890d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/product_customs_medium_tn.jpg\",\"id\":40},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69b9836\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/product_armstrong_tn.jpg\",\"id\":39},\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0081f1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"cc-m-6599167383\\\" class=\\\"j-module n j-text \\\"><p>Vasyli Medical are passionate about what they do. Over 25 years of experience and development combine to bring you the very latest generation heat custom orthotic solutions.<\\/p><p>Designed specifically for fast, easy and effective use, the unique Vasyli range of orthotic products represents the very best value foot treatment solutions available today.<\\/p><p>For further information, see <a href=\\\"http:\\/\\/www.blmed.co.za\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.blmed.co.za<\\/a>\\u00a0or contact Andy Blecher on\\u00a0<strong>021 797 6967<\\/strong><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5be6fab4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"3063bd06\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c3001a2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"6fd57134\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1551d34d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"1f4feb11\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"5f5050c9\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"51ed636\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3783,390,'_yoast_wpseo_content_score','60'),(3784,390,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3830,395,'_edit_lock','1662991123:1'),(3831,395,'_elementor_edit_mode','builder'),(3832,395,'_elementor_template_type','wp-page'),(3833,395,'_elementor_version','3.4.4'),(3834,395,'_elementor_pro_version','3.4.1'),(3835,395,'_wp_page_template','elementor_canvas'),(3836,395,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3837,395,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consult Andy Blecher in Plumstead or Sea Point\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23d3dec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3838,395,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3864,395,'_yoast_wpseo_content_score','60'),(3944,395,'_yoast_wpseo_focuskw','contact andy blecher'),(3945,395,'_yoast_wpseo_linkdex','47'),(3992,411,'_handles','a:1:{i:0;s:18:\"elementor-post-362\";}'),(3993,411,'_handle_urls','a:1:{s:18:\"elementor-post-362\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-362.css?ver=1623147042\";}'),(3994,411,'_handle_versions','a:1:{s:18:\"elementor-post-362\";s:0:\"\";}'),(3995,411,'_extra','a:0:{}'),(3996,411,'_args','all'),(3997,411,'_type','styles'),(3998,411,'_dont_minify','a:0:{}'),(3999,411,'_dont_combine','a:0:{}'),(4000,411,'_dont_enqueue','a:0:{}'),(4001,411,'_defer','a:0:{}'),(4002,411,'_inline','a:0:{}'),(4003,411,'_handle_dependencies','a:1:{s:18:\"elementor-post-362\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(4004,411,'_handle_original_sizes','a:1:{s:18:\"elementor-post-362\";s:3:\"0.7\";}'),(4005,411,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-362\";s:3:\"0.7\";}'),(4006,411,'_hash','c529a9de015d27e67fb82e2fe0814392'),(4007,411,'_file_id','411'),(4008,411,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/c529a9de015d27e67fb82e2fe0814392.css'),(4009,411,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/c529a9de015d27e67fb82e2fe0814392.css'),(4010,411,'_expires','1628420233'),(4056,417,'_edit_lock','1626268284:1'),(4057,417,'_edit_last','1'),(4058,417,'_yoast_wpseo_estimated-reading-time-minutes','2'),(4059,417,'_elementor_edit_mode','builder'),(4060,417,'_elementor_template_type','wp-page'),(4061,417,'_elementor_version','3.3.0'),(4062,417,'_elementor_pro_version','3.3.2'),(4081,417,'_wp_page_template','elementor_canvas'),(4082,417,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(4083,417,'_elementor_data','[{\"id\":\"6aae3b53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e1b7b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c971d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49b686c3\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cac7751\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43d8e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"860eca1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interesting podiatry articles\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d5550\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"99d88ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d6ddd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Laser treatment for nail fungus<\\/h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.<\\/p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.<\\/p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a9d076\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/07\\/Laser-treatment-for-nail-fungus.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6506cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fc04931\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Diabetes and the Foot<\\/h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.<\\/p><p>Diabetes and the foot.pdf<\\/p><p>Adobe Acrobat Document [88.8 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d5e3726\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Diabetes-and-the-foot-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"a37e84b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7c8ff3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Total Contact Cast<\\/h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf<\\/p><p>Adobe Acrobat Document [103.5 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9233358\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Total-Contact-Cast-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26310dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e2bc3ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Constantiaberg Hospital Diabetic Education Forum<\\/h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.<\\/p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2446aff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d915fe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"70e45647\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c75c8e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"68a1af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7ea4cc94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4d00f28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"63706aef\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"34af2a9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(4093,417,'_yoast_wpseo_content_score','60'),(4133,426,'_menu_item_type','post_type'),(4134,426,'_menu_item_menu_item_parent','0'),(4135,426,'_menu_item_object_id','395'),(4136,426,'_menu_item_object','page'),(4137,426,'_menu_item_target',''),(4138,426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4139,426,'_menu_item_xfn',''),(4140,426,'_menu_item_url',''),(4142,427,'_menu_item_type','post_type'),(4143,427,'_menu_item_menu_item_parent','433'),(4144,427,'_menu_item_object_id','338'),(4145,427,'_menu_item_object','page'),(4146,427,'_menu_item_target',''),(4147,427,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4148,427,'_menu_item_xfn',''),(4149,427,'_menu_item_url',''),(4151,428,'_menu_item_type','post_type'),(4152,428,'_menu_item_menu_item_parent','0'),(4153,428,'_menu_item_object_id','271'),(4154,428,'_menu_item_object','page'),(4155,428,'_menu_item_target',''),(4156,428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4157,428,'_menu_item_xfn',''),(4158,428,'_menu_item_url',''),(4160,429,'_menu_item_type','post_type'),(4161,429,'_menu_item_menu_item_parent','0'),(4162,429,'_menu_item_object_id','193'),(4163,429,'_menu_item_object','page'),(4164,429,'_menu_item_target',''),(4165,429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4166,429,'_menu_item_xfn',''),(4167,429,'_menu_item_url',''),(4169,430,'_menu_item_type','post_type'),(4170,430,'_menu_item_menu_item_parent','0'),(4171,430,'_menu_item_object_id','417'),(4172,430,'_menu_item_object','page'),(4173,430,'_menu_item_target',''),(4174,430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4175,430,'_menu_item_xfn',''),(4176,430,'_menu_item_url',''),(4178,431,'_menu_item_type','post_type'),(4179,431,'_menu_item_menu_item_parent','0'),(4180,431,'_menu_item_object_id','69'),(4181,431,'_menu_item_object','page'),(4182,431,'_menu_item_target',''),(4183,431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4184,431,'_menu_item_xfn',''),(4185,431,'_menu_item_url',''),(4187,432,'_menu_item_type','post_type'),(4188,432,'_menu_item_menu_item_parent','433'),(4189,432,'_menu_item_object_id','372'),(4190,432,'_menu_item_object','page'),(4191,432,'_menu_item_target',''),(4192,432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4193,432,'_menu_item_xfn',''),(4194,432,'_menu_item_url',''),(4196,433,'_menu_item_type','post_type'),(4197,433,'_menu_item_menu_item_parent','0'),(4198,433,'_menu_item_object_id','311'),(4199,433,'_menu_item_object','page'),(4200,433,'_menu_item_target',''),(4201,433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4202,433,'_menu_item_xfn',''),(4203,433,'_menu_item_url',''),(4205,434,'_menu_item_type','post_type'),(4206,434,'_menu_item_menu_item_parent','433'),(4207,434,'_menu_item_object_id','362'),(4208,434,'_menu_item_object','page'),(4209,434,'_menu_item_target',''),(4210,434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4211,434,'_menu_item_xfn',''),(4212,434,'_menu_item_url',''),(4214,435,'_menu_item_type','post_type'),(4215,435,'_menu_item_menu_item_parent','433'),(4216,435,'_menu_item_object_id','390'),(4217,435,'_menu_item_object','page'),(4218,435,'_menu_item_target',''),(4219,435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4220,435,'_menu_item_xfn',''),(4221,435,'_menu_item_url',''),(4703,87,'_wp_old_slug','andy-blecher-podiatrist'),(4739,480,'_elementor_edit_mode','builder'),(4740,480,'_elementor_template_type','section'),(4741,480,'_elementor_version','3.2.4'),(4742,480,'_elementor_pro_version','3.2.2'),(4747,480,'_wp_page_template','default'),(4748,480,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(4749,480,'_elementor_data','[{\"id\":\"7890bd0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4c157b2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c2ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"313935d0\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(4757,480,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(4793,69,'_edit_last','1'),(4794,69,'_yoast_wpseo_title','%%title%% %%page%%'),(4795,487,'_wp_attached_file','2021/06/iTour-Logo-Footer.png'),(4796,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:97;s:6:\"height\";i:45;s:4:\"file\";s:29:\"2021/06/iTour-Logo-Footer.png\";s:5:\"sizes\";a:0:{}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:{}}}'),(4797,487,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:38.58327053504145;s:5:\"bytes\";i:1024;s:11:\"size_before\";i:2654;s:10:\"size_after\";i:1630;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.58;s:5:\"bytes\";i:1024;s:11:\"size_before\";i:2654;s:10:\"size_after\";i:1630;s:4:\"time\";d:0.02;}}}'),(4798,487,'_elementor_source_image_hash','0e35673e3006b8644395feff1562ac720e6bdaa0'),(4825,491,'_elementor_edit_mode','builder'),(4826,491,'_elementor_template_type','section'),(4827,491,'_elementor_version','3.2.4'),(4828,491,'_elementor_pro_version','3.2.2'),(4833,491,'_wp_page_template','default'),(4834,491,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(4835,491,'_elementor_data','[{\"id\":\"29d51b56\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"2b507c90\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b5792a9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"47bd32d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6cf2bdaa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"1a549861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"669c228f\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"bb85363\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(4843,491,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:10:\"image_size\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(4939,395,'_yoast_wpseo_title','Contact %%sitename%%'),(5215,417,'_yoast_wpseo_focuskw','podiatry articles'),(5216,417,'_yoast_wpseo_title','Interesting podiatry articles - Andy Blecher Podiatrist'),(5217,417,'_yoast_wpseo_linkdex','44'),(5253,417,'_yoast_wpseo_metadesc','Thought-provoking articles on laser fungal treatment and the handling of diabetic conditions.'),(5304,547,'_wp_attached_file','2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf'),(5305,548,'_wp_attached_file','2021/06/Total-Contact-Cast-1.pdf'),(5306,549,'_wp_attached_file','2021/06/Diabetes-and-the-foot-1.pdf'),(5460,271,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:4;s:10:\"image_size\";i:3;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}}'),(5755,372,'_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:8:\"settings\";a:2:{s:7:\"gallery\";i:1;s:9:\"galleries\";i:1;}}s:5:\"style\";a:1:{s:11:\"image_style\";a:2:{s:18:\"image_border_width\";i:1;s:19:\"image_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}}'),(5757,372,'_oembed_fc9718b61f078a6dd29e0d9b944e1b80','<iframe title=\"Vionic with Orthaheel Technology Natural Relief\" width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/M07D8QOwbkA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5758,372,'_oembed_time_fc9718b61f078a6dd29e0d9b944e1b80','1624477641'),(5836,362,'_elementor_controls_usage','a:8:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;}}}}s:7:\"gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:8:\"settings\";a:5:{s:7:\"gallery\";i:1;s:9:\"galleries\";i:1;s:7:\"columns\";i:1;s:3:\"gap\";i:1;s:20:\"thumbnail_image_size\";i:1;}}}}}'),(5949,390,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:4;s:10:\"image_size\";i:3;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}}'),(5950,390,'_yoast_wpseo_focuskw','vasyli medical orthotics'),(5951,390,'_yoast_wpseo_title','Vasyli medical orthotics are the latest generation - %%sitename%%'),(5952,390,'_yoast_wpseo_metadesc','Vasyli are passionate about what they do. Over 25 years of development brings you the very latest generation heat custom orthotic solutions.'),(5953,390,'_yoast_wpseo_linkdex','51'),(5974,613,'_edit_last','1'),(5975,613,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(5976,613,'_edit_lock','1623671890:1'),(5977,613,'_elementor_location','elementor_head'),(5978,613,'_elementor_priority','1'),(5979,613,'_elementor_code','<meta name=\"google-site-verification\" content=\"2UCcfDxWHGLU9ItHDgFaZvoPtp6agruv-tqLa0m3lHA\" />'),(6186,338,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:7:\"gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:8:\"settings\";a:4:{s:7:\"gallery\";i:1;s:9:\"galleries\";i:1;s:7:\"columns\";i:1;s:3:\"gap\";i:1;}}}}}'),(6272,638,'_handles','a:1:{i:0;s:16:\"elementor-post-9\";}'),(6273,638,'_handle_urls','a:1:{s:16:\"elementor-post-9\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1623909691\";}'),(6274,638,'_handle_versions','a:1:{s:16:\"elementor-post-9\";s:0:\"\";}'),(6275,638,'_extra','a:0:{}'),(6276,638,'_args','all'),(6277,638,'_type','styles'),(6278,638,'_dont_minify','a:0:{}'),(6279,638,'_dont_combine','a:1:{i:0;s:16:\"elementor-post-9\";}'),(6280,638,'_dont_enqueue','a:0:{}'),(6281,638,'_defer','a:0:{}'),(6282,638,'_inline','a:0:{}'),(6283,638,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(6284,638,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6285,638,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6286,638,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(6287,638,'_file_id','638'),(6288,638,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6289,638,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6290,638,'_expires','1629456737'),(6367,643,'_handles','a:1:{i:0;s:16:\"elementor-post-9\";}'),(6368,643,'_handle_urls','a:1:{s:16:\"elementor-post-9\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1623909691\";}'),(6369,643,'_handle_versions','a:1:{s:16:\"elementor-post-9\";s:0:\"\";}'),(6370,643,'_extra','a:0:{}'),(6371,643,'_args','all'),(6372,643,'_type','styles'),(6373,643,'_dont_minify','a:0:{}'),(6374,643,'_dont_combine','a:1:{i:0;s:16:\"elementor-post-9\";}'),(6375,643,'_dont_enqueue','a:0:{}'),(6376,643,'_defer','a:0:{}'),(6377,643,'_inline','a:0:{}'),(6378,643,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(6379,643,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6380,643,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6381,643,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(6382,643,'_file_id','643'),(6383,643,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6384,643,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6385,643,'_expires','1629456760'),(6388,644,'_handles','a:1:{i:0;s:16:\"elementor-post-9\";}'),(6389,644,'_handle_urls','a:1:{s:16:\"elementor-post-9\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1624272793\";}'),(6390,644,'_handle_versions','a:1:{s:16:\"elementor-post-9\";s:0:\"\";}'),(6391,644,'_extra','a:0:{}'),(6392,644,'_args','all'),(6393,644,'_type','styles'),(6394,644,'_dont_minify','a:0:{}'),(6395,644,'_dont_combine','a:1:{i:0;s:16:\"elementor-post-9\";}'),(6396,644,'_dont_enqueue','a:0:{}'),(6397,644,'_defer','a:0:{}'),(6398,644,'_inline','a:0:{}'),(6399,644,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(6400,644,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6401,644,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6402,644,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(6403,644,'_file_id','644'),(6404,644,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6405,644,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6406,644,'_expires','1629456796'),(6407,645,'_handles','a:1:{i:0;s:16:\"elementor-global\";}'),(6408,645,'_handle_urls','a:1:{s:16:\"elementor-global\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/global.css?ver=1624272794\";}'),(6409,645,'_handle_versions','a:1:{s:16:\"elementor-global\";s:0:\"\";}'),(6410,645,'_extra','a:0:{}'),(6411,645,'_args','all'),(6412,645,'_type','styles'),(6413,645,'_dont_minify','a:0:{}'),(6414,645,'_dont_combine','a:1:{i:0;s:16:\"elementor-global\";}'),(6415,645,'_dont_enqueue','a:0:{}'),(6416,645,'_defer','a:0:{}'),(6417,645,'_inline','a:0:{}'),(6418,645,'_handle_dependencies','a:1:{s:16:\"elementor-global\";a:0:{}}'),(6419,645,'_handle_original_sizes','a:1:{s:16:\"elementor-global\";s:4:\"68.0\";}'),(6420,645,'_handle_compressed_sizes','a:1:{s:16:\"elementor-global\";s:4:\"66.9\";}'),(6421,645,'_hash','250c424a213e8b24a60bd1c99d3b9510'),(6422,645,'_file_id','645'),(6423,645,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/250c424a213e8b24a60bd1c99d3b9510.css'),(6424,645,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/250c424a213e8b24a60bd1c99d3b9510.css'),(6425,645,'_expires','1629456798'),(6512,650,'_inline','a:0:{}'),(6513,650,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(6514,650,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6515,650,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(6516,650,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(6517,650,'_file_id','650'),(6518,650,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6519,650,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(6520,650,'_expires','1629456838'),(6540,69,'_wds_opengraph','a:1:{s:6:\"images\";a:1:{i:0;i:16;}}'),(6541,69,'_wds_twitter','a:1:{s:6:\"images\";a:1:{i:0;i:16;}}'),(6542,69,'_wds_focus-keywords','Andy Blecher podiatrist'),(6543,69,'_wds_title','%%title%% %%page%%'),(6544,69,'_wds_metadesc','Andy Blecher podiatrist can help you to keep your feet in a fit state to carry out the function they were designed for. She specialises in diabetic foot care, as well as treating fungal toenail infections by laser.'),(6545,69,'_wds_meta-robots-adv',','),(6548,193,'_wds_opengraph','a:3:{s:5:\"title\";s:59:\"Andy Blecher is a fully qualified and registered podiatrist\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:2:\"24\";}}'),(6549,193,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6550,193,'_wds_focus-keywords','registered podiatrist'),(6551,193,'_wds_title','Registered podiatrist Andy Blecher specialises in foot care for children'),(6552,193,'_wds_metadesc','Andy Blecher is a fully qualified and registered podiatrist in private practice in both Plumstead and Sea Point, specialising in foot care.'),(6553,193,'_wds_meta-robots-adv',''),(6554,193,'_wds_meta-robots-nofollow',''),(6555,193,'_wds_canonical',''),(6556,271,'_wds_opengraph','a:3:{s:5:\"title\";s:38:\"Diabetic foot assessment and treatment\";s:11:\"description\";s:129:\"Diabetic foot assessment and treatment, including the gold standard treatment of diabetic foot ulcers by Total Contact Cast (TCC)\";s:6:\"images\";a:1:{i:0;s:2:\"16\";}}'),(6557,271,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6558,271,'_wds_focus-keywords','diabetic foot'),(6559,271,'_wds_title','Diabetic foot assessment and treatment - %%sitename%%'),(6560,271,'_wds_metadesc','Diabetic foot assessment and treatment, including the gold standard treatment of diabetic foot ulcers by Total Contact Cast (TCC)'),(6561,271,'_wds_meta-robots-adv',''),(6562,271,'_wds_meta-robots-nofollow',''),(6563,271,'_wds_canonical',''),(6564,311,'_wds_opengraph','a:3:{s:5:\"title\";s:67:\"Andy Blecher offers a full range of medical footwear and orthotics.\";s:11:\"description\";s:78:\"Andy Blecher offers a full range of medical and health footwear and orthotics.\";s:6:\"images\";a:1:{i:0;s:2:\"49\";}}'),(6565,311,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6566,311,'_wds_focus-keywords','medical footwear'),(6567,311,'_wds_title','Full range of medical footwear and orthotics - Andy Blecher Podiatrist.'),(6568,311,'_wds_metadesc','Andy Blecher offers a full range of medical footwear, health footwear and orthotics, all internationally respected brands.'),(6569,311,'_wds_meta-robots-adv',''),(6570,311,'_wds_meta-robots-nofollow',''),(6571,311,'_wds_canonical',''),(6572,338,'_wds_opengraph','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6573,338,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6574,338,'_wds_focus-keywords','Dr Comfort diabetic footwear'),(6575,338,'_wds_title',''),(6576,338,'_wds_metadesc','Prescription diabetic footwear can help you to prevent more serious foot health complications that can arise as a result of diabetes.'),(6577,338,'_wds_meta-robots-adv',''),(6578,338,'_wds_meta-robots-nofollow',''),(6579,338,'_wds_canonical',''),(6580,362,'_wds_opengraph','a:3:{s:5:\"title\";s:64:\"Revere sandals provide all-day comfort and support for your feet\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6581,362,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6582,362,'_wds_focus-keywords','revere comfort footwear'),(6583,362,'_wds_title','Revere comfort footwear provides all-day support for your tired aching feet'),(6584,362,'_wds_metadesc','REVERE comfort sandals provide all-day comfort and support by enhancing foot health for those with heel pain or tired aching feet.'),(6585,362,'_wds_meta-robots-adv',''),(6586,362,'_wds_meta-robots-nofollow',''),(6587,362,'_wds_canonical',''),(6588,372,'_wds_opengraph','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6589,372,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6590,372,'_wds_focus-keywords','vionic ladies orthotic sandals'),(6591,372,'_wds_title','Vionic ladies orthotic sandals help you to reduce common foot pains'),(6592,372,'_wds_metadesc','Vionic ladies orthotic sandal breakthrough technology helps to reduce common foot pains associated with over-pronation and plantar fasciitis.'),(6593,372,'_wds_meta-robots-adv',''),(6594,372,'_wds_meta-robots-nofollow',''),(6595,372,'_wds_canonical',''),(6596,390,'_wds_opengraph','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6597,390,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6598,390,'_wds_focus-keywords','vasyli medical orthotics'),(6599,390,'_wds_title','Vasyli medical orthotics are the latest generation - %%sitename%%'),(6600,390,'_wds_metadesc','Vasyli are passionate about what they do. Over 25 years of development brings you the very latest generation heat custom orthotic solutions.'),(6601,390,'_wds_meta-robots-adv',''),(6602,390,'_wds_meta-robots-nofollow',''),(6603,390,'_wds_canonical',''),(6604,395,'_wds_opengraph','a:1:{s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6605,395,'_wds_twitter','a:1:{s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6606,395,'_wds_focus-keywords','consult andy blecher'),(6607,395,'_wds_title','Consult Andy Blecher podiatrist in Plumstead or Sea Point'),(6609,395,'_wds_meta-robots-adv',','),(6612,417,'_wds_opengraph','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6613,417,'_wds_twitter','a:3:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"images\";a:1:{i:0;s:0:\"\";}}'),(6614,417,'_wds_focus-keywords','podiatry articles'),(6615,417,'_wds_title','Interesting podiatry articles - Andy Blecher Podiatrist'),(6616,417,'_wds_metadesc','Thought-provoking articles on laser fungal treatment and the handling of diabetic conditions.'),(6617,417,'_wds_meta-robots-adv',''),(6618,417,'_wds_meta-robots-nofollow',''),(6619,417,'_wds_canonical',''),(6734,69,'_wds_analysis','a:3:{s:6:\"errors\";a:1:{s:25:\"wds-checks::para_keywords\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";}s:10:\"percentage\";i:93;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:99:\"Your SEO title is 61 characters which is between the recommended best practice of 50-65 characters.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:31:\"Your SEO title is a good length\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"Your SEO description is a good length. Having an SEO description that is either too long or too short can harm your chances of ranking highly for this article.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:38:\"Your meta description is a good length\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:252:\"Alternative attribute text for images help search engines correctly index images and aid visually impaired readers. The text is also used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:81:\"A good balance of images contain the focus keyword(s) in their alt attribute text\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:74:\"Your content is longer than the recommend minimum of 300 words, excellent!\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 504 words which is more than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:199:\"Your keyword density is 1.26% which is within the recommended 1-3%, nice work! This means your content has a better chance of ranking highly for your chosen focus keywords, without appearing as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:41:\"Your keyword density is between 1% and 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 44 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 42 internal and 2 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:169:\"It\'s good practice to include your focus keywords in the first paragraph of your content so that search engines and visitors can quickly scope the topic of your article.\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(6735,658,'_handles','a:2:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";}'),(6736,658,'_handle_urls','a:2:{s:11:\"jquery-core\";s:36:\"/wp-includes/js/jquery/jquery.min.js\";s:14:\"jquery-migrate\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";}'),(6737,69,'_wds_readability','a:4:{s:5:\"score\";d:34.88557142857144;s:9:\"raw_score\";d:34.88557142857144;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(6738,658,'_handle_versions','a:2:{s:11:\"jquery-core\";s:5:\"3.5.1\";s:14:\"jquery-migrate\";s:0:\"\";}'),(6739,658,'_extra','a:0:{}'),(6740,658,'_args',NULL),(6741,658,'_type','scripts'),(6742,658,'_dont_minify','a:2:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";}'),(6743,658,'_dont_combine','a:0:{}'),(6744,658,'_dont_enqueue','a:0:{}'),(6745,658,'_defer','a:0:{}'),(6746,658,'_inline','a:0:{}'),(6747,658,'_handle_dependencies','a:2:{s:11:\"jquery-core\";a:0:{}s:14:\"jquery-migrate\";a:0:{}}'),(6748,658,'_handle_original_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(6749,658,'_handle_compressed_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(6750,658,'_hash','22f99e0cc2b06e7c2e07280f15d555a4'),(6751,658,'_file_id','658'),(6752,658,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/22f99e0cc2b06e7c2e07280f15d555a4.js'),(6753,658,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/22f99e0cc2b06e7c2e07280f15d555a4.js'),(6754,658,'_expires','1629456997'),(6789,660,'_file_id','660'),(6790,660,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/478e533d4c89ae16b48c1a7a32cb5ea3.js'),(6791,660,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/478e533d4c89ae16b48c1a7a32cb5ea3.js'),(6792,660,'_expires','1629457003'),(6851,664,'_handle_urls','a:2:{s:11:\"jquery-core\";s:36:\"/wp-includes/js/jquery/jquery.min.js\";s:14:\"jquery-migrate\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";}'),(6852,664,'_handle_versions','a:2:{s:11:\"jquery-core\";s:5:\"3.5.1\";s:14:\"jquery-migrate\";s:0:\"\";}'),(6853,664,'_extra','a:0:{}'),(6854,664,'_args',NULL),(6855,664,'_type','scripts'),(6856,664,'_dont_minify','a:2:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";}'),(6857,664,'_dont_combine','a:0:{}'),(6858,664,'_dont_enqueue','a:0:{}'),(6859,664,'_defer','a:0:{}'),(6860,664,'_inline','a:0:{}'),(6861,664,'_handle_dependencies','a:2:{s:11:\"jquery-core\";a:0:{}s:14:\"jquery-migrate\";a:0:{}}'),(6862,664,'_handle_original_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(6863,664,'_handle_compressed_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(6864,664,'_hash','22f99e0cc2b06e7c2e07280f15d555a4'),(6865,664,'_file_id','664'),(6866,664,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/22f99e0cc2b06e7c2e07280f15d555a4.js'),(6867,664,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/22f99e0cc2b06e7c2e07280f15d555a4.js'),(6868,664,'_expires','1629457066'),(6888,666,'_handles','a:2:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";}'),(6889,666,'_handle_urls','a:2:{s:11:\"jquery-core\";s:36:\"/wp-includes/js/jquery/jquery.min.js\";s:14:\"jquery-migrate\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";}'),(6890,666,'_handle_versions','a:2:{s:11:\"jquery-core\";s:5:\"3.5.1\";s:14:\"jquery-migrate\";s:0:\"\";}'),(6891,666,'_extra','a:0:{}'),(6892,666,'_args',NULL),(6893,666,'_type','scripts'),(6894,666,'_dont_minify','a:2:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";}'),(6895,666,'_dont_combine','a:0:{}'),(6896,666,'_dont_enqueue','a:0:{}'),(6897,666,'_defer','a:0:{}'),(6898,666,'_inline','a:0:{}'),(6899,666,'_handle_dependencies','a:2:{s:11:\"jquery-core\";a:0:{}s:14:\"jquery-migrate\";a:0:{}}'),(6900,666,'_handle_original_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(6901,666,'_handle_compressed_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(6902,666,'_hash','22f99e0cc2b06e7c2e07280f15d555a4'),(6903,666,'_file_id','666'),(6904,666,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/22f99e0cc2b06e7c2e07280f15d555a4.js'),(6905,666,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/22f99e0cc2b06e7c2e07280f15d555a4.js'),(6906,666,'_expires','1629457081'),(6935,69,'_wds_meta-robots-nofollow',''),(6936,69,'_wds_meta-robots-noindex',''),(7172,372,'_wds_post_media_schema_cache','a:1:{s:5:\"video\";a:1:{s:32:\"ce17cbb9ef3b6d2c3329834f728c90d2\";a:14:{s:5:\"title\";s:47:\"Vionic with Orthaheel Technology Natural Relief\";s:11:\"author_name\";s:11:\"footwearetc\";s:10:\"author_url\";s:40:\"https://www.youtube.com/user/footwearetc\";s:4:\"type\";s:5:\"video\";s:6:\"height\";i:450;s:5:\"width\";i:800;s:7:\"version\";s:3:\"1.0\";s:13:\"provider_name\";s:7:\"YouTube\";s:12:\"provider_url\";s:24:\"https://www.youtube.com/\";s:16:\"thumbnail_height\";i:360;s:15:\"thumbnail_width\";i:480;s:13:\"thumbnail_url\";s:48:\"https://i.ytimg.com/vi/M07D8QOwbkA/hqdefault.jpg\";s:4:\"html\";s:234:\"<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/M07D8QOwbkA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\";s:3:\"url\";s:28:\"https://youtu.be/M07D8QOwbkA\";}}}'),(7253,685,'_handle_versions','a:1:{s:16:\"elementor-post-9\";s:0:\"\";}'),(7254,685,'_extra','a:0:{}'),(7255,685,'_args','all'),(7256,685,'_type','styles'),(7257,685,'_dont_minify','a:0:{}'),(7258,685,'_dont_combine','a:1:{i:0;s:16:\"elementor-post-9\";}'),(7259,685,'_dont_enqueue','a:0:{}'),(7260,685,'_defer','a:0:{}'),(7261,685,'_inline','a:0:{}'),(7262,685,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(7263,685,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(7264,685,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(7265,685,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(7266,685,'_file_id','685'),(7267,685,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(7268,685,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(7269,685,'_expires','1630639377'),(7450,696,'_handle_urls','a:1:{s:16:\"elementor-post-9\";s:86:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-9.css?ver=1626265344\";}'),(7451,696,'_handle_versions','a:1:{s:16:\"elementor-post-9\";s:0:\"\";}'),(7452,696,'_extra','a:0:{}'),(7453,696,'_args','all'),(7454,696,'_type','styles'),(7455,696,'_dont_minify','a:0:{}'),(7456,696,'_dont_combine','a:1:{i:0;s:16:\"elementor-post-9\";}'),(7457,696,'_dont_enqueue','a:0:{}'),(7458,696,'_defer','a:0:{}'),(7459,696,'_inline','a:0:{}'),(7460,696,'_handle_dependencies','a:1:{s:16:\"elementor-post-9\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(7461,696,'_handle_original_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(7462,696,'_handle_compressed_sizes','a:1:{s:16:\"elementor-post-9\";s:3:\"1.1\";}'),(7463,696,'_hash','6c2bbc9bdaea193ba26b3ba5532e557b'),(7464,696,'_file_id','696'),(7465,696,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(7466,696,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/6c2bbc9bdaea193ba26b3ba5532e557b.css'),(7467,696,'_expires','1631449412'),(7830,716,'_elementor_edit_mode','builder'),(7831,716,'_elementor_template_type','wp-page'),(7832,716,'_elementor_version','3.2.4'),(7833,716,'_elementor_pro_version','3.2.2'),(7834,716,'_wp_page_template','elementor_canvas'),(7835,716,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(7836,716,'_elementor_data','[{\"id\":\"6aae3b53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e1b7b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c971d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49b686c3\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cac7751\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43d8e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"860eca1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interesting podiatry articles\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d5550\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"99d88ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d6ddd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Laser treatment for nail fungus<\\/h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.<\\/p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.<\\/p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a9d076\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Laser-treatment-for-nail-fungus.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6506cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fc04931\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Diabetes and the Foot<\\/h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.<\\/p><p>Diabetes and the foot.pdf<\\/p><p>Adobe Acrobat Document [88.8 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d5e3726\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Diabetes-and-the-foot-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"a37e84b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7c8ff3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Total Contact Cast<\\/h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf<\\/p><p>Adobe Acrobat Document [103.5 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9233358\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Total-Contact-Cast-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26310dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e2bc3ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Constantiaberg Hospital Diabetic Education Forum<\\/h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.<\\/p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2446aff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d915fe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"70e45647\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c75c8e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"68a1af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7ea4cc94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4d00f28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"63706aef\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"34af2a9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(7838,717,'_elementor_edit_mode','builder'),(7839,717,'_elementor_template_type','wp-page'),(7840,717,'_elementor_version','3.2.4'),(7841,717,'_elementor_pro_version','3.2.2'),(7842,717,'_wp_page_template','elementor_canvas'),(7843,717,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(7844,717,'_elementor_data','[{\"id\":\"6aae3b53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e1b7b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c971d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49b686c3\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cac7751\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43d8e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"860eca1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interesting podiatry articles\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d5550\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"99d88ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d6ddd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Laser treatment for nail fungus<\\/h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.<\\/p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.<\\/p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a9d076\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Laser-treatment-for-nail-fungus.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6506cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fc04931\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Diabetes and the Foot<\\/h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.<\\/p><p>Diabetes and the foot.pdf<\\/p><p>Adobe Acrobat Document [88.8 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d5e3726\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Diabetes-and-the-foot-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"a37e84b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7c8ff3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Total Contact Cast<\\/h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf<\\/p><p>Adobe Acrobat Document [103.5 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9233358\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Total-Contact-Cast-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26310dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e2bc3ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Constantiaberg Hospital Diabetic Education Forum<\\/h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.<\\/p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2446aff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d915fe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"70e45647\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c75c8e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"68a1af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7ea4cc94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4d00f28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"63706aef\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"34af2a9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(7846,718,'_elementor_edit_mode','builder'),(7847,718,'_elementor_template_type','wp-page'),(7848,718,'_elementor_version','3.2.4'),(7849,718,'_elementor_pro_version','3.2.2'),(7850,718,'_wp_page_template','elementor_canvas'),(7851,718,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(7852,718,'_elementor_data','[{\"id\":\"6aae3b53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e1b7b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c971d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49b686c3\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cac7751\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43d8e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"860eca1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interesting podiatry articles\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d5550\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"99d88ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d6ddd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Laser treatment for nail fungus<\\/h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.<\\/p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.<\\/p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a9d076\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Laser-treatment-for-nail-fungus.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6506cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fc04931\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Diabetes and the Foot<\\/h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.<\\/p><p>Diabetes and the foot.pdf<\\/p><p>Adobe Acrobat Document [88.8 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d5e3726\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Diabetes-and-the-foot-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"a37e84b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7c8ff3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Total Contact Cast<\\/h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf<\\/p><p>Adobe Acrobat Document [103.5 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9233358\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Total-Contact-Cast-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26310dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e2bc3ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Constantiaberg Hospital Diabetic Education Forum<\\/h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.<\\/p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2446aff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d915fe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"70e45647\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c75c8e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"68a1af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7ea4cc94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4d00f28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"63706aef\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"34af2a9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(7854,417,'_elementor_page_assets','a:0:{}'),(7914,417,'_wds_analysis','a:3:{s:6:\"errors\";a:4:{s:27:\"wds-checks::metadesc_length\";s:49:\"Your meta description is less than 135 characters\";s:28:\"wds-checks::imgalts_keywords\";s:57:\"None of your image alt texts contain the focus keyword(s)\";s:26:\"wds-checks::content_length\";s:83:\"The text contains 268 words which is less than the recommended minimum of 300 words\";s:25:\"wds-checks::para_keywords\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";}s:10:\"percentage\";i:72;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:99:\"Your SEO title is 55 characters which is between the recommended best practice of 50-65 characters.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:31:\"Your SEO title is a good length\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:132:\"Your SEO description (or excerpt) is currently too short which means it has less of a chance ranking for your chosen focus keywords.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:49:\"Your meta description is less than 135 characters\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:309:\"None of the images on this page have alt text containing your focus keyword. It’s recommended practice to have your topic keywords in a few of your images to further associate the article with the topic you’re writing about. Add your keyword to one or more of your images, but be careful not to overdo it.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:57:\"None of your image alt texts contain the focus keyword(s)\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:138:\"The best practice minimum content length for the web is 300 words so we recommend you aim for at least this amount - the more the merrier.\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 268 words which is less than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:199:\"Your keyword density is 1.12% which is within the recommended 1-3%, nice work! This means your content has a better chance of ranking highly for your chosen focus keywords, without appearing as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:41:\"Your keyword density is between 1% and 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 45 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 45 internal and 0 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:169:\"It\'s good practice to include your focus keywords in the first paragraph of your content so that search engines and visitors can quickly scope the topic of your article.\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(7915,417,'_wds_readability','a:4:{s:5:\"score\";d:19.371063432835854;s:9:\"raw_score\";d:19.371063432835854;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(7946,723,'_defer','a:0:{}'),(7947,723,'_inline','a:0:{}'),(7948,723,'_handle_dependencies','a:1:{s:17:\"elementor-post-11\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(7949,723,'_handle_original_sizes','a:1:{s:17:\"elementor-post-11\";s:3:\"0.5\";}'),(7950,723,'_handle_compressed_sizes','a:1:{s:17:\"elementor-post-11\";s:3:\"0.5\";}'),(7951,723,'_hash','72ec4154146623cdd9f9275097c3d6e9'),(7952,723,'_file_id','723'),(7953,723,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/72ec4154146623cdd9f9275097c3d6e9.css'),(7954,723,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/72ec4154146623cdd9f9275097c3d6e9.css'),(7955,723,'_expires','1631450865'),(7958,395,'_wds_analysis','a:3:{s:6:\"errors\";a:2:{s:26:\"wds-checks::content_length\";s:83:\"The text contains 172 words which is less than the recommended minimum of 300 words\";s:27:\"wds-checks::keyword_density\";s:39:\"Your keyword density is greater than 3%\";}s:10:\"percentage\";i:86;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:99:\"Your SEO title is 57 characters which is between the recommended best practice of 50-65 characters.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:31:\"Your SEO title is a good length\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"Your SEO description is a good length. Having an SEO description that is either too long or too short can harm your chances of ranking highly for this article.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:38:\"Your meta description is a good length\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:252:\"Alternative attribute text for images help search engines correctly index images and aid visually impaired readers. The text is also used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:81:\"A good balance of images contain the focus keyword(s) in their alt attribute text\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:138:\"The best practice minimum content length for the web is 300 words so we recommend you aim for at least this amount - the more the merrier.\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 172 words which is less than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:202:\"Currently your keyword density is 3.1% which is greater than the recommended 1-3%. If your content is littered with too many focus keywords, search engines can penalize your content and mark it as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:39:\"Your keyword density is greater than 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 42 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 41 internal and 1 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:171:\"You\'ve included your focus keywords in the first paragraph of your content, which will help search engines and visitors quickly scope the topic of your article. Well done!\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:64:\"The focus keyword appears in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 2 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 2 subheadings\";}}}'),(7970,395,'_wds_readability','a:4:{s:5:\"score\";i:0;s:9:\"raw_score\";d:-4.0425581395348615;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(8209,738,'_wp_attached_file','2021/07/Laser-treatment-for-nail-fungus.pdf'),(8270,745,'_wp_attached_file','2021/07/Neo-Laser-treatment-for-nail-fungus.pdf'),(8276,338,'_wds_analysis','a:3:{s:6:\"errors\";a:4:{s:27:\"wds-checks::metadesc_length\";s:49:\"Your meta description is less than 135 characters\";s:28:\"wds-checks::imgalts_keywords\";s:57:\"None of your image alt texts contain the focus keyword(s)\";s:26:\"wds-checks::content_length\";s:83:\"The text contains 260 words which is less than the recommended minimum of 300 words\";s:27:\"wds-checks::keyword_density\";s:39:\"Your keyword density is greater than 3%\";}s:10:\"percentage\";i:72;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:99:\"Your SEO title is 54 characters which is between the recommended best practice of 50-65 characters.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:31:\"Your SEO title is a good length\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:132:\"Your SEO description (or excerpt) is currently too short which means it has less of a chance ranking for your chosen focus keywords.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:49:\"Your meta description is less than 135 characters\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:309:\"None of the images on this page have alt text containing your focus keyword. It’s recommended practice to have your topic keywords in a few of your images to further associate the article with the topic you’re writing about. Add your keyword to one or more of your images, but be careful not to overdo it.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:57:\"None of your image alt texts contain the focus keyword(s)\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:138:\"The best practice minimum content length for the web is 300 words so we recommend you aim for at least this amount - the more the merrier.\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 260 words which is less than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:203:\"Currently your keyword density is 5.29% which is greater than the recommended 1-3%. If your content is littered with too many focus keywords, search engines can penalize your content and mark it as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:39:\"Your keyword density is greater than 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 47 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 47 internal and 0 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:171:\"You\'ve included your focus keywords in the first paragraph of your content, which will help search engines and visitors quickly scope the topic of your article. Well done!\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:64:\"The focus keyword appears in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(8277,338,'_wds_readability','a:4:{s:5:\"score\";d:11.80596153846156;s:9:\"raw_score\";d:11.80596153846156;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(8317,271,'_wds_analysis','a:3:{s:6:\"errors\";a:2:{s:27:\"wds-checks::metadesc_length\";s:49:\"Your meta description is less than 135 characters\";s:25:\"wds-checks::para_keywords\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";}s:10:\"percentage\";i:86;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:99:\"Your SEO title is 64 characters which is between the recommended best practice of 50-65 characters.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:31:\"Your SEO title is a good length\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:132:\"Your SEO description (or excerpt) is currently too short which means it has less of a chance ranking for your chosen focus keywords.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:49:\"Your meta description is less than 135 characters\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:252:\"Alternative attribute text for images help search engines correctly index images and aid visually impaired readers. The text is also used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:81:\"A good balance of images contain the focus keyword(s) in their alt attribute text\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:74:\"Your content is longer than the recommend minimum of 300 words, excellent!\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 357 words which is more than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:199:\"Your keyword density is 2.66% which is within the recommended 1-3%, nice work! This means your content has a better chance of ranking highly for your chosen focus keywords, without appearing as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:41:\"Your keyword density is between 1% and 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 43 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 42 internal and 1 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:169:\"It\'s good practice to include your focus keywords in the first paragraph of your content so that search engines and visitors can quickly scope the topic of your article.\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(8318,271,'_wds_readability','a:4:{s:5:\"score\";d:15.448933419521694;s:9:\"raw_score\";d:15.448933419521694;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(8339,193,'_wds_analysis','a:3:{s:6:\"errors\";a:0:{}s:10:\"percentage\";i:100;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:83:\"You kept the focus keywords or key phrases of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:99:\"Your SEO title is 61 characters which is between the recommended best practice of 50-65 characters.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:31:\"Your SEO title is a good length\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"Your SEO description is a good length. Having an SEO description that is either too long or too short can harm your chances of ranking highly for this article.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:38:\"Your meta description is a good length\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:252:\"Alternative attribute text for images help search engines correctly index images and aid visually impaired readers. The text is also used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:81:\"A good balance of images contain the focus keyword(s) in their alt attribute text\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:74:\"Your content is longer than the recommend minimum of 300 words, excellent!\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 559 words which is more than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:199:\"Your keyword density is 1.34% which is within the recommended 1-3%, nice work! This means your content has a better chance of ranking highly for your chosen focus keywords, without appearing as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:41:\"Your keyword density is between 1% and 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 44 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 41 internal and 3 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:171:\"You\'ve included your focus keywords in the first paragraph of your content, which will help search engines and visitors quickly scope the topic of your article. Well done!\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:64:\"The focus keyword appears in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(8340,193,'_wds_readability','a:4:{s:5:\"score\";d:39.25954935283596;s:9:\"raw_score\";d:39.25954935283596;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(8341,753,'_elementor_edit_mode','builder'),(8342,753,'_elementor_template_type','wp-page'),(8343,753,'_elementor_version','3.3.0'),(8344,753,'_elementor_pro_version','3.3.2'),(8345,753,'_wp_page_template','elementor_canvas'),(8346,753,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(8347,753,'_elementor_data','[{\"id\":\"6aae3b53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e1b7b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c971d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49b686c3\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cac7751\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43d8e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"860eca1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interesting podiatry articles\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d5550\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"99d88ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d6ddd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Laser treatment for nail fungus<\\/h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.<\\/p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.<\\/p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a9d076\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Laser-treatment-for-nail-fungus.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6506cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fc04931\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Diabetes and the Foot<\\/h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.<\\/p><p>Diabetes and the foot.pdf<\\/p><p>Adobe Acrobat Document [88.8 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d5e3726\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Diabetes-and-the-foot-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"a37e84b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7c8ff3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Total Contact Cast<\\/h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf<\\/p><p>Adobe Acrobat Document [103.5 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9233358\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Total-Contact-Cast-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26310dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e2bc3ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Constantiaberg Hospital Diabetic Education Forum<\\/h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.<\\/p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2446aff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d915fe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"70e45647\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c75c8e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"68a1af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7ea4cc94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4d00f28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"63706aef\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"34af2a9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(8348,753,'_elementor_page_assets','a:0:{}'),(8350,754,'_elementor_edit_mode','builder'),(8351,754,'_elementor_template_type','wp-page'),(8352,754,'_elementor_version','3.3.0'),(8353,754,'_elementor_pro_version','3.3.2'),(8354,754,'_wp_page_template','elementor_canvas'),(8355,754,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(8356,754,'_elementor_data','[{\"id\":\"6aae3b53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e1b7b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c971d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49b686c3\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cac7751\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43d8e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"860eca1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interesting podiatry articles\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d5550\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"99d88ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d6ddd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Laser treatment for nail fungus<\\/h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.<\\/p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.<\\/p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a9d076\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Laser-treatment-for-nail-fungus.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6506cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fc04931\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Diabetes and the Foot<\\/h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.<\\/p><p>Diabetes and the foot.pdf<\\/p><p>Adobe Acrobat Document [88.8 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d5e3726\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Diabetes-and-the-foot-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"a37e84b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7c8ff3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Total Contact Cast<\\/h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf<\\/p><p>Adobe Acrobat Document [103.5 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9233358\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Total-Contact-Cast-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26310dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e2bc3ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Constantiaberg Hospital Diabetic Education Forum<\\/h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.<\\/p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2446aff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d915fe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"70e45647\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c75c8e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"68a1af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7ea4cc94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4d00f28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"63706aef\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"34af2a9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(8357,754,'_elementor_page_assets','a:0:{}'),(8359,755,'_elementor_edit_mode','builder'),(8360,755,'_elementor_template_type','wp-page'),(8361,755,'_elementor_version','3.3.0'),(8362,755,'_elementor_pro_version','3.3.2'),(8363,755,'_wp_page_template','elementor_canvas'),(8364,755,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(8365,755,'_elementor_data','[{\"id\":\"6aae3b53\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e1b7b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c971d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49b686c3\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cac7751\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43d8e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"860eca1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interesting podiatry articles\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d5550\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"99d88ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d6ddd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Laser treatment for nail fungus<\\/h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.<\\/p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.<\\/p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a9d076\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/07\\/Laser-treatment-for-nail-fungus.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__dynamic__\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6506cd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fc04931\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Diabetes and the Foot<\\/h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.<\\/p><p>Diabetes and the foot.pdf<\\/p><p>Adobe Acrobat Document [88.8 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d5e3726\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Diabetes-and-the-foot-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"a37e84b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7c8ff3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Total Contact Cast<\\/h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf<\\/p><p>Adobe Acrobat Document [103.5 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9233358\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Total-Contact-Cast-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26310dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e2bc3ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Constantiaberg Hospital Diabetic Education Forum<\\/h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.<\\/p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2446aff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Download\",\"background_color\":\"#61CE70\",\"button_type\":\"info\",\"__dynamic__\":[],\"link\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d915fe8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"70e45647\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3c75c8e1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"68a1af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7ea4cc94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"4d00f28e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"63706aef\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"34af2a9e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(8366,755,'_elementor_page_assets','a:0:{}'),(8368,417,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:8;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:4;s:11:\"button_type\";i:3;s:4:\"link\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:4;}}}}}'),(8746,775,'_inline','a:0:{}'),(8747,775,'_preload','a:0:{}'),(8748,775,'_async','a:0:{}'),(8749,775,'_handle_dependencies','a:2:{s:24:\"elementor-icons-shared-0\";a:0:{}s:24:\"elementor-icons-fa-solid\";a:1:{i:0;s:24:\"elementor-icons-shared-0\";}}'),(8750,775,'_handle_original_sizes','a:2:{s:24:\"elementor-icons-shared-0\";s:4:\"57.9\";s:24:\"elementor-icons-fa-solid\";s:3:\"1.1\";}'),(8751,775,'_handle_compressed_sizes','a:2:{s:24:\"elementor-icons-shared-0\";s:4:\"57.9\";s:24:\"elementor-icons-fa-solid\";s:3:\"1.1\";}'),(8752,775,'_hash','f6494100522cbe5765e1df86a86cc13c'),(8753,775,'_file_id','775'),(8754,775,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/f6494100522cbe5765e1df86a86cc13c.css'),(8755,775,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/f6494100522cbe5765e1df86a86cc13c.css'),(8756,775,'_expires','1635015784'),(8757,776,'_handles','a:4:{i:0;s:15:\"smush-lazy-load\";i:1;s:8:\"wp-embed\";i:2;s:11:\"jquery-core\";i:3;s:14:\"jquery-migrate\";}'),(8758,776,'_handle_urls','a:4:{s:15:\"smush-lazy-load\";s:94:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js\";s:8:\"wp-embed\";s:31:\"/wp-includes/js/wp-embed.min.js\";s:11:\"jquery-core\";s:36:\"/wp-includes/js/jquery/jquery.min.js\";s:14:\"jquery-migrate\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";}'),(8759,776,'_handle_versions','a:4:{s:15:\"smush-lazy-load\";s:5:\"3.8.8\";s:8:\"wp-embed\";s:0:\"\";s:11:\"jquery-core\";s:0:\"\";s:14:\"jquery-migrate\";s:0:\"\";}'),(8760,776,'_extra','a:1:{s:5:\"group\";i:1;}'),(8761,776,'_args',NULL),(8762,776,'_type','scripts'),(8763,776,'_dont_minify','a:4:{i:0;s:15:\"smush-lazy-load\";i:1;s:8:\"wp-embed\";i:2;s:11:\"jquery-core\";i:3;s:14:\"jquery-migrate\";}'),(8764,776,'_dont_combine','a:0:{}'),(8765,776,'_dont_enqueue','a:0:{}'),(8766,776,'_defer','a:0:{}'),(8767,776,'_inline','a:0:{}'),(8768,776,'_preload','a:0:{}'),(8769,776,'_async','a:0:{}'),(8770,776,'_handle_dependencies','a:4:{s:15:\"smush-lazy-load\";a:0:{}s:8:\"wp-embed\";a:0:{}s:11:\"jquery-core\";a:0:{}s:14:\"jquery-migrate\";a:0:{}}'),(8771,776,'_handle_original_sizes','a:4:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(8772,776,'_handle_compressed_sizes','a:4:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(8773,776,'_hash','813a86f180cdaff312b8f4fb290f558c'),(8774,776,'_file_id','776'),(8775,776,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/813a86f180cdaff312b8f4fb290f558c.js'),(8776,776,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/813a86f180cdaff312b8f4fb290f558c.js'),(8777,776,'_expires','1635015803'),(8828,779,'_dont_enqueue','a:0:{}'),(8829,779,'_defer','a:0:{}'),(8830,779,'_inline','a:0:{}'),(8831,779,'_preload','a:0:{}'),(8832,779,'_async','a:0:{}'),(8833,779,'_handle_dependencies','a:2:{s:15:\"smush-lazy-load\";a:0:{}s:8:\"wp-embed\";a:0:{}}'),(8834,779,'_handle_original_sizes','a:2:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";}'),(8835,779,'_handle_compressed_sizes','a:2:{s:15:\"smush-lazy-load\";s:3:\"7.9\";s:8:\"wp-embed\";s:3:\"1.4\";}'),(8836,779,'_hash','ada7027c4e62bd071861eea8cffd1507'),(8837,779,'_file_id','779'),(8838,779,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/ada7027c4e62bd071861eea8cffd1507.js'),(8839,779,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/ada7027c4e62bd071861eea8cffd1507.js'),(8840,779,'_expires','1635015862'),(8842,311,'_wds_analysis','a:3:{s:6:\"errors\";a:6:{s:24:\"wds-checks::title_length\";s:26:\"Your SEO title is too long\";s:27:\"wds-checks::metadesc_length\";s:49:\"Your meta description is less than 135 characters\";s:28:\"wds-checks::imgalts_keywords\";s:57:\"None of your image alt texts contain the focus keyword(s)\";s:26:\"wds-checks::content_length\";s:82:\"The text contains 84 words which is less than the recommended minimum of 300 words\";s:27:\"wds-checks::keyword_density\";s:39:\"Your keyword density is greater than 3%\";s:23:\"wds-checks::links_count\";s:56:\"You have 0 internal and 4 external links in your content\";}s:10:\"percentage\";i:58;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:161:\"Your SEO title is 71 characters which is greater than the recommended 65 characters. Best practice is between 50 and 65 characters, with 60 being the sweet spot.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:26:\"Your SEO title is too long\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:132:\"Your SEO description (or excerpt) is currently too short which means it has less of a chance ranking for your chosen focus keywords.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:49:\"Your meta description is less than 135 characters\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:309:\"None of the images on this page have alt text containing your focus keyword. It’s recommended practice to have your topic keywords in a few of your images to further associate the article with the topic you’re writing about. Add your keyword to one or more of your images, but be careful not to overdo it.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:57:\"None of your image alt texts contain the focus keyword(s)\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:138:\"The best practice minimum content length for the web is 300 words so we recommend you aim for at least this amount - the more the merrier.\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:82:\"The text contains 84 words which is less than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:203:\"Currently your keyword density is 4.76% which is greater than the recommended 1-3%. If your content is littered with too many focus keywords, search engines can penalize your content and mark it as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:39:\"Your keyword density is greater than 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:202:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You should consider adding at least one internal link to another related article.\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:56:\"You have 0 internal and 4 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:171:\"You\'ve included your focus keywords in the first paragraph of your content, which will help search engines and visitors quickly scope the topic of your article. Well done!\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:64:\"The focus keyword appears in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(8843,311,'_wds_readability','a:4:{s:5:\"score\";d:41.73300000000003;s:9:\"raw_score\";d:41.73300000000003;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(8928,784,'_elementor_edit_mode','builder'),(8929,784,'_elementor_template_type','wp-page'),(8932,784,'_elementor_version','3.2.4'),(8934,784,'_elementor_pro_version','3.2.2'),(8936,784,'_wp_page_template','elementor_canvas'),(8938,784,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(8940,784,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andy.blecher705@gmail.com\\\">andy.blecher705@gmail.com<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(8956,786,'_elementor_edit_mode','builder'),(8957,786,'_elementor_template_type','wp-page'),(8959,786,'_elementor_version','3.2.4'),(8961,786,'_elementor_pro_version','3.2.2'),(8963,786,'_wp_page_template','elementor_canvas'),(8965,786,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(8967,786,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andy.blecher705@gmail.com\\\">andy.blecher705@gmail.com<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(8980,787,'_hash','478e533d4c89ae16b48c1a7a32cb5ea3'),(8981,787,'_file_id','787'),(8982,787,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/478e533d4c89ae16b48c1a7a32cb5ea3.js'),(8983,788,'_elementor_edit_mode','builder'),(8984,787,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/478e533d4c89ae16b48c1a7a32cb5ea3.js'),(8985,788,'_elementor_template_type','wp-page'),(8986,788,'_elementor_version','3.2.4'),(8987,787,'_expires','1635016054'),(8988,788,'_elementor_pro_version','3.2.2'),(8989,788,'_wp_page_template','elementor_canvas'),(8990,788,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(8991,788,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(8992,395,'_elementor_page_assets','a:0:{}'),(9001,789,'_dont_combine','a:0:{}'),(9002,789,'_dont_enqueue','a:0:{}'),(9003,789,'_defer','a:0:{}'),(9004,789,'_inline','a:0:{}'),(9005,789,'_preload','a:0:{}'),(9006,789,'_async','a:0:{}'),(9007,789,'_handle_dependencies','a:3:{s:19:\"backbone-marionette\";a:1:{i:0;s:8:\"backbone\";}s:14:\"backbone-radio\";a:1:{i:0;s:8:\"backbone\";}s:24:\"elementor-common-modules\";a:0:{}}'),(9008,789,'_handle_original_sizes','a:3:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";s:24:\"elementor-common-modules\";s:5:\"103.2\";}'),(9009,789,'_handle_compressed_sizes','a:3:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";s:24:\"elementor-common-modules\";s:5:\"103.2\";}'),(9010,789,'_hash','544e12854e411f4b16af24e67a6cac9c'),(9011,789,'_file_id','789'),(9012,789,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/544e12854e411f4b16af24e67a6cac9c.js'),(9013,789,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/544e12854e411f4b16af24e67a6cac9c.js'),(9014,789,'_expires','1635016071'),(9015,790,'_elementor_edit_mode','builder'),(9016,790,'_elementor_template_type','wp-page'),(9017,790,'_elementor_version','3.4.2'),(9018,790,'_elementor_pro_version','3.3.8'),(9019,790,'_wp_page_template','elementor_canvas'),(9020,790,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9021,790,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9022,790,'_elementor_page_assets','a:0:{}'),(9023,791,'_elementor_edit_mode','builder'),(9024,791,'_elementor_template_type','wp-page'),(9025,791,'_elementor_version','3.4.2'),(9026,791,'_elementor_pro_version','3.3.8'),(9027,791,'_wp_page_template','elementor_canvas'),(9028,791,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9029,791,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9030,791,'_elementor_page_assets','a:0:{}'),(9048,793,'_elementor_edit_mode','builder'),(9050,793,'_elementor_template_type','wp-page'),(9052,793,'_elementor_version','3.4.2'),(9054,793,'_elementor_pro_version','3.3.8'),(9056,793,'_wp_page_template','elementor_canvas'),(9057,793,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9058,793,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9059,793,'_elementor_page_assets','a:0:{}'),(9126,362,'_wds_analysis','a:3:{s:6:\"errors\";a:4:{s:24:\"wds-checks::title_length\";s:26:\"Your SEO title is too long\";s:27:\"wds-checks::metadesc_length\";s:49:\"Your meta description is less than 135 characters\";s:28:\"wds-checks::imgalts_keywords\";s:57:\"None of your image alt texts contain the focus keyword(s)\";s:27:\"wds-checks::keyword_density\";s:39:\"Your keyword density is greater than 3%\";}s:10:\"percentage\";i:72;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:161:\"Your SEO title is 75 characters which is greater than the recommended 65 characters. Best practice is between 50 and 65 characters, with 60 being the sweet spot.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:26:\"Your SEO title is too long\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:132:\"Your SEO description (or excerpt) is currently too short which means it has less of a chance ranking for your chosen focus keywords.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:49:\"Your meta description is less than 135 characters\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:309:\"None of the images on this page have alt text containing your focus keyword. It’s recommended practice to have your topic keywords in a few of your images to further associate the article with the topic you’re writing about. Add your keyword to one or more of your images, but be careful not to overdo it.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:57:\"None of your image alt texts contain the focus keyword(s)\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:74:\"Your content is longer than the recommend minimum of 300 words, excellent!\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 338 words which is more than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:203:\"Currently your keyword density is 3.75% which is greater than the recommended 1-3%. If your content is littered with too many focus keywords, search engines can penalize your content and mark it as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:39:\"Your keyword density is greater than 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 51 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 51 internal and 0 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:171:\"You\'ve included your focus keywords in the first paragraph of your content, which will help search engines and visitors quickly scope the topic of your article. Well done!\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:64:\"The focus keyword appears in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 4 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 4 subheadings\";}}}'),(9127,362,'_wds_readability','a:4:{s:5:\"score\";d:1.2681821170282888;s:9:\"raw_score\";d:1.2681821170282888;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(9129,390,'_wds_analysis','a:3:{s:6:\"errors\";a:3:{s:24:\"wds-checks::title_length\";s:26:\"Your SEO title is too long\";s:26:\"wds-checks::content_length\";s:83:\"The text contains 180 words which is less than the recommended minimum of 300 words\";s:27:\"wds-checks::keyword_density\";s:39:\"Your keyword density is greater than 3%\";}s:10:\"percentage\";i:79;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:161:\"Your SEO title is 76 characters which is greater than the recommended 65 characters. Best practice is between 50 and 65 characters, with 60 being the sweet spot.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:26:\"Your SEO title is too long\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"Your SEO description is a good length. Having an SEO description that is either too long or too short can harm your chances of ranking highly for this article.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:38:\"Your meta description is a good length\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:252:\"Alternative attribute text for images help search engines correctly index images and aid visually impaired readers. The text is also used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:81:\"A good balance of images contain the focus keyword(s) in their alt attribute text\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:138:\"The best practice minimum content length for the web is 300 words so we recommend you aim for at least this amount - the more the merrier.\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 180 words which is less than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:203:\"Currently your keyword density is 4.07% which is greater than the recommended 1-3%. If your content is littered with too many focus keywords, search engines can penalize your content and mark it as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:39:\"Your keyword density is greater than 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 42 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 41 internal and 1 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:171:\"You\'ve included your focus keywords in the first paragraph of your content, which will help search engines and visitors quickly scope the topic of your article. Well done!\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:64:\"The focus keyword appears in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(9130,390,'_wds_readability','a:4:{s:5:\"score\";d:3.9875000000000114;s:9:\"raw_score\";d:3.9875000000000114;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(9132,372,'_wds_analysis','a:3:{s:6:\"errors\";a:4:{s:24:\"wds-checks::title_length\";s:26:\"Your SEO title is too long\";s:28:\"wds-checks::imgalts_keywords\";s:57:\"None of your image alt texts contain the focus keyword(s)\";s:26:\"wds-checks::content_length\";s:83:\"The text contains 266 words which is less than the recommended minimum of 300 words\";s:27:\"wds-checks::keyword_density\";s:39:\"Your keyword density is greater than 3%\";}s:10:\"percentage\";i:72;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:91:\"Nice work, now that we know what your article is about we can be more specific in analysis.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:29:\"There are some focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:70:\"You kept the focus key phrase of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:161:\"Your SEO title is 67 characters which is greater than the recommended 65 characters. Best practice is between 50 and 65 characters, with 60 being the sweet spot.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:26:\"Your SEO title is too long\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"Your SEO description is a good length. Having an SEO description that is either too long or too short can harm your chances of ranking highly for this article.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:38:\"Your meta description is a good length\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:144:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. So far all your focus keywords are unique, way to go!\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:309:\"None of the images on this page have alt text containing your focus keyword. It’s recommended practice to have your topic keywords in a few of your images to further associate the article with the topic you’re writing about. Add your keyword to one or more of your images, but be careful not to overdo it.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:57:\"None of your image alt texts contain the focus keyword(s)\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:138:\"The best practice minimum content length for the web is 300 words so we recommend you aim for at least this amount - the more the merrier.\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:83:\"The text contains 266 words which is less than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:203:\"Currently your keyword density is 3.29% which is greater than the recommended 1-3%. If your content is littered with too many focus keywords, search engines can penalize your content and mark it as spam.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:39:\"Your keyword density is greater than 3%\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:162:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You\'ve already added 44 links, nice work!\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:57:\"You have 43 internal and 1 external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:171:\"You\'ve included your focus keywords in the first paragraph of your content, which will help search engines and visitors quickly scope the topic of your article. Well done!\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:64:\"The focus keyword appears in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:152:\"You\'ve used keywords in 1 of your subheadings which will help both the user and search engines quickly figure out what your article is about, good work!\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:45:\"Your focus keyword was found in 1 subheadings\";}}}'),(9133,372,'_wds_readability','a:4:{s:5:\"score\";d:20.68307981492194;s:9:\"raw_score\";d:20.68307981492194;s:11:\"is_readable\";b:0;s:5:\"error\";b:0;}'),(9168,798,'_handle_dependencies','a:4:{s:14:\"jquery-ui-core\";a:1:{i:0;s:6:\"jquery\";}s:15:\"jquery-ui-mouse\";a:1:{i:0;s:14:\"jquery-ui-core\";}s:19:\"jquery-ui-draggable\";a:1:{i:0;s:15:\"jquery-ui-mouse\";}s:8:\"backbone\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}}'),(9169,798,'_handle_original_sizes','a:4:{s:14:\"jquery-ui-core\";s:4:\"20.8\";s:15:\"jquery-ui-mouse\";s:3:\"3.4\";s:19:\"jquery-ui-draggable\";s:4:\"18.3\";s:8:\"backbone\";s:4:\"23.8\";}'),(9170,798,'_handle_compressed_sizes','a:4:{s:14:\"jquery-ui-core\";s:4:\"20.8\";s:15:\"jquery-ui-mouse\";s:3:\"3.4\";s:19:\"jquery-ui-draggable\";s:4:\"18.3\";s:8:\"backbone\";s:4:\"23.8\";}'),(9171,798,'_hash','478e533d4c89ae16b48c1a7a32cb5ea3'),(9172,798,'_file_id','798'),(9173,798,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/478e533d4c89ae16b48c1a7a32cb5ea3.js'),(9174,798,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/478e533d4c89ae16b48c1a7a32cb5ea3.js'),(9175,798,'_expires','1635016349'),(9176,799,'_handles','a:3:{i:0;s:19:\"backbone-marionette\";i:1;s:14:\"backbone-radio\";i:2;s:24:\"elementor-common-modules\";}'),(9177,799,'_handle_urls','a:3:{s:19:\"backbone-marionette\";s:103:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js\";s:14:\"backbone-radio\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js\";s:24:\"elementor-common-modules\";s:88:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/common-modules.min.js\";}'),(9178,799,'_handle_versions','a:3:{s:19:\"backbone-marionette\";s:8:\"2.4.5.e1\";s:14:\"backbone-radio\";s:0:\"\";s:24:\"elementor-common-modules\";s:0:\"\";}'),(9179,799,'_extra','a:1:{s:5:\"group\";i:1;}'),(9180,799,'_args',NULL),(9181,799,'_type','scripts'),(9182,799,'_dont_minify','a:3:{i:0;s:19:\"backbone-marionette\";i:1;s:14:\"backbone-radio\";i:2;s:24:\"elementor-common-modules\";}'),(9183,799,'_dont_combine','a:0:{}'),(9184,799,'_dont_enqueue','a:0:{}'),(9185,799,'_defer','a:0:{}'),(9186,799,'_inline','a:0:{}'),(9187,799,'_preload','a:0:{}'),(9188,799,'_async','a:0:{}'),(9189,799,'_handle_dependencies','a:3:{s:19:\"backbone-marionette\";a:1:{i:0;s:8:\"backbone\";}s:14:\"backbone-radio\";a:1:{i:0;s:8:\"backbone\";}s:24:\"elementor-common-modules\";a:0:{}}'),(9190,799,'_handle_original_sizes','a:3:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";s:24:\"elementor-common-modules\";s:5:\"103.2\";}'),(9191,799,'_handle_compressed_sizes','a:3:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";s:24:\"elementor-common-modules\";s:5:\"103.2\";}'),(9192,799,'_hash','544e12854e411f4b16af24e67a6cac9c'),(9193,799,'_file_id','799'),(9194,799,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/544e12854e411f4b16af24e67a6cac9c.js'),(9195,799,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/544e12854e411f4b16af24e67a6cac9c.js'),(9196,799,'_expires','1635016365'),(9817,830,'_elementor_edit_mode','builder'),(9818,830,'_elementor_template_type','wp-page'),(9819,830,'_elementor_version','3.2.4'),(9820,830,'_elementor_pro_version','3.2.2'),(9821,830,'_wp_page_template','elementor_canvas'),(9822,830,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9823,830,'_elementor_data','[{\"id\":\"3694d183\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"359a85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6488b54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f7e4fa7\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce002a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f681a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1338c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fully qualified and registered Podiatrist\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d0ad40\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"6f7eeeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.595},\"elements\":[{\"id\":\"7c75c75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11db7a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":91.07},\"elements\":[{\"id\":\"d061f2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a fully qualified and registered podiatrist.\\u00a0 She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).<\\/p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.\\u00a0\\u00a0She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.<\\/p>\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a959b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"b83934f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7baae44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Memberships\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"200\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8892d0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a member of the <strong>South African <\\/strong><strong>Podiatry Association <\\/strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\\\"http:\\/\\/www.podiatrist.co.za\\/\\\">www.podiatrist.co.za<\\/a><\\/p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)<\\/strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\\\"http:\\/\\/www.hpcsa.co.za\\/\\\">www.hpcsa.co.za<\\/a><\\/p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine <\\/strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\\\"https:\\/\\/sweetlife.org.za\\/\\\">https:\\/\\/sweetlife.org.za\\/<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a086644\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4240772\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/pasa-logo.png\",\"id\":36},\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e29e602\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Sweet-Life-logo.png\",\"id\":227},\"_margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f666be2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9aba29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7807fe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Andy\'s clients have to say\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31c18c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Read some of the good things people have to say about Andy and her professional foot care:<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fcc7cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><em>I wanted to let you know that my warts have shrunk down in size signi\\ufb01cantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.<\\/em><\\/li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.<\\/em><\\/li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.<\\/em><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6769bf40\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"3135d227\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29c7954c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"1386bac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2ce357f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"515a67c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"1a3e73a0\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3dbb950a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9824,831,'_elementor_edit_mode','builder'),(9825,831,'_elementor_template_type','wp-page'),(9826,831,'_elementor_version','3.2.4'),(9827,831,'_elementor_pro_version','3.2.2'),(9828,831,'_wp_page_template','elementor_canvas'),(9829,831,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9830,831,'_elementor_data','[{\"id\":\"3694d183\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"359a85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6488b54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f7e4fa7\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce002a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f681a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1338c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fully qualified and registered Podiatrist\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d0ad40\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"6f7eeeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.595},\"elements\":[{\"id\":\"7c75c75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11db7a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":91.07},\"elements\":[{\"id\":\"d061f2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a fully qualified and registered podiatrist.\\u00a0 She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).<\\/p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.\\u00a0\\u00a0She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.<\\/p>\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a959b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"b83934f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7baae44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Memberships\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"200\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8892d0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a member of the <strong>South African <\\/strong><strong>Podiatry Association <\\/strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\\\"http:\\/\\/www.podiatrist.co.za\\/\\\">www.podiatrist.co.za<\\/a><\\/p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)<\\/strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\\\"http:\\/\\/www.hpcsa.co.za\\/\\\">www.hpcsa.co.za<\\/a><\\/p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine <\\/strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\\\"https:\\/\\/sweetlife.org.za\\/\\\">https:\\/\\/sweetlife.org.za\\/<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a086644\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4240772\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/pasa-logo.png\",\"id\":36},\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e29e602\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Sweet-Life-logo.png\",\"id\":227},\"_margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f666be2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9aba29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7807fe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Andy\'s clients have to say\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31c18c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Read some of the good things people have to say about Andy and her professional foot care:<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fcc7cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><em>I wanted to let you know that my warts have shrunk down in size signi\\ufb01cantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.<\\/em><\\/li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.<\\/em><\\/li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.<\\/em><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6769bf40\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"3135d227\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29c7954c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"1386bac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2ce357f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"515a67c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"1a3e73a0\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3dbb950a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9831,832,'_elementor_edit_mode','builder'),(9832,832,'_elementor_template_type','wp-page'),(9833,832,'_elementor_version','3.2.4'),(9834,832,'_elementor_pro_version','3.2.2'),(9835,832,'_wp_page_template','elementor_canvas'),(9836,832,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9837,832,'_elementor_data','[{\"id\":\"3694d183\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"359a85bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6488b54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce002a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f681a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1338c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fully qualified and registered Podiatrist\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"__globals__\":{\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f7e4fa7\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d0ad40\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"6f7eeeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.595},\"elements\":[{\"id\":\"7c75c75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"_margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11db7a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":91.07},\"elements\":[{\"id\":\"d061f2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a fully qualified and registered podiatrist.\\u00a0 She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).<\\/p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.\\u00a0\\u00a0She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.<\\/p>\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a959b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"b83934f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7baae44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Memberships\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"200\",\"__globals__\":{\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8892d0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher is a member of the <strong>South African <\\/strong><strong>Podiatry Association <\\/strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\\\"http:\\/\\/www.podiatrist.co.za\\/\\\">www.podiatrist.co.za<\\/a><\\/p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)<\\/strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\\\"http:\\/\\/www.hpcsa.co.za\\/\\\">www.hpcsa.co.za<\\/a><\\/p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine <\\/strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\\\"https:\\/\\/sweetlife.org.za\\/\\\">https:\\/\\/sweetlife.org.za\\/<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a086644\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4240772\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/pasa-logo.png\",\"id\":36},\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e29e602\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Sweet-Life-logo.png\",\"id\":227},\"_margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f666be2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9aba29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7807fe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Andy\'s clients have to say\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31c18c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Read some of the good things people have to say about Andy and her professional foot care:<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fcc7cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><em>Your feet will be in good hands.<\\/em><\\/li><li><em>Andy Blecher is the most professional, clued up podiatrist. She has treated all my children over the years and we even look forward to the visits.<\\/em><\\/li><li><em>She is caring, professional and easy to talk to.\\u00a0 I would highly recommend her to anyone suffering from chronic foot pain.<\\/em><\\/li><li><em>My apprehension melted away while she was busy with my feet.\\u00a0 Great, friendly service, I\'m definitely going back.<\\/em><\\/li><li><em>Among Andy\'s specialities is her TCC (total touch cast technique) fibreglass foot and ankle casting\\u00a0 Andy has been casting my diabetic Charcot foot for more than a year now. She is very professional, caring and highly competent. I recently had to unexpectedly fly to Asia for 2 and a half weeks with my foot in a cast. On my return, my foot was still perfectly secure and supported thanks to Andy\'s wonderful care.<\\/em><\\/li><li><em>I wanted to let you know that my warts have shrunk down in size signi\\ufb01cantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.<\\/em><\\/li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.<\\/em><\\/li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.<\\/em><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6769bf40\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"3135d227\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29c7954c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"1386bac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2ce357f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"515a67c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"1a3e73a0\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"3dbb950a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9838,193,'_elementor_page_assets','a:0:{}'),(9839,193,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:5;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:9;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}}'),(9946,838,'_elementor_edit_mode','builder'),(9947,838,'_elementor_template_type','wp-page'),(9948,838,'_elementor_version','3.2.4'),(9949,838,'_elementor_pro_version','3.2.2'),(9950,838,'_wp_page_template','elementor_canvas'),(9951,838,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9952,838,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9954,839,'_elementor_edit_mode','builder'),(9955,839,'_elementor_template_type','wp-page'),(9956,839,'_elementor_version','3.2.4'),(9957,839,'_elementor_pro_version','3.2.2'),(9958,839,'_wp_page_template','elementor_canvas'),(9959,839,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9960,839,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9962,840,'_elementor_edit_mode','builder'),(9963,840,'_elementor_template_type','wp-page'),(9964,840,'_elementor_version','3.2.4'),(9965,840,'_elementor_pro_version','3.2.2'),(9966,840,'_wp_page_template','elementor_canvas'),(9967,840,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9968,840,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9970,69,'_elementor_page_assets','a:0:{}'),(9973,841,'_elementor_edit_mode','builder'),(9974,841,'_elementor_template_type','wp-page'),(9975,841,'_elementor_version','3.4.4'),(9976,841,'_elementor_pro_version','3.4.1'),(9977,841,'_wp_page_template','elementor_canvas'),(9978,841,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9979,841,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9980,841,'_elementor_page_assets','a:0:{}'),(9981,842,'_elementor_edit_mode','builder'),(9982,842,'_elementor_template_type','wp-page'),(9983,842,'_elementor_version','3.4.4'),(9984,842,'_elementor_pro_version','3.4.1'),(9985,842,'_wp_page_template','elementor_canvas'),(9986,842,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9987,842,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9988,842,'_elementor_page_assets','a:0:{}'),(9990,843,'_elementor_edit_mode','builder'),(9991,843,'_elementor_template_type','wp-page'),(9992,843,'_elementor_version','3.4.4'),(9993,843,'_elementor_pro_version','3.4.1'),(9994,843,'_wp_page_template','elementor_canvas'),(9995,843,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(9996,843,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(9997,843,'_elementor_page_assets','a:0:{}'),(9999,69,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(10001,844,'_elementor_edit_mode','builder'),(10002,844,'_elementor_template_type','wp-page'),(10003,844,'_elementor_version','3.4.2'),(10004,844,'_elementor_pro_version','3.3.8'),(10005,844,'_wp_page_template','elementor_canvas'),(10006,844,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10007,844,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10008,844,'_elementor_page_assets','a:0:{}'),(10009,845,'_elementor_edit_mode','builder'),(10010,845,'_elementor_template_type','wp-page'),(10011,845,'_elementor_version','3.4.2'),(10012,845,'_elementor_pro_version','3.3.8'),(10013,845,'_wp_page_template','elementor_canvas'),(10014,845,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10015,845,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Andy Blecher Podiatrist<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10016,845,'_elementor_page_assets','a:0:{}'),(10017,846,'_elementor_edit_mode','builder'),(10018,846,'_elementor_template_type','wp-page'),(10019,846,'_elementor_version','3.4.2'),(10020,846,'_elementor_pro_version','3.3.8'),(10021,846,'_wp_page_template','elementor_canvas'),(10022,846,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10023,846,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10024,846,'_elementor_page_assets','a:0:{}'),(10026,847,'_elementor_edit_mode','builder'),(10027,847,'_elementor_template_type','wp-page'),(10028,847,'_elementor_version','3.4.4'),(10029,847,'_elementor_pro_version','3.4.1'),(10030,847,'_wp_page_template','elementor_canvas'),(10031,847,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10032,847,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10033,847,'_elementor_page_assets','a:0:{}'),(10034,848,'_elementor_edit_mode','builder'),(10035,848,'_elementor_template_type','wp-page'),(10036,848,'_elementor_version','3.4.4'),(10037,848,'_elementor_pro_version','3.4.1'),(10038,848,'_wp_page_template','elementor_canvas'),(10039,848,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10040,848,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p>AND<\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10041,848,'_elementor_page_assets','a:0:{}'),(10042,849,'_elementor_edit_mode','builder'),(10043,849,'_elementor_template_type','wp-page'),(10044,849,'_elementor_version','3.4.4'),(10045,849,'_elementor_pro_version','3.4.1'),(10046,849,'_wp_page_template','elementor_canvas'),(10047,849,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10048,849,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10049,849,'_elementor_page_assets','a:0:{}'),(10083,852,'_elementor_edit_mode','builder'),(10084,852,'_elementor_template_type','wp-page'),(10085,852,'_elementor_version','3.4.4'),(10086,852,'_elementor_pro_version','3.4.1'),(10087,852,'_wp_page_template','elementor_canvas'),(10088,852,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10089,852,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10090,852,'_elementor_page_assets','a:0:{}'),(10092,853,'_elementor_edit_mode','builder'),(10093,853,'_elementor_template_type','wp-page'),(10094,853,'_elementor_version','3.4.4'),(10095,853,'_elementor_pro_version','3.4.1'),(10096,853,'_wp_page_template','elementor_canvas'),(10097,853,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10098,853,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10099,853,'_elementor_page_assets','a:0:{}'),(10101,854,'_elementor_edit_mode','builder'),(10102,854,'_elementor_template_type','wp-page'),(10103,854,'_elementor_version','3.4.4'),(10104,854,'_elementor_pro_version','3.4.1'),(10105,854,'_wp_page_template','elementor_canvas'),(10106,854,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10107,854,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consult Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23d3dec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10108,854,'_elementor_page_assets','a:0:{}'),(10112,855,'_elementor_edit_mode','builder'),(10113,855,'_elementor_template_type','wp-page'),(10114,855,'_elementor_version','3.4.4'),(10115,855,'_elementor_pro_version','3.4.1'),(10116,855,'_wp_page_template','elementor_canvas'),(10117,855,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10118,855,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consult Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23d3dec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10119,855,'_elementor_page_assets','a:0:{}'),(10120,855,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:2;s:4:\"zoom\";i:2;s:6:\"height\";i:2;}}}}}'),(10122,395,'_edit_last','1'),(10167,858,'_elementor_edit_mode','builder'),(10168,858,'_elementor_template_type','wp-page'),(10169,858,'_elementor_version','3.4.4'),(10170,858,'_elementor_pro_version','3.4.1'),(10171,858,'_wp_page_template','elementor_canvas'),(10172,858,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10173,858,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consult Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23d3dec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10174,858,'_elementor_page_assets','a:0:{}'),(10176,859,'_elementor_edit_mode','builder'),(10177,859,'_elementor_template_type','wp-page'),(10178,859,'_elementor_version','3.4.4'),(10179,859,'_elementor_pro_version','3.4.1'),(10180,859,'_wp_page_template','elementor_canvas'),(10181,859,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10182,859,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consult Andy Blecher\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23d3dec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10183,859,'_elementor_page_assets','a:0:{}'),(10185,860,'_elementor_edit_mode','builder'),(10186,860,'_elementor_template_type','wp-page'),(10187,860,'_elementor_version','3.4.4'),(10188,860,'_elementor_pro_version','3.4.1'),(10189,860,'_wp_page_template','elementor_canvas'),(10190,860,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10191,860,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consult Andy Blecher in Plumstead or Sea Point\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23d3dec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10192,860,'_elementor_page_assets','a:0:{}'),(10194,395,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:2;s:4:\"zoom\";i:2;s:6:\"height\";i:2;}}}}}'),(10196,861,'_elementor_edit_mode','builder'),(10197,861,'_elementor_template_type','wp-page'),(10198,861,'_elementor_version','3.4.4'),(10199,861,'_elementor_pro_version','3.4.1'),(10200,861,'_wp_page_template','elementor_canvas'),(10201,861,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(10202,861,'_elementor_data','[{\"id\":\"368cd232\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"58e71ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3fbc6d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7fca548e\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a2f1e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1ec7fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98f742a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consult Andy Blecher in Plumstead or Sea Point\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23d3dec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ef53c2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a9483ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"704cf90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Consulting rooms<\\/h2><p>2 Burnham Road, Plumstead 7800<\\/p><p><em>AND<\\/em><\\/p><p>3rd Floor, The Point, 76 Regent Road, Sea Point<\\/p><p>Appointments: : <strong>021 797 6967\\u00a0\\u00a0\\u00a0 <\\/strong>Email: <a href=\\\"mailto:andyblecherpodiatrist@gmail.com\\\">andyblecherpodiatrist@gmail.com\\u00a0\\u00a0<\\/a><\\/p><h3>Hours of opening<\\/h3><p>Monday to Friday: 08h30 - 17h00<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea08b1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3739552\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a80d91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to find Andy\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f5b742\",\"elType\":\"widget\",\"settings\":{\"address\":\"2 Burnham Road, Plumstead 7800\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":264,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2630632\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ed91f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a29bdce\",\"elType\":\"widget\",\"settings\":{\"address\":\"The Point, 76 Regent Road, Sea Point 7800\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":301,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"799c93fa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"510cfbe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57f8217a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"3b4d2222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63062a42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"6167d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"3adb0429\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"11dd0fb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(10203,861,'_elementor_page_assets','a:0:{}'),(10204,861,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:2;s:4:\"zoom\";i:2;s:6:\"height\";i:2;}}}}}'),(10206,395,'_wds_meta-robots-nofollow',''),(10207,395,'_wds_meta-robots-noindex',''),(11920,390,'_elementor_page_assets','a:0:{}'),(11944,271,'_elementor_page_assets','a:0:{}'),(11946,362,'_elementor_page_assets','a:0:{}'),(11969,372,'_elementor_page_assets','a:0:{}'),(11971,338,'_elementor_page_assets','a:0:{}'),(11973,311,'_elementor_page_assets','a:0:{}'),(14295,1053,'_elementor_edit_mode','builder'),(14296,1053,'_elementor_template_type','kit'),(14297,1053,'_elementor_version','3.2.4'),(14298,1053,'_elementor_pro_version','3.2.2'),(14299,1053,'_wp_page_template','default'),(14300,1053,'_elementor_page_settings','a:11:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(14301,1053,'_elementor_data','[]'),(14303,9,'_elementor_page_assets','a:0:{}'),(14348,1056,'_elementor_edit_mode','builder'),(14349,1056,'_elementor_template_type','wp-page'),(14350,1056,'_elementor_version','3.4.4'),(14351,1056,'_elementor_pro_version','3.4.1'),(14352,1056,'_wp_page_template','elementor_canvas'),(14353,1056,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14354,1056,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14355,1056,'_elementor_page_assets','a:0:{}'),(14356,1056,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14357,1057,'_elementor_edit_mode','builder'),(14358,1057,'_elementor_template_type','wp-page'),(14359,1057,'_elementor_version','3.4.4'),(14360,1057,'_elementor_pro_version','3.4.1'),(14361,1057,'_wp_page_template','elementor_canvas'),(14362,1057,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14363,1057,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14364,1057,'_elementor_page_assets','a:0:{}'),(14365,1057,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14367,1058,'_elementor_edit_mode','builder'),(14368,1058,'_elementor_template_type','wp-page'),(14369,1058,'_elementor_version','3.4.4'),(14370,1058,'_elementor_pro_version','3.4.1'),(14371,1058,'_wp_page_template','elementor_canvas'),(14372,1058,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14373,1058,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14374,1058,'_elementor_page_assets','a:0:{}'),(14375,1058,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14401,1061,'_elementor_edit_mode','builder'),(14402,1061,'_elementor_template_type','wp-page'),(14403,1061,'_elementor_version','3.6.0'),(14404,1061,'_elementor_pro_version','3.6.4'),(14405,1061,'_wp_page_template','elementor_canvas'),(14406,1061,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14407,1061,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14408,1061,'_elementor_page_assets','a:0:{}'),(14409,1061,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14411,1062,'_elementor_edit_mode','builder'),(14412,1062,'_elementor_template_type','wp-page'),(14413,1062,'_elementor_version','3.6.0'),(14414,1062,'_elementor_pro_version','3.6.4'),(14415,1062,'_wp_page_template','elementor_canvas'),(14416,1062,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14417,1062,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14418,1062,'_elementor_page_assets','a:0:{}'),(14419,1062,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14421,1063,'_elementor_edit_mode','builder'),(14422,1063,'_elementor_template_type','wp-page'),(14423,1063,'_elementor_version','3.6.0'),(14424,1063,'_elementor_pro_version','3.6.4'),(14425,1063,'_wp_page_template','elementor_canvas'),(14426,1063,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14427,1063,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14428,1063,'_elementor_page_assets','a:0:{}'),(14429,1063,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14432,1064,'_elementor_edit_mode','builder'),(14433,1064,'_elementor_template_type','wp-page'),(14434,1064,'_elementor_version','3.6.0'),(14435,1064,'_elementor_pro_version','3.6.4'),(14436,1064,'_wp_page_template','elementor_canvas'),(14437,1064,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14438,1064,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14439,1064,'_elementor_page_assets','a:0:{}'),(14440,1064,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14442,1065,'_elementor_edit_mode','builder'),(14443,1065,'_elementor_template_type','wp-page'),(14444,1065,'_elementor_version','3.6.0'),(14445,1065,'_elementor_pro_version','3.6.4'),(14446,1065,'_wp_page_template','elementor_canvas'),(14447,1065,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14448,1065,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14449,1065,'_elementor_page_assets','a:0:{}'),(14450,1065,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14452,1066,'_elementor_edit_mode','builder'),(14453,1066,'_elementor_template_type','wp-page'),(14454,1066,'_elementor_version','3.6.0'),(14455,1066,'_elementor_pro_version','3.6.4'),(14456,1066,'_wp_page_template','elementor_canvas'),(14457,1066,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14458,1066,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14459,1066,'_elementor_page_assets','a:0:{}'),(14460,1066,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14702,1078,'_elementor_edit_mode','builder'),(14703,1078,'_elementor_template_type','wp-page'),(14704,1078,'_elementor_version','3.6.0'),(14705,1078,'_elementor_pro_version','3.6.4'),(14706,1078,'_wp_page_template','elementor_canvas'),(14707,1078,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14708,1078,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14709,1078,'_elementor_page_assets','a:0:{}'),(14710,1078,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14711,1079,'_elementor_edit_mode','builder'),(14712,1079,'_elementor_template_type','wp-page'),(14713,1079,'_elementor_version','3.6.0'),(14714,1079,'_elementor_pro_version','3.6.4'),(14715,1079,'_wp_page_template','elementor_canvas'),(14716,1079,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0cfb2a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest News!!\",\"size\":\"medium\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=c8c375a\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0f9c10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For your conveinence , we now offer house calls.\\u00a0 Phone us for full details.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=c8c375a\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Weekdays only 8h30-17h00<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14717,1079,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14718,1079,'_elementor_page_assets','a:0:{}'),(14719,1079,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14721,1080,'_elementor_edit_mode','builder'),(14722,1080,'_elementor_template_type','wp-page'),(14723,1080,'_elementor_version','3.6.0'),(14724,1080,'_elementor_pro_version','3.6.4'),(14725,1080,'_wp_page_template','elementor_canvas'),(14726,1080,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/p><p>Thursdays and Fridays<\\/p><p>8h30 - 13h00<\\/p><p>House calls available where necessary.<\\/p><p>We welcome Tarique Jacobs to the practice.<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14727,1080,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14728,1080,'_elementor_page_assets','a:0:{}'),(14729,1080,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14754,1082,'_elementor_edit_mode','builder'),(14755,1082,'_elementor_template_type','wp-page'),(14756,1082,'_elementor_version','3.6.1'),(14757,1082,'_elementor_pro_version','3.6.4'),(14758,1082,'_wp_page_template','elementor_canvas'),(14759,1082,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/p><p>Thursdays and Fridays<\\/p><p>8h30 - 13h00<\\/p><p>House calls available where necessary.<\\/p><p>We welcome Tarique Jacobs to the practice.<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14760,1082,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14761,1082,'_elementor_page_assets','a:0:{}'),(14762,1082,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14764,1083,'_elementor_edit_mode','builder'),(14765,1083,'_elementor_template_type','wp-page'),(14766,1083,'_elementor_version','3.6.1'),(14767,1083,'_elementor_pro_version','3.6.4'),(14768,1083,'_wp_page_template','elementor_canvas'),(14769,1083,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/p><p>Thursdays and Fridays<\\/p><p>8h30 - 13h00<\\/p><p>House calls available where necessary.<\\/p><p>We welcome Tarique Jacobs to the practice.<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>ondays, Tuesdays, Wednesdays and Fridays<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14770,1083,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14771,1083,'_elementor_page_assets','a:0:{}'),(14772,1083,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14774,1084,'_elementor_edit_mode','builder'),(14775,1084,'_elementor_template_type','wp-page'),(14776,1084,'_elementor_version','3.6.1'),(14777,1084,'_elementor_pro_version','3.6.4'),(14778,1084,'_wp_page_template','elementor_canvas'),(14779,1084,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/p><p>Thursdays and Fridays<\\/p><p>8h30 - 13h00<\\/p><p>House calls available where necessary.<\\/p><p>We welcome Taari Jacobs to the practice.<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>onday - Friday<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0a<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14780,1084,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14781,1084,'_elementor_page_assets','a:0:{}'),(14782,1084,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14794,1086,'_elementor_edit_mode','builder'),(14795,1086,'_elementor_template_type','wp-page'),(14796,1086,'_elementor_version','3.6.1'),(14797,1086,'_elementor_pro_version','3.6.4'),(14798,1086,'_wp_page_template','elementor_canvas'),(14799,1086,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/p><p>Thursdays and Fridays<\\/p><p>8h30 - 13h00<\\/p><p>House calls available where necessary.<\\/p><p>We welcome Taari Jacobs to the practice.<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>onday - Friday<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0a<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14800,1086,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14801,1086,'_elementor_page_assets','a:0:{}'),(14802,1086,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14803,1087,'_elementor_edit_mode','builder'),(14804,1087,'_elementor_template_type','wp-page'),(14805,1087,'_elementor_version','3.6.1'),(14806,1087,'_elementor_pro_version','3.6.4'),(14807,1087,'_wp_page_template','elementor_canvas'),(14808,1087,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/p><p>Thursdays and Fridays<\\/p><p>8h30 - 13h00<\\/p><p>House calls available where necessary.<\\/p><p>We welcome Taari Jacobs to the practice.<\\/p><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>M<\\/em><em>onday - Friday<\\/em><\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point<\\/p><p>76 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0a<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14809,1087,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14810,1087,'_elementor_page_assets','a:0:{}'),(14811,1087,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(14813,1088,'_elementor_edit_mode','builder'),(14814,1088,'_elementor_template_type','wp-page'),(14815,1088,'_elementor_version','3.6.1'),(14816,1088,'_elementor_pro_version','3.6.4'),(14817,1088,'_wp_page_template','elementor_canvas'),(14818,1088,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/em><\\/p><p><em>Thursdays and Fridays\\u00a08h30 - 13h00<\\/em><\\/p><p>House calls available where necessary.<\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point,\\u00a076 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p><p>We welcome Taariq Jacobs to the practice.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(14819,1088,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(14820,1088,'_elementor_page_assets','a:0:{}'),(14821,1088,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(17319,1204,'_dont_combine','a:0:{}'),(17320,1204,'_dont_enqueue','a:0:{}'),(17321,1204,'_defer','a:0:{}'),(17322,1204,'_inline','a:0:{}'),(17323,1204,'_preload','a:0:{}'),(17324,1204,'_async','a:0:{}'),(17325,1204,'_handle_dependencies','a:2:{s:26:\"elementor-frontend-modules\";a:2:{i:0;s:25:\"elementor-webpack-runtime\";i:1;s:6:\"jquery\";}s:19:\"elementor-waypoints\";a:1:{i:0;s:6:\"jquery\";}}'),(17326,1204,'_handle_original_sizes','a:2:{s:26:\"elementor-frontend-modules\";s:4:\"32.9\";s:19:\"elementor-waypoints\";s:4:\"12.2\";}'),(17327,1204,'_handle_compressed_sizes','a:2:{s:26:\"elementor-frontend-modules\";s:4:\"32.9\";s:19:\"elementor-waypoints\";s:4:\"12.2\";}'),(17328,1204,'_hash','e1f9e1573538c4bb08de346498e6dbdd'),(17329,1204,'_file_id','1204'),(17330,1204,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/e1f9e1573538c4bb08de346498e6dbdd.js'),(17331,1204,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/e1f9e1573538c4bb08de346498e6dbdd.js'),(17332,1204,'_expires','1668174618'),(17333,1205,'_handles','a:2:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";}'),(17334,1205,'_handle_urls','a:2:{s:11:\"jquery-core\";s:36:\"/wp-includes/js/jquery/jquery.min.js\";s:14:\"jquery-migrate\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";}'),(17335,1205,'_handle_versions','a:2:{s:11:\"jquery-core\";s:5:\"3.6.0\";s:14:\"jquery-migrate\";s:5:\"3.3.2\";}'),(17336,1205,'_extra','a:0:{}'),(17337,1205,'_args',NULL),(17338,1205,'_type','scripts'),(17339,1205,'_dont_minify','a:2:{i:0;s:11:\"jquery-core\";i:1;s:14:\"jquery-migrate\";}'),(17340,1205,'_dont_combine','a:0:{}'),(17341,1205,'_dont_enqueue','a:0:{}'),(17342,1205,'_defer','a:0:{}'),(17343,1205,'_inline','a:0:{}'),(17344,1205,'_preload','a:0:{}'),(17345,1205,'_async','a:0:{}'),(17346,1205,'_handle_dependencies','a:2:{s:11:\"jquery-core\";a:0:{}s:14:\"jquery-migrate\";a:0:{}}'),(17347,1205,'_handle_original_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(17348,1205,'_handle_compressed_sizes','a:2:{s:11:\"jquery-core\";s:4:\"89.5\";s:14:\"jquery-migrate\";s:4:\"11.2\";}'),(17349,1205,'_hash','f1ba8cef63413650cc36da932cf5c177'),(17350,1205,'_file_id','1205'),(17351,1205,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/f1ba8cef63413650cc36da932cf5c177.js'),(17352,1205,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/f1ba8cef63413650cc36da932cf5c177.js'),(17353,1205,'_expires','1668174701'),(17354,1206,'_handles','a:4:{i:0;s:14:\"jquery-ui-core\";i:1;s:15:\"jquery-ui-mouse\";i:2;s:19:\"jquery-ui-draggable\";i:3;s:8:\"backbone\";}'),(17355,1206,'_handle_urls','a:4:{s:14:\"jquery-ui-core\";s:37:\"/wp-includes/js/jquery/ui/core.min.js\";s:15:\"jquery-ui-mouse\";s:38:\"/wp-includes/js/jquery/ui/mouse.min.js\";s:19:\"jquery-ui-draggable\";s:42:\"/wp-includes/js/jquery/ui/draggable.min.js\";s:8:\"backbone\";s:31:\"/wp-includes/js/backbone.min.js\";}'),(17356,1206,'_handle_versions','a:4:{s:14:\"jquery-ui-core\";s:6:\"1.13.1\";s:15:\"jquery-ui-mouse\";s:6:\"1.13.1\";s:19:\"jquery-ui-draggable\";s:6:\"1.13.1\";s:8:\"backbone\";s:5:\"1.4.1\";}'),(17357,1206,'_extra','a:0:{}'),(17358,1206,'_args','1'),(17359,1206,'_type','scripts'),(17360,1206,'_dont_minify','a:4:{i:0;s:14:\"jquery-ui-core\";i:1;s:15:\"jquery-ui-mouse\";i:2;s:19:\"jquery-ui-draggable\";i:3;s:8:\"backbone\";}'),(17361,1206,'_dont_combine','a:0:{}'),(17362,1206,'_dont_enqueue','a:0:{}'),(17363,1206,'_defer','a:0:{}'),(17364,1206,'_inline','a:0:{}'),(17365,1206,'_preload','a:0:{}'),(17366,1206,'_async','a:0:{}'),(17367,1206,'_handle_dependencies','a:4:{s:14:\"jquery-ui-core\";a:1:{i:0;s:6:\"jquery\";}s:15:\"jquery-ui-mouse\";a:1:{i:0;s:14:\"jquery-ui-core\";}s:19:\"jquery-ui-draggable\";a:1:{i:0;s:15:\"jquery-ui-mouse\";}s:8:\"backbone\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}}'),(17368,1206,'_handle_original_sizes','a:4:{s:14:\"jquery-ui-core\";i:0;s:15:\"jquery-ui-mouse\";s:3:\"3.4\";s:19:\"jquery-ui-draggable\";s:4:\"18.3\";s:8:\"backbone\";s:4:\"23.9\";}'),(17369,1206,'_handle_compressed_sizes','a:4:{s:14:\"jquery-ui-core\";i:0;s:15:\"jquery-ui-mouse\";s:3:\"3.4\";s:19:\"jquery-ui-draggable\";s:4:\"18.3\";s:8:\"backbone\";s:4:\"23.9\";}'),(17370,1206,'_hash','45e416ab6f4f3a8f4ff6e264ef029900'),(17371,1206,'_file_id','1206'),(17372,1206,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/45e416ab6f4f3a8f4ff6e264ef029900.js'),(17373,1206,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/45e416ab6f4f3a8f4ff6e264ef029900.js'),(17374,1206,'_expires','1668174702'),(17375,1207,'_handles','a:4:{i:0;s:19:\"backbone-marionette\";i:1;s:14:\"backbone-radio\";i:2;s:24:\"elementor-common-modules\";i:3;s:17:\"elementor-web-cli\";}'),(17376,1207,'_handle_urls','a:4:{s:19:\"backbone-marionette\";s:103:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js\";s:14:\"backbone-radio\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js\";s:24:\"elementor-common-modules\";s:88:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/common-modules.min.js\";s:17:\"elementor-web-cli\";s:81:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/web-cli.min.js\";}'),(17377,1207,'_handle_versions','a:4:{s:19:\"backbone-marionette\";s:8:\"2.4.5.e1\";s:14:\"backbone-radio\";s:5:\"1.0.4\";s:24:\"elementor-common-modules\";s:5:\"3.7.4\";s:17:\"elementor-web-cli\";s:5:\"3.7.4\";}'),(17378,1207,'_extra','a:2:{s:5:\"group\";i:1;s:6:\"before\";a:3:{i:0;b:0;i:1;s:216:\"var elementorWebCliConfig = {\"isDebug\":false,\"urls\":{\"rest\":\"https://podiatrist.capetown/wp-json/\",\"assets\":\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/\"},\"nonce\":\"c6f05de3aa\",\"version\":\"3.7.4\"};\";i:2;s:216:\"var elementorWebCliConfig = {\"isDebug\":false,\"urls\":{\"rest\":\"https://podiatrist.capetown/wp-json/\",\"assets\":\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/\"},\"nonce\":\"c6f05de3aa\",\"version\":\"3.7.4\"};\";}}'),(17379,1207,'_args',NULL),(17380,1207,'_type','scripts'),(17381,1207,'_dont_minify','a:4:{i:0;s:19:\"backbone-marionette\";i:1;s:14:\"backbone-radio\";i:2;s:24:\"elementor-common-modules\";i:3;s:17:\"elementor-web-cli\";}'),(17382,1207,'_dont_combine','a:0:{}'),(17383,1207,'_dont_enqueue','a:0:{}'),(17384,1207,'_defer','a:0:{}'),(17385,1207,'_inline','a:0:{}'),(17386,1207,'_preload','a:0:{}'),(17387,1207,'_async','a:0:{}'),(17388,1207,'_handle_dependencies','a:4:{s:19:\"backbone-marionette\";a:1:{i:0;s:8:\"backbone\";}s:14:\"backbone-radio\";a:1:{i:0;s:8:\"backbone\";}s:24:\"elementor-common-modules\";a:0:{}s:17:\"elementor-web-cli\";a:1:{i:0;s:6:\"jquery\";}}'),(17389,1207,'_handle_original_sizes','a:4:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";s:24:\"elementor-common-modules\";i:0;s:17:\"elementor-web-cli\";i:0;}'),(17390,1207,'_handle_compressed_sizes','a:4:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";s:24:\"elementor-common-modules\";i:0;s:17:\"elementor-web-cli\";i:0;}'),(17391,1207,'_hash','7b82204f0acce42c829c5aa4ce8e6c6e'),(17392,1207,'_file_id','1207'),(17393,1207,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/7b82204f0acce42c829c5aa4ce8e6c6e.js'),(17394,1207,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/7b82204f0acce42c829c5aa4ce8e6c6e.js'),(17395,1207,'_expires','1668174703'),(17396,1208,'_handles','a:2:{i:0;s:8:\"wp-hooks\";i:1;s:7:\"wp-i18n\";}'),(17397,1208,'_handle_urls','a:2:{s:8:\"wp-hooks\";s:33:\"/wp-includes/js/dist/hooks.min.js\";s:7:\"wp-i18n\";s:32:\"/wp-includes/js/dist/i18n.min.js\";}'),(17398,1208,'_handle_versions','a:2:{s:8:\"wp-hooks\";s:32:\"c6d64f2cb8f5c6bb49caca37f8828ce3\";s:7:\"wp-i18n\";s:32:\"ebee46757c6a411e38fd079a7ac71d94\";}'),(17399,1208,'_extra','a:1:{s:5:\"after\";a:2:{i:0;b:0;i:1;s:65:\"wp.i18n.setLocaleData( { \'text directionu0004ltr\': [ \'ltr\' ] } );\";}}'),(17400,1208,'_args','1'),(17401,1208,'_type','scripts'),(17402,1208,'_dont_minify','a:2:{i:0;s:8:\"wp-hooks\";i:1;s:7:\"wp-i18n\";}'),(17403,1208,'_dont_combine','a:0:{}'),(17404,1208,'_dont_enqueue','a:0:{}'),(17405,1208,'_defer','a:0:{}'),(17406,1208,'_inline','a:0:{}'),(17407,1208,'_preload','a:0:{}'),(17408,1208,'_async','a:0:{}'),(17409,1208,'_handle_dependencies','a:2:{s:8:\"wp-hooks\";a:1:{i:0;s:11:\"wp-polyfill\";}s:7:\"wp-i18n\";a:2:{i:0;s:8:\"wp-hooks\";i:1;s:11:\"wp-polyfill\";}}'),(17410,1208,'_handle_original_sizes','a:2:{s:8:\"wp-hooks\";s:3:\"4.9\";s:7:\"wp-i18n\";s:4:\"10.2\";}'),(17411,1208,'_handle_compressed_sizes','a:2:{s:8:\"wp-hooks\";s:3:\"4.9\";s:7:\"wp-i18n\";s:4:\"10.2\";}'),(17412,1208,'_hash','3d84cde9b1b6e058449e089c98070acc'),(17413,1208,'_file_id','1208'),(17414,1208,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/3d84cde9b1b6e058449e089c98070acc.js'),(17415,1208,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/3d84cde9b1b6e058449e089c98070acc.js'),(17416,1208,'_expires','1668174704'),(17417,1209,'_handles','a:3:{i:0;s:16:\"elementor-common\";i:1;s:20:\"elementor-app-loader\";i:2;s:15:\"smush-lazy-load\";}'),(17418,1209,'_handle_urls','a:3:{s:16:\"elementor-common\";s:80:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/common.min.js\";s:20:\"elementor-app-loader\";s:84:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/app-loader.min.js\";s:15:\"smush-lazy-load\";s:94:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js\";}'),(17419,1209,'_handle_versions','a:3:{s:16:\"elementor-common\";s:5:\"3.7.4\";s:20:\"elementor-app-loader\";s:5:\"3.7.4\";s:15:\"smush-lazy-load\";s:6:\"3.11.1\";}');
INSERT INTO `wp_postmeta` VALUES (17420,1209,'_extra','a:2:{s:5:\"group\";i:1;s:6:\"before\";a:4:{i:0;b:0;i:1;s:562:\"var elementorAppConfig = {\"menu_url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-app&ver=3.7.4#site-editor/promotion\",\"assets_url\":\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/\",\"return_url\":\"https://podiatrist.capetown/wp-admin/plugins.php\",\"hasPro\":false,\"admin_url\":\"https://podiatrist.capetown/wp-admin/\",\"login_url\":\"https://podiatrist.capetown/wp-login.php\",\"base_url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-app&ver=3.7.4\",\"site-editor\":[],\"import-export\":[],\"kit-library\":[],\"onboarding\":[]};\";i:2;b:0;i:3;s:6913:\"var elementorCommonConfig = {\"version\":\"3.7.4\",\"isRTL\":false,\"isDebug\":false,\"isElementorDebug\":false,\"activeModules\":[\"ajax\",\"finder\",\"connect\",\"event-tracker\"],\"experimentalFeatures\":{\"e_dom_optimization\":true,\"e_optimized_assets_loading\":true,\"a11y_improvements\":true,\"e_import_export\":true,\"e_hidden_wordpress_widgets\":true,\"landing-pages\":true,\"elements-color-picker\":true,\"favorite-widgets\":true,\"admin-top-bar\":true},\"urls\":{\"assets\":\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/\",\"rest\":\"https://podiatrist.capetown/wp-json/\"},\"filesUpload\":{\"unfilteredFiles\":false},\"library_connect\":{\"is_connected\":true,\"subscription_plans\":{\"0\":{\"label\":null,\"promotion_url\":null,\"color\":null},\"1\":{\"label\":\"Pro\",\"promotion_url\":\"https://elementor.com/pro/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=gopro\",\"color\":\"#92003B\"},\"20\":{\"label\":\"Expert\",\"promotion_url\":\"https://elementor.com/pro/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=goexpert\",\"color\":\"#010051\"}},\"base_access_level\":0,\"current_access_level\":0},\"ajax\":{\"url\":\"https://podiatrist.capetown/wp-admin/admin-ajax.php\",\"nonce\":\"0a1cee8a1f\"},\"finder\":{\"data\":{\"edit\":{\"title\":\"Edit\",\"dynamic\":true,\"name\":\"edit\"},\"general\":{\"title\":\"General\",\"dynamic\":false,\"items\":{\"saved-templates\":{\"title\":\"Saved Templates\",\"icon\":\"library-save\",\"url\":\"https://podiatrist.capetown/wp-admin/edit.php?post_type=elementor_library&tabs_group=library\",\"keywords\":[\"template\",\"section\",\"page\",\"library\"]},\"system-info\":{\"title\":\"System Info\",\"icon\":\"info-circle-o\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-system-info\",\"keywords\":[\"system\",\"info\",\"environment\",\"elementor\"]},\"role-manager\":{\"title\":\"Role Manager\",\"icon\":\"person\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-role-manager\",\"keywords\":[\"role\",\"manager\",\"user\",\"elementor\"]},\"knowledge-base\":{\"title\":\"Knowledge Base\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=go_knowledge_base_site\",\"keywords\":[\"help\",\"knowledge\",\"docs\",\"elementor\"]},\"theme-builder\":{\"title\":\"Theme Builder\",\"icon\":\"library-save\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-app&ver=3.7.4#site-editor/promotion\",\"keywords\":[\"template\",\"header\",\"footer\",\"single\",\"archive\",\"search\",\"404\",\"library\"]},\"kit-library\":{\"title\":\"Kit Library\",\"icon\":\"kit-parts\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-app&ver=3.7.4#/kit-library\",\"keywords\":[\"kit library\",\"kit\",\"library\",\"site parts\",\"parts\",\"assets\",\"templates\"]}},\"name\":\"general\"},\"create\":{\"title\":\"Create\",\"dynamic\":false,\"items\":{\"page\":{\"title\":\"Add New Page Template\",\"icon\":\"plus-circle-o\",\"url\":\"https://podiatrist.capetown/wp-admin/edit.php?action=elementor_new_post&post_type=elementor_library&template_type=page&_wpnonce=d34c015a08\",\"keywords\":[\"Add New Page Template\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"section\":{\"title\":\"Add New Section\",\"icon\":\"plus-circle-o\",\"url\":\"https://podiatrist.capetown/wp-admin/edit.php?action=elementor_new_post&post_type=elementor_library&template_type=section&_wpnonce=d34c015a08\",\"keywords\":[\"Add New Section\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"wp-post\":{\"title\":\"Add New Post\",\"icon\":\"plus-circle-o\",\"url\":\"https://podiatrist.capetown/wp-admin/edit.php?action=elementor_new_post&post_type=post&template_type=wp-post&_wpnonce=d34c015a08\",\"keywords\":[\"Add New Post\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"wp-page\":{\"title\":\"Add New Page\",\"icon\":\"plus-circle-o\",\"url\":\"https://podiatrist.capetown/wp-admin/edit.php?action=elementor_new_post&post_type=page&template_type=wp-page&_wpnonce=d34c015a08\",\"keywords\":[\"Add New Page\",\"post\",\"page\",\"template\",\"new\",\"create\"]},\"landing-page\":{\"title\":\"Add New Landing Page\",\"icon\":\"plus-circle-o\",\"url\":\"https://podiatrist.capetown/wp-admin/edit.php?action=elementor_new_post&post_type=e-landing-page&template_type=landing-page&_wpnonce=d34c015a08#library\",\"keywords\":[\"Add New Landing Page\",\"post\",\"page\",\"template\",\"new\",\"create\"]}},\"name\":\"create\"},\"site\":{\"title\":\"Site\",\"dynamic\":false,\"items\":{\"homepage\":{\"title\":\"Home page\",\"url\":\"https://podiatrist.capetown\",\"icon\":\"home-heart\",\"keywords\":[\"home\",\"page\"]},\"wordpress-dashboard\":{\"title\":\"Dashboard\",\"icon\":\"dashboard\",\"url\":\"https://podiatrist.capetown/wp-admin/\",\"keywords\":[\"dashboard\",\"wordpress\"]},\"wordpress-menus\":{\"title\":\"Menus\",\"icon\":\"wordpress\",\"url\":\"https://podiatrist.capetown/wp-admin/nav-menus.php\",\"keywords\":[\"menu\",\"wordpress\"]},\"wordpress-themes\":{\"title\":\"Themes\",\"icon\":\"wordpress\",\"url\":\"https://podiatrist.capetown/wp-admin/themes.php\",\"keywords\":[\"themes\",\"wordpress\"]},\"wordpress-customizer\":{\"title\":\"Customiser\",\"icon\":\"wordpress\",\"url\":\"https://podiatrist.capetown/wp-admin/customize.php\",\"keywords\":[\"customizer\",\"wordpress\"]},\"wordpress-plugins\":{\"title\":\"Plugins\",\"icon\":\"wordpress\",\"url\":\"https://podiatrist.capetown/wp-admin/plugins.php\",\"keywords\":[\"plugins\",\"wordpress\"]},\"wordpress-users\":{\"title\":\"Users\",\"icon\":\"wordpress\",\"url\":\"https://podiatrist.capetown/wp-admin/users.php\",\"keywords\":[\"users\",\"profile\",\"wordpress\"]}},\"name\":\"site\"},\"settings\":{\"title\":\"Settings\",\"dynamic\":false,\"items\":{\"general-settings\":{\"title\":\"General Settings\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor\",\"keywords\":[\"general\",\"settings\",\"elementor\"]},\"advanced\":{\"title\":\"Advanced\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor#tab-advanced\",\"keywords\":[\"advanced\",\"settings\",\"elementor\"]},\"experiments\":{\"title\":\"Experiments\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor#tab-experiments\",\"keywords\":[\"settings\",\"elementor\",\"experiments\"]}},\"name\":\"settings\"},\"tools\":{\"title\":\"Tools\",\"dynamic\":false,\"items\":{\"tools\":{\"title\":\"Tools\",\"icon\":\"tools\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-tools\",\"keywords\":[\"tools\",\"regenerate css\",\"safe mode\",\"debug bar\",\"sync library\",\"elementor\"]},\"replace-url\":{\"title\":\"Replace URL\",\"icon\":\"tools\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-tools#tab-replace_url\",\"keywords\":[\"tools\",\"replace url\",\"domain\",\"elementor\"]},\"maintenance-mode\":{\"title\":\"Maintenance Mode\",\"icon\":\"tools\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-tools#tab-maintenance_mode\",\"keywords\":[\"tools\",\"maintenance\",\"coming soon\",\"elementor\"]},\"import-export\":{\"title\":\"Import Export\",\"icon\":\"import-export\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-tools#tab-import-export-kit\",\"keywords\":[\"tools\",\"import export\",\"import\",\"export\",\"kit\"]},\"version-control\":{\"title\":\"Version Control\",\"icon\":\"time-line\",\"url\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-tools#tab-versions\",\"keywords\":[\"tools\",\"version\",\"control\",\"rollback\",\"beta\",\"elementor\"]}},\"name\":\"tools\"}}},\"connect\":[],\"event-tracker\":{\"isUserDataShared\":false}};\";}}'),(17421,1209,'_args',NULL),(17422,1209,'_type','scripts'),(17423,1209,'_dont_minify','a:3:{i:0;s:16:\"elementor-common\";i:1;s:20:\"elementor-app-loader\";i:2;s:15:\"smush-lazy-load\";}'),(17424,1209,'_dont_combine','a:0:{}'),(17425,1209,'_dont_enqueue','a:0:{}'),(17426,1209,'_defer','a:0:{}'),(17427,1209,'_inline','a:0:{}'),(17428,1209,'_preload','a:0:{}'),(17429,1209,'_async','a:0:{}'),(17430,1209,'_handle_dependencies','a:3:{s:16:\"elementor-common\";a:10:{i:0;s:6:\"jquery\";i:1;s:19:\"jquery-ui-draggable\";i:2;s:19:\"backbone-marionette\";i:3;s:14:\"backbone-radio\";i:4;s:24:\"elementor-common-modules\";i:5;s:17:\"elementor-web-cli\";i:6;s:16:\"elementor-dialog\";i:7;s:14:\"wp-api-request\";i:8;s:19:\"elementor-dev-tools\";i:9;s:7:\"wp-i18n\";}s:20:\"elementor-app-loader\";a:1:{i:0;s:16:\"elementor-common\";}s:15:\"smush-lazy-load\";a:0:{}}'),(17431,1209,'_handle_original_sizes','a:3:{s:16:\"elementor-common\";i:0;s:20:\"elementor-app-loader\";i:0;s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(17432,1209,'_handle_compressed_sizes','a:3:{s:16:\"elementor-common\";i:0;s:20:\"elementor-app-loader\";i:0;s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(17433,1209,'_hash','977d6a42324fd347ff621069493f0070'),(17434,1209,'_file_id','1209'),(17435,1209,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/977d6a42324fd347ff621069493f0070.js'),(17436,1209,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/977d6a42324fd347ff621069493f0070.js'),(17437,1209,'_expires','1668174704'),(17438,1210,'_handles','a:4:{i:0;s:26:\"elementor-frontend-modules\";i:1;s:19:\"elementor-waypoints\";i:2;s:18:\"elementor-frontend\";i:3;s:19:\"elementor-admin-bar\";}'),(17439,1210,'_handle_urls','a:4:{s:26:\"elementor-frontend-modules\";s:90:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:19:\"elementor-waypoints\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js\";s:18:\"elementor-frontend\";s:82:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend.min.js\";s:19:\"elementor-admin-bar\";s:93:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js\";}'),(17440,1210,'_handle_versions','a:4:{s:26:\"elementor-frontend-modules\";s:5:\"3.7.4\";s:19:\"elementor-waypoints\";s:5:\"4.0.2\";s:18:\"elementor-frontend\";s:5:\"3.7.4\";s:19:\"elementor-admin-bar\";s:5:\"3.7.4\";}'),(17441,1210,'_extra','a:2:{s:5:\"group\";i:1;s:6:\"before\";a:4:{i:0;b:0;i:1;s:728:\"var elementorAdminBarConfig = {\"elementor_edit_page\":{\"id\":\"elementor_edit_page\",\"title\":\"Edit with Elementor\",\"href\":\"https://podiatrist.capetown/wp-admin/post.php?post=69&action=elementor\",\"children\":{\"70\":{\"id\":\"elementor_site_settings\",\"title\":\"Site Settings\",\"sub_title\":\"Site\",\"href\":\"https://podiatrist.capetown/wp-admin/post.php?post=69&action=elementor#e:run:panel/global/open\",\"class\":\"elementor-site-settings\",\"parent_class\":\"elementor-second-section\"},\"71\":{\"id\":\"elementor_app_site_editor\",\"title\":\"Theme Builder\",\"sub_title\":\"Site\",\"href\":\"https://podiatrist.capetown/wp-admin/admin.php?page=elementor-app&ver=3.7.4#site-editor/promotion\",\"class\":\"elementor-app-link\",\"parent_class\":\"elementor-second-section\"}}}};\";i:2;b:0;i:3;s:2055:\"var elementorFrontendConfig = {\"environmentMode\":{\"edit\":false,\"wpPreview\":false,\"isScriptDebug\":false},\"i18n\":{\"shareOnFacebook\":\"Share on Facebook\",\"shareOnTwitter\":\"Share on Twitter\",\"pinIt\":\"Pin it\",\"download\":\"Download\",\"downloadImage\":\"Download image\",\"fullscreen\":\"Fullscreen\",\"zoom\":\"Zoom\",\"share\":\"Share\",\"playVideo\":\"Play Video\",\"previous\":\"Tap to select the previous period\",\"next\":\"Next\",\"close\":\"Close\"},\"is_rtl\":false,\"breakpoints\":{\"xs\":0,\"sm\":480,\"md\":768,\"lg\":1025,\"xl\":1440,\"xxl\":1600},\"responsive\":{\"breakpoints\":{\"mobile\":{\"label\":\"Mobile\",\"value\":767,\"default_value\":767,\"direction\":\"max\",\"is_enabled\":true},\"mobile_extra\":{\"label\":\"Mobile Extra\",\"value\":880,\"default_value\":880,\"direction\":\"max\",\"is_enabled\":false},\"tablet\":{\"label\":\"Tablet\",\"value\":1024,\"default_value\":1024,\"direction\":\"max\",\"is_enabled\":true},\"tablet_extra\":{\"label\":\"Tablet Extra\",\"value\":1200,\"default_value\":1200,\"direction\":\"max\",\"is_enabled\":false},\"laptop\":{\"label\":\"Laptop\",\"value\":1366,\"default_value\":1366,\"direction\":\"max\",\"is_enabled\":false},\"widescreen\":{\"label\":\"Widescreen\",\"value\":2400,\"default_value\":2400,\"direction\":\"min\",\"is_enabled\":false}}},\"version\":\"3.7.4\",\"is_static\":false,\"experimentalFeatures\":{\"e_dom_optimization\":true,\"e_optimized_assets_loading\":true,\"a11y_improvements\":true,\"e_import_export\":true,\"e_hidden_wordpress_widgets\":true,\"landing-pages\":true,\"elements-color-picker\":true,\"favorite-widgets\":true,\"admin-top-bar\":true},\"urls\":{\"assets\":\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/\"},\"settings\":{\"page\":[],\"editorPreferences\":[]},\"kit\":{\"active_breakpoints\":[\"viewport_mobile\",\"viewport_tablet\"],\"global_image_lightbox\":\"yes\",\"lightbox_enable_counter\":\"yes\",\"lightbox_enable_fullscreen\":\"yes\",\"lightbox_enable_zoom\":\"yes\",\"lightbox_enable_share\":\"yes\",\"lightbox_title_src\":\"title\",\"lightbox_description_src\":\"description\"},\"post\":{\"id\":69,\"title\":\"Andy%20Blecher%20Podiatrist%20will%20keep%20your%20feet%20healthy%20and%20happy\",\"excerpt\":\"\",\"featuredImage\":false},\"user\":{\"roles\":[\"administrator\"]}};\";}}'),(17442,1210,'_args',NULL),(17443,1210,'_type','scripts'),(17444,1210,'_dont_minify','a:4:{i:0;s:26:\"elementor-frontend-modules\";i:1;s:19:\"elementor-waypoints\";i:2;s:18:\"elementor-frontend\";i:3;s:19:\"elementor-admin-bar\";}'),(17445,1210,'_dont_combine','a:0:{}'),(17446,1210,'_dont_enqueue','a:0:{}'),(17447,1210,'_defer','a:0:{}'),(17448,1210,'_inline','a:0:{}'),(17449,1210,'_preload','a:0:{}'),(17450,1210,'_async','a:0:{}'),(17451,1210,'_handle_dependencies','a:4:{s:26:\"elementor-frontend-modules\";a:2:{i:0;s:25:\"elementor-webpack-runtime\";i:1;s:6:\"jquery\";}s:19:\"elementor-waypoints\";a:1:{i:0;s:6:\"jquery\";}s:18:\"elementor-frontend\";a:3:{i:0;s:26:\"elementor-frontend-modules\";i:1;s:19:\"elementor-waypoints\";i:2;s:18:\"jquery-ui-position\";}s:19:\"elementor-admin-bar\";a:1:{i:0;s:26:\"elementor-frontend-modules\";}}'),(17452,1210,'_handle_original_sizes','a:4:{s:26:\"elementor-frontend-modules\";s:4:\"32.9\";s:19:\"elementor-waypoints\";s:4:\"12.2\";s:18:\"elementor-frontend\";s:4:\"40.5\";s:19:\"elementor-admin-bar\";s:3:\"6.9\";}'),(17453,1210,'_handle_compressed_sizes','a:4:{s:26:\"elementor-frontend-modules\";s:4:\"32.9\";s:19:\"elementor-waypoints\";s:4:\"12.2\";s:18:\"elementor-frontend\";s:4:\"40.5\";s:19:\"elementor-admin-bar\";s:3:\"6.9\";}'),(17454,1210,'_hash','673e8dd31e05b27ff76522a980488b1a'),(17455,1210,'_file_id','1210'),(17456,1210,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/673e8dd31e05b27ff76522a980488b1a.js'),(17457,1210,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/673e8dd31e05b27ff76522a980488b1a.js'),(17458,1210,'_expires','1668174705'),(17459,1211,'_handles','a:2:{i:0;s:14:\"hoverintent-js\";i:1;s:9:\"admin-bar\";}'),(17460,1211,'_handle_urls','a:2:{s:14:\"hoverintent-js\";s:37:\"/wp-includes/js/hoverintent-js.min.js\";s:9:\"admin-bar\";s:32:\"/wp-includes/js/admin-bar.min.js\";}'),(17461,1211,'_handle_versions','a:2:{s:14:\"hoverintent-js\";s:5:\"2.2.1\";s:9:\"admin-bar\";b:0;}'),(17462,1211,'_extra','a:0:{}'),(17463,1211,'_args','1'),(17464,1211,'_type','scripts'),(17465,1211,'_dont_minify','a:2:{i:0;s:14:\"hoverintent-js\";i:1;s:9:\"admin-bar\";}'),(17466,1211,'_dont_combine','a:0:{}'),(17467,1211,'_dont_enqueue','a:0:{}'),(17468,1211,'_defer','a:0:{}'),(17469,1211,'_inline','a:0:{}'),(17470,1211,'_preload','a:0:{}'),(17471,1211,'_async','a:0:{}'),(17472,1211,'_handle_dependencies','a:2:{s:14:\"hoverintent-js\";a:0:{}s:9:\"admin-bar\";a:1:{i:0;s:14:\"hoverintent-js\";}}'),(17473,1211,'_handle_original_sizes','a:2:{s:14:\"hoverintent-js\";s:3:\"1.7\";s:9:\"admin-bar\";s:3:\"3.5\";}'),(17474,1211,'_handle_compressed_sizes','a:2:{s:14:\"hoverintent-js\";s:3:\"1.7\";s:9:\"admin-bar\";s:3:\"3.5\";}'),(17475,1211,'_hash','9097de73ee77d75e2f4dfd58198b58fd'),(17476,1211,'_file_id','1211'),(17477,1211,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/9097de73ee77d75e2f4dfd58198b58fd.js'),(17478,1211,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/9097de73ee77d75e2f4dfd58198b58fd.js'),(17479,1211,'_expires','1668174706'),(17480,1212,'_wp_trash_meta_status','publish'),(17481,1212,'_wp_trash_meta_time','1662990753'),(17482,1213,'_handles','a:2:{i:0;s:26:\"elementor-frontend-modules\";i:1;s:19:\"elementor-waypoints\";}'),(17483,1213,'_handle_urls','a:2:{s:26:\"elementor-frontend-modules\";s:90:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:19:\"elementor-waypoints\";s:94:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js\";}'),(17484,1213,'_handle_versions','a:2:{s:26:\"elementor-frontend-modules\";s:5:\"3.7.4\";s:19:\"elementor-waypoints\";s:5:\"4.0.2\";}'),(17485,1213,'_extra','a:1:{s:5:\"group\";i:1;}'),(17486,1213,'_args',NULL),(17487,1213,'_type','scripts'),(17488,1213,'_dont_minify','a:2:{i:0;s:26:\"elementor-frontend-modules\";i:1;s:19:\"elementor-waypoints\";}'),(17489,1213,'_dont_combine','a:0:{}'),(17490,1213,'_dont_enqueue','a:0:{}'),(17491,1213,'_defer','a:0:{}'),(17492,1213,'_inline','a:0:{}'),(17493,1213,'_preload','a:0:{}'),(17494,1213,'_async','a:0:{}'),(17495,1213,'_handle_dependencies','a:2:{s:26:\"elementor-frontend-modules\";a:2:{i:0;s:25:\"elementor-webpack-runtime\";i:1;s:6:\"jquery\";}s:19:\"elementor-waypoints\";a:1:{i:0;s:6:\"jquery\";}}'),(17496,1213,'_handle_original_sizes','a:2:{s:26:\"elementor-frontend-modules\";s:4:\"32.9\";s:19:\"elementor-waypoints\";s:4:\"12.2\";}'),(17497,1213,'_handle_compressed_sizes','a:2:{s:26:\"elementor-frontend-modules\";s:4:\"32.9\";s:19:\"elementor-waypoints\";s:4:\"12.2\";}'),(17498,1213,'_hash','e1f9e1573538c4bb08de346498e6dbdd'),(17499,1213,'_file_id','1213'),(17500,1213,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/e1f9e1573538c4bb08de346498e6dbdd.js'),(17501,1213,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/e1f9e1573538c4bb08de346498e6dbdd.js'),(17502,1213,'_expires','1668174816'),(17505,1214,'_handles','a:2:{i:0;s:11:\"wphb-global\";i:1;s:20:\"hello-theme-frontend\";}'),(17506,1214,'_handle_urls','a:2:{s:11:\"wphb-global\";s:105:\"https://podiatrist.capetown/wp-content/plugins/hummingbird-performance/admin/assets/js/wphb-global.min.js\";s:20:\"hello-theme-frontend\";s:93:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/assets/js/hello-frontend.min.js\";}'),(17507,1214,'_handle_versions','a:2:{s:11:\"wphb-global\";s:5:\"3.3.4\";s:20:\"hello-theme-frontend\";s:5:\"1.0.0\";}'),(17508,1214,'_extra','a:2:{s:5:\"group\";i:1;s:4:\"data\";a:1:{i:0;s:104:\"var wphbGlobal = {\"ajaxurl\":\"https://podiatrist.capetown/wp-admin/admin-ajax.php\",\"nonce\":\"3244ff9312\"};\";}}'),(17509,1214,'_args',NULL),(17510,1214,'_type','scripts'),(17511,1214,'_dont_minify','a:2:{i:0;s:11:\"wphb-global\";i:1;s:20:\"hello-theme-frontend\";}'),(17512,1214,'_dont_combine','a:0:{}'),(17513,1214,'_dont_enqueue','a:0:{}'),(17514,1214,'_defer','a:0:{}'),(17515,1214,'_inline','a:0:{}'),(17516,1214,'_preload','a:0:{}'),(17517,1214,'_async','a:0:{}'),(17518,1214,'_handle_dependencies','a:2:{s:11:\"wphb-global\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}s:20:\"hello-theme-frontend\";a:1:{i:0;s:6:\"jquery\";}}'),(17519,1214,'_handle_original_sizes','a:2:{s:11:\"wphb-global\";s:3:\"1.6\";s:20:\"hello-theme-frontend\";s:3:\"3.2\";}'),(17520,1214,'_handle_compressed_sizes','a:2:{s:11:\"wphb-global\";s:3:\"1.6\";s:20:\"hello-theme-frontend\";s:3:\"3.2\";}'),(17521,1214,'_hash','f942929b20ec6a966c5079fc783972f3'),(17522,1214,'_file_id','1214'),(17523,1214,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/f942929b20ec6a966c5079fc783972f3.js'),(17524,1214,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/f942929b20ec6a966c5079fc783972f3.js'),(17525,1214,'_expires','1668175009'),(17526,1215,'_handles','a:3:{i:0;s:15:\"jquery-ui-mouse\";i:1;s:19:\"jquery-ui-draggable\";i:2;s:8:\"backbone\";}'),(17527,1215,'_handle_urls','a:3:{s:15:\"jquery-ui-mouse\";s:38:\"/wp-includes/js/jquery/ui/mouse.min.js\";s:19:\"jquery-ui-draggable\";s:42:\"/wp-includes/js/jquery/ui/draggable.min.js\";s:8:\"backbone\";s:31:\"/wp-includes/js/backbone.min.js\";}'),(17528,1215,'_handle_versions','a:3:{s:15:\"jquery-ui-mouse\";s:6:\"1.13.1\";s:19:\"jquery-ui-draggable\";s:6:\"1.13.1\";s:8:\"backbone\";s:5:\"1.4.1\";}'),(17529,1215,'_extra','a:0:{}'),(17530,1215,'_args','1'),(17531,1215,'_type','scripts'),(17532,1215,'_dont_minify','a:3:{i:0;s:15:\"jquery-ui-mouse\";i:1;s:19:\"jquery-ui-draggable\";i:2;s:8:\"backbone\";}'),(17533,1215,'_dont_combine','a:0:{}'),(17534,1215,'_dont_enqueue','a:0:{}'),(17535,1215,'_defer','a:0:{}'),(17536,1215,'_inline','a:0:{}'),(17537,1215,'_preload','a:0:{}'),(17538,1215,'_async','a:0:{}'),(17539,1215,'_handle_dependencies','a:3:{s:15:\"jquery-ui-mouse\";a:1:{i:0;s:14:\"jquery-ui-core\";}s:19:\"jquery-ui-draggable\";a:1:{i:0;s:15:\"jquery-ui-mouse\";}s:8:\"backbone\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}}'),(17540,1215,'_handle_original_sizes','a:3:{s:15:\"jquery-ui-mouse\";s:3:\"3.4\";s:19:\"jquery-ui-draggable\";s:4:\"18.3\";s:8:\"backbone\";s:4:\"23.9\";}'),(17541,1215,'_handle_compressed_sizes','a:3:{s:15:\"jquery-ui-mouse\";s:3:\"3.4\";s:19:\"jquery-ui-draggable\";s:4:\"18.3\";s:8:\"backbone\";s:4:\"23.9\";}'),(17542,1215,'_hash','4b1ce9f814ed4ef1a049d0257f6581d6'),(17543,1215,'_file_id','1215'),(17544,1215,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/4b1ce9f814ed4ef1a049d0257f6581d6.js'),(17545,1215,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/4b1ce9f814ed4ef1a049d0257f6581d6.js'),(17546,1215,'_expires','1668175010'),(17547,1216,'_handles','a:2:{i:0;s:19:\"backbone-marionette\";i:1;s:14:\"backbone-radio\";}'),(17548,1216,'_handle_urls','a:2:{s:19:\"backbone-marionette\";s:103:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js\";s:14:\"backbone-radio\";s:98:\"https://podiatrist.capetown/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js\";}'),(17549,1216,'_handle_versions','a:2:{s:19:\"backbone-marionette\";s:8:\"2.4.5.e1\";s:14:\"backbone-radio\";s:5:\"1.0.4\";}'),(17550,1216,'_extra','a:1:{s:5:\"group\";i:1;}'),(17551,1216,'_args',NULL),(17552,1216,'_type','scripts'),(17553,1216,'_dont_minify','a:2:{i:0;s:19:\"backbone-marionette\";i:1;s:14:\"backbone-radio\";}'),(17554,1216,'_dont_combine','a:0:{}'),(17555,1216,'_dont_enqueue','a:0:{}'),(17556,1216,'_defer','a:0:{}'),(17557,1216,'_inline','a:0:{}'),(17558,1216,'_preload','a:0:{}'),(17559,1216,'_async','a:0:{}'),(17560,1216,'_handle_dependencies','a:2:{s:19:\"backbone-marionette\";a:1:{i:0;s:8:\"backbone\";}s:14:\"backbone-radio\";a:1:{i:0;s:8:\"backbone\";}}'),(17561,1216,'_handle_original_sizes','a:2:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";}'),(17562,1216,'_handle_compressed_sizes','a:2:{s:19:\"backbone-marionette\";s:4:\"45.2\";s:14:\"backbone-radio\";s:3:\"3.8\";}'),(17563,1216,'_hash','360bb8a8f47f59b6e9a9a42c5215a61d'),(17564,1216,'_file_id','1216'),(17565,1216,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/360bb8a8f47f59b6e9a9a42c5215a61d.js'),(17566,1216,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/360bb8a8f47f59b6e9a9a42c5215a61d.js'),(17567,1216,'_expires','1668175010'),(17568,1217,'_handles','a:2:{i:0;s:20:\"hello-theme-frontend\";i:1;s:15:\"smush-lazy-load\";}'),(17569,1217,'_handle_urls','a:2:{s:20:\"hello-theme-frontend\";s:93:\"https://podiatrist.capetown/wp-content/themes/hello-elementor/assets/js/hello-frontend.min.js\";s:15:\"smush-lazy-load\";s:94:\"https://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js\";}'),(17570,1217,'_handle_versions','a:2:{s:20:\"hello-theme-frontend\";s:5:\"1.0.0\";s:15:\"smush-lazy-load\";s:6:\"3.11.1\";}'),(17571,1217,'_extra','a:1:{s:5:\"group\";i:1;}'),(17572,1217,'_args',NULL),(17573,1217,'_type','scripts'),(17574,1217,'_dont_minify','a:2:{i:0;s:20:\"hello-theme-frontend\";i:1;s:15:\"smush-lazy-load\";}'),(17575,1217,'_dont_combine','a:0:{}'),(17576,1217,'_dont_enqueue','a:0:{}'),(17577,1217,'_defer','a:0:{}'),(17578,1217,'_inline','a:0:{}'),(17579,1217,'_preload','a:0:{}'),(17580,1217,'_async','a:0:{}'),(17581,1217,'_handle_dependencies','a:2:{s:20:\"hello-theme-frontend\";a:1:{i:0;s:6:\"jquery\";}s:15:\"smush-lazy-load\";a:0:{}}'),(17582,1217,'_handle_original_sizes','a:2:{s:20:\"hello-theme-frontend\";s:3:\"3.2\";s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(17583,1217,'_handle_compressed_sizes','a:2:{s:20:\"hello-theme-frontend\";s:3:\"3.2\";s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(17584,1217,'_hash','615b878b34a318d2c385367f1880cdbe'),(17585,1217,'_file_id','1217'),(17586,1217,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/615b878b34a318d2c385367f1880cdbe.js'),(17587,1217,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/615b878b34a318d2c385367f1880cdbe.js'),(17588,1217,'_expires','1668175084'),(17590,1218,'_handles','a:3:{i:0;s:14:\"hoverintent-js\";i:1;s:9:\"admin-bar\";i:2;s:10:\"underscore\";}'),(17591,1218,'_handle_urls','a:3:{s:14:\"hoverintent-js\";s:37:\"/wp-includes/js/hoverintent-js.min.js\";s:9:\"admin-bar\";s:32:\"/wp-includes/js/admin-bar.min.js\";s:10:\"underscore\";s:33:\"/wp-includes/js/underscore.min.js\";}'),(17592,1218,'_handle_versions','a:3:{s:14:\"hoverintent-js\";s:5:\"2.2.1\";s:9:\"admin-bar\";b:0;s:10:\"underscore\";s:6:\"1.13.3\";}'),(17593,1218,'_extra','a:0:{}'),(17594,1218,'_args','1'),(17595,1218,'_type','scripts'),(17596,1218,'_dont_minify','a:3:{i:0;s:14:\"hoverintent-js\";i:1;s:9:\"admin-bar\";i:2;s:10:\"underscore\";}'),(17597,1218,'_dont_combine','a:0:{}'),(17598,1218,'_dont_enqueue','a:0:{}'),(17599,1218,'_defer','a:0:{}'),(17600,1218,'_inline','a:0:{}'),(17601,1218,'_preload','a:0:{}'),(17602,1218,'_async','a:0:{}'),(17603,1218,'_handle_dependencies','a:3:{s:14:\"hoverintent-js\";a:0:{}s:9:\"admin-bar\";a:1:{i:0;s:14:\"hoverintent-js\";}s:10:\"underscore\";a:0:{}}'),(17604,1218,'_handle_original_sizes','a:3:{s:14:\"hoverintent-js\";s:3:\"1.7\";s:9:\"admin-bar\";s:3:\"3.5\";s:10:\"underscore\";s:4:\"18.9\";}'),(17605,1218,'_handle_compressed_sizes','a:3:{s:14:\"hoverintent-js\";s:3:\"1.7\";s:9:\"admin-bar\";s:3:\"3.5\";s:10:\"underscore\";s:4:\"18.9\";}'),(17606,1218,'_hash','1e5cd157afae6266b2b38fdd71660439'),(17607,1218,'_file_id','1218'),(17608,1218,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/1e5cd157afae6266b2b38fdd71660439.js'),(17609,1218,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/1e5cd157afae6266b2b38fdd71660439.js'),(17610,1218,'_expires','1668175124'),(17611,1219,'_elementor_edit_mode','builder'),(17612,1219,'_elementor_template_type','wp-page'),(17613,1219,'_elementor_version','3.6.1'),(17614,1219,'_elementor_pro_version','3.6.4'),(17615,1219,'_wp_page_template','elementor_canvas'),(17616,1219,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/em><\\/p><p><em>Thursdays and Fridays\\u00a08h30 - 13h00<\\/em><\\/p><p>House calls available where necessary.<\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point,\\u00a076 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p><p>We welcome Taariq Jacobs to the practice.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(17617,1219,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(17618,1219,'_elementor_page_assets','a:0:{}'),(17619,1219,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(17621,1220,'_elementor_edit_mode','builder'),(17622,1220,'_elementor_template_type','wp-page'),(17623,1220,'_elementor_version','3.6.1'),(17624,1220,'_elementor_pro_version','3.6.4'),(17625,1220,'_wp_page_template','elementor_canvas'),(17626,1220,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"760c4ad\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"menu\":\"menu-1\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=text\",\"color_menu_item_hover\":\"globals\\/colors?id=primary\",\"pointer_color_menu_item_hover\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/em><\\/p><p><em>Thursdays and Fridays\\u00a08h30 - 13h00<\\/em><\\/p><p>House calls available where necessary.<\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point,\\u00a076 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p><p>We welcome Taariq Jacobs to the practice.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"eb6d732\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"9842d7a\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Dosis\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"color_menu_item\":\"#033537\",\"align_items\":\"center\",\"menu_typography_font_weight\":\"300\",\"color_menu_item_hover\":\"#10ccae\",\"pointer_width\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"dropdown\":\"none\",\"menu\":\"menu-1\"},\"elements\":[],\"widgetType\":\"nav-menu\"},{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2021. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(17627,1220,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(17628,1220,'_elementor_page_assets','a:0:{}'),(17629,1220,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(17631,1221,'_elementor_edit_mode','builder'),(17632,1221,'_elementor_template_type','wp-page'),(17633,1221,'_elementor_version','3.6.1'),(17634,1221,'_elementor_pro_version','3.6.4'),(17635,1221,'_wp_page_template','elementor_canvas'),(17636,1221,'_elementor_data','[{\"id\":\"dd41e58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4bfce36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6cf148\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist \",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e487e3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d07c48b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"215cebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Andy Blecher will keep your feet healthy and happy\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8cfc747\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"14f96ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8209b83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Happy-feet-cropped.jpg\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"source\":\"library\"},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c793b5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clear nail fungus infections and warts with Laser technology\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3c657e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specialists report that fungal infection of the nails, or <em>onychomycosis<\\/em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.<\\/p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.<\\/p><h3>Summary of Neo Laser benefits:<\\/h3><ul><li>Simple, quick and safe No downtime<\\/li><li>No pain or discomfort Few treatment sessions<\\/li><li>The most cost-effective solution.<\\/li><\\/ul>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0de4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-Laser-logo.png\",\"id\":148}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b6d41c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"295424b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.<\\/p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.<\\/p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\\\"https:\\/\\/www.podiatrist.capetown\\/diabetic-foot\\/\\\">Click here <\\/a>for more information on her fields of interest and the professional care she can offer you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cd37da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Neo-V-aser.jpg\",\"id\":141,\"alt\":\"Neo V Laser\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1221fa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.<\\/p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bce791d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"67110ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment\",\"header_size\":\"h3\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1aac977\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-Blecher-podiatrist.jpg\",\"id\":87},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d059fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>021 797 6967<\\/h2><h2>Plumstead<\\/h2><p>2 Burnham Road<\\/p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00<\\/em><\\/p><p><em>Thursdays and Fridays\\u00a08h30 - 13h00<\\/em><\\/p><p>House calls available where necessary.<\\/p><h2><strong>Sea Point<\\/strong><\\/h2><p>3rd Floor The Point,\\u00a076 Regent Road<\\/p><p><em>Thursdays <\\/em><strong>\\u00a0<\\/strong><\\/p><p>We welcome Taariq Jacobs to the practice.<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"816382a\",\"elType\":\"widget\",\"settings\":{\"title\":\"General Enquiries\",\"align\":\"left\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3961438\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:<\\/p><h2>021 797 6967<\\/h2>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8a3912f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click to Email\",\"link\":{\"url\":\"mailto:andyblecherpodiatrist@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"661e208\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/podiatrist.capetown\\/contact-andy-blecher\\/\\\">Click here for maps<\\/a><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Averia Libre\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"300\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"472ff93c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_title\":\"Footer\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_timestamp_\":\"v1K01GWENIQ2xyVGI5TERhMiswSzBCZz09\"},\"elements\":[{\"id\":\"5b5f7dc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4b79be60\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":\"1760\",\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"rgba(3,53,55,0.2)\"},\"elements\":[{\"id\":\"b329240\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.608,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"29ed9e29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":16,\"url\":\"https:\\/\\/podiatrist.capetown\\/wp-content\\/uploads\\/2021\\/06\\/Andy-new-logo-2019.jpg\"},\"align\":\"left\",\"link_to\":\"custom\",\"__dynamic__\":[],\"image_size\":\"full\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":\"1\"},{\"id\":\"52861f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.392,\"content_position\":\"center\",\"_inline_size_tablet\":\"100\"},\"elements\":[{\"id\":\"28076d3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright Andy Blecher Podiatrist \\u00a9 2022. All rights reserved.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Dosis\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"200\",\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(17637,1221,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(17638,1221,'_elementor_page_assets','a:0:{}'),(17639,1221,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:4;s:5:\"align\";i:2;s:7:\"link_to\";i:1;s:12:\"align_tablet\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:15:\"color_menu_item\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:21:\"color_menu_item_hover\";i:1;s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:8:\"dropdown\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:2;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:6:\"layout\";i:1;s:6:\"_title\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}}'),(17642,1222,'_elementor_edit_mode','builder'),(17643,1222,'_elementor_template_type','kit'),(17644,1222,'_elementor_version','3.6.0'),(17645,1222,'_elementor_pro_version','3.6.4'),(17646,1222,'_wp_page_template','default'),(17647,1222,'_elementor_page_settings','a:11:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(17648,1222,'_elementor_data','[]'),(17649,1222,'_elementor_page_assets','a:0:{}'),(17652,9,'_wds_readability','a:4:{s:5:\"score\";i:0;s:9:\"raw_score\";b:0;s:11:\"is_readable\";b:0;s:5:\"error\";s:19:\"No content to check\";}'),(17653,9,'_wds_analysis','a:3:{s:6:\"errors\";a:8:{s:17:\"wds-checks::focus\";s:27:\"There are no focus keywords\";s:24:\"wds-checks::title_length\";s:27:\"Your SEO title is too short\";s:27:\"wds-checks::metadesc_length\";s:49:\"Your meta description is less than 135 characters\";s:28:\"wds-checks::imgalts_keywords\";s:33:\"You haven&#039;t added any images\";s:26:\"wds-checks::content_length\";s:81:\"The text contains 0 words which is less than the recommended minimum of 300 words\";s:23:\"wds-checks::links_count\";s:64:\"You haven\'t added any internal or external links in your content\";s:25:\"wds-checks::para_keywords\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";s:32:\"wds-checks::subheadings_keywords\";s:30:\"You don\'t have any subheadings\";}s:10:\"percentage\";i:43;s:6:\"checks\";a:14:{s:5:\"focus\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:154:\"In order to give your content the best possible chance to be discovered, it is best to select some focus keywords or key phrases, to give it some context.\";s:9:\"more_info\";s:67:\"Selecting focus keywords helps describe what your content is about.\";s:10:\"status_msg\";s:27:\"There are no focus keywords\";}s:15:\"focus_stopwords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:68:\"You kept the focus keywords of your article to the point, way to go!\";s:9:\"more_info\";s:294:\"Stop words are words which can be considered insignificant in a search query, either because they are way too common, or because they do not convey much information. Such words are often filtered out from a search query. Ideally, you will want such words to not be a part of your article focus.\";s:10:\"status_msg\";s:18:\"Focus to the point\";}s:14:\"title_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:143:\"You\'ve got your focus keyword(s) in the SEO title meaning it has the best chance of matching what users are searching for first up - nice work.\";s:9:\"more_info\";s:494:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO title of a page because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the greater the chance that your article will be found higher up in search results. Whilst it\'s recommended to try and get these words in, don\'t sacrifice readability and the quality of the SEO title just to rank higher - people may not want to click on it if it doesn\'t read well.\";s:10:\"status_msg\";s:44:\"The SEO title contains your focus keyword(s)\";}s:12:\"title_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:158:\"Your SEO title is 38 characters which is less than the recommended 50 characters. Best practice is between 50 and 65 characters, with 60 being the sweet spot.\";s:9:\"more_info\";s:712:\"Your SEO title is the most important element because it is what users will see in search engine results. You\'ll want to make sure that you have your focus keywords in there, that it\'s a nice length, and that people will want to click on it. Best practices suggest keeping your titles between 50 and 65 characters including spaces, though in some cases 60 is the sweetspot. The length is important both for SEO ranking but also how your title will show up in search engines - long titles will be cut off visually and look bad. Unfortunately there isn\'t a rule book for SEO titles, just remember to make your title great for SEO but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:27:\"Your SEO title is too short\";}s:17:\"metadesc_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:159:\"The focus keyword for this article appears in the SEO description which means it has a better chance of matching what your visitors will search for, brilliant!\";s:9:\"more_info\";s:456:\"It\'s considered good practice to try to include your focus keyword(s) in the SEO description of your pages, because this is what people looking for the article are likely searching for. The higher chance of a keyword match, the higher chance your article will be found higher up in search results. Remember this is your chance to give a potential visitor a quick peek into what\'s inside your article. If they like what they read they\'ll click on your link.\";s:10:\"status_msg\";s:48:\"The SEO description contains your focus keywords\";}s:15:\"metadesc_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:132:\"Your SEO description (or excerpt) is currently too short which means it has less of a chance ranking for your chosen focus keywords.\";s:9:\"more_info\";s:505:\"We recommend keeping your meta descriptions between 135 and 300 characters (including spaces). Doing so achieves a nice balance between populating your description with keywords to rank highly in search engines, and also keeping it to a readable length that won\'t be cut off in search engine results. Unfortunately there isn\'t a rule book for SEO meta descriptions, just remember to make your description great for SEO, but also (most importantly) readable and enticing for potential visitors to click on.\";s:10:\"status_msg\";s:49:\"Your meta description is less than 135 characters\";}s:13:\"slug_keywords\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:181:\"You\'ve got your focus keywords in the page slug which can help your page rank as you have a higher chance of matching search terms, and Google does index your page URL, great stuff!\";s:9:\"more_info\";s:403:\"The page URL you use for this post will be visible in search engine results, so it\'s important to also include words that the searcher is looking for (your focus keywords). It\'s debatable whether keywords in the slug are of any real search engine ranking benefit. One could assume that because the slug does get indexed, the algorithm may favour slugs more closely aligned with the topic being searched.\";s:10:\"status_msg\";s:46:\"You\'ve used your focus keyword in the page URL\";}s:13:\"keywords_used\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:148:\"Focus keywords are intended to be unique so you\'re less likely to write duplicate content. Consider changing the focus keywords to something unique.\";s:9:\"more_info\";s:1145:\"		Whilst duplicate content isn&#039;t technically penalized it presents three rather niggly issues for search engines:		<br/><br/>\n\n		1. It&#039;s unclear which versions to include/exclude from their indexes.<br/>\n		2. They don&#039;t know whether to direct the link metrics (trust, authority, anchor text, link equity, etc.) to one page, or keep it separated between multiple versions.		<br/>\n		3. The engine is unsure which version to rank for query results.<br/><br/>\n\n		So whilst there&#039;s no direct penalty, if your content isn&#039;t unique then search engine algorithms could be filtering out your articles from their results. The easiest way to make sure this doesn&#039;t happen is to try and make each of your posts and pages as unique as possible, hence specifying different focus keywords for each article you write.		<br/><br/>\n\n		Note: If you happen to have two pages with the same content, it&#039;s important to tell search engines which one to show in search results using the Canonical URL feature. You can read more about this <a href=\'https://wpmudev.com/blog/wordpress-canonicalization-guide/\' target=\'_blank\'>here</a>.		\";s:10:\"status_msg\";s:42:\"You haven\'t used this focus keyword before\";}s:16:\"imgalts_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:378:\"Images are a great addition to any piece of content and it’s highly recommended to have imagery on your pages. Consider adding a few images that relate to your body content to enhance the reading experience of your article. Where possible, it’s also a great opportunity to include your focus keyword(s) to further associate the article with the topic you’re writing about.\";s:9:\"more_info\";s:244:\"Image alternative text attributes help search engines correctly index images, aid visually impaired readers, and the text is used in place of the image if it&#039;s unable to load. You should add alternative text for all images in your content.\";s:10:\"status_msg\";s:33:\"You haven&#039;t added any images\";}s:14:\"content_length\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:189:\"Unless your website is a photography blog it\'s generally a good idea to include content for your visitors to read, and also for Google to index. Something, anything, is better than nothing.\";s:9:\"more_info\";s:798:\"Content is ultimately the bread and butter of your SEO. Without words, your pages and posts will have a hard time ranking for the keywords you want them to. As a base for any article best practice suggests a minimum of 300 words, with 1000 being a good benchmark and 1600 being the optimal. Numerous studies have uncovered that longer content tends to perform better than shorter content, with pages having 1000 words or more performing best. Whilst optimizing your content for search engines is what we\'re going for here, a proven bi-product is that high quality long form articles also tend to get shared more on social platforms. With the increasing power of social media as a tool for traffic it\'s a nice flow on effect of writing those juicy high quality articles your readers are waiting for.\";s:10:\"status_msg\";s:81:\"The text contains 0 words which is less than the recommended minimum of 300 words\";}s:15:\"keyword_density\";a:5:{s:6:\"status\";b:1;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:196:\"Currently you haven\'t used any keywords in your content. The recommended density is 1-3%. A low keyword density means your content has less chance of ranking highly for your chosen focus keywords.\";s:9:\"more_info\";s:728:\"Keyword density is all about making sure your content is populated with enough keywords to give it a better chance of appearing higher in search results. One way of making sure people will be able to find our content is using particular focus keywords, and using them as much as naturally possible in our content. In doing this we are trying to match up the keywords that people are likely to use when searching for this article or page, so try to get into your visitors mind and picture them typing a search into Google. While we recommend aiming for 1-3% density, remember content is king and you don\'t want your article to end up sounding like a robot. Get creative and utilize the page title, image caption, and subheadings.\";s:10:\"status_msg\";s:33:\"You haven\'t used any keywords yet\";}s:11:\"links_count\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:202:\"Internal links help search engines crawl your website, effectively pointing them to more pages to index on your website. You should consider adding at least one internal link to another related article.\";s:9:\"more_info\";s:1257:\"		Internal links are important for linking together related content. Search engines will &#039;crawl&#039; through your website, indexing pages and posts as they go. To help them discover all the juicy content your website has to offer, it&#039;s wise to make sure your content has internal links built in for bots to follow and index.		<br/><br/>\n\n		External links don&#039;t benefit your SEO by having them in your own content, but you&#039;ll want to try and get as many other websites linking to your articles and pages as possible. Search engines treat links to your website as a &#039;third party vote&#039; in favour of your website - like a vote of confidence. Since they&#039;re the hardest form of &#039;validation&#039; to get (another website has to endorse you!) search engines weight them heavily when considering page rank. For more info: <a href=\'https://moz.com/learn/seo/internal-link\' target=\'_blank\'>https://moz.com/learn/seo/internal-link</a>		<br/><br/>\n\n		Note: This check is only looking at the content your page is outputting and doesn&#039;t include your main navigation. Blogs with lots of posts will benefit the most from this method, as it aids Google in finding and indexing all of your content, not just the latest articles.		\";s:10:\"status_msg\";s:64:\"You haven\'t added any internal or external links in your content\";}s:13:\"para_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:169:\"It\'s good practice to include your focus keywords in the first paragraph of your content so that search engines and visitors can quickly scope the topic of your article.\";s:9:\"more_info\";s:541:\"You should clearly formulate what your post is about in the first paragraph. In printed texts, a writer usually starts off with some kind of teaser, but there is no time for that if you are writing for the web. You only have seconds to gain your reader’s attention. Make sure the first paragraph tells the main message of your post. That way, you make it easy for your reader to figure out what your post is about. Doing this also tells Google what your post is about. Don’t forget to put your focus keyword in that first paragraph!					\";s:10:\"status_msg\";s:78:\"You haven\'t included the focus keywords in the first paragraph of your article\";}s:20:\"subheadings_keywords\";a:5:{s:6:\"status\";b:0;s:7:\"ignored\";b:0;s:14:\"recommendation\";s:277:\"Using subheadings in your content (such as H2\'s or H3\'s) will help both the user and search engines quickly figure out what your article is about. It also helps visually section your content which in turn is great user experience. We recommend you have at least one subheading.\";s:9:\"more_info\";s:478:\"When trying to rank for certain keywords, those keywords should be found in as many key places as possible. Given that you\'re writing about the topic it only makes sense that you mention it in at least one of your subheadings. Headings are important for users as they break up your content and help readers figure out what the text is about. Same goes for search engines. With that said, don\'t force keywords into all your titles - keep it natural, readable, and use moderation!\";s:10:\"status_msg\";s:30:\"You don\'t have any subheadings\";}}}'),(17655,431,'_wp_old_date','2021-06-11'),(17656,429,'_wp_old_date','2021-06-11'),(17657,428,'_wp_old_date','2021-06-11'),(17658,430,'_wp_old_date','2021-06-11'),(17659,433,'_wp_old_date','2021-06-11'),(17660,427,'_wp_old_date','2021-06-11'),(17661,434,'_wp_old_date','2021-06-11'),(17662,435,'_wp_old_date','2021-06-11'),(17663,432,'_wp_old_date','2021-06-11'),(17664,426,'_wp_old_date','2021-06-11'),(17665,1223,'_wp_trash_meta_status','publish'),(17666,1223,'_wp_trash_meta_time','1662991591'),(17667,1224,'_elementor_edit_mode','builder'),(17668,1224,'_elementor_template_type','kit'),(17669,1224,'_elementor_version','3.7.4'),(17670,1224,'_elementor_pro_version','3.6.4'),(17671,1224,'_wp_page_template','default'),(17672,1224,'_elementor_page_settings','a:14:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:17:\"hello_footer_menu\";s:1:\"2\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:1:{s:23:\"hello_footer_menu_color\";s:25:\"globals/colors?id=primary\";}}'),(17673,1224,'_elementor_data','[]'),(17674,1224,'_elementor_page_assets','a:0:{}'),(17678,1225,'_wp_trash_meta_status','publish'),(17679,1225,'_wp_trash_meta_time','1662991925'),(17680,9,'_edit_last','1'),(17681,9,'_wds_meta-robots-adv',','),(17683,9,'_wds_trimmed_excerpt',''),(17684,1226,'_elementor_edit_mode','builder'),(17685,1226,'_elementor_template_type','kit'),(17686,1226,'_elementor_version','3.7.4'),(17687,1226,'_elementor_pro_version','3.6.4'),(17688,1226,'_wp_page_template','default'),(17689,1226,'_elementor_page_settings','a:15:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:17:\"hello_footer_menu\";s:1:\"2\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:2:{s:23:\"hello_footer_menu_color\";s:25:\"globals/colors?id=primary\";s:23:\"hello_header_menu_color\";s:25:\"globals/colors?id=primary\";}s:17:\"hello_header_menu\";s:1:\"2\";}'),(17690,1226,'_elementor_data','[]'),(17691,1226,'_elementor_page_assets','a:0:{}'),(17695,1227,'_elementor_edit_mode','builder'),(17696,1227,'_elementor_template_type','kit'),(17697,1227,'_elementor_version','3.7.4'),(17698,1227,'_elementor_pro_version','3.6.4'),(17699,1227,'_wp_page_template','default'),(17700,1227,'_elementor_page_settings','a:16:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:17:\"hello_footer_menu\";s:1:\"2\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:3:{s:23:\"hello_footer_menu_color\";s:25:\"globals/colors?id=primary\";s:23:\"hello_header_menu_color\";s:25:\"globals/colors?id=primary\";s:30:\"hello_header_menu_toggle_color\";s:25:\"globals/colors?id=primary\";}s:17:\"hello_header_menu\";s:1:\"2\";s:28:\"hello_header_tagline_display\";s:0:\"\";}'),(17701,1227,'_elementor_data','[]'),(17702,1227,'_elementor_page_assets','a:0:{}'),(17706,1228,'_elementor_edit_mode','builder'),(17707,1228,'_elementor_template_type','kit'),(17708,1228,'_elementor_version','3.7.4'),(17709,1228,'_elementor_pro_version','3.6.4'),(17710,1228,'_wp_page_template','default'),(17711,1228,'_elementor_page_settings','a:19:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:17:\"hello_footer_menu\";s:1:\"2\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:3:{s:23:\"hello_footer_menu_color\";s:25:\"globals/colors?id=primary\";s:23:\"hello_header_menu_color\";s:25:\"globals/colors?id=primary\";s:30:\"hello_header_menu_toggle_color\";s:0:\"\";}s:17:\"hello_header_menu\";s:1:\"2\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:23:\"hello_header_menu_color\";s:7:\"#00B0F2\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#00B0F2\";s:23:\"hello_footer_menu_color\";s:7:\"#00B0F2\";}'),(17712,1228,'_elementor_data','[]'),(17713,1228,'_elementor_page_assets','a:0:{}'),(17718,1229,'_elementor_edit_mode','builder'),(17719,1229,'_elementor_template_type','kit'),(17720,1229,'_elementor_version','3.7.4'),(17721,1229,'_elementor_pro_version','3.6.4'),(17722,1229,'_wp_page_template','default'),(17723,1229,'_elementor_page_settings','a:21:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:17:\"hello_footer_menu\";s:1:\"2\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:3:{s:23:\"hello_footer_menu_color\";s:25:\"globals/colors?id=primary\";s:23:\"hello_header_menu_color\";s:25:\"globals/colors?id=primary\";s:30:\"hello_header_menu_toggle_color\";s:0:\"\";}s:17:\"hello_header_menu\";s:1:\"2\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:23:\"hello_header_menu_color\";s:7:\"#00B0F2\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#00B0F2\";s:23:\"hello_footer_menu_color\";s:7:\"#00B0F2\";s:25:\"hello_header_custom_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1138;s:5:\"sizes\";a:0:{}}s:16:\"hello_header_gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:103;s:5:\"sizes\";a:0:{}}}'),(17724,1229,'_elementor_data','[]'),(17725,1229,'_elementor_page_assets','a:0:{}'),(17737,9,'_wds_meta-robots-nofollow',''),(17738,1230,'_elementor_edit_mode','builder'),(17739,1230,'_elementor_template_type','kit'),(17740,1230,'_elementor_version','3.7.4'),(17741,1230,'_elementor_pro_version','3.6.4'),(17742,1230,'_wp_page_template','default'),(17743,1230,'_elementor_page_settings','a:22:{s:16:\"site_description\";s:33:\"Plumstead and Sea Point practices\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00B0F2\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"c8c375a\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#ED1604\";}}s:17:\"system_typography\";a:4:{i:0;a:6:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}}i:1;a:6:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"200\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:12:\"Averia Libre\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:23:\"Andy Blecher Podiatrist\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:17:\"hello_footer_menu\";s:1:\"2\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"__globals__\";a:3:{s:23:\"hello_footer_menu_color\";s:25:\"globals/colors?id=primary\";s:23:\"hello_header_menu_color\";s:25:\"globals/colors?id=primary\";s:30:\"hello_header_menu_toggle_color\";s:0:\"\";}s:17:\"hello_header_menu\";s:1:\"2\";s:28:\"hello_header_tagline_display\";s:0:\"\";s:23:\"hello_header_menu_color\";s:7:\"#00B0F2\";s:30:\"hello_header_menu_toggle_color\";s:7:\"#00B0F2\";s:23:\"hello_footer_menu_color\";s:7:\"#00B0F2\";s:25:\"hello_header_custom_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1138;s:5:\"sizes\";a:0:{}}s:16:\"hello_header_gap\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:103;s:5:\"sizes\";a:0:{}}s:24:\"hello_header_menu_layout\";s:8:\"dropdown\";}'),(17744,1230,'_elementor_data','[]'),(17745,1230,'_elementor_page_assets','a:0:{}'),(17747,9,'_elementor_css','a:6:{s:4:\"time\";i:1662994512;s:5:\"fonts\";a:2:{i:0;s:12:\"Averia Libre\";i:3;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17748,338,'_elementor_css','a:6:{s:4:\"time\";i:1662994512;s:5:\"fonts\";a:1:{i:0;s:5:\"Dosis\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17749,311,'_elementor_css','a:6:{s:4:\"time\";i:1663000053;s:5:\"fonts\";a:1:{i:0;s:12:\"Averia Libre\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17750,1231,'_handles','a:1:{i:0;s:18:\"elementor-post-311\";}'),(17751,1231,'_handle_urls','a:1:{s:18:\"elementor-post-311\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-311.css?ver=1663000053\";}'),(17752,1231,'_handle_versions','a:1:{s:18:\"elementor-post-311\";N;}'),(17753,1231,'_extra','a:0:{}'),(17754,1231,'_args','all'),(17755,1231,'_type','styles'),(17756,1231,'_dont_minify','a:0:{}'),(17757,1231,'_dont_combine','a:0:{}'),(17758,1231,'_dont_enqueue','a:0:{}'),(17759,1231,'_defer','a:0:{}'),(17760,1231,'_inline','a:0:{}'),(17761,1231,'_preload','a:0:{}'),(17762,1231,'_async','a:0:{}'),(17763,1231,'_handle_dependencies','a:1:{s:18:\"elementor-post-311\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(17764,1231,'_handle_original_sizes','a:1:{s:18:\"elementor-post-311\";s:3:\"0.4\";}'),(17765,1231,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-311\";s:3:\"0.4\";}'),(17766,1231,'_hash','db17822c7a0e6e45f0970c357ed6ec33'),(17767,1231,'_file_id','1231'),(17768,1231,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/db17822c7a0e6e45f0970c357ed6ec33.css'),(17769,1231,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/db17822c7a0e6e45f0970c357ed6ec33.css'),(17770,1231,'_expires','1668184068'),(17771,69,'_elementor_css','a:6:{s:4:\"time\";i:1663000070;s:5:\"fonts\";a:2:{i:0;s:12:\"Averia Libre\";i:5;s:5:\"Dosis\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17772,372,'_elementor_css','a:6:{s:4:\"time\";i:1663004156;s:5:\"fonts\";a:1:{i:0;s:5:\"Dosis\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17773,362,'_elementor_css','a:6:{s:4:\"time\";i:1663005238;s:5:\"fonts\";a:2:{i:0;s:12:\"Averia Libre\";i:2;s:5:\"Dosis\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17774,395,'_elementor_css','a:6:{s:4:\"time\";i:1663006635;s:5:\"fonts\";a:2:{i:0;s:12:\"Averia Libre\";i:1;s:5:\"Dosis\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17775,271,'_elementor_css','a:6:{s:4:\"time\";i:1663010131;s:5:\"fonts\";a:1:{i:0;s:5:\"Dosis\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17776,193,'_elementor_css','a:6:{s:4:\"time\";i:1663010187;s:5:\"fonts\";a:2:{i:0;s:12:\"Averia Libre\";i:2;s:5:\"Dosis\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17777,390,'_elementor_css','a:6:{s:4:\"time\";i:1663010304;s:5:\"fonts\";a:2:{i:0;s:12:\"Averia Libre\";i:1;s:5:\"Dosis\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17778,1232,'_handles','a:1:{i:0;s:18:\"elementor-post-390\";}'),(17779,1232,'_handle_urls','a:1:{s:18:\"elementor-post-390\";s:88:\"https://podiatrist.capetown/wp-content/uploads/elementor/css/post-390.css?ver=1663010304\";}'),(17780,1232,'_handle_versions','a:1:{s:18:\"elementor-post-390\";N;}'),(17781,1232,'_extra','a:0:{}'),(17782,1232,'_args','all'),(17783,1232,'_type','styles'),(17784,1232,'_dont_minify','a:0:{}'),(17785,1232,'_dont_combine','a:0:{}'),(17786,1232,'_dont_enqueue','a:0:{}'),(17787,1232,'_defer','a:0:{}'),(17788,1232,'_inline','a:0:{}'),(17789,1232,'_preload','a:0:{}'),(17790,1232,'_async','a:0:{}'),(17791,1232,'_handle_dependencies','a:1:{s:18:\"elementor-post-390\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),(17792,1232,'_handle_original_sizes','a:1:{s:18:\"elementor-post-390\";s:3:\"3.4\";}'),(17793,1232,'_handle_compressed_sizes','a:1:{s:18:\"elementor-post-390\";s:3:\"3.3\";}'),(17794,1232,'_hash','a195a1267c7dabd03adb259e29d647b9'),(17795,1232,'_file_id','1232'),(17796,1232,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/a195a1267c7dabd03adb259e29d647b9.css'),(17797,1232,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/a195a1267c7dabd03adb259e29d647b9.css'),(17798,1232,'_expires','1668194329'),(17799,417,'_elementor_css','a:6:{s:4:\"time\";i:1663010357;s:5:\"fonts\";a:1:{i:0;s:5:\"Dosis\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(17800,1233,'_handles','a:2:{i:0;s:20:\"hello-theme-frontend\";i:1;s:15:\"smush-lazy-load\";}'),(17801,1233,'_handle_urls','a:2:{s:20:\"hello-theme-frontend\";s:92:\"http://podiatrist.capetown/wp-content/themes/hello-elementor/assets/js/hello-frontend.min.js\";s:15:\"smush-lazy-load\";s:93:\"http://podiatrist.capetown/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js\";}'),(17802,1233,'_handle_versions','a:2:{s:20:\"hello-theme-frontend\";s:5:\"1.0.0\";s:15:\"smush-lazy-load\";s:6:\"3.11.1\";}'),(17803,1233,'_extra','a:1:{s:5:\"group\";i:1;}'),(17804,1233,'_args',NULL),(17805,1233,'_type','scripts'),(17806,1233,'_dont_minify','a:2:{i:0;s:20:\"hello-theme-frontend\";i:1;s:15:\"smush-lazy-load\";}'),(17807,1233,'_dont_combine','a:0:{}'),(17808,1233,'_dont_enqueue','a:0:{}'),(17809,1233,'_defer','a:0:{}'),(17810,1233,'_inline','a:0:{}'),(17811,1233,'_preload','a:0:{}'),(17812,1233,'_async','a:0:{}'),(17813,1233,'_handle_dependencies','a:2:{s:20:\"hello-theme-frontend\";a:1:{i:0;s:6:\"jquery\";}s:15:\"smush-lazy-load\";a:0:{}}'),(17814,1233,'_handle_original_sizes','a:2:{s:20:\"hello-theme-frontend\";s:3:\"3.2\";s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(17815,1233,'_handle_compressed_sizes','a:2:{s:20:\"hello-theme-frontend\";s:3:\"3.2\";s:15:\"smush-lazy-load\";s:3:\"7.9\";}'),(17816,1233,'_hash','615b878b34a318d2c385367f1880cdbe'),(17817,1233,'_file_id','1233'),(17818,1233,'_url','https://podiatrist.capetown/wp-content/uploads/hummingbird-assets/615b878b34a318d2c385367f1880cdbe.js'),(17819,1233,'_path','/home/podct/public_html/wp-content/uploads/hummingbird-assets/615b878b34a318d2c385367f1880cdbe.js'),(17820,1233,'_expires','1668203308');
/*!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=1234 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (9,1,'2021-06-02 12:59:34','2021-06-02 12:59:34','','Default Kit','','publish','closed','closed','','default-kit','','','2022-09-12 16:42:42','2022-09-12 14:42:42','',0,'https://podiatrist.capetown/?elementor_library=default-kit',0,'elementor_library','',0),(16,1,'2021-06-03 14:37:09','2021-06-03 12:37:09','','Andy Blecher Podiatrist','','inherit','open','closed','','andy-new-logo-2019','','','2021-09-14 15:26:58','2021-09-14 13:26:58','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',0,'attachment','image/jpeg',0),(18,1,'2021-06-03 14:37:42','2021-06-03 12:37:42','','diabetic foot podiatrist','','inherit','open','closed','','cawcc-pic','','','2021-06-05 14:59:22','2021-06-05 12:59:22','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg',0,'attachment','image/jpeg',0),(19,1,'2021-06-03 14:37:48','2021-06-03 12:37:48','','Dr Comfort Podiatrist classic black shoe','','inherit','open','closed','','classic-black-3_4-1','','','2021-06-08 11:12:00','2021-06-08 09:12:00','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg',0,'attachment','image/jpeg',0),(20,1,'2021-06-03 14:37:52','2021-06-03 12:37:52','','Clear Sense podiatry','','inherit','open','closed','','clearsense-image','','','2021-06-03 14:47:08','2021-06-03 12:47:08','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/ClearSense-image.jpg',0,'attachment','image/jpeg',0),(21,1,'2021-06-03 14:37:57','2021-06-03 12:37:57','','diabetic foot podiatrist','','inherit','open','closed','','dfwg-logo','','','2021-06-05 14:58:44','2021-06-05 12:58:44','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/DFWG-logo.jpg',0,'attachment','image/jpeg',0),(22,1,'2021-06-03 14:38:02','2021-06-03 12:38:02','','Dr Comfort logo','','inherit','open','closed','','dr-comfort-header','','','2021-06-03 14:49:00','2021-06-03 12:49:00','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/dr-comfort-header.png',0,'attachment','image/png',0),(24,1,'2021-06-03 14:38:15','2021-06-03 12:38:15','','Happy Feet','','inherit','open','closed','','happy-feet','','','2021-06-03 14:50:05','2021-06-03 12:50:05','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-compressed.jpg',0,'attachment','image/jpeg',0),(25,1,'2021-06-03 14:38:22','2021-06-03 12:38:22','','Andy Blecher Podiatrist','','inherit','open','closed','','happy-feet-2','','','2021-09-14 15:26:23','2021-09-14 13:26:23','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg',0,'attachment','image/jpeg',0),(26,1,'2021-06-03 14:38:29','2021-06-03 12:38:29','','Happy toes','','inherit','open','closed','','happy-feet-3','','','2021-06-03 15:10:54','2021-06-03 13:10:54','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet.jpg',0,'attachment','image/jpeg',0),(28,1,'2021-06-03 14:38:47','2021-06-03 12:38:47','','Latest news','','inherit','open','closed','','latest-news-flash','','','2021-06-03 14:52:06','2021-06-03 12:52:06','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Latest-news-flash.jpg',0,'attachment','image/jpeg',0),(29,1,'2021-06-03 14:38:50','2021-06-03 12:38:50','','Dr Comfort Laura shoes','','inherit','open','closed','','laura','','','2021-06-08 11:10:47','2021-06-08 09:10:47','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Laura.jpg',0,'attachment','image/jpeg',0),(30,1,'2021-06-03 14:38:54','2021-06-03 12:38:54','','Mediflex shoe colour range','','inherit','open','closed','','mediflex-colours','','','2021-06-03 14:53:03','2021-06-03 12:53:03','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Mediflex-colours.jpg',0,'attachment','image/jpeg',0),(31,1,'2021-06-03 14:38:59','2021-06-03 12:38:59','','Mediflex shoe sole German design','','inherit','open','closed','','mediflex-german-design','','','2021-06-03 14:53:29','2021-06-03 12:53:29','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Mediflex-German-design.jpg',0,'attachment','image/jpeg',0),(32,1,'2021-06-03 14:39:04','2021-06-03 12:39:04','','Mediflex health focus shoe','','inherit','open','closed','','mediflex-health-focus','','','2021-06-03 14:53:54','2021-06-03 12:53:54','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Mediflex-health-focus.jpg',0,'attachment','image/jpeg',0),(33,1,'2021-06-03 14:39:06','2021-06-03 12:39:06','','Mediflex lightweight shoe','','inherit','open','closed','','mediflex-lightweight','','','2021-06-03 14:54:16','2021-06-03 12:54:16','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Mediflex-lightweight.jpg',0,'attachment','image/jpeg',0),(34,1,'2021-06-03 14:39:10','2021-06-03 12:39:10','','Mediflex shoe side view','','inherit','open','closed','','mediflex-shoe','','','2021-06-03 14:54:50','2021-06-03 12:54:50','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Mediflex-shoe.jpg',0,'attachment','image/jpeg',0),(35,1,'2021-06-03 14:39:14','2021-06-03 12:39:14','','News flash pointer','','inherit','open','closed','','news-flash-pointer','','','2021-06-03 14:39:14','2021-06-03 12:39:14','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/News-flash-pointer.jpg',0,'attachment','image/jpeg',0),(36,1,'2021-06-03 14:39:18','2021-06-03 12:39:18','','Podiatry Association logo','','inherit','open','closed','','pasa-logo','','','2021-06-03 14:55:31','2021-06-03 12:55:31','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png',0,'attachment','image/png',0),(39,1,'2021-06-03 14:39:36','2021-06-03 12:39:36','','Armstrong shoe insert','','inherit','open','closed','','product_armstrong_tn','','','2021-06-03 14:56:17','2021-06-03 12:56:17','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg',0,'attachment','image/jpeg',0),(40,1,'2021-06-03 14:39:40','2021-06-03 12:39:40','','Vasyli Custom shoe insert','','inherit','open','closed','','product_customs_medium_tn','','','2021-06-08 13:05:03','2021-06-08 11:05:03','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg',0,'attachment','image/jpeg',0),(41,1,'2021-06-03 14:39:47','2021-06-03 12:39:47','','Sandals','','inherit','open','closed','','product_sandal_tn','','','2021-06-03 14:57:18','2021-06-03 12:57:18','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_sandal_tn.jpg',0,'attachment','image/jpeg',0),(42,1,'2021-06-03 14:39:51','2021-06-03 12:39:51','','Revere shoes logo','','inherit','open','closed','','revere-shoes-logo','','','2021-06-03 14:57:35','2021-06-03 12:57:35','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Revere-shoes-logo.png',0,'attachment','image/png',0),(43,1,'2021-06-03 14:40:01','2021-06-03 12:40:01','','Revere grey nubuck','','inherit','open','closed','','revere_3-4_geneva_grey_nubuck_3','','','2021-06-03 14:58:09','2021-06-03 12:58:09','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_geneva_grey_nubuck_3.jpg',0,'attachment','image/jpeg',0),(44,1,'2021-06-03 14:40:11','2021-06-03 12:40:11','','Revere Miami Red Crocodile','','inherit','open','closed','','revere_3-4_miami_red_croc_5','','','2021-06-03 14:58:42','2021-06-03 12:58:42','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_miami_red_croc_5.jpg',0,'attachment','image/jpeg',0),(45,1,'2021-06-03 14:40:18','2021-06-03 12:40:18','','Revere Monaco White Snake','','inherit','open','closed','','revere_3-4_monaco_white_snake_4','','','2021-06-03 14:59:23','2021-06-03 12:59:23','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_monaco_white_snake_4.jpg',0,'attachment','image/jpeg',0),(46,1,'2021-06-03 14:40:22','2021-06-03 12:40:22','','Revere Venice Pearl Patent','','inherit','open','closed','','revere_3-4_venice_pearl_patent_3','','','2021-06-03 14:59:59','2021-06-03 12:59:59','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_venice_pearl_patent_3.jpg',0,'attachment','image/jpeg',0),(47,1,'2021-06-03 14:40:26','2021-06-03 12:40:26','','Stallion black shoe','','inherit','open','closed','','stallion','','','2021-06-03 15:00:27','2021-06-03 13:00:27','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Stallion.jpg',0,'attachment','image/jpeg',0),(48,1,'2021-06-03 14:40:42','2021-06-03 12:40:42','','Dr Comfort Sunshine shoes','','inherit','open','closed','','sunshine','','','2021-06-08 09:47:52','2021-06-08 07:47:52','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/sunshine.jpg',0,'attachment','image/jpeg',0),(49,1,'2021-06-03 14:40:47','2021-06-03 12:40:47','','Suzie shoe white','','inherit','open','closed','','suzie-white','','','2021-06-03 15:07:39','2021-06-03 13:07:39','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/suzie-white.jpg',0,'attachment','image/jpeg',0),(50,1,'2021-06-03 14:40:53','2021-06-03 12:40:53','','Dr Comfort wing chestnut shoe','','inherit','open','closed','','wing-chestnut','','','2021-06-08 10:06:33','2021-06-08 08:06:33','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg',0,'attachment','image/jpeg',0),(68,1,'2021-06-03 15:40:53','2021-06-03 13:40:53','https://podiatrist.capetown/wp-content/uploads/2021/06/cropped-Happy-feet-compressed.jpg','cropped-Happy-feet-compressed.jpg','','inherit','open','closed','','cropped-happy-feet-compressed-jpg','','','2021-06-03 15:40:53','2021-06-03 13:40:53','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/cropped-Happy-feet-compressed.jpg',0,'attachment','image/jpeg',0),(69,1,'2021-06-03 16:03:46','2021-06-03 14:03:46','<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</em></p><p><em>Thursdays and Fridays 8h30 - 13h00</em></p><p>House calls available where necessary.</p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point, 76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p>We welcome Taariq Jacobs to the practice.</p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2022. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','publish','closed','closed','','andy-blecher-podiatrist','','','2022-09-12 16:02:57','2022-09-12 14:02:57','',0,'https://podiatrist.capetown/?page_id=69',0,'page','',0),(87,1,'2021-06-03 16:43:45','2021-06-03 14:43:45','','Andy Blecher Podiatrist','','inherit','open','closed','','andy-blecher-podiatrist-2','','','2021-06-11 12:06:05','2021-06-11 10:06:05','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg',0,'attachment','image/jpeg',0),(122,1,'2021-06-03 18:13:28','2021-06-03 16:13:28','','Vionic Bella Toepost Sandal','','inherit','open','closed','','bella-toepost-sandal','','','2021-06-08 12:25:55','2021-06-08 10:25:55','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg',0,'attachment','image/jpeg',0),(123,1,'2021-06-03 18:13:32','2021-06-03 16:13:32','','Revere Genoa_Black_3_4','','inherit','open','closed','','genoa_black_3_4','','','2021-06-08 11:49:53','2021-06-08 09:49:53','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg',0,'attachment','image/jpeg',0),(124,1,'2021-06-03 18:13:35','2021-06-03 16:13:35','','HD Madrid Red Croc','','inherit','open','closed','','hd-madrid-red-croc','','','2021-06-03 18:13:35','2021-06-03 16:13:35','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Madrid-Red-Croc.jpg',0,'attachment','image/jpeg',0),(125,1,'2021-06-03 18:13:38','2021-06-03 16:13:38','','Revere HD Miami Natural Snake 2','','inherit','open','closed','','hd-miami-natural-snake-2','','','2021-06-08 11:52:33','2021-06-08 09:52:33','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg',0,'attachment','image/jpeg',0),(126,1,'2021-06-03 18:13:42','2021-06-03 16:13:42','','Revere Santa Monica Navy Snake','','inherit','open','closed','','hd-santa-monica-navy-snake','','','2021-06-08 09:52:04','2021-06-08 07:52:04','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg',0,'attachment','image/jpeg',0),(127,1,'2021-06-03 18:13:45','2021-06-03 16:13:45','','HD Valencia Natural Snake High Res','','inherit','open','closed','','hd-valencia-natural-snake-high-res','','','2021-06-03 18:13:45','2021-06-03 16:13:45','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Valencia-Natural-Snake-High-Res.jpg',0,'attachment','image/jpeg',0),(128,1,'2021-06-03 18:13:48','2021-06-03 16:13:48','','Karina Toepost Sandal','','inherit','open','closed','','karina-toepost-sandal','','','2021-06-03 18:13:48','2021-06-03 16:13:48','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Karina-Toepost-Sandal.jpg',0,'attachment','image/jpeg',0),(129,1,'2021-06-03 18:13:51','2021-06-03 16:13:51','','Vionic Ladies Islander','','inherit','open','closed','','ladies-islander','','','2021-06-08 10:05:03','2021-06-08 08:05:03','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png',0,'attachment','image/png',0),(130,1,'2021-06-03 18:13:54','2021-06-03 16:13:54','','Revere Malibu_Champagne_3_4','','inherit','open','closed','','malibu_champagne_3_4','','','2021-06-08 11:51:47','2021-06-08 09:51:47','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg',0,'attachment','image/jpeg',0),(131,1,'2021-06-03 18:13:56','2021-06-03 16:13:56','','Not available flash','','inherit','open','closed','','not-available-flash','','','2021-06-03 18:13:56','2021-06-03 16:13:56','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Not-available-flash.png',0,'attachment','image/png',0),(132,1,'2021-06-03 18:13:59','2021-06-03 16:13:59','','Revere Olympia_Gold Wash_3_4','','inherit','open','closed','','olympia_gold-wash_3_4','','','2021-06-08 11:50:59','2021-06-08 09:50:59','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg',0,'attachment','image/jpeg',0),(133,1,'2021-06-03 18:14:01','2021-06-03 16:14:01','','Revere Bali','','inherit','open','closed','','rev-bali','','','2021-06-08 11:50:32','2021-06-08 09:50:32','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Bali.jpg',0,'attachment','image/jpeg',0),(134,1,'2021-06-03 18:14:05','2021-06-03 16:14:05','','REV Geneva Pewter','','inherit','open','closed','','rev-geneva-pewter','','','2021-06-03 18:14:05','2021-06-03 16:14:05','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Geneva-Pewter.jpg',0,'attachment','image/jpeg',0),(135,1,'2021-06-03 18:14:09','2021-06-03 16:14:09','','REVERE charlotte','','inherit','open','closed','','revere-charlotte','','','2021-06-08 11:49:16','2021-06-08 09:49:16','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/REVERE-charlotte.png',0,'attachment','image/png',0),(136,1,'2021-06-03 18:14:17','2021-06-03 16:14:17','','Revere Siena_Black_3_4','','inherit','open','closed','','siena_black_3_4','','','2021-06-08 11:48:55','2021-06-08 09:48:55','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Siena_Black_3_4.jpg',0,'attachment','image/jpeg',0),(137,1,'2021-06-03 18:14:21','2021-06-03 16:14:21','','Toledo_Gunmetal_3_4','','inherit','open','closed','','toledo_gunmetal_3_4','','','2021-06-03 18:14:21','2021-06-03 16:14:21','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Toledo_Gunmetal_3_4.jpg',0,'attachment','image/jpeg',0),(138,1,'2021-06-03 18:14:24','2021-06-03 16:14:24','','VasyliLogo','','inherit','open','closed','','vasylilogo','','','2021-06-03 18:14:24','2021-06-03 16:14:24','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/VasyliLogo.jpg',0,'attachment','image/jpeg',0),(139,1,'2021-06-03 18:14:28','2021-06-03 16:14:28','','VIONIC Bella','','inherit','open','closed','','vionic-bella','','','2021-06-03 18:14:28','2021-06-03 16:14:28','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/VIONIC-Bella.png',0,'attachment','image/png',0),(140,1,'2021-06-03 18:14:30','2021-06-03 16:14:30','','Vionic_Innovation_Lab_logo','','inherit','open','closed','','vionic_innovation_lab_logo','','','2021-06-03 18:14:30','2021-06-03 16:14:30','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Vionic_Innovation_Lab_logo.gif',0,'attachment','image/gif',0),(141,1,'2021-06-03 18:20:18','2021-06-03 16:20:18','','Neo V Laser','','inherit','open','closed','','neo-v-aser','','','2021-09-14 15:25:56','2021-09-14 13:25:56','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg',0,'attachment','image/jpeg',0),(148,1,'2021-06-03 18:33:35','2021-06-03 16:33:35','','Neo Laser logo','','inherit','open','closed','','neo-laser-logo','','','2021-06-03 18:34:06','2021-06-03 16:34:06','',69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png',0,'attachment','image/png',0),(193,1,'2021-06-04 16:26:23','2021-06-04 14:26:23','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Fully qualified and registered Podiatrist</h1>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<p>Andy Blecher is a fully qualified and registered podiatrist.  She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).</p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.  She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.</p>		\n			<h2>Professional Memberships</h2>		\n		<p>Andy Blecher is a member of the <strong>South African </strong><strong>Podiatry Association </strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\"http://www.podiatrist.co.za/\">www.podiatrist.co.za</a></p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)</strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\"http://www.hpcsa.co.za/\">www.hpcsa.co.za</a></p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine </strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\"https://sweetlife.org.za/\">https://sweetlife.org.za/</a></p>		\n															<img width=\"200\" height=\"183\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png\" alt=\"Podiatry Association logo\" loading=\"lazy\" />															\n															<img width=\"210\" height=\"66\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png\" alt=\"\" loading=\"lazy\" />															\n			<h3>What Andy\'s clients have to say</h3>		\n		<p>Read some of the good things people have to say about Andy and her professional foot care:</p><ul><li><em>Your feet will be in good hands.</em></li><li><em>Andy Blecher is the most professional, clued up podiatrist. She has treated all my children over the years and we even look forward to the visits.</em></li><li><em>She is caring, professional and easy to talk to.  I would highly recommend her to anyone suffering from chronic foot pain.</em></li><li><em>My apprehension melted away while she was busy with my feet.  Great, friendly service, I\'m definitely going back.</em></li><li><em>Among Andy\'s specialities is her TCC (total touch cast technique) fibreglass foot and ankle casting  Andy has been casting my diabetic Charcot foot for more than a year now. She is very professional, caring and highly competent. I recently had to unexpectedly fly to Asia for 2 and a half weeks with my foot in a cast. On my return, my foot was still perfectly secure and supported thanks to Andy\'s wonderful care.</em></li><li><em>I wanted to let you know that my warts have shrunk down in size significantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.</em></li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.</em></li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.</em></li></ul>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Fully qualified and registered Podiatrist','','publish','closed','closed','','registered-podiatrist','','','2021-09-14 15:01:57','2021-09-14 13:01:57','',0,'https://podiatrist.capetown/?page_id=193',0,'page','',0),(227,1,'2021-06-04 17:14:46','2021-06-04 15:14:46','','Sweet Life logo','','inherit','open','closed','','sweet-life-logo','','','2021-06-04 17:15:05','2021-06-04 15:15:05','',193,'https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png',0,'attachment','image/png',0),(271,1,'2021-06-05 14:15:04','2021-06-05 12:15:04','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Andy\'s fields of interest</h2>		\n		<p>Andy Blecher\'s main fields of interest are as follows:</p><ol><li><strong>General foot care</strong> - the treatment of corns, calluses, nail conditions and ingrown toenails</li><li><strong>Verruca/Plantar Warts</strong> - Andy has a special interest in treating warts, especially in children Sports podiatry - this includes the assessment of the foot in motion and the prescription of appropriate insoles and/or orthotics)</li><li><strong>Paediatric/Child footcare</strong></li><li><strong>Diabetic foot assessment and treatment</strong>, including the gold standard treatment of foot ulcers by the application of a <a href=\"https://podiatrist.capetown/interesting-articles/\">Total Contact Cast (TCC).</a> </li></ol><p>Whatever your foot problem, Andy will give you sound advice as to the optimum path of treatment to follow.</p>		\n			<h2>The diabetic foot</h2>		\n															<img width=\"234\" height=\"122\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/DFWG-logo.jpg\" alt=\"diabetic foot podiatrist\" loading=\"lazy\" />															\n		<p>As this is one of Andy\'s special interests, she serves on the Western Cape committee of the <strong>Diabetic Foot Working Group (DFWG).  </strong>This voluntary association serves as the overall representative body to promote awareness and optimal management of diabetics with foot problems. Its objectives include the prevention of amputation, promoting academic standards and the establishment of relationships amongst role players. </p><p>Andy also currently runs the <strong>Western Cape Diabetic Foot Clinic </strong>with a team of other specialists.</p><p>What\'s more, she is the only podiatrist in the Western Cape with an advanced wound care private practitioner on her premises. <strong>Anne Berzen</strong> shares Andy\'s special interest and this adds great value in terms of the multidisciplinary approach that is expected today in diabetic foot clinics worldwide.</p><p>Andy is also a member of the <strong>CAWCC Working Group </strong>- brief details below. See <a href=\"https://wound.capetown\">https://wound.capetown</a> for full details.</p>		\n															<img width=\"800\" height=\"535\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg\" alt=\"diabetic foot podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg 871w, https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic-300x201.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic-768x514.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Fields of interest','','publish','closed','closed','','diabetic-foot','','','2021-06-14 08:14:30','2021-06-14 06:14:30','',0,'https://podiatrist.capetown/?page_id=271',0,'page','',0),(311,1,'2021-06-08 09:37:51','2021-06-08 07:37:51','<h1>Medical footwear from Andy Blecher</h1>\nMedical footwear consists of shoes, sandals and supportive devices to address conditions that affect the feet and lower limbs.\n\nFrom diabetics to athletes and working men and women, medical footwear promotes foot health, maximum mobility and comfort.\n\nAndy Blecher offers a full range of medical and health footwear and orthotics. Some of the respected brands she stocks are as follows:\n\n<a href=\"https://www.podiatristandyblecher.co.za/medical-footwear/dr-comfort-shoes/\">Dr Comfort</a>\n\n<a href=\"https://www.podiatristandyblecher.co.za/medical-footwear/revere-comfort-shoes/\">Revere</a>\n\n<a href=\"https://www.podiatristandyblecher.co.za/medical-footwear/vasyli-orthotics/\">Vasyli</a>\n\n<a href=\"https://www.podiatristandyblecher.co.za/medical-footwear/vionic-sandals/\">Vionic</a>\n\nClick through to the brand above that interests you.\n<figure>\n										<img width=\"295\" height=\"213\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg\" alt=\"Dr Comfort wing chestnut shoe\" loading=\"lazy\"><figcaption>Dr Comfort</figcaption></figure>\n<figure>\n										<img width=\"200\" height=\"200\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg\" alt=\"Revere Santa Monica navy\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg 200w, https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake-150x150.jpg 150w\" sizes=\"(max-width: 200px) 100vw, 200px\">\n\n<figcaption>Revere</figcaption></figure>\n<figure>\n										<img width=\"170\" height=\"170\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg\" alt=\"Vasili Custom shoe insert\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg 170w, https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn-150x150.jpg 150w\" sizes=\"(max-width: 170px) 100vw, 170px\">\n\n<figcaption>Vasyli</figcaption></figure>\n<figure>\n										<img width=\"200\" height=\"200\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png\" alt=\"Vionic Ladies Islander\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png 200w, https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander-150x150.png 150w\" sizes=\"(max-width: 200px) 100vw, 200px\">\n\n<figcaption>Vionic</figcaption></figure>','Medical footwear from Andy Blecher','','publish','closed','closed','','medical-footwear','','','2021-06-08 10:56:12','2021-06-08 08:56:12','',0,'https://podiatrist.capetown/?page_id=311',0,'page','',0),(338,1,'2021-06-08 10:59:21','2021-06-08 08:59:21','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Dr Comfort Diabetic Footwear</h2>		\n		<p>Dr Comfort is the worldwide leading provider of diabetic footwear.  It recognises the need for STYLE, COMFORT and QUALITY in the therapeutic shoe industry.</p><p>Today the Dr Comfort family of comfort footwear includes diabetic shoes, prescription and non-prescription inserts, diabetic socks, slippers, sandals and compression hosiery.</p><p><strong>Your Comfort Comes First</strong></p><p>The classic craftsmanship and sophisticated style of Dr Comfort are a must for anyone in search of the finest quality in a comfort shoe. Designed as a diabetic shoe, it also provides many protective and comfort features for all kinds of wearers. Prescription diabetic footwear can help you to prevent more serious foot health complications that can arise as a result of diabetes.</p>		\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/sunshine.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-1c2852e\" data-elementor-lightbox-title=\"Dr Comfort Sunshine shoes\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Laura.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-1c2852e\" data-elementor-lightbox-title=\"Dr Comfort Laura shoes\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-1c2852e\" data-elementor-lightbox-title=\"Dr Comfort wing chestnut shoe\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/suzie-white.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-1c2852e\" data-elementor-lightbox-title=\"Suzie shoe white\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Stallion.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-1c2852e\" data-elementor-lightbox-title=\"Stallion black shoe\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-1c2852e\" data-elementor-lightbox-title=\"Dr Comfort Podiatrist classic black shoe\">\n														</a>\n		<p>For further information on the full Dr Comfort diabetic footwear range, or if you\'d like to try on or buy a pair, contact Andy Blecher on <strong>021 797 6967</strong> </p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Dr Comfort diabetic footwear','','publish','closed','closed','','dr-comfort-diabetic-footwear','','','2021-06-15 14:59:37','2021-06-15 12:59:37','',0,'https://podiatrist.capetown/?page_id=338',0,'page','',0),(362,1,'2021-06-08 12:02:37','2021-06-08 10:02:37','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Revere Comfort Footwear</h2>		\n		https://youtu.be/9mQgDmWIHa8<h1 id=\"cc-m-header-9766414083\">Revere shoes - devoted to style and comfort</h1><p>A young and exciting Australian brand, with international demand, REVERE footwear provides all-day comfort and support by enhancing foot health for those experiencing heel pain, tired aching feet, sore knees and lower back pain.</p><p>REVERE sandals have been designed in collaboration with leading footwear designers and manufacturers to provide maximum adjustability to support many foot types.</p><p>These sandals provide an extra depth removable footbed to accommodate a wide variety of custom orthotics to be inserted without taking away from the comfortable feel &amp;stylish look of the shoes.</p><p>The production of the REVERE sandals combines the use of premium quality materials and craftsmanship to produce the shoes by hand. All materials are hand-picked and tested to guarantee that they meet quality requirements before entering production. Throughout the production process, quality inspectors control every aspect from stitching accuracy to leather thickness to ensure high quality and comfort.</p>		\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Siena_Black_3_4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Siena_Black_3_4\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/REVERE-charlotte.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"REVERE charlotte\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Genoa_Black_3_4\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Bali.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Bali\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Olympia_Gold Wash_3_4\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Santa Monica Navy Snake\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Malibu_Champagne_3_4\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere HD Miami Natural Snake 2\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_venice_pearl_patent_3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Venice Pearl Patent\">\n														</a>\n							<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_monaco_white_snake_4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-e4a56ea\" data-elementor-lightbox-title=\"Revere Monaco White Snake\">\n														</a>\n		<h3 id=\"cc-m-header-9766414483\">All-day comfort and support for those experiencing heel pain, tired aching feet, sore knees and lower back pain.</h3><ul style=\"margin: 0px 0px 0px 36px; padding: 0px; list-style: square; color: #656565; font-family: Verdana, sans-serif; font-size: 13px; line-height: 20px;\"><li style=\"margin: 0px; padding: 0px;\"><h6>Cushioned heel for extra comfort and shock absorption</h6></li><li style=\"margin: 0px; padding: 0px;\"><h6>Contoured arch profile to support the feet whilst walking</h6></li><li style=\"margin: 0px; padding: 0px;\"><h6>Premium handcrafted leather upper and linings</h6></li><li style=\"margin: 0px; padding: 0px;\"><h6>Orthotic friendly design with additional depth to accommodate custom orthotics</h6></li><li style=\"margin: 0px; padding: 0px;\"><h6>Uppers designed with maximum adjustability, for a perfect fit</h6></li></ul><p>For further information, contact Andy Blecher on <strong>021 797 6967</strong> </p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Revere comfort footwear','','publish','closed','closed','','revere-comfort-footwear','','','2021-06-14 13:39:20','2021-06-14 11:39:20','',0,'https://podiatrist.capetown/?page_id=362',0,'page','',0),(372,1,'2021-06-08 12:28:46','2021-06-08 10:28:46','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h2>Vionic Ladies Orthotic Sandals</h2>\n<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c68eb33\" data-elementor-lightbox-title=\"Vionic Ladies Islander\">\n</a>\n<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"all-c68eb33\" data-elementor-lightbox-title=\"Vionic Bella Toepost Sandal\">\n</a>\n\nLooking for orthotic sandals that look a little less orthotic and a lot more stylish? Vionic offers breakthrough technology to help reduce common foot pains associated with over-pronation and plantar fasciitis. Vionic also boasts the first and only sandal proven to effectively alleviate heel pain.\n\n<strong>What makes Vionic with Orthaheel Technology different?</strong>\n\nDesigned with your style needs in mind, Vionic ladies orthotic sandals\' scientifically proven foot support allows you to walk through your day without pain. The podiatrist-designed contours are built right into summer footwear to create first-of-their-kind orthotic sandals. With more than 30 years of podiatric medical success and research to support this innovative technology, Vionic brings you the best orthotic sandals for women. Trusted support, designed with your style needs in mind, so you can walk through your day - looking good and feeling good too.\n\nFor further info,&nbsp;contact Andy Blecher on&nbsp;<strong>021 797 6967</strong>&nbsp; or visit&nbsp; <a href=\"https://www.blmed.co.za/\">https://www.blmed.co.za/</a>\n\nhttps://youtu.be/M07D8QOwbkA\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Vionic ladies orthotic sandals','','publish','closed','closed','','ladies-orthotic-sandals','','','2021-06-14 13:18:48','2021-06-14 11:18:48','',0,'https://podiatrist.capetown/?page_id=372',0,'page','',0),(390,1,'2021-06-08 13:00:52','2021-06-08 11:00:52','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Vasyli Medical Orthotics</h2>		\n															<img width=\"170\" height=\"170\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg\" alt=\"Vasyli Custom shoe insert\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg 170w, https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn-150x150.jpg 150w\" sizes=\"(max-width: 170px) 100vw, 170px\" />															\n															<img width=\"170\" height=\"170\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg\" alt=\"Armstrong shoe insert\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg 170w, https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn-150x150.jpg 150w\" sizes=\"(max-width: 170px) 100vw, 170px\" />															\n		<p>Vasyli Medical are passionate about what they do. Over 25 years of experience and development combine to bring you the very latest generation heat custom orthotic solutions.</p><p>Designed specifically for fast, easy and effective use, the unique Vasyli range of orthotic products represents the very best value foot treatment solutions available today.</p><p>For further information, see <a href=\"http://www.blmed.co.za/\" target=\"_blank\" rel=\"noopener\">www.blmed.co.za</a> or contact Andy Blecher on <strong>021 797 6967</strong></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Vasyli medical orthotics','','publish','closed','closed','','vasyli-medical-orthotics','','','2021-06-14 13:50:45','2021-06-14 11:50:45','',0,'https://podiatrist.capetown/?page_id=390',0,'page','',0),(395,1,'2021-06-08 17:07:03','2021-06-08 15:07:03','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h1>Consult Andy Blecher in Plumstead or Sea Point</h1>\nAndy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.\n<h2>Consulting rooms</h2>\n2 Burnham Road, Plumstead 7800\n\n<em>AND</em>\n\n3rd Floor, The Point, 76 Regent Road, Sea Point\n\nAppointments: : <strong>021 797 6967&nbsp;&nbsp;&nbsp; </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com&nbsp;&nbsp;</a>\n<h3>Hours of opening</h3>\nMonday to Friday: 08h30 - 17h00\n<h2>How to find Andy</h2>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&amp;t=m&amp;z=13&amp;output=embed&amp;iwloc=near\" title=\"2 Burnham Road, Plumstead 7800\" aria-label=\"2 Burnham Road, Plumstead 7800\"></iframe>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" title=\"The Point, 76 Regent Road, Sea Point 7800\" aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"></iframe>\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Consult Andy Blecher','','publish','closed','closed','','contact-andy-blecher','','','2021-09-14 15:44:11','2021-09-14 13:44:11','',0,'https://podiatrist.capetown/?page_id=395',0,'page','',0),(417,1,'2021-06-10 12:38:53','2021-06-10 10:38:53','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Interesting podiatry articles</h1>		\n		<h2>Laser treatment for nail fungus</h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.</p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.</p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/07/Laser-treatment-for-nail-fungus.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Diabetes and the Foot</h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.</p><p>Diabetes and the foot.pdf</p><p>Adobe Acrobat Document [88.8 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Total Contact Cast</h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf</p><p>Adobe Acrobat Document [103.5 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Constantiaberg Hospital Diabetic Education Forum</h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.</p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\" role=\"button\">\n						Download\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Interesting podiatry articles','','publish','closed','closed','','interesting-podiatry-articles','','','2021-07-14 15:10:54','2021-07-14 13:10:54','',0,'https://podiatrist.capetown/?page_id=417',0,'page','',0),(426,1,'2022-09-12 16:29:51','2021-06-11 09:31:36','','Contact Andy','','publish','closed','closed','','contact-andy','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=426',10,'nav_menu_item','',0),(427,1,'2022-09-12 16:29:51','2021-06-11 09:31:28',' ','','','publish','closed','closed','','427','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=427',6,'nav_menu_item','',0),(428,1,'2022-09-12 16:29:51','2021-06-11 09:31:24','','Fields of Interest','','publish','closed','closed','','fields-of-interest','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=428',3,'nav_menu_item','',0),(429,1,'2022-09-12 16:29:51','2021-06-11 09:31:23','','About Andy','','publish','closed','closed','','about-andy','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=429',2,'nav_menu_item','',0),(430,1,'2022-09-12 16:29:51','2021-06-11 09:31:25','','Interesting articles','','publish','closed','closed','','interesting-articles','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=430',4,'nav_menu_item','',0),(431,1,'2022-09-12 16:29:51','2021-06-11 09:31:21','','Home','','publish','closed','closed','','home','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=431',1,'nav_menu_item','',0),(432,1,'2022-09-12 16:29:51','2021-06-11 09:31:34',' ','','','publish','closed','closed','','432','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=432',9,'nav_menu_item','',0),(433,1,'2022-09-12 16:29:51','2021-06-11 09:31:27','','Medical footwear','','publish','closed','closed','','medical-footwear','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=433',5,'nav_menu_item','',0),(434,1,'2022-09-12 16:29:51','2021-06-11 09:31:31',' ','','','publish','closed','closed','','434','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=434',7,'nav_menu_item','',0),(435,1,'2022-09-12 16:29:51','2021-06-11 09:31:33',' ','','','publish','closed','closed','','435','','','2022-09-12 16:29:51','2022-09-12 14:29:51','',0,'https://podiatrist.capetown/?p=435',8,'nav_menu_item','',0),(480,1,'2021-06-11 12:12:39','2021-06-11 10:12:39','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Andy Blecher header','','publish','closed','closed','','andy-blecher-header','','','2021-06-11 12:13:00','2021-06-11 10:13:00','',0,'https://podiatrist.capetown/?elementor_library=andy-blecher-header',0,'elementor_library','',0),(487,1,'2021-06-12 14:14:30','2021-06-12 12:14:30','','iTour-Logo-Footer.png','','inherit','open','closed','','itour-logo-footer-png','','','2021-06-12 14:14:30','2021-06-12 12:14:30','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/iTour-Logo-Footer.png',0,'attachment','image/png',0),(491,1,'2021-06-12 14:20:29','2021-06-12 12:20:29','<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher footer','','publish','closed','closed','','andy-blecher-footer','','','2021-06-12 14:20:39','2021-06-12 12:20:39','',0,'https://podiatrist.capetown/?elementor_library=andy-blecher-footer',0,'elementor_library','',0),(547,1,'2021-06-13 20:42:33','2021-06-13 18:42:33','','Constantiaberg Hospital Diabetic education forum','','inherit','open','closed','','constantiaberg-hospital-diabetic-education-forum-2','','','2021-06-13 20:42:33','2021-06-13 18:42:33','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf',0,'attachment','application/pdf',0),(548,1,'2021-06-13 20:42:38','2021-06-13 18:42:38','','Total Contact Cast','','inherit','open','closed','','total-contact-cast-2','','','2021-06-13 20:42:38','2021-06-13 18:42:38','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf',0,'attachment','application/pdf',0),(549,1,'2021-06-13 20:42:41','2021-06-13 18:42:41','','Diabetes and the foot','','inherit','open','closed','','diabetes-and-the-foot-2','','','2021-06-13 20:42:41','2021-06-13 18:42:41','',0,'https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf',0,'attachment','application/pdf',0),(613,1,'2021-06-14 13:57:55','2021-06-14 11:57:55','','Google Meta Tag','','publish','closed','closed','','google-meta-tag','','','2021-06-14 13:57:55','2021-06-14 11:57:55','',0,'https://podiatrist.capetown/?post_type=elementor_snippet&#038;p=613',0,'elementor_snippet','',0),(716,1,'2021-07-14 14:46:35','2021-07-14 12:46:35','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Interesting podiatry articles</h1>		\n		<h2>Laser treatment for nail fungus</h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.</p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.</p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Laser-treatment-for-nail-fungus.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Diabetes and the Foot</h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.</p><p>Diabetes and the foot.pdf</p><p>Adobe Acrobat Document [88.8 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Total Contact Cast</h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf</p><p>Adobe Acrobat Document [103.5 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Constantiaberg Hospital Diabetic Education Forum</h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.</p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\" role=\"button\">\n						Download\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Interesting podiatry articles','','inherit','closed','closed','','417-revision-v1','','','2021-07-14 14:46:35','2021-07-14 12:46:35','',417,'https://podiatrist.capetown/?p=716',0,'revision','',0),(717,1,'2021-07-14 14:46:39','2021-07-14 12:46:39','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Interesting podiatry articles</h1>		\n		<h2>Laser treatment for nail fungus</h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.</p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.</p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Laser-treatment-for-nail-fungus.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Diabetes and the Foot</h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.</p><p>Diabetes and the foot.pdf</p><p>Adobe Acrobat Document [88.8 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Total Contact Cast</h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf</p><p>Adobe Acrobat Document [103.5 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Constantiaberg Hospital Diabetic Education Forum</h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.</p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\" role=\"button\">\n						Download\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Interesting podiatry articles','','inherit','closed','closed','','417-revision-v1','','','2021-07-14 14:46:39','2021-07-14 12:46:39','',417,'https://podiatrist.capetown/?p=717',0,'revision','',0),(718,1,'2021-07-14 14:46:43','2021-07-14 12:46:43','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Interesting podiatry articles</h1>		\n		<h2>Laser treatment for nail fungus</h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.</p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.</p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Laser-treatment-for-nail-fungus.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Diabetes and the Foot</h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.</p><p>Diabetes and the foot.pdf</p><p>Adobe Acrobat Document [88.8 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Total Contact Cast</h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf</p><p>Adobe Acrobat Document [103.5 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Constantiaberg Hospital Diabetic Education Forum</h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.</p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\" role=\"button\">\n						Download\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Interesting podiatry articles','','inherit','closed','closed','','417-revision-v1','','','2021-07-14 14:46:43','2021-07-14 12:46:43','',417,'https://podiatrist.capetown/?p=718',0,'revision','',0),(738,1,'2021-07-14 14:56:20','2021-07-14 12:56:20','','Laser treatment for nail fungus','','inherit','open','closed','','laser-treatment-for-nail-fungus','','','2021-07-14 14:56:20','2021-07-14 12:56:20','',0,'https://podiatrist.capetown/wp-content/uploads/2021/07/Laser-treatment-for-nail-fungus.pdf',0,'attachment','application/pdf',0),(745,1,'2021-07-14 14:59:21','2021-07-14 12:59:21','','Neo Laser treatment for nail fungus','','inherit','open','closed','','neo-laser-treatment-for-nail-fungus','','','2021-07-14 14:59:21','2021-07-14 12:59:21','',0,'https://podiatrist.capetown/wp-content/uploads/2021/07/Neo-Laser-treatment-for-nail-fungus.pdf',0,'attachment','application/pdf',0),(753,1,'2021-07-14 15:10:45','2021-07-14 13:10:45','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Interesting podiatry articles</h1>		\n		<h2>Laser treatment for nail fungus</h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.</p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.</p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Laser-treatment-for-nail-fungus.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Diabetes and the Foot</h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.</p><p>Diabetes and the foot.pdf</p><p>Adobe Acrobat Document [88.8 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Total Contact Cast</h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf</p><p>Adobe Acrobat Document [103.5 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Constantiaberg Hospital Diabetic Education Forum</h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.</p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\" role=\"button\">\n						Download\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Interesting podiatry articles','','inherit','closed','closed','','417-revision-v1','','','2021-07-14 15:10:45','2021-07-14 13:10:45','',417,'https://podiatrist.capetown/?p=753',0,'revision','',0),(754,1,'2021-07-14 15:10:48','2021-07-14 13:10:48','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Interesting podiatry articles</h1>		\n		<h2>Laser treatment for nail fungus</h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.</p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.</p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Laser-treatment-for-nail-fungus.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Diabetes and the Foot</h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.</p><p>Diabetes and the foot.pdf</p><p>Adobe Acrobat Document [88.8 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Total Contact Cast</h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf</p><p>Adobe Acrobat Document [103.5 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Constantiaberg Hospital Diabetic Education Forum</h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.</p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\" role=\"button\">\n						Download\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Interesting podiatry articles','','inherit','closed','closed','','417-revision-v1','','','2021-07-14 15:10:48','2021-07-14 13:10:48','',417,'https://podiatrist.capetown/?p=754',0,'revision','',0),(755,1,'2021-07-14 15:10:54','2021-07-14 13:10:54','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Interesting podiatry articles</h1>		\n		<h2>Laser treatment for nail fungus</h2><p>Laser is an effective treatment for nail fungus infections, without the side effects which can result from drug therapy. It also treats warts.</p><p>The Neo Laser system treats skin conditions with laser and is especially useful in treating onychomycosis, or fungal infections in the nail bed.</p><p>Laser treatment for nail fungus.pdf Adobe Acrobat Document [53.6 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/07/Laser-treatment-for-nail-fungus.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Diabetes and the Foot</h2><p>Discussion of the possible complications of the foot which can be caused by diabetes. Foot care advice.</p><p>Diabetes and the foot.pdf</p><p>Adobe Acrobat Document [88.8 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Total Contact Cast</h2><p>TCC is the gold standard treatment for neuropathic foot ulcers suffered by diabetics. Total Contact Cast.pdf</p><p>Adobe Acrobat Document [103.5 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf\" role=\"button\">\n						Download\n					</a>\n		<h2>Constantiaberg Hospital Diabetic Education Forum</h2><p>Discussion of the usefulness of a diabetic networking team in the treatment of a patient suffering from diabetes.</p><p>Constantiaberg Hospital Diabetic education Adobe Acrobat Document [72.9 KB]</p>		\n			<a href=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf\" role=\"button\">\n						Download\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Interesting podiatry articles','','inherit','closed','closed','','417-revision-v1','','','2021-07-14 15:10:54','2021-07-14 13:10:54','',417,'https://podiatrist.capetown/?p=755',0,'revision','',0),(784,1,'2021-08-24 21:07:15','2021-08-24 19:07:15','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andy.blecher705@gmail.com\">andy.blecher705@gmail.com</a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&amp;t=m&amp;z=13&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-08-24 21:07:15','2021-08-24 19:07:15','',395,'https://podiatrist.capetown/?p=784',0,'revision','',0),(786,1,'2021-08-24 21:07:28','2021-08-24 19:07:28','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andy.blecher705@gmail.com\">andy.blecher705@gmail.com</a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&amp;t=m&amp;z=13&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-08-24 21:07:28','2021-08-24 19:07:28','',395,'https://podiatrist.capetown/?p=786',0,'revision','',0),(788,1,'2021-08-24 21:07:39','2021-08-24 19:07:39','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: andyblecherpodiatrist@gmail.com  </p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-08-24 21:07:39','2021-08-24 19:07:39','',395,'https://podiatrist.capetown/?p=788',0,'revision','',0),(790,1,'2021-08-24 21:09:05','2021-08-24 19:09:05','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: andyblecherpodiatrist@gmail.com  </p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-08-24 21:09:05','2021-08-24 19:09:05','',395,'https://podiatrist.capetown/?p=790',0,'revision','',0),(791,1,'2021-08-24 21:09:20','2021-08-24 19:09:20','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: andyblecherpodiatrist@gmail.com  </p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-08-24 21:09:20','2021-08-24 19:09:20','',395,'https://podiatrist.capetown/?p=791',0,'revision','',0),(793,1,'2021-08-24 21:09:39','2021-08-24 19:09:39','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-08-24 21:09:39','2021-08-24 19:09:39','',395,'https://podiatrist.capetown/?p=793',0,'revision','',0),(830,1,'2021-09-14 15:01:52','2021-09-14 13:01:52','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Fully qualified and registered Podiatrist</h1>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<p>Andy Blecher is a fully qualified and registered podiatrist.  She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).</p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.  She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.</p>		\n			<h2>Professional Memberships</h2>		\n		<p>Andy Blecher is a member of the <strong>South African </strong><strong>Podiatry Association </strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\"http://www.podiatrist.co.za/\">www.podiatrist.co.za</a></p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)</strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\"http://www.hpcsa.co.za/\">www.hpcsa.co.za</a></p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine </strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\"https://sweetlife.org.za/\">https://sweetlife.org.za/</a></p>		\n															<img width=\"200\" height=\"183\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png\" alt=\"Podiatry Association logo\" loading=\"lazy\" />															\n															<img width=\"210\" height=\"66\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png\" alt=\"\" loading=\"lazy\" />															\n			<h3>What Andy\'s clients have to say</h3>		\n		<p>Read some of the good things people have to say about Andy and her professional foot care:</p><ul><li><em>I wanted to let you know that my warts have shrunk down in size significantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.</em></li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.</em></li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.</em></li></ul>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Fully qualified and registered Podiatrist','','inherit','closed','closed','','193-revision-v1','','','2021-09-14 15:01:52','2021-09-14 13:01:52','',193,'https://podiatrist.capetown/?p=830',0,'revision','',0),(831,1,'2021-09-14 15:01:54','2021-09-14 13:01:54','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Fully qualified and registered Podiatrist</h1>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<p>Andy Blecher is a fully qualified and registered podiatrist.  She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).</p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.  She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.</p>		\n			<h2>Professional Memberships</h2>		\n		<p>Andy Blecher is a member of the <strong>South African </strong><strong>Podiatry Association </strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\"http://www.podiatrist.co.za/\">www.podiatrist.co.za</a></p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)</strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\"http://www.hpcsa.co.za/\">www.hpcsa.co.za</a></p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine </strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\"https://sweetlife.org.za/\">https://sweetlife.org.za/</a></p>		\n															<img width=\"200\" height=\"183\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png\" alt=\"Podiatry Association logo\" loading=\"lazy\" />															\n															<img width=\"210\" height=\"66\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png\" alt=\"\" loading=\"lazy\" />															\n			<h3>What Andy\'s clients have to say</h3>		\n		<p>Read some of the good things people have to say about Andy and her professional foot care:</p><ul><li><em>I wanted to let you know that my warts have shrunk down in size significantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.</em></li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.</em></li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.</em></li></ul>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Fully qualified and registered Podiatrist','','inherit','closed','closed','','193-revision-v1','','','2021-09-14 15:01:54','2021-09-14 13:01:54','',193,'https://podiatrist.capetown/?p=831',0,'revision','',0),(832,1,'2021-09-14 15:01:57','2021-09-14 13:01:57','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Fully qualified and registered Podiatrist</h1>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<p>Andy Blecher is a fully qualified and registered podiatrist.  She holds a 4 year National Higher Diploma in Podiatry and has a certificate in biomechanics from the International College of Biomechanics (ICB).</p><p>Andy qualified as a podiatrist in 1995 and practised privately in Johannesburg until 2000 when she moved to Cape Town.  She is now in private practice in both Plumstead and Sea Point where she specialises in foot care for diabetics, children and sportspeople.</p>		\n			<h2>Professional Memberships</h2>		\n		<p>Andy Blecher is a member of the <strong>South African </strong><strong>Podiatry Association </strong>which represents registered podiatrists in both private practice and the public sector. This body is dedicated to promoting awareness of foot health, preventing lower limb injuries and assisting its members. You\'ll find further information at <a href=\"http://www.podiatrist.co.za/\">www.podiatrist.co.za</a></p><p>She is also registered with the <strong>Health Professions Council of South Africa (HPCSA)</strong>. This statutory body is committed to serving and protecting the public and providing guidance to registered healthcare practitioners. For more details, visit their website <a href=\"http://www.hpcsa.co.za/\">www.hpcsa.co.za</a></p><p>Andy serves on the editorial panel of <strong>Sweet Life magazine </strong>which is dedicated to proving that life can be good, even when suffering from diabetes. Take a look at <a href=\"https://sweetlife.org.za/\">https://sweetlife.org.za/</a></p>		\n															<img width=\"200\" height=\"183\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png\" alt=\"Podiatry Association logo\" loading=\"lazy\" />															\n															<img width=\"210\" height=\"66\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png\" alt=\"\" loading=\"lazy\" />															\n			<h3>What Andy\'s clients have to say</h3>		\n		<p>Read some of the good things people have to say about Andy and her professional foot care:</p><ul><li><em>Your feet will be in good hands.</em></li><li><em>Andy Blecher is the most professional, clued up podiatrist. She has treated all my children over the years and we even look forward to the visits.</em></li><li><em>She is caring, professional and easy to talk to.  I would highly recommend her to anyone suffering from chronic foot pain.</em></li><li><em>My apprehension melted away while she was busy with my feet.  Great, friendly service, I\'m definitely going back.</em></li><li><em>Among Andy\'s specialities is her TCC (total touch cast technique) fibreglass foot and ankle casting  Andy has been casting my diabetic Charcot foot for more than a year now. She is very professional, caring and highly competent. I recently had to unexpectedly fly to Asia for 2 and a half weeks with my foot in a cast. On my return, my foot was still perfectly secure and supported thanks to Andy\'s wonderful care.</em></li><li><em>I wanted to let you know that my warts have shrunk down in size significantly and, at this stage, I have no doubt that in a few more weeks they will be almost invisible.</em></li><li><em>I am extremely impressed with the results of the combination of treatments you have given me and am so grateful to have been under your care.</em></li><li><em>Thank you for everything. Please continue to spread an awareness of homoeopathic treatment that provides an alternative to invasive, unnatural medication.</em></li></ul>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Fully qualified and registered Podiatrist','','inherit','closed','closed','','193-revision-v1','','','2021-09-14 15:01:57','2021-09-14 13:01:57','',193,'https://podiatrist.capetown/?p=832',0,'revision','',0),(838,1,'2021-09-14 15:26:29','2021-09-14 13:26:29','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h1>Andy Blecher will keep your feet healthy and happy</h1>\n<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\">\n<h2>Clear nail fungus infections and warts with Laser technology</h2>\nSpecialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.\n\nCurrent treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.\n<h3>Summary of Neo Laser benefits:</h3>\n<ul>\n 	<li>Simple, quick and safe No downtime</li>\n 	<li>No pain or discomfort Few treatment sessions</li>\n 	<li>The most cost-effective solution.</li>\n</ul>\n<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\">\n\nAndy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.\n\nPodiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.\n\nIn Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.\n\n<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Andy Blecher Podiatrist Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\">\n\nThe Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.\n\nMost infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.\n\n<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\">\n<h3>Book your appointment</h3>\n<h2>021 797 6967</h2>\nWeekdays only 8h30-17h00\n<h2>Plumstead</h2>\n2 Burnham Road\n\n<em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em>\n<h2><strong>Sea Point</strong></h2>\n3rd Floor The Point\n\n76 Regent Road\n\n<em>Thursdays </em><strong>&nbsp;</strong>\n\n<a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a>\n<h4>General Enquiries</h4>\nAndy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:\n<h2>021 797 6967</h2>\n<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\nClick to Email\n</a>\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2021-09-14 15:26:29','2021-09-14 13:26:29','',69,'https://podiatrist.capetown/?p=838',0,'revision','',0),(839,1,'2021-09-14 15:26:31','2021-09-14 13:26:31','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h1>Andy Blecher will keep your feet healthy and happy</h1>\n<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\">\n<h2>Clear nail fungus infections and warts with Laser technology</h2>\nSpecialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.\n\nCurrent treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.\n<h3>Summary of Neo Laser benefits:</h3>\n<ul>\n 	<li>Simple, quick and safe No downtime</li>\n 	<li>No pain or discomfort Few treatment sessions</li>\n 	<li>The most cost-effective solution.</li>\n</ul>\n<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\">\n\nAndy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.\n\nPodiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.\n\nIn Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.\n\n<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Andy Blecher Podiatrist Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\">\n\nThe Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.\n\nMost infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.\n\n<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\">\n<h3>Book your appointment</h3>\n<h2>021 797 6967</h2>\nWeekdays only 8h30-17h00\n<h2>Plumstead</h2>\n2 Burnham Road\n\n<em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em>\n<h2><strong>Sea Point</strong></h2>\n3rd Floor The Point\n\n76 Regent Road\n\n<em>Thursdays </em><strong>&nbsp;</strong>\n\n<a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a>\n<h4>General Enquiries</h4>\nAndy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:\n<h2>021 797 6967</h2>\n<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\nClick to Email\n</a>\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2021-09-14 15:26:31','2021-09-14 13:26:31','',69,'https://podiatrist.capetown/?p=839',0,'revision','',0),(840,1,'2021-09-14 15:26:35','2021-09-14 13:26:35','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2021-09-14 15:26:35','2021-09-14 13:26:35','',69,'https://podiatrist.capetown/?p=840',0,'revision','',0),(841,1,'2021-09-14 15:27:03','2021-09-14 13:27:03','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2021-09-14 15:27:03','2021-09-14 13:27:03','',69,'https://podiatrist.capetown/?p=841',0,'revision','',0),(842,1,'2021-09-14 15:27:06','2021-09-14 13:27:06','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2021-09-14 15:27:06','2021-09-14 13:27:06','',69,'https://podiatrist.capetown/?p=842',0,'revision','',0),(843,1,'2021-09-14 15:27:08','2021-09-14 13:27:08','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2021-09-14 15:27:08','2021-09-14 13:27:08','',69,'https://podiatrist.capetown/?p=843',0,'revision','',0),(844,1,'2021-09-14 15:29:59','2021-09-14 13:29:59','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:29:59','2021-09-14 13:29:59','',395,'https://podiatrist.capetown/?p=844',0,'revision','',0),(845,1,'2021-09-14 15:30:01','2021-09-14 13:30:01','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Andy Blecher Podiatrist</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist logo\" loading=\"lazy\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:30:01','2021-09-14 13:30:01','',395,'https://podiatrist.capetown/?p=845',0,'revision','',0),(846,1,'2021-09-14 15:30:05','2021-09-14 13:30:05','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:30:05','2021-09-14 13:30:05','',395,'https://podiatrist.capetown/?p=846',0,'revision','',0),(847,1,'2021-09-14 15:30:27','2021-09-14 13:30:27','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:30:27','2021-09-14 13:30:27','',395,'https://podiatrist.capetown/?p=847',0,'revision','',0),(848,1,'2021-09-14 15:30:29','2021-09-14 13:30:29','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p>AND</p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:30:29','2021-09-14 13:30:29','',395,'https://podiatrist.capetown/?p=848',0,'revision','',0),(849,1,'2021-09-14 15:30:33','2021-09-14 13:30:33','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p><em>AND</em></p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:30:33','2021-09-14 13:30:33','',395,'https://podiatrist.capetown/?p=849',0,'revision','',0),(852,1,'2021-09-14 15:37:52','2021-09-14 13:37:52','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p><em>AND</em></p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:37:52','2021-09-14 13:37:52','',395,'https://podiatrist.capetown/?p=852',0,'revision','',0),(853,1,'2021-09-14 15:37:55','2021-09-14 13:37:55','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Contact Andy Blecher</h1>		\n		<h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p><em>AND</em></p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:37:55','2021-09-14 13:37:55','',395,'https://podiatrist.capetown/?p=853',0,'revision','',0),(854,1,'2021-09-14 15:37:57','2021-09-14 13:37:57','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Consult Andy Blecher</h1>		\n		<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.</p><h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p><em>AND</em></p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Contact Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:37:57','2021-09-14 13:37:57','',395,'https://podiatrist.capetown/?p=854',0,'revision','',0),(855,1,'2021-09-14 15:41:56','2021-09-14 13:41:56','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h1>Consult Andy Blecher</h1>\nAndy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.\n<h2>Consulting rooms</h2>\n2 Burnham Road, Plumstead 7800\n\n<em>AND</em>\n\n3rd Floor, The Point, 76 Regent Road, Sea Point\n\nAppointments: : <strong>021 797 6967&nbsp;&nbsp;&nbsp; </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com&nbsp;&nbsp;</a>\n<h3>Hours of opening</h3>\nMonday to Friday: 08h30 - 17h00\n<h2>How to find Andy</h2>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&amp;t=m&amp;z=13&amp;output=embed&amp;iwloc=near\" title=\"2 Burnham Road, Plumstead 7800\" aria-label=\"2 Burnham Road, Plumstead 7800\"></iframe>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" title=\"The Point, 76 Regent Road, Sea Point 7800\" aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"></iframe>\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Consult Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:41:56','2021-09-14 13:41:56','',395,'https://podiatrist.capetown/?p=855',0,'revision','',0),(858,1,'2021-09-14 15:42:58','2021-09-14 13:42:58','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h1>Consult Andy Blecher</h1>\nAndy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.\n<h2>Consulting rooms</h2>\n2 Burnham Road, Plumstead 7800\n\n<em>AND</em>\n\n3rd Floor, The Point, 76 Regent Road, Sea Point\n\nAppointments: : <strong>021 797 6967&nbsp;&nbsp;&nbsp; </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com&nbsp;&nbsp;</a>\n<h3>Hours of opening</h3>\nMonday to Friday: 08h30 - 17h00\n<h2>How to find Andy</h2>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&amp;t=m&amp;z=13&amp;output=embed&amp;iwloc=near\" title=\"2 Burnham Road, Plumstead 7800\" aria-label=\"2 Burnham Road, Plumstead 7800\"></iframe>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" title=\"The Point, 76 Regent Road, Sea Point 7800\" aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"></iframe>\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Consult Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:42:58','2021-09-14 13:42:58','',395,'https://podiatrist.capetown/?p=858',0,'revision','',0),(859,1,'2021-09-14 15:43:06','2021-09-14 13:43:06','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h1>Consult Andy Blecher</h1>\nAndy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.\n<h2>Consulting rooms</h2>\n2 Burnham Road, Plumstead 7800\n\n<em>AND</em>\n\n3rd Floor, The Point, 76 Regent Road, Sea Point\n\nAppointments: : <strong>021 797 6967&nbsp;&nbsp;&nbsp; </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com&nbsp;&nbsp;</a>\n<h3>Hours of opening</h3>\nMonday to Friday: 08h30 - 17h00\n<h2>How to find Andy</h2>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&amp;t=m&amp;z=13&amp;output=embed&amp;iwloc=near\" title=\"2 Burnham Road, Plumstead 7800\" aria-label=\"2 Burnham Road, Plumstead 7800\"></iframe>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" title=\"The Point, 76 Regent Road, Sea Point 7800\" aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"></iframe>\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Consult Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:43:06','2021-09-14 13:43:06','',395,'https://podiatrist.capetown/?p=859',0,'revision','',0),(860,1,'2021-09-14 15:43:12','2021-09-14 13:43:12','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Consult Andy Blecher in Plumstead or Sea Point</h1>		\n		<p>Andy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.</p><h2>Consulting rooms</h2><p>2 Burnham Road, Plumstead 7800</p><p><em>AND</em></p><p>3rd Floor, The Point, 76 Regent Road, Sea Point</p><p>Appointments: : <strong>021 797 6967    </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com  </a></p><h3>Hours of opening</h3><p>Monday to Friday: 08h30 - 17h00</p>		\n			<h2>How to find Andy</h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"2 Burnham Road, Plumstead 7800\"\n					aria-label=\"2 Burnham Road, Plumstead 7800\"\n			></iframe>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"The Point, 76 Regent Road, Sea Point 7800\"\n					aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"\n			></iframe>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Consult Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:43:12','2021-09-14 13:43:12','',395,'https://podiatrist.capetown/?p=860',0,'revision','',0),(861,1,'2021-09-14 15:44:08','2021-09-14 13:44:08','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\">\n<h1>Consult Andy Blecher in Plumstead or Sea Point</h1>\nAndy Blecher has consulting rooms in both Plumstead and Sea Point - see below for details.\n<h2>Consulting rooms</h2>\n2 Burnham Road, Plumstead 7800\n\n<em>AND</em>\n\n3rd Floor, The Point, 76 Regent Road, Sea Point\n\nAppointments: : <strong>021 797 6967&nbsp;&nbsp;&nbsp; </strong>Email: <a href=\"mailto:andyblecherpodiatrist@gmail.com\">andyblecherpodiatrist@gmail.com&nbsp;&nbsp;</a>\n<h3>Hours of opening</h3>\nMonday to Friday: 08h30 - 17h00\n<h2>How to find Andy</h2>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=2%20Burnham%20Road%2C%20Plumstead%207800&amp;t=m&amp;z=13&amp;output=embed&amp;iwloc=near\" title=\"2 Burnham Road, Plumstead 7800\" aria-label=\"2 Burnham Road, Plumstead 7800\"></iframe>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=The%20Point%2C%2076%20Regent%20Road%2C%20Sea%20Point%207800&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" title=\"The Point, 76 Regent Road, Sea Point 7800\" aria-label=\"The Point, 76 Regent Road, Sea Point 7800\"></iframe>\n<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\">\n\nCopyright Andy Blecher Podiatrist © 2021. All rights reserved.','Consult Andy Blecher','','inherit','closed','closed','','395-revision-v1','','','2021-09-14 15:44:08','2021-09-14 13:44:08','',395,'https://podiatrist.capetown/?p=861',0,'revision','',0),(1053,1,'2022-03-23 13:52:05','2022-03-23 11:52:05','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-03-23 13:52:05','2022-03-23 11:52:05','',9,'https://podiatrist.capetown/?p=1053',0,'revision','',0),(1056,1,'2022-03-23 13:56:21','2022-03-23 11:56:21','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 13:56:21','2022-03-23 11:56:21','',69,'https://podiatrist.capetown/?p=1056',0,'revision','',0),(1057,1,'2022-03-23 13:56:22','2022-03-23 11:56:22','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 13:56:22','2022-03-23 11:56:22','',69,'https://podiatrist.capetown/?p=1057',0,'revision','',0),(1058,1,'2022-03-23 13:56:23','2022-03-23 11:56:23','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 13:56:23','2022-03-23 11:56:23','',69,'https://podiatrist.capetown/?p=1058',0,'revision','',0),(1059,1,'2022-03-23 13:56:49','2022-03-23 11:56:49','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-hello-elementor','','','2022-03-23 13:56:49','2022-03-23 11:56:49','',0,'https://podiatrist.capetown/2022/03/23/wp-global-styles-hello-elementor/',0,'wp_global_styles','',0),(1061,1,'2022-03-23 14:03:02','2022-03-23 12:03:02','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 14:03:02','2022-03-23 12:03:02','',69,'https://podiatrist.capetown/?p=1061',0,'revision','',0),(1062,1,'2022-03-23 14:03:06','2022-03-23 12:03:06','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 14:03:06','2022-03-23 12:03:06','',69,'https://podiatrist.capetown/?p=1062',0,'revision','',0),(1063,1,'2022-03-23 14:03:10','2022-03-23 12:03:10','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 14:03:10','2022-03-23 12:03:10','',69,'https://podiatrist.capetown/?p=1063',0,'revision','',0),(1064,1,'2022-03-23 14:03:44','2022-03-23 12:03:44','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 14:03:44','2022-03-23 12:03:44','',69,'https://podiatrist.capetown/?p=1064',0,'revision','',0),(1065,1,'2022-03-23 14:03:47','2022-03-23 12:03:47','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 14:03:47','2022-03-23 12:03:47','',69,'https://podiatrist.capetown/?p=1065',0,'revision','',0),(1066,1,'2022-03-23 14:03:50','2022-03-23 12:03:50','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-23 14:03:50','2022-03-23 12:03:50','',69,'https://podiatrist.capetown/?p=1066',0,'revision','',0),(1078,1,'2022-03-24 16:15:42','2022-03-24 14:15:42','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-24 16:15:42','2022-03-24 14:15:42','',69,'https://podiatrist.capetown/?p=1078',0,'revision','',0),(1079,1,'2022-03-24 16:15:45','2022-03-24 14:15:45','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h2>Latest News!!</h2>		\n		<p>For your conveinence , we now offer house calls.  Phone us for full details.</p>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n			<h3>Book your appointment</h3>		\n		<h2>021 797 6967</h2><p>Weekdays only 8h30-17h00</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-24 16:15:45','2022-03-24 14:15:45','',69,'https://podiatrist.capetown/?p=1079',0,'revision','',0),(1080,1,'2022-03-24 16:15:50','2022-03-24 14:15:50','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</p><p>Thursdays and Fridays</p><p>8h30 - 13h00</p><p>House calls available where necessary.</p><p>We welcome Tarique Jacobs to the practice.</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-24 16:15:50','2022-03-24 14:15:50','',69,'https://podiatrist.capetown/?p=1080',0,'revision','',0),(1082,1,'2022-03-25 13:42:03','2022-03-25 11:42:03','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</p><p>Thursdays and Fridays</p><p>8h30 - 13h00</p><p>House calls available where necessary.</p><p>We welcome Tarique Jacobs to the practice.</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-25 13:42:03','2022-03-25 11:42:03','',69,'https://podiatrist.capetown/?p=1082',0,'revision','',0),(1083,1,'2022-03-25 13:42:06','2022-03-25 11:42:06','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</p><p>Thursdays and Fridays</p><p>8h30 - 13h00</p><p>House calls available where necessary.</p><p>We welcome Tarique Jacobs to the practice.</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>ondays, Tuesdays, Wednesdays and Fridays</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-25 13:42:06','2022-03-25 11:42:06','',69,'https://podiatrist.capetown/?p=1083',0,'revision','',0),(1084,1,'2022-03-25 13:42:09','2022-03-25 11:42:09','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</p><p>Thursdays and Fridays</p><p>8h30 - 13h00</p><p>House calls available where necessary.</p><p>We welcome Taari Jacobs to the practice.</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>onday - Friday</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> a</strong></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-25 13:42:09','2022-03-25 11:42:09','',69,'https://podiatrist.capetown/?p=1084',0,'revision','',0),(1086,1,'2022-03-25 13:47:29','2022-03-25 11:47:29','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</p><p>Thursdays and Fridays</p><p>8h30 - 13h00</p><p>House calls available where necessary.</p><p>We welcome Taari Jacobs to the practice.</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>onday - Friday</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> a</strong></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-25 13:47:29','2022-03-25 11:47:29','',69,'https://podiatrist.capetown/?p=1086',0,'revision','',0),(1087,1,'2022-03-25 13:47:33','2022-03-25 11:47:33','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><p>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</p><p>Thursdays and Fridays</p><p>8h30 - 13h00</p><p>House calls available where necessary.</p><p>We welcome Taari Jacobs to the practice.</p><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>M</em><em>onday - Friday</em></p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point</p><p>76 Regent Road</p><p><em>Thursdays </em><strong> a</strong></p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-25 13:47:33','2022-03-25 11:47:33','',69,'https://podiatrist.capetown/?p=1087',0,'revision','',0),(1088,1,'2022-03-25 13:47:36','2022-03-25 11:47:36','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</em></p><p><em>Thursdays and Fridays 8h30 - 13h00</em></p><p>House calls available where necessary.</p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point, 76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p>We welcome Taariq Jacobs to the practice.</p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-03-25 13:47:36','2022-03-25 11:47:36','',69,'https://podiatrist.capetown/?p=1088',0,'revision','',0),(1202,1,'2022-09-12 15:47:22','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','closed','','','','','2022-09-12 15:47:22','0000-00-00 00:00:00','',0,'https://podiatrist.capetown/?p=1202',0,'post','',0),(1205,0,'2022-09-12 15:51:41','2022-09-12 13:51:41','/**handles:jquery-core,jquery-migrate**/\r\n/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */\n!function(e,t){\"use strict\";\"object\"==typeof module&amp;&amp;\"object\"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error(\"jQuery requires a window with a document\");return t(e)}:t(e)}(\"undefined\"!=typeof window?window:this,function(C,e){\"use strict\";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return\"function\"==typeof e&amp;&amp;\"number\"!=typeof e.nodeType&amp;&amp;\"function\"!=typeof e.item},x=function(e){return null!=e&amp;&amp;e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement(\"script\");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&amp;&amp;t.getAttribute(r))&amp;&amp;o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+\"\":\"object\"==typeof e||\"function\"==typeof e?n[o.call(e)]||\"object\":typeof e}var f=\"3.6.0\",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&amp;&amp;\"length\"in e&amp;&amp;e.length,n=w(e);return!m(e)&amp;&amp;!x(e)&amp;&amp;(\"array\"===n||0===t||\"number\"==typeof t&amp;&amp;0&lt;t&amp;&amp;t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e&lt;0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e&lt;0?t:0);return this.pushStack(0&lt;=n&amp;&amp;n&lt;t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for(&quot;boolean&quot;==typeof a&amp;&amp;(l=a,a=arguments[s]||{},s++),&quot;object&quot;==typeof a||m(a)||(a={}),s===u&amp;&amp;(a=this,s--);s&lt;u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],&quot;__proto__&quot;!==t&amp;&amp;a!==r&amp;&amp;(l&amp;&amp;r&amp;&amp;(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&amp;&amp;!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&amp;&amp;(a[t]=r));return a},S.extend({expando:&quot;jQuery&quot;+(f+Math.random()).replace(/\\D/g,&quot;&quot;),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||&quot;[object Object]&quot;!==o.call(e))&amp;&amp;(!(t=r(e))||&quot;function&quot;==typeof(n=v.call(t,&quot;constructor&quot;)&amp;&amp;t.constructor)&amp;&amp;a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&amp;&amp;t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r&lt;n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&amp;&amp;(p(Object(e))?S.merge(n,&quot;string&quot;==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r&lt;n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i&lt;o;i++)!t(e[i],i)!==a&amp;&amp;r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o&lt;r;o++)null!=(i=t(e[o],o,n))&amp;&amp;a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&amp;&amp;a.push(i);return g(a)},guid:1,support:y}),&quot;function&quot;==typeof Symbol&amp;&amp;(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each(&quot;Boolean Number String Function Array Date RegExp Object Error Symbol&quot;.split(&quot; &quot;),function(e,t){n[&quot;[object &quot;+t+&quot;]&quot;]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S=&quot;sizzle&quot;+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&amp;&amp;(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n+~]|\"+M+\")\"+M+\"*\"),U=new RegExp(M+\"|&gt;\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+M+\"*(?:([+-]|)\"+M+\"*(\\\\d+)|))\"+M+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^\"+M+\"*[&gt;+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+M+\"*((?:-\\\\d)?\\\\d*)\"+M+\"*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\"+M+\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n&gt;10|55296,1023&amp;n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"\\ufffd\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&amp;&amp;\"fieldset\"===e.nodeName.toLowerCase()},{dir:\"parentNode\",next:\"legend\"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&amp;&amp;e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],\"string\"!=typeof t||!t||1!==p&amp;&amp;9!==p&amp;&amp;11!==p)return n;if(!r&amp;&amp;(T(e),e=e||C,E)){if(11!==p&amp;&amp;(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&amp;&amp;(a=f.getElementById(i))&amp;&amp;y(e,a)&amp;&amp;a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&amp;&amp;d.getElementsByClassName&amp;&amp;e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&amp;&amp;!N[t+\" \"]&amp;&amp;(!v||!v.test(t))&amp;&amp;(1!==p||\"object\"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&amp;&amp;(U.test(t)||z.test(t))){(f=ee.test(t)&amp;&amp;ye(e.parentNode)||e)===e&amp;&amp;d.scope||((s=e.getAttribute(\"id\"))?s=s.replace(re,ie):e.setAttribute(\"id\",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?\"#\"+s:\":scope\")+\" \"+xe(l[o]);c=l.join(\",\")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&amp;&amp;e.removeAttribute(\"id\")}}}return g(t.replace($,\"$1\"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+\" \")&gt;b.cacheLength&amp;&amp;delete e[r.shift()],e[t+\" \"]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&amp;&amp;t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split(\"|\"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&amp;&amp;e,r=n&amp;&amp;1===e.nodeType&amp;&amp;1===t.nodeType&amp;&amp;e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return\"input\"===e.nodeName.toLowerCase()&amp;&amp;e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return(\"input\"===t||\"button\"===t)&amp;&amp;e.type===n}}function ge(t){return function(e){return\"form\"in e?e.parentNode&amp;&amp;!1===e.disabled?\"label\"in e?\"label\"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&amp;&amp;ae(e)===t:e.disabled===t:\"label\"in e&amp;&amp;e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&amp;&amp;(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&amp;&amp;\"undefined\"!=typeof e.getElementsByTagName&amp;&amp;e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&amp;&amp;e.namespaceURI,n=e&amp;&amp;(e.ownerDocument||e).documentElement;return!Y.test(t||n&amp;&amp;n.nodeName||\"HTML\")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&amp;&amp;9===r.nodeType&amp;&amp;r.documentElement&amp;&amp;(a=(C=r).documentElement,E=!i(C),p!=C&amp;&amp;(n=C.defaultView)&amp;&amp;n.top!==n&amp;&amp;(n.addEventListener?n.addEventListener(\"unload\",oe,!1):n.attachEvent&amp;&amp;n.attachEvent(\"onunload\",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement(\"div\")),\"undefined\"!=typeof e.querySelectorAll&amp;&amp;!e.querySelectorAll(\":scope fieldset div\").length}),d.attributes=ce(function(e){return e.className=\"i\",!e.getAttribute(\"className\")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment(\"\")),!e.getElementsByTagName(\"*\").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},b.find.ID=function(e,t){if(\"undefined\"!=typeof t.getElementById&amp;&amp;E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t=\"undefined\"!=typeof e.getAttributeNode&amp;&amp;e.getAttributeNode(\"id\");return t&amp;&amp;t.value===n}},b.find.ID=function(e,t){if(\"undefined\"!=typeof t.getElementById&amp;&amp;E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&amp;&amp;n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode(\"id\"))&amp;&amp;n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return\"undefined\"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){while(n=o[i++])1===n.nodeType&amp;&amp;r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&amp;&amp;function(e,t){if(\"undefined\"!=typeof t.getElementsByClassName&amp;&amp;E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&amp;&amp;(ce(function(e){var t;a.appendChild(e).innerHTML=\"<a id=\'\"+S+\"\'></a>\",e.querySelectorAll(\"[msallowcapture^=\'\']\").length&amp;&amp;v.push(\"[*^$]=\"+M+\"*(?:\'\'|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[\"+M+\"*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+S+\"-]\").length||v.push(\"~=\"),(t=C.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name=\'\']\").length||v.push(\"\\\\[\"+M+\"*name\"+M+\"*=\"+M+\"*(?:\'\'|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+S+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")}),ce(function(e){e.innerHTML=\"<a href=\'\'></a>\";var t=C.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&amp;&amp;v.push(\"name\"+M+\"*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&amp;&amp;v.push(\":enabled\",\":disabled\"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&amp;&amp;v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&amp;&amp;ce(function(e){d.disconnectedMatch=c.call(e,\"*\"),c.call(e,\"[s!=\'\']:x\"),s.push(\"!=\",F)}),v=v.length&amp;&amp;new RegExp(v.join(\"|\")),s=s.length&amp;&amp;new RegExp(s.join(\"|\")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&amp;&amp;t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&amp;&amp;16&amp;e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&amp;(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&amp;&amp;t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&amp;&amp;y(p,e)?-1:t==C||t.ownerDocument==p&amp;&amp;y(p,t)?1:u?P(u,e)-P(u,t):0:4&amp;n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&amp;&amp;E&amp;&amp;!N[t+\" \"]&amp;&amp;(!s||!s.test(t))&amp;&amp;(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&amp;&amp;11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&amp;&amp;(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&amp;&amp;se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&amp;&amp;e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&amp;&amp;X.test(n)&amp;&amp;(t=h(n,!0))&amp;&amp;(t=n.indexOf(\")\",n.length-t)-n.length)&amp;&amp;(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&amp;&amp;e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+\" \"];return t||(t=new RegExp(\"(^|\"+M+\")\"+e+\"(\"+M+\"|$)\"))&amp;&amp;m(e,function(e){return t.test(\"string\"==typeof e.className&amp;&amp;e.className||\"undefined\"!=typeof e.getAttribute&amp;&amp;e.getAttribute(\"class\")||\"\")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?\"!=\"===r:!r||(t+=\"\",\"=\"===r?t===i:\"!=\"===r?t!==i:\"^=\"===r?i&amp;&amp;0===t.indexOf(i):\"*=\"===r?i&amp;&amp;-1&lt;t.indexOf(i):&quot;$=&quot;===r?i&amp;&amp;t.slice(-i.length)===i:&quot;~=&quot;===r?-1&lt;(&quot; &quot;+t.replace(B,&quot; &quot;)+&quot; &quot;).indexOf(i):&quot;|=&quot;===r&amp;&amp;(t===i||t.slice(0,i.length+1)===i+&quot;-&quot;))}},CHILD:function(h,e,t,g,v){var y=&quot;nth&quot;!==h.slice(0,3),m=&quot;last&quot;!==h.slice(-4),x=&quot;of-type&quot;===e;return 1===g&amp;&amp;0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?&quot;nextSibling&quot;:&quot;previousSibling&quot;,c=e.parentNode,f=x&amp;&amp;e.nodeName.toLowerCase(),p=!n&amp;&amp;!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l=&quot;only&quot;===h&amp;&amp;!u&amp;&amp;&quot;nextSibling&quot;}return!0}if(u=[m?c.firstChild:c.lastChild],m&amp;&amp;p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&amp;&amp;r[1])&amp;&amp;r[2],a=s&amp;&amp;c.childNodes[s];while(a=++s&amp;&amp;a&amp;&amp;a[l]||(d=s=0)||u.pop())if(1===a.nodeType&amp;&amp;++d&amp;&amp;a===e){i[h]=[k,s,d];break}}else if(p&amp;&amp;(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&amp;&amp;r[1]),!1===d)while(a=++s&amp;&amp;a&amp;&amp;a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&amp;&amp;++d&amp;&amp;(p&amp;&amp;((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&amp;&amp;0&lt;=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error(&quot;unsupported pseudo: &quot;+e);return a[S]?a(o):1&lt;a.length?(t=[e,e,&quot;&quot;,o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,&quot;$1&quot;));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&amp;&amp;(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0&lt;se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1&lt;(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||&quot;&quot;)||se.error(&quot;unsupported lang: &quot;+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute(&quot;xml:lang&quot;)||e.getAttribute(&quot;lang&quot;))return(t=t.toLowerCase())===n||0===t.indexOf(n+&quot;-&quot;)}while((e=e.parentNode)&amp;&amp;1===e.nodeType);return!1}}),target:function(e){var t=n.location&amp;&amp;n.location.hash;return t&amp;&amp;t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&amp;&amp;(!C.hasFocus||C.hasFocus())&amp;&amp;!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return&quot;input&quot;===t&amp;&amp;!!e.checked||&quot;option&quot;===t&amp;&amp;!!e.selected},selected:function(e){return e.parentNode&amp;&amp;e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType&lt;6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return&quot;input&quot;===t&amp;&amp;&quot;button&quot;===e.type||&quot;button&quot;===t},text:function(e){var t;return&quot;input&quot;===e.nodeName.toLowerCase()&amp;&amp;&quot;text&quot;===e.type&amp;&amp;(null==(t=e.getAttribute(&quot;type&quot;))||&quot;text&quot;===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n&lt;0?n+t:n]}),even:ve(function(e,t){for(var n=0;n&lt;t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n&lt;t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n&lt;0?n+t:t&lt;n?t:n;0&lt;=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n&lt;0?n+t:n;++r&lt;t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r=&quot;&quot;;t&lt;n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&amp;&amp;&quot;parentNode&quot;===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&amp;&amp;s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&amp;&amp;l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&amp;&amp;r[0]===k&amp;&amp;r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1&lt;i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s&lt;u;s++)(o=e[s])&amp;&amp;(n&amp;&amp;!n(o,r,i)||(a.push(o),l&amp;&amp;t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&amp;&amp;!v[S]&amp;&amp;(v=Ce(v)),y&amp;&amp;!y[S]&amp;&amp;(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r&lt;i;r++)se(e,t[r],n);return n}(h||&quot;*&quot;,n.nodeType?[n]:n,[]),f=!d||!e&amp;&amp;h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&amp;&amp;g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&amp;&amp;(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&amp;&amp;i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&amp;&amp;-1&lt;(i=y?P(e,a):s[o])&amp;&amp;(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[&quot; &quot;],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1&lt;P(i,e)},a,!0),c=[function(e,t,n){var r=!o&amp;&amp;(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s&lt;r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n&lt;r;n++)if(b.relative[e[n].type])break;return Ce(1&lt;s&amp;&amp;we(c),1&lt;s&amp;&amp;xe(e.slice(0,s-1).concat({value:&quot; &quot;===e[s-2].type?&quot;*&quot;:&quot;&quot;})).replace($,&quot;$1&quot;),t,s&lt;n&amp;&amp;Ee(e.slice(s,n)),n&lt;r&amp;&amp;Ee(e=e.slice(n)),n&lt;r&amp;&amp;xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+&quot; &quot;];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&amp;&amp;!(r=_.exec(a))||(r&amp;&amp;(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&amp;&amp;(n=r.shift(),i.push({value:n,type:r[0].replace($,&quot; &quot;)}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&amp;&amp;!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+&quot; &quot;];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0&lt;(y=i).length,x=0&lt;v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l=&quot;0&quot;,c=e&amp;&amp;[],f=[],p=w,d=e||x&amp;&amp;b.find.TAG(&quot;*&quot;,i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&amp;&amp;(w=t==C||t||i);l!==g&amp;&amp;null!=(o=d[l]);l++){if(x&amp;&amp;o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&amp;&amp;(k=h)}m&amp;&amp;((o=!s&amp;&amp;o)&amp;&amp;u--,e&amp;&amp;c.push(o))}if(u+=l,m&amp;&amp;l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0&lt;u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&amp;&amp;!e&amp;&amp;0&lt;f.length&amp;&amp;1&lt;u+y.length&amp;&amp;se.uniqueSort(r)}return i&amp;&amp;(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l=&quot;function&quot;==typeof e&amp;&amp;e,c=!r&amp;&amp;h(e=l.selector||e);if(n=n||[],1===c.length){if(2&lt;(o=c[0]=c[0].slice(0)).length&amp;&amp;&quot;ID&quot;===(a=o[0]).type&amp;&amp;9===t.nodeType&amp;&amp;E&amp;&amp;b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&amp;&amp;(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&amp;&amp;(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&amp;&amp;ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&amp;&amp;xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&amp;&amp;ye(t.parentNode)||t),n},d.sortStable=S.split(&quot;&quot;).sort(j).join(&quot;&quot;)===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&amp;e.compareDocumentPosition(C.createElement(&quot;fieldset&quot;))}),ce(function(e){return e.innerHTML=&quot;<a href=\'#\'></a>\",\"#\"===e.firstChild.getAttribute(\"href\")})||fe(\"type|href|height|width\",function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)}),d.attributes&amp;&amp;ce(function(e){return e.innerHTML=\"\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")})||fe(\"value\",function(e,t,n){if(!n&amp;&amp;\"input\"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute(\"disabled\")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&amp;&amp;r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[\":\"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&amp;&amp;9!==e.nodeType)if(1===e.nodeType){if(i&amp;&amp;S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&amp;&amp;e!==t&amp;&amp;n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&amp;&amp;e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?&gt;(?:|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):\"string\"!=typeof n?S.grep(e,function(e){return-1&lt;i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&amp;&amp;(e=&quot;:not(&quot;+e+&quot;)&quot;),1===t.length&amp;&amp;1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(&quot;string&quot;!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t&lt;r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t&lt;r;t++)S.find(e,i[t],n);return 1&lt;r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,&quot;string&quot;==typeof e&amp;&amp;k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\\s*()[^&gt;]*|#([\\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"\"===e[e.length-1]&amp;&amp;3&lt;=e.length?[null,e,null]:q.exec(e))||!r[1]&amp;&amp;t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&amp;&amp;t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&amp;&amp;S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&amp;&amp;(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&amp;&amp;1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e&lt;n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a=&quot;string&quot;!=typeof e&amp;&amp;S(e);if(!k.test(e))for(;r&lt;i;r++)for(n=this[r];n&amp;&amp;n!==t;n=n.parentNode)if(n.nodeType&lt;11&amp;&amp;(a?-1&lt;a.index(n):1===n.nodeType&amp;&amp;S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1&lt;o.length?S.uniqueSort(o):o)},index:function(e){return e?&quot;string&quot;==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&amp;&amp;this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&amp;&amp;11!==t.nodeType?t:null},parents:function(e){return h(e,&quot;parentNode&quot;)},parentsUntil:function(e,t,n){return h(e,&quot;parentNode&quot;,n)},next:function(e){return O(e,&quot;nextSibling&quot;)},prev:function(e){return O(e,&quot;previousSibling&quot;)},nextAll:function(e){return h(e,&quot;nextSibling&quot;)},prevAll:function(e){return h(e,&quot;previousSibling&quot;)},nextUntil:function(e,t,n){return h(e,&quot;nextSibling&quot;,n)},prevUntil:function(e,t,n){return h(e,&quot;previousSibling&quot;,n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&amp;&amp;r(e.contentDocument)?e.contentDocument:(A(e,&quot;template&quot;)&amp;&amp;(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return&quot;Until&quot;!==r.slice(-5)&amp;&amp;(t=e),t&amp;&amp;&quot;string&quot;==typeof t&amp;&amp;(n=S.filter(t,n)),1&lt;this.length&amp;&amp;(H[r]||S.uniqueSort(n),L.test(r)&amp;&amp;n.reverse()),this.pushStack(n)}});var P=/[^\\x20\\t\\r\\n\\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&amp;&amp;m(i=e.promise)?i.call(e).done(t).fail(n):e&amp;&amp;m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r=&quot;string&quot;==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l&lt;s.length)!1===s[l].apply(t[0],t[1])&amp;&amp;r.stopOnFalse&amp;&amp;(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&amp;&amp;(s=t?[]:&quot;&quot;)},f={add:function(){return s&amp;&amp;(t&amp;&amp;!i&amp;&amp;(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&amp;&amp;f.has(t)||s.push(t):t&amp;&amp;t.length&amp;&amp;&quot;string&quot;!==w(t)&amp;&amp;n(t)})}(arguments),t&amp;&amp;!i&amp;&amp;c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1&lt;(n=S.inArray(t,s,n)))s.splice(n,1),n&lt;=l&amp;&amp;l--}),this},has:function(e){return e?-1&lt;S.inArray(e,s):0&lt;s.length},empty:function(){return s&amp;&amp;(s=[]),this},disable:function(){return a=u=[],s=t=&quot;&quot;,this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=&quot;&quot;),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[[&quot;notify&quot;,&quot;progress&quot;,S.Callbacks(&quot;memory&quot;),S.Callbacks(&quot;memory&quot;),2],[&quot;resolve&quot;,&quot;done&quot;,S.Callbacks(&quot;once memory&quot;),S.Callbacks(&quot;once memory&quot;),0,&quot;resolved&quot;],[&quot;reject&quot;,&quot;fail&quot;,S.Callbacks(&quot;once memory&quot;),S.Callbacks(&quot;once memory&quot;),1,&quot;rejected&quot;]],i=&quot;pending&quot;,a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},&quot;catch&quot;:function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&amp;&amp;i[t[4]];s[t[1]](function(){var e=n&amp;&amp;n.apply(this,arguments);e&amp;&amp;m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+&quot;With&quot;](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i&lt;u)){if((e=a.apply(n,r))===o.promise())throw new TypeError(&quot;Thenable self-resolution&quot;);t=e&amp;&amp;(&quot;object&quot;==typeof e||&quot;function&quot;==typeof e)&amp;&amp;e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&amp;&amp;(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&amp;&amp;S.Deferred.exceptionHook(e,t.stackTrace),u&lt;=i+1&amp;&amp;(a!==M&amp;&amp;(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&amp;&amp;(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&amp;&amp;n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+&quot;With&quot;](this===s?void 0:this,arguments),this},s[t[0]+&quot;With&quot;]=n.fireWith}),a.promise(s),e&amp;&amp;e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1&lt;arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n&lt;=1&amp;&amp;(I(e,o.done(a(t)).resolve,o.reject,!n),&quot;pending&quot;===o.state()||m(i[t]&amp;&amp;i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&amp;&amp;C.console.warn&amp;&amp;e&amp;&amp;W.test(e.name)&amp;&amp;C.console.warn(&quot;jQuery.Deferred exception: &quot;+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener(&quot;DOMContentLoaded&quot;,B),C.removeEventListener(&quot;load&quot;,B),S.ready()}S.fn.ready=function(e){return F.then(e)[&quot;catch&quot;](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&amp;&amp;0&lt;--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,&quot;complete&quot;===E.readyState||&quot;loading&quot;!==E.readyState&amp;&amp;!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener(&quot;DOMContentLoaded&quot;,B),C.addEventListener(&quot;load&quot;,B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(&quot;object&quot;===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&amp;&amp;(i=!0,m(r)||(a=!0),l&amp;&amp;(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s&lt;u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,&quot;ms-&quot;).replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&amp;&amp;(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if(&quot;string&quot;==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&amp;&amp;e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&amp;&amp;&quot;string&quot;==typeof t&amp;&amp;void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&amp;&amp;(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&amp;&amp;!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&amp;&amp;1===e.nodeType)if(r=&quot;data-&quot;+t.replace(K,&quot;-$&amp;&quot;).toLowerCase(),&quot;string&quot;==typeof(n=e.getAttribute(r))){try{n=&quot;true&quot;===(i=n)||&quot;false&quot;!==i&amp;&amp;(&quot;null&quot;===i?null:i===+i+&quot;&quot;?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&amp;&amp;o.attributes;if(void 0===n){if(this.length&amp;&amp;(i=Q.get(o),1===o.nodeType&amp;&amp;!Y.get(o,&quot;hasDataAttrs&quot;))){t=a.length;while(t--)a[t]&amp;&amp;0===(r=a[t].name).indexOf(&quot;data-&quot;)&amp;&amp;(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,&quot;hasDataAttrs&quot;,!0)}return i}return&quot;object&quot;==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&amp;&amp;void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1&lt;arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||&quot;fx&quot;)+&quot;queue&quot;,r=Y.get(e,t),n&amp;&amp;(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||&quot;fx&quot;;var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);&quot;inprogress&quot;===i&amp;&amp;(i=n.shift(),r--),i&amp;&amp;(&quot;fx&quot;===t&amp;&amp;n.unshift(&quot;inprogress&quot;),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&amp;&amp;o&amp;&amp;o.empty.fire()},_queueHooks:function(e,t){var n=t+&quot;queueHooks&quot;;return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks(&quot;once memory&quot;).add(function(){Y.remove(e,[t+&quot;queue&quot;,n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return&quot;string&quot;!=typeof t&amp;&amp;(n=t,t=&quot;fx&quot;,e--),arguments.length&lt;e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),&quot;fx&quot;===t&amp;&amp;&quot;inprogress&quot;!==e[0]&amp;&amp;S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||&quot;fx&quot;,[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};&quot;string&quot;!=typeof e&amp;&amp;(t=e,e=void 0),e=e||&quot;fx&quot;;while(a--)(n=Y.get(o[a],e+&quot;queueHooks&quot;))&amp;&amp;n.empty&amp;&amp;(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source,te=new RegExp(&quot;^(?:([+-])=|)(&quot;+ee+&quot;)([a-z%]*)$&quot;,&quot;i&quot;),ne=[&quot;Top&quot;,&quot;Right&quot;,&quot;Bottom&quot;,&quot;Left&quot;],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&amp;&amp;(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return&quot;none&quot;===(e=t||e).style.display||&quot;&quot;===e.style.display&amp;&amp;ie(e)&amp;&amp;&quot;none&quot;===S.css(e,&quot;display&quot;)};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,&quot;&quot;)},u=s(),l=n&amp;&amp;n[3]||(S.cssNumber[t]?&quot;&quot;:&quot;px&quot;),c=e.nodeType&amp;&amp;(S.cssNumber[t]||&quot;px&quot;!==l&amp;&amp;+u)&amp;&amp;te.exec(S.css(e,t));if(c&amp;&amp;c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))&lt;=0&amp;&amp;(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&amp;&amp;(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&amp;&amp;(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c&lt;f;c++)(r=e[c]).style&amp;&amp;(n=r.style.display,t?(&quot;none&quot;===n&amp;&amp;(l[c]=Y.get(r,&quot;display&quot;)||null,l[c]||(r.style.display=&quot;&quot;)),&quot;&quot;===r.style.display&amp;&amp;ae(r)&amp;&amp;(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,&quot;display&quot;),o.parentNode.removeChild(o),&quot;none&quot;===u&amp;&amp;(u=&quot;block&quot;),ue[s]=u)))):&quot;none&quot;!==n&amp;&amp;(l[c]=&quot;none&quot;,Y.set(r,&quot;display&quot;,n)));for(c=0;c&lt;f;c++)null!=l[c]&amp;&amp;(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return&quot;boolean&quot;==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/\\x20\\t\\r\\n\\f]*)/i,he=/^$|^module$|\\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement(\"div\")),(fe=E.createElement(\"input\")).setAttribute(\"type\",\"radio\"),fe.setAttribute(\"checked\",\"checked\"),fe.setAttribute(\"name\",\"t\"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML=\"<textarea>x</textarea>\",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=\"\",y.option=!!ce.lastChild;var ge={thead:[1,\"<table>\",\"</table>\"],col:[2,\"<table><colgroup>\",\"</colgroup></table>\"],tr:[2,\"<table><tbody>\",\"</tbody></table>\"],td:[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"],_default:[0,\"\",\"\"]};function ve(e,t){var n;return n=\"undefined\"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):\"undefined\"!=typeof e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&amp;&amp;A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n&lt;r;n++)Y.set(e[n],&quot;globalEval&quot;,!t||Y.get(t[n],&quot;globalEval&quot;))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,&quot;\",\"\"]);var me=/&lt;|&amp;#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d&lt;h;d++)if((o=e[d])||0===o)if(&quot;object&quot;===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement(&quot;div&quot;)),s=(de.exec(o)||[&quot;&quot;,&quot;&quot;])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=&quot;&quot;}else p.push(t.createTextNode(o));f.textContent=&quot;&quot;,d=0;while(o=p[d++])if(r&amp;&amp;-1&lt;S.inArray(o,r))i&amp;&amp;i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),&quot;script&quot;),l&amp;&amp;ye(a),n){c=0;while(o=a[c++])he.test(o.type||&quot;&quot;)&amp;&amp;n.push(o)}return f}var be=/^([^.]*)(?:\\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==(&quot;focus&quot;===t)}function Ee(e,t,n,r,i,o){var a,s;if(&quot;object&quot;==typeof t){for(s in&quot;string&quot;!=typeof n&amp;&amp;(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&amp;&amp;null==i?(i=n,r=n=void 0):null==i&amp;&amp;(&quot;string&quot;==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&amp;&amp;(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&amp;e.isTrigger&amp;&amp;this[i]){if(r.length)(S.event.special[i]||{}).delegateType&amp;&amp;e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&amp;&amp;n.value}else r.length&amp;&amp;(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&amp;&amp;S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&amp;&amp;(n=(o=n).handler,i=o.selector),i&amp;&amp;S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return&quot;undefined&quot;!=typeof S&amp;&amp;S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||&quot;&quot;).match(P)||[&quot;&quot;]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||&quot;&quot;).split(&quot;.&quot;).sort(),d&amp;&amp;(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&amp;&amp;S.expr.match.needsContext.test(i),namespace:h.join(&quot;.&quot;)},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&amp;&amp;!1!==f.setup.call(t,r,h,a)||t.addEventListener&amp;&amp;t.addEventListener(d,a)),f.add&amp;&amp;(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&amp;&amp;Y.get(e);if(v&amp;&amp;(u=v.events)){l=(t=(t||&quot;&quot;).match(P)||[&quot;&quot;]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||&quot;&quot;).split(&quot;.&quot;).sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&amp;&amp;new RegExp(&quot;(^|\\\\.)&quot;+h.join(&quot;\\\\.(?:.*\\\\.|)&quot;)+&quot;(\\\\.|$)&quot;),a=o=p.length;while(o--)c=p[o],!i&amp;&amp;g!==c.origType||n&amp;&amp;n.guid!==c.guid||s&amp;&amp;!s.test(c.namespace)||r&amp;&amp;r!==c.selector&amp;&amp;(&quot;**&quot;!==r||!c.selector)||(p.splice(o,1),c.selector&amp;&amp;p.delegateCount--,f.remove&amp;&amp;f.remove.call(e,c));a&amp;&amp;!p.length&amp;&amp;(f.teardown&amp;&amp;!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&amp;&amp;Y.remove(e,&quot;handle events&quot;)}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,&quot;events&quot;)||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t&lt;arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&amp;&amp;!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&amp;&amp;!u.isImmediatePropagationStopped())u.rnamespace&amp;&amp;!1!==o.namespace&amp;&amp;!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&amp;&amp;!1===(u.result=r)&amp;&amp;(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&amp;&amp;c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&amp;&amp;l.nodeType&amp;&amp;!(&quot;click&quot;===e.type&amp;&amp;1&lt;=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&amp;&amp;(&quot;click&quot;!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n&lt;u;n++)void 0===a[i=(r=t[n]).selector+&quot; &quot;]&amp;&amp;(a[i]=r.needsContext?-1&lt;S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&amp;&amp;o.push(r);o.length&amp;&amp;s.push({elem:l,handlers:o})}return l=this,u&lt;t.length&amp;&amp;s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&amp;&amp;t.click&amp;&amp;A(t,&quot;input&quot;)&amp;&amp;Se(t,&quot;click&quot;,we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&amp;&amp;t.click&amp;&amp;A(t,&quot;input&quot;)&amp;&amp;Se(t,&quot;click&quot;),!0},_default:function(e){var t=e.target;return pe.test(t.type)&amp;&amp;t.click&amp;&amp;A(t,&quot;input&quot;)&amp;&amp;Y.get(t,&quot;click&quot;)||A(t,&quot;a&quot;)}},beforeunload:{postDispatch:function(e){void 0!==e.result&amp;&amp;e.originalEvent&amp;&amp;(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&amp;&amp;e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&amp;&amp;e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&amp;&amp;!1===e.returnValue?we:Te,this.target=e.target&amp;&amp;3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&amp;&amp;S.extend(this,t),this.timeStamp=e&amp;&amp;e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&amp;&amp;!this.isSimulated&amp;&amp;e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&amp;&amp;!this.isSimulated&amp;&amp;e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&amp;&amp;!this.isSimulated&amp;&amp;e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,&quot;char&quot;:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:&quot;focusin&quot;,blur:&quot;focusout&quot;},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:&quot;mouseover&quot;,mouseleave:&quot;mouseout&quot;,pointerenter:&quot;pointerover&quot;,pointerleave:&quot;pointerout&quot;},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&amp;&amp;(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&amp;&amp;e.preventDefault&amp;&amp;e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+&quot;.&quot;+r.namespace:r.origType,r.selector,r.handler),this;if(&quot;object&quot;==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&amp;&amp;&quot;function&quot;!=typeof t||(n=t,t=void 0),!1===n&amp;&amp;(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/&lt;script|&lt;style|&lt;link/i,Ae=/checked\\s*(?:[^=]|=\\s*.checked.)/i,Ne=/^\\s*\\s*$/g;function je(e,t){return A(e,\"table\")&amp;&amp;A(11!==t.nodeType?t:t.firstChild,\"tr\")&amp;&amp;S(e).children(\"tbody\")[0]||e}function De(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function qe(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&amp;&amp;(s=Y.get(e).events))for(i in Y.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n&lt;r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&amp;&amp;(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1&lt;f&amp;&amp;&quot;string&quot;==typeof d&amp;&amp;!y.checkClone&amp;&amp;Ae.test(d))return n.each(function(e){var t=n.eq(e);h&amp;&amp;(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&amp;&amp;(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&amp;&amp;(e=t),t||o)){for(s=(a=S.map(ve(e,&quot;script&quot;),De)).length;c&lt;f;c++)u=e,c!==p&amp;&amp;(u=S.clone(u,!0,!0),s&amp;&amp;S.merge(a,ve(u,&quot;script&quot;))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c&lt;s;c++)u=a[c],he.test(u.type||&quot;&quot;)&amp;&amp;!Y.access(u,&quot;globalEval&quot;)&amp;&amp;S.contains(l,u)&amp;&amp;(u.src&amp;&amp;&quot;module&quot;!==(u.type||&quot;&quot;).toLowerCase()?S._evalUrl&amp;&amp;!u.noModule&amp;&amp;S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute(&quot;nonce&quot;)},l):b(u.textContent.replace(Ne,&quot;&quot;),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&amp;&amp;(n&amp;&amp;ie(r)&amp;&amp;ye(ve(r,&quot;script&quot;)),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&amp;&amp;11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r&lt;i;r++)s=o[r],u=a[r],void 0,&quot;input&quot;===(l=u.nodeName.toLowerCase())&amp;&amp;pe.test(s.type)?u.checked=s.checked:&quot;input&quot;!==l&amp;&amp;&quot;textarea&quot;!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r&lt;i;r++)Le(o[r],a[r]);else Le(e,c);return 0&lt;(a=ve(c,&quot;script&quot;)).length&amp;&amp;ye(a,!f&amp;&amp;ve(e,&quot;script&quot;)),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&amp;&amp;(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&amp;&amp;11!==this.nodeType&amp;&amp;9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&amp;&amp;11!==this.nodeType&amp;&amp;9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&amp;&amp;this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&amp;&amp;this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&amp;&amp;(S.cleanData(ve(e,!1)),e.textContent=&quot;&quot;);return this},clone:function(e,t){return e=null!=e&amp;&amp;e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&amp;&amp;1===t.nodeType)return t.innerHTML;if(&quot;string&quot;==typeof e&amp;&amp;!ke.test(e)&amp;&amp;!ge[(de.exec(e)||[&quot;&quot;,&quot;&quot;])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n&lt;r;n++)1===(t=this[n]||{}).nodeType&amp;&amp;(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&amp;&amp;this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)&lt;0&amp;&amp;(S.cleanData(ve(this)),t&amp;&amp;t.replaceChild(e,this))},n)}}),S.each({appendTo:&quot;append&quot;,prependTo:&quot;prepend&quot;,insertBefore:&quot;before&quot;,insertAfter:&quot;after&quot;,replaceAll:&quot;replaceWith&quot;},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o&lt;=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp(&quot;^(&quot;+ee+&quot;)(?!px)[a-z%]+$&quot;,&quot;i&quot;),Re=function(e){var t=e.ownerDocument.defaultView;return t&amp;&amp;t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join(&quot;|&quot;),&quot;i&quot;);function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&amp;&amp;(&quot;&quot;!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&amp;&amp;Pe.test(a)&amp;&amp;Ie.test(t)&amp;&amp;(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+&quot;&quot;:a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText=&quot;position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0&quot;,l.style.cssText=&quot;position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%&quot;,re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n=&quot;1%&quot;!==e.top,s=12===t(e.marginLeft),l.style.right=&quot;60%&quot;,o=36===t(e.right),r=36===t(e.width),l.style.position=&quot;absolute&quot;,i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement(&quot;div&quot;),l=E.createElement(&quot;div&quot;);l.style&amp;&amp;(l.style.backgroundClip=&quot;content-box&quot;,l.cloneNode(!0).style.backgroundClip=&quot;&quot;,y.clearCloneStyle=&quot;content-box&quot;===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&amp;&amp;(e=E.createElement(&quot;table&quot;),t=E.createElement(&quot;tr&quot;),n=E.createElement(&quot;div&quot;),e.style.cssText=&quot;position:absolute;left:-11111px;border-collapse:separate&quot;,t.style.cssText=&quot;border:1px solid&quot;,t.style.height=&quot;1px&quot;,n.style.height=&quot;9px&quot;,n.style.display=&quot;block&quot;,re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=[&quot;Webkit&quot;,&quot;Moz&quot;,&quot;ms&quot;],$e=E.createElement(&quot;div&quot;).style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:&quot;absolute&quot;,visibility:&quot;hidden&quot;,display:&quot;block&quot;},Ge={letterSpacing:&quot;0&quot;,fontWeight:&quot;400&quot;};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||&quot;px&quot;):t}function Qe(e,t,n,r,i,o){var a=&quot;width&quot;===t?1:0,s=0,u=0;if(n===(r?&quot;border&quot;:&quot;content&quot;))return 0;for(;a&lt;4;a+=2)&quot;margin&quot;===n&amp;&amp;(u+=S.css(e,n+ne[a],!0,i)),r?(&quot;content&quot;===n&amp;&amp;(u-=S.css(e,&quot;padding&quot;+ne[a],!0,i)),&quot;margin&quot;!==n&amp;&amp;(u-=S.css(e,&quot;border&quot;+ne[a]+&quot;Width&quot;,!0,i))):(u+=S.css(e,&quot;padding&quot;+ne[a],!0,i),&quot;padding&quot;!==n?u+=S.css(e,&quot;border&quot;+ne[a]+&quot;Width&quot;,!0,i):s+=S.css(e,&quot;border&quot;+ne[a]+&quot;Width&quot;,!0,i));return!r&amp;&amp;0&lt;=o&amp;&amp;(u+=Math.max(0,Math.ceil(e[&quot;offset&quot;+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&amp;&amp;&quot;border-box&quot;===S.css(e,&quot;boxSizing&quot;,!1,r),o=i,a=We(e,t,r),s=&quot;offset&quot;+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a=&quot;auto&quot;}return(!y.boxSizingReliable()&amp;&amp;i||!y.reliableTrDimensions()&amp;&amp;A(e,&quot;tr&quot;)||&quot;auto&quot;===a||!parseFloat(a)&amp;&amp;&quot;inline&quot;===S.css(e,&quot;display&quot;,!1,r))&amp;&amp;e.getClientRects().length&amp;&amp;(i=&quot;border-box&quot;===S.css(e,&quot;boxSizing&quot;,!1,r),(o=s in e)&amp;&amp;(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?&quot;border&quot;:&quot;content&quot;),o,r,a)+&quot;px&quot;}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,&quot;opacity&quot;);return&quot;&quot;===n?&quot;1&quot;:n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&amp;&amp;3!==e.nodeType&amp;&amp;8!==e.nodeType&amp;&amp;e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&amp;&amp;&quot;get&quot;in a&amp;&amp;void 0!==(i=a.get(e,!1,r))?i:l[t];&quot;string&quot;===(o=typeof n)&amp;&amp;(i=te.exec(n))&amp;&amp;i[1]&amp;&amp;(n=se(e,t,i),o=&quot;number&quot;),null!=n&amp;&amp;n==n&amp;&amp;(&quot;number&quot;!==o||u||(n+=i&amp;&amp;i[3]||(S.cssNumber[s]?&quot;&quot;:&quot;px&quot;)),y.clearCloneStyle||&quot;&quot;!==n||0!==t.indexOf(&quot;background&quot;)||(l[t]=&quot;inherit&quot;),a&amp;&amp;&quot;set&quot;in a&amp;&amp;void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&amp;&amp;&quot;get&quot;in a&amp;&amp;(i=a.get(e,!0,n)),void 0===i&amp;&amp;(i=We(e,t,r)),&quot;normal&quot;===i&amp;&amp;t in Ge&amp;&amp;(i=Ge[t]),&quot;&quot;===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each([&quot;height&quot;,&quot;width&quot;],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,&quot;display&quot;))||e.getClientRects().length&amp;&amp;e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&amp;&amp;&quot;absolute&quot;===i.position,a=(o||n)&amp;&amp;&quot;border-box&quot;===S.css(e,&quot;boxSizing&quot;,!1,i),s=n?Qe(e,u,n,a,i):0;return a&amp;&amp;o&amp;&amp;(s-=Math.ceil(e[&quot;offset&quot;+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,&quot;border&quot;,!1,i)-.5)),s&amp;&amp;(r=te.exec(t))&amp;&amp;&quot;px&quot;!==(r[3]||&quot;px&quot;)&amp;&amp;(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,&quot;marginLeft&quot;))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+&quot;px&quot;}),S.each({margin:&quot;&quot;,padding:&quot;&quot;,border:&quot;Width&quot;},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r=&quot;string&quot;==typeof e?e.split(&quot; &quot;):[e];t&lt;4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},&quot;margin&quot;!==i&amp;&amp;(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a&lt;i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1&lt;arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?&quot;&quot;:&quot;px&quot;)},cur:function(){var e=Ke.propHooks[this.prop];return e&amp;&amp;e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&amp;&amp;this.options.step.call(this.elem,this.now,this),n&amp;&amp;n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&amp;&amp;null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,&quot;&quot;))&amp;&amp;&quot;auto&quot;!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&amp;&amp;null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&amp;&amp;e.elem.parentNode&amp;&amp;(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:&quot;swing&quot;},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&amp;&amp;(!1===E.hidden&amp;&amp;C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r&lt;4;r+=2-t)i[&quot;margin&quot;+(n=ne[r])]=i[&quot;padding&quot;+n]=e;return t&amp;&amp;(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners[&quot;*&quot;]),o=0,a=i.length;o&lt;a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r&lt;i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n&lt;1&amp;&amp;i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t&lt;n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&amp;&amp;(i=o[1],o=e[n]=o[0]),n!==r&amp;&amp;(e[r]=o,delete e[n]),(a=S.cssHooks[r])&amp;&amp;&quot;expand&quot;in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r&lt;i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&amp;&amp;(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&amp;&amp;l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{&quot;*&quot;:[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=[&quot;*&quot;]):e=e.match(P);for(var n,r=0,i=e.length;r&lt;i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f=&quot;width&quot;in t||&quot;height&quot;in t,p=this,d={},h=e.style,g=e.nodeType&amp;&amp;ae(e),v=Y.get(e,&quot;fxshow&quot;);for(r in n.queue||(null==(a=S._queueHooks(e,&quot;fx&quot;)).unqueued&amp;&amp;(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,&quot;fx&quot;).length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||&quot;toggle&quot;===i,i===(g?&quot;hide&quot;:&quot;show&quot;)){if(&quot;show&quot;!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&amp;&amp;v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&amp;&amp;1===e.nodeType&amp;&amp;(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&amp;&amp;v.display)&amp;&amp;(l=Y.get(e,&quot;display&quot;)),&quot;none&quot;===(c=S.css(e,&quot;display&quot;))&amp;&amp;(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,&quot;display&quot;),le([e]))),(&quot;inline&quot;===c||&quot;inline-block&quot;===c&amp;&amp;null!=l)&amp;&amp;&quot;none&quot;===S.css(e,&quot;float&quot;)&amp;&amp;(u||(p.done(function(){h.display=l}),null==l&amp;&amp;(c=h.display,l=&quot;none&quot;===c?&quot;&quot;:c)),h.display=&quot;inline-block&quot;)),n.overflow&amp;&amp;(h.overflow=&quot;hidden&quot;,p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?&quot;hidden&quot;in v&amp;&amp;(g=v.hidden):v=Y.access(e,&quot;fxshow&quot;,{display:l}),o&amp;&amp;(v.hidden=!g),g&amp;&amp;le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,&quot;fxshow&quot;),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&amp;&amp;(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&amp;&amp;&quot;object&quot;==typeof e?S.extend({},e):{complete:n||!n&amp;&amp;t||m(e)&amp;&amp;e,duration:e,easing:n&amp;&amp;t||t&amp;&amp;!m(t)&amp;&amp;t};return S.fx.off?r.duration=0:&quot;number&quot;!=typeof r.duration&amp;&amp;(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&amp;&amp;!0!==r.queue||(r.queue=&quot;fx&quot;),r.old=r.complete,r.complete=function(){m(r.old)&amp;&amp;r.old.call(this),r.queue&amp;&amp;S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css(&quot;opacity&quot;,0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,&quot;finish&quot;))&amp;&amp;e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return&quot;string&quot;!=typeof i&amp;&amp;(o=e,e=i,i=void 0),e&amp;&amp;this.queue(i||&quot;fx&quot;,[]),this.each(function(){var e=!0,t=null!=i&amp;&amp;i+&quot;queueHooks&quot;,n=S.timers,r=Y.get(this);if(t)r[t]&amp;&amp;r[t].stop&amp;&amp;a(r[t]);else for(t in r)r[t]&amp;&amp;r[t].stop&amp;&amp;it.test(t)&amp;&amp;a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&amp;&amp;n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&amp;&amp;o||S.dequeue(this,i)})},finish:function(a){return!1!==a&amp;&amp;(a=a||&quot;fx&quot;),this.each(function(){var e,t=Y.get(this),n=t[a+&quot;queue&quot;],r=t[a+&quot;queueHooks&quot;],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&amp;&amp;r.stop&amp;&amp;r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&amp;&amp;i[e].queue===a&amp;&amp;(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e&lt;o;e++)n[e]&amp;&amp;n[e].finish&amp;&amp;n[e].finish.call(this);delete t.finish})}}),S.each([&quot;toggle&quot;,&quot;show&quot;,&quot;hide&quot;],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||&quot;boolean&quot;==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st(&quot;show&quot;),slideUp:st(&quot;hide&quot;),slideToggle:st(&quot;toggle&quot;),fadeIn:{opacity:&quot;show&quot;},fadeOut:{opacity:&quot;hide&quot;},fadeToggle:{opacity:&quot;toggle&quot;}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t&lt;n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&amp;&amp;S.fx.speeds[r]||r,e=e||&quot;fx&quot;,this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement(&quot;input&quot;),nt=E.createElement(&quot;select&quot;).appendChild(E.createElement(&quot;option&quot;)),tt.type=&quot;checkbox&quot;,y.checkOn=&quot;&quot;!==tt.value,y.optSelected=nt.selected,(tt=E.createElement(&quot;input&quot;)).value=&quot;t&quot;,tt.type=&quot;radio&quot;,y.radioValue=&quot;t&quot;===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1&lt;arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&amp;&amp;8!==o&amp;&amp;2!==o)return&quot;undefined&quot;==typeof e.getAttribute?S.prop(e,t,n):(1===o&amp;&amp;S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&amp;&amp;&quot;set&quot;in i&amp;&amp;void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+&quot;&quot;),n):i&amp;&amp;&quot;get&quot;in i&amp;&amp;null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&amp;&amp;&quot;radio&quot;===t&amp;&amp;A(e,&quot;input&quot;)){var n=e.value;return e.setAttribute(&quot;type&quot;,t),n&amp;&amp;(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&amp;&amp;t.match(P);if(i&amp;&amp;1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(&quot; &quot;)}function gt(e){return e.getAttribute&amp;&amp;e.getAttribute(&quot;class&quot;)||&quot;&quot;}function vt(e){return Array.isArray(e)?e:&quot;string&quot;==typeof e&amp;&amp;e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1&lt;arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&amp;&amp;8!==o&amp;&amp;2!==o)return 1===o&amp;&amp;S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&amp;&amp;&quot;set&quot;in i&amp;&amp;void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&amp;&amp;&quot;get&quot;in i&amp;&amp;null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,&quot;tabindex&quot;);return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&amp;&amp;e.href?0:-1}}},propFix:{&quot;for&quot;:&quot;htmlFor&quot;,&quot;class&quot;:&quot;className&quot;}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&amp;&amp;t.parentNode&amp;&amp;t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&amp;&amp;(t.selectedIndex,t.parentNode&amp;&amp;t.parentNode.selectedIndex)}}),S.each([&quot;tabIndex&quot;,&quot;readOnly&quot;,&quot;maxLength&quot;,&quot;cellSpacing&quot;,&quot;cellPadding&quot;,&quot;rowSpan&quot;,&quot;colSpan&quot;,&quot;useMap&quot;,&quot;frameBorder&quot;,&quot;contentEditable&quot;],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&amp;&amp;&quot; &quot;+ht(i)+&quot; &quot;){a=0;while(o=e[a++])r.indexOf(&quot; &quot;+o+&quot; &quot;)&lt;0&amp;&amp;(r+=o+&quot; &quot;);i!==(s=ht(r))&amp;&amp;n.setAttribute(&quot;class&quot;,s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr(&quot;class&quot;,&quot;&quot;);if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&amp;&amp;&quot; &quot;+ht(i)+&quot; &quot;){a=0;while(o=e[a++])while(-1&lt;r.indexOf(&quot; &quot;+o+&quot; &quot;))r=r.replace(&quot; &quot;+o+&quot; &quot;,&quot; &quot;);i!==(s=ht(r))&amp;&amp;n.setAttribute(&quot;class&quot;,s)}return this},toggleClass:function(i,t){var o=typeof i,a=&quot;string&quot;===o||Array.isArray(i);return&quot;boolean&quot;==typeof t&amp;&amp;a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&amp;&amp;&quot;boolean&quot;!==o||((e=gt(this))&amp;&amp;Y.set(this,&quot;__className__&quot;,e),this.setAttribute&amp;&amp;this.setAttribute(&quot;class&quot;,e||!1===i?&quot;&quot;:Y.get(this,&quot;__className__&quot;)||&quot;&quot;))})},hasClass:function(e){var t,n,r=0;t=&quot; &quot;+e+&quot; &quot;;while(n=this[r++])if(1===n.nodeType&amp;&amp;-1&lt;(&quot; &quot;+ht(gt(n))+&quot; &quot;).indexOf(t))return!0;return!1}});var yt=/\\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&amp;&amp;(null==(t=i?n.call(this,e,S(this).val()):n)?t=&quot;&quot;:&quot;number&quot;==typeof t?t+=&quot;&quot;:Array.isArray(t)&amp;&amp;(t=S.map(t,function(e){return null==e?&quot;&quot;:e+&quot;&quot;})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&amp;&amp;&quot;set&quot;in r&amp;&amp;void 0!==r.set(this,t,&quot;value&quot;)||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&amp;&amp;&quot;get&quot;in r&amp;&amp;void 0!==(e=r.get(t,&quot;value&quot;))?e:&quot;string&quot;==typeof(e=t.value)?e.replace(yt,&quot;&quot;):null==e?&quot;&quot;:e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,&quot;value&quot;);return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=&quot;select-one&quot;===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o&lt;0?u:a?o:0;r&lt;u;r++)if(((n=i[r]).selected||r===o)&amp;&amp;!n.disabled&amp;&amp;(!n.parentNode.disabled||!A(n.parentNode,&quot;optgroup&quot;))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1&lt;S.inArray(S.valHooks.option.get(r),o))&amp;&amp;(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each([&quot;radio&quot;,&quot;checkbox&quot;],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1&lt;S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute(&quot;value&quot;)?&quot;on&quot;:e.value})}),y.focusin=&quot;onfocusin&quot;in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,&quot;type&quot;)?e.type:e,h=v.call(e,&quot;namespace&quot;)?e.namespace.split(&quot;.&quot;):[];if(o=f=a=n=n||E,3!==n.nodeType&amp;&amp;8!==n.nodeType&amp;&amp;!mt.test(d+S.event.triggered)&amp;&amp;(-1&lt;d.indexOf(&quot;.&quot;)&amp;&amp;(d=(h=d.split(&quot;.&quot;)).shift(),h.sort()),u=d.indexOf(&quot;:&quot;)&lt;0&amp;&amp;&quot;on&quot;+d,(e=e[S.expando]?e:new S.Event(d,&quot;object&quot;==typeof e&amp;&amp;e)).isTrigger=r?2:3,e.namespace=h.join(&quot;.&quot;),e.rnamespace=e.namespace?new RegExp(&quot;(^|\\\\.)&quot;+h.join(&quot;\\\\.(?:.*\\\\.|)&quot;)+&quot;(\\\\.|$)&quot;):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&amp;&amp;!c.noBubble&amp;&amp;!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&amp;&amp;p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&amp;&amp;!e.isPropagationStopped())f=o,e.type=1&lt;i?s:c.bindType||d,(l=(Y.get(o,&quot;events&quot;)||Object.create(null))[e.type]&amp;&amp;Y.get(o,&quot;handle&quot;))&amp;&amp;l.apply(o,t),(l=u&amp;&amp;o[u])&amp;&amp;l.apply&amp;&amp;V(o)&amp;&amp;(e.result=l.apply(o,t),!1===e.result&amp;&amp;e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&amp;&amp;!1!==c._default.apply(p.pop(),t)||!V(n)||u&amp;&amp;m(n[d])&amp;&amp;!x(n)&amp;&amp;((a=n[u])&amp;&amp;(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&amp;&amp;f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&amp;&amp;f.removeEventListener(d,xt),S.event.triggered=void 0,a&amp;&amp;(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:&quot;focusin&quot;,blur:&quot;focusout&quot;},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\\?/;S.parseXML=function(e){var t,n;if(!e||&quot;string&quot;!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,&quot;text/xml&quot;)}catch(e){}return n=t&amp;&amp;t.getElementsByTagName(&quot;parsererror&quot;)[0],t&amp;&amp;!n||S.error(&quot;Invalid XML: &quot;+(n?S.map(n.childNodes,function(e){return e.textContent}).join(&quot;\\n&quot;):e)),t};var Ct=/\\[\\]$/,Et=/\\r?\\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+&quot;[&quot;+(&quot;object&quot;==typeof t&amp;&amp;null!=t?e:&quot;&quot;)+&quot;]&quot;,t,r,i)});else if(r||&quot;object&quot;!==w(e))i(n,e);else for(t in e)At(n+&quot;[&quot;+t+&quot;]&quot;,e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+&quot;=&quot;+encodeURIComponent(null==n?&quot;&quot;:n)};if(null==e)return&quot;&quot;;if(Array.isArray(e)||e.jquery&amp;&amp;!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join(&quot;&amp;&quot;)},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,&quot;elements&quot;);return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&amp;&amp;!S(this).is(&quot;:disabled&quot;)&amp;&amp;kt.test(this.nodeName)&amp;&amp;!St.test(e)&amp;&amp;(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,&quot;\\r\\n&quot;)}}):{name:t.name,value:n.replace(Et,&quot;\\r\\n&quot;)}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&amp;])_=[^&amp;]*/,qt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\\/\\//,Ot={},Pt={},Rt=&quot;*/&quot;.concat(&quot;*&quot;),Mt=E.createElement(&quot;a&quot;);function It(o){return function(e,t){&quot;string&quot;!=typeof e&amp;&amp;(t=e,e=&quot;*&quot;);var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])&quot;+&quot;===n[0]?(n=n.slice(1)||&quot;*&quot;,(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return&quot;string&quot;!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s[&quot;*&quot;]&amp;&amp;l(&quot;*&quot;)}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&amp;&amp;((i[n]?e:r||(r={}))[n]=t[n]);return r&amp;&amp;S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:&quot;GET&quot;,isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:&quot;application/x-www-form-urlencoded; charset=UTF-8&quot;,accepts:{&quot;*&quot;:Rt,text:&quot;text/plain&quot;,html:&quot;text/html&quot;,xml:&quot;application/xml, text/xml&quot;,json:&quot;application/json, text/javascript&quot;},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:&quot;responseXML&quot;,text:&quot;responseText&quot;,json:&quot;responseJSON&quot;},converters:{&quot;* text&quot;:String,&quot;text html&quot;:!0,&quot;text json&quot;:JSON.parse,&quot;text xml&quot;:S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){&quot;object&quot;==typeof e&amp;&amp;(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&amp;&amp;(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks(&quot;once memory&quot;),w=v.statusCode||{},a={},s={},u=&quot;canceled&quot;,T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+&quot; &quot;]=(n[t[1].toLowerCase()+&quot; &quot;]||[]).concat(t[2])}t=n[e.toLowerCase()+&quot; &quot;]}return null==t?null:t.join(&quot;, &quot;)},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&amp;&amp;(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&amp;&amp;(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&amp;&amp;c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+&quot;&quot;).replace(Ht,bt.protocol+&quot;//&quot;),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||&quot;*&quot;).toLowerCase().match(P)||[&quot;&quot;],null==v.crossDomain){r=E.createElement(&quot;a&quot;);try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+&quot;//&quot;+Mt.host!=r.protocol+&quot;//&quot;+r.host}catch(e){v.crossDomain=!0}}if(v.data&amp;&amp;v.processData&amp;&amp;&quot;string&quot;!=typeof v.data&amp;&amp;(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&amp;&amp;v.global)&amp;&amp;0==S.active++&amp;&amp;S.event.trigger(&quot;ajaxStart&quot;),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,&quot;&quot;),v.hasContent?v.data&amp;&amp;v.processData&amp;&amp;0===(v.contentType||&quot;&quot;).indexOf(&quot;application/x-www-form-urlencoded&quot;)&amp;&amp;(v.data=v.data.replace(Nt,&quot;+&quot;)):(o=v.url.slice(f.length),v.data&amp;&amp;(v.processData||&quot;string&quot;==typeof v.data)&amp;&amp;(f+=(Tt.test(f)?&quot;&amp;&quot;:&quot;?&quot;)+v.data,delete v.data),!1===v.cache&amp;&amp;(f=f.replace(Dt,&quot;$1&quot;),o=(Tt.test(f)?&quot;&amp;&quot;:&quot;?&quot;)+&quot;_=&quot;+wt.guid+++o),v.url=f+o),v.ifModified&amp;&amp;(S.lastModified[f]&amp;&amp;T.setRequestHeader(&quot;If-Modified-Since&quot;,S.lastModified[f]),S.etag[f]&amp;&amp;T.setRequestHeader(&quot;If-None-Match&quot;,S.etag[f])),(v.data&amp;&amp;v.hasContent&amp;&amp;!1!==v.contentType||t.contentType)&amp;&amp;T.setRequestHeader(&quot;Content-Type&quot;,v.contentType),T.setRequestHeader(&quot;Accept&quot;,v.dataTypes[0]&amp;&amp;v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+(&quot;*&quot;!==v.dataTypes[0]?&quot;, &quot;+Rt+&quot;; q=0.01&quot;:&quot;&quot;):v.accepts[&quot;*&quot;]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&amp;&amp;(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u=&quot;abort&quot;,b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&amp;&amp;m.trigger(&quot;ajaxSend&quot;,[T,v]),h)return T;v.async&amp;&amp;0&lt;v.timeout&amp;&amp;(d=C.setTimeout(function(){T.abort(&quot;timeout&quot;)},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,&quot;No Transport&quot;);function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&amp;&amp;C.clearTimeout(d),c=void 0,p=r||&quot;&quot;,T.readyState=0&lt;e?4:0,i=200&lt;=e&amp;&amp;e&lt;300||304===e,n&amp;&amp;(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while(&quot;*&quot;===u[0])u.shift(),void 0===r&amp;&amp;(r=e.mimeType||t.getResponseHeader(&quot;Content-Type&quot;));if(r)for(i in s)if(s[i]&amp;&amp;s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+&quot; &quot;+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&amp;&amp;u.unshift(o),n[o]}(v,T,n)),!i&amp;&amp;-1&lt;S.inArray(&quot;script&quot;,v.dataTypes)&amp;&amp;S.inArray(&quot;json&quot;,v.dataTypes)&lt;0&amp;&amp;(v.converters[&quot;text script&quot;]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&amp;&amp;(n[e.responseFields[o]]=t),!u&amp;&amp;r&amp;&amp;e.dataFilter&amp;&amp;(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(&quot;*&quot;===o)o=u;else if(&quot;*&quot;!==u&amp;&amp;u!==o){if(!(a=l[u+&quot; &quot;+o]||l[&quot;* &quot;+o]))for(i in l)if((s=i.split(&quot; &quot;))[1]===o&amp;&amp;(a=l[u+&quot; &quot;+s[0]]||l[&quot;* &quot;+s[0]])){!0===a?a=l[i]:!0!==l[i]&amp;&amp;(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&amp;&amp;e[&quot;throws&quot;])t=a(t);else try{t=a(t)}catch(e){return{state:&quot;parsererror&quot;,error:a?e:&quot;No conversion from &quot;+u+&quot; to &quot;+o}}}return{state:&quot;success&quot;,data:t}}(v,s,T,i),i?(v.ifModified&amp;&amp;((u=T.getResponseHeader(&quot;Last-Modified&quot;))&amp;&amp;(S.lastModified[f]=u),(u=T.getResponseHeader(&quot;etag&quot;))&amp;&amp;(S.etag[f]=u)),204===e||&quot;HEAD&quot;===v.type?l=&quot;nocontent&quot;:304===e?l=&quot;notmodified&quot;:(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&amp;&amp;l||(l=&quot;error&quot;,e&lt;0&amp;&amp;(e=0))),T.status=e,T.statusText=(t||l)+&quot;&quot;,i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&amp;&amp;m.trigger(i?&quot;ajaxSuccess&quot;:&quot;ajaxError&quot;,[T,v,i?o:a]),b.fireWith(y,[T,l]),g&amp;&amp;(m.trigger(&quot;ajaxComplete&quot;,[T,v]),--S.active||S.event.trigger(&quot;ajaxStop&quot;)))}return T},getJSON:function(e,t,n){return S.get(e,t,n,&quot;json&quot;)},getScript:function(e,t){return S.get(e,void 0,t,&quot;script&quot;)}}),S.each([&quot;get&quot;,&quot;post&quot;],function(e,i){S[i]=function(e,t,n,r){return m(t)&amp;&amp;(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&amp;&amp;e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)&quot;content-type&quot;===t.toLowerCase()&amp;&amp;(e.contentType=e.headers[t]||&quot;&quot;)}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:&quot;GET&quot;,dataType:&quot;script&quot;,cache:!0,async:!1,global:!1,converters:{&quot;text script&quot;:function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&amp;&amp;(m(e)&amp;&amp;(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&amp;&amp;t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not(&quot;body&quot;).each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&amp;&amp;&quot;withCredentials&quot;in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&amp;&amp;!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&amp;&amp;r.overrideMimeType&amp;&amp;r.overrideMimeType(i.mimeType),i.crossDomain||e[&quot;X-Requested-With&quot;]||(e[&quot;X-Requested-With&quot;]=&quot;XMLHttpRequest&quot;),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&amp;&amp;(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,&quot;abort&quot;===e?r.abort():&quot;error&quot;===e?&quot;number&quot;!=typeof r.status?t(0,&quot;error&quot;):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,&quot;text&quot;!==(r.responseType||&quot;text&quot;)||&quot;string&quot;!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o(&quot;error&quot;),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&amp;&amp;C.setTimeout(function(){o&amp;&amp;a()})},o=o(&quot;abort&quot;);try{r.send(i.hasContent&amp;&amp;i.data||null)}catch(e){if(o)throw e}},abort:function(){o&amp;&amp;o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&amp;&amp;(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:&quot;text/javascript, application/javascript, application/ecmascript, application/x-ecmascript&quot;},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{&quot;text script&quot;:function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter(&quot;script&quot;,function(e){void 0===e.cache&amp;&amp;(e.cache=!1),e.crossDomain&amp;&amp;(e.type=&quot;GET&quot;)}),S.ajaxTransport(&quot;script&quot;,function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S(&quot;\").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on(\"load error\",i=function(e){r.remove(),i=null,e&amp;&amp;t(\"error\"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&amp;&amp;i()}}});var _t,zt=[],Ut=/(=)\\?(?=&amp;|$)|\\?\\?/;S.ajaxSetup({jsonp:\"callback\",jsonpCallback:function(){var e=zt.pop()||S.expando+\"_\"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter(\"json jsonp\",function(e,t,n){var r,i,o,a=!1!==e.jsonp&amp;&amp;(Ut.test(e.url)?\"url\":\"string\"==typeof e.data&amp;&amp;0===(e.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&amp;&amp;Ut.test(e.data)&amp;&amp;\"data\");if(a||\"jsonp\"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,\"$1\"+r):!1!==e.jsonp&amp;&amp;(e.url+=(Tt.test(e.url)?\"&amp;\":\"?\")+e.jsonp+\"=\"+r),e.converters[\"script json\"]=function(){return o||S.error(r+\" was not called\"),o[0]},e.dataTypes[0]=\"json\",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&amp;&amp;(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&amp;&amp;m(i)&amp;&amp;i(o[0]),o=i=void 0}),\"script\"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument(\"\").body).innerHTML=\"\",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return\"string\"!=typeof e?[]:(\"boolean\"==typeof t&amp;&amp;(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument(\"\")).createElement(\"base\")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&amp;&amp;[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&amp;&amp;o.length&amp;&amp;S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(\" \");return-1&lt;s&amp;&amp;(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&amp;&amp;&quot;object&quot;==typeof t&amp;&amp;(i=&quot;POST&quot;),0&lt;a.length&amp;&amp;S.ajax({url:e,type:i||&quot;GET&quot;,dataType:&quot;html&quot;,data:t}).done(function(e){o=arguments,a.html(r?S(&quot;<div>\").append(S.parseHTML(e)).find(r):e)}).always(n&amp;&amp;function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,\"position\"),c=S(e),f={};\"static\"===l&amp;&amp;(e.style.position=\"relative\"),s=c.offset(),o=S.css(e,\"top\"),u=S.css(e,\"left\"),(\"absolute\"===l||\"fixed\"===l)&amp;&amp;-1&lt;(o+u).indexOf(&quot;auto&quot;)?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&amp;&amp;(t=t.call(e,n,S.extend({},s))),null!=t.top&amp;&amp;(f.top=t.top-s.top+a),null!=t.left&amp;&amp;(f.left=t.left-s.left+i),&quot;using&quot;in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if(&quot;fixed&quot;===S.css(r,&quot;position&quot;))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&amp;&amp;(e===n.body||e===n.documentElement)&amp;&amp;&quot;static&quot;===S.css(e,&quot;position&quot;))e=e.parentNode;e&amp;&amp;e!==r&amp;&amp;1===e.nodeType&amp;&amp;((i=S(e).offset()).top+=S.css(e,&quot;borderTopWidth&quot;,!0),i.left+=S.css(e,&quot;borderLeftWidth&quot;,!0))}return{top:t.top-i.top-S.css(r,&quot;marginTop&quot;,!0),left:t.left-i.left-S.css(r,&quot;marginLeft&quot;,!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&amp;&amp;&quot;static&quot;===S.css(e,&quot;position&quot;))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:&quot;pageXOffset&quot;,scrollTop:&quot;pageYOffset&quot;},function(t,i){var o=&quot;pageYOffset&quot;===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&amp;&amp;(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each([&quot;top&quot;,&quot;left&quot;],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+&quot;px&quot;:t})}),S.each({Height:&quot;height&quot;,Width:&quot;width&quot;},function(a,s){S.each({padding:&quot;inner&quot;+a,content:s,&quot;&quot;:&quot;outer&quot;+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&amp;&amp;(r||&quot;boolean&quot;!=typeof e),i=r||(!0===e||!0===t?&quot;margin&quot;:&quot;border&quot;);return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf(&quot;outer&quot;)?e[&quot;inner&quot;+a]:e.document.documentElement[&quot;client&quot;+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body[&quot;scroll&quot;+a],r[&quot;scroll&quot;+a],e.body[&quot;offset&quot;+a],r[&quot;offset&quot;+a],r[&quot;client&quot;+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each([&quot;ajaxStart&quot;,&quot;ajaxStop&quot;,&quot;ajaxComplete&quot;,&quot;ajaxError&quot;,&quot;ajaxSuccess&quot;,&quot;ajaxSend&quot;],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,&quot;**&quot;):this.off(t,e||&quot;**&quot;,n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each(&quot;blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu&quot;.split(&quot; &quot;),function(e,n){S.fn[n]=function(e,t){return 0&lt;arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if(&quot;string&quot;==typeof t&amp;&amp;(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return(&quot;number&quot;===t||&quot;string&quot;===t)&amp;&amp;!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?&quot;&quot;:(e+&quot;&quot;).replace(Xt,&quot;&quot;)},&quot;function&quot;==typeof define&amp;&amp;define.amd&amp;&amp;define(&quot;jquery&quot;,[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&amp;&amp;(C.$=Gt),e&amp;&amp;C.jQuery===S&amp;&amp;(C.jQuery=Vt),S},&quot;undefined&quot;==typeof e&amp;&amp;(C.jQuery=C.$=S),S});\njQuery.noConflict();\r\n/*! jQuery Migrate v3.3.2 | (c) OpenJS Foundation and other contributors | jquery.org/license */\n&quot;undefined&quot;==typeof jQuery.migrateMute&amp;&amp;(jQuery.migrateMute=!0),function(t){&quot;use strict&quot;;&quot;function&quot;==typeof define&amp;&amp;define.amd?define([&quot;jquery&quot;],function(e){return t(e,window)}):&quot;object&quot;==typeof module&amp;&amp;module.exports?module.exports=t(require(&quot;jquery&quot;),window):t(jQuery,window)}(function(s,n){&quot;use strict&quot;;function e(e){return 0&lt;=function(e,t){for(var r=/^(\\d+)\\.(\\d+)\\.(\\d+)/,n=r.exec(e)||[],o=r.exec(t)||[],i=1;i&lt;=3;i++){if(+o[i]&lt;+n[i])return 1;if(+n[i]&lt;+o[i])return-1}return 0}(s.fn.jquery,e)}s.migrateVersion=&quot;3.3.2&quot;,n.console&amp;&amp;n.console.log&amp;&amp;(s&amp;&amp;e(&quot;3.0.0&quot;)||n.console.log(&quot;JQMIGRATE: jQuery 3.0.0+ REQUIRED&quot;),s.migrateWarnings&amp;&amp;n.console.log(&quot;JQMIGRATE: Migrate plugin loaded multiple times&quot;),n.console.log(&quot;JQMIGRATE: Migrate is installed&quot;+(s.migrateMute?&quot;&quot;:&quot; with logging active&quot;)+&quot;, version &quot;+s.migrateVersion));var r={};function u(e){var t=n.console;s.migrateDeduplicateWarnings&amp;&amp;r[e]||(r[e]=!0,s.migrateWarnings.push(e),t&amp;&amp;t.warn&amp;&amp;!s.migrateMute&amp;&amp;(t.warn(&quot;JQMIGRATE: &quot;+e),s.migrateTrace&amp;&amp;t.trace&amp;&amp;t.trace()))}function t(e,t,r,n){Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return u(n),r},set:function(e){u(n),r=e}})}function o(e,t,r,n){e[t]=function(){return u(n),r.apply(this,arguments)}}s.migrateDeduplicateWarnings=!0,s.migrateWarnings=[],void 0===s.migrateTrace&amp;&amp;(s.migrateTrace=!0),s.migrateReset=function(){r={},s.migrateWarnings.length=0},&quot;BackCompat&quot;===n.document.compatMode&amp;&amp;u(&quot;jQuery is not compatible with Quirks Mode&quot;);var i,a,c,d={},l=s.fn.init,p=s.find,f=/\\[(\\s*[-\\w]+\\s*)([~|^$*]?=)\\s*([-\\w#]*?#[-\\w#]*)\\s*\\]/,y=/\\[(\\s*[-\\w]+\\s*)([~|^$*]?=)\\s*([-\\w#]*?#[-\\w#]*)\\s*\\]/g,m=/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;for(i in s.fn.init=function(e){var t=Array.prototype.slice.call(arguments);return&quot;string&quot;==typeof e&amp;&amp;&quot;#&quot;===e&amp;&amp;(u(&quot;jQuery( &#039;#&#039; ) is not a valid selector&quot;),t[0]=[]),l.apply(this,t)},s.fn.init.prototype=s.fn,s.find=function(t){var r=Array.prototype.slice.call(arguments);if(&quot;string&quot;==typeof t&amp;&amp;f.test(t))try{n.document.querySelector(t)}catch(e){t=t.replace(y,function(e,t,r,n){return&quot;[&quot;+t+r+&#039;&quot;&#039;+n+&#039;&quot;]&#039;});try{n.document.querySelector(t),u(&quot;Attribute selector with &#039;#&#039; must be quoted: &quot;+r[0]),r[0]=t}catch(e){u(&quot;Attribute selector with &#039;#&#039; was not fixed: &quot;+r[0])}}return p.apply(this,r)},p)Object.prototype.hasOwnProperty.call(p,i)&amp;&amp;(s.find[i]=p[i]);o(s.fn,&quot;size&quot;,function(){return this.length},&quot;jQuery.fn.size() is deprecated and removed; use the .length property&quot;),o(s,&quot;parseJSON&quot;,function(){return JSON.parse.apply(null,arguments)},&quot;jQuery.parseJSON is deprecated; use JSON.parse&quot;),o(s,&quot;holdReady&quot;,s.holdReady,&quot;jQuery.holdReady is deprecated&quot;),o(s,&quot;unique&quot;,s.uniqueSort,&quot;jQuery.unique is deprecated; use jQuery.uniqueSort&quot;),t(s.expr,&quot;filters&quot;,s.expr.pseudos,&quot;jQuery.expr.filters is deprecated; use jQuery.expr.pseudos&quot;),t(s.expr,&quot;:&quot;,s.expr.pseudos,&quot;jQuery.expr[&#039;:&#039;] is deprecated; use jQuery.expr.pseudos&quot;),e(&quot;3.1.1&quot;)&amp;&amp;o(s,&quot;trim&quot;,function(e){return null==e?&quot;&quot;:(e+&quot;&quot;).replace(m,&quot;&quot;)},&quot;jQuery.trim is deprecated; use String.prototype.trim&quot;),e(&quot;3.2.0&quot;)&amp;&amp;(o(s,&quot;nodeName&quot;,function(e,t){return e.nodeName&amp;&amp;e.nodeName.toLowerCase()===t.toLowerCase()},&quot;jQuery.nodeName is deprecated&quot;),o(s,&quot;isArray&quot;,Array.isArray,&quot;jQuery.isArray is deprecated; use Array.isArray&quot;)),e(&quot;3.3.0&quot;)&amp;&amp;(o(s,&quot;isNumeric&quot;,function(e){var t=typeof e;return(&quot;number&quot;==t||&quot;string&quot;==t)&amp;&amp;!isNaN(e-parseFloat(e))},&quot;jQuery.isNumeric() is deprecated&quot;),s.each(&quot;Boolean Number String Function Array Date RegExp Object Error Symbol&quot;.split(&quot; &quot;),function(e,t){d[&quot;[object &quot;+t+&quot;]&quot;]=t.toLowerCase()}),o(s,&quot;type&quot;,function(e){return null==e?e+&quot;&quot;:&quot;object&quot;==typeof e||&quot;function&quot;==typeof e?d[Object.prototype.toString.call(e)]||&quot;object&quot;:typeof e},&quot;jQuery.type is deprecated&quot;),o(s,&quot;isFunction&quot;,function(e){return&quot;function&quot;==typeof e},&quot;jQuery.isFunction() is deprecated&quot;),o(s,&quot;isWindow&quot;,function(e){return null!=e&amp;&amp;e===e.window},&quot;jQuery.isWindow() is deprecated&quot;)),s.ajax&amp;&amp;(a=s.ajax,c=/(=)\\?(?=&amp;|$)|\\?\\?/,s.ajax=function(){var e=a.apply(this,arguments);return e.promise&amp;&amp;(o(e,&quot;success&quot;,e.done,&quot;jQXHR.success is deprecated and removed&quot;),o(e,&quot;error&quot;,e.fail,&quot;jQXHR.error is deprecated and removed&quot;),o(e,&quot;complete&quot;,e.always,&quot;jQXHR.complete is deprecated and removed&quot;)),e},e(&quot;4.0.0&quot;)||s.ajaxPrefilter(&quot;+json&quot;,function(e){!1!==e.jsonp&amp;&amp;(c.test(e.url)||&quot;string&quot;==typeof e.data&amp;&amp;0===(e.contentType||&quot;&quot;).indexOf(&quot;application/x-www-form-urlencoded&quot;)&amp;&amp;c.test(e.data))&amp;&amp;u(&quot;JSON-to-JSONP auto-promotion is deprecated&quot;)}));var g=s.fn.removeAttr,h=s.fn.toggleClass,v=/\\S+/g;function j(e){return e.replace(/-([a-z])/g,function(e,t){return t.toUpperCase()})}s.fn.removeAttr=function(e){var r=this;return s.each(e.match(v),function(e,t){s.expr.match.bool.test(t)&amp;&amp;(u(&quot;jQuery.fn.removeAttr no longer sets boolean properties: &quot;+t),r.prop(t,!1))}),g.apply(this,arguments)};var Q,b=!(s.fn.toggleClass=function(t){return void 0!==t&amp;&amp;&quot;boolean&quot;!=typeof t?h.apply(this,arguments):(u(&quot;jQuery.fn.toggleClass( boolean ) is deprecated&quot;),this.each(function(){var e=this.getAttribute&amp;&amp;this.getAttribute(&quot;class&quot;)||&quot;&quot;;e&amp;&amp;s.data(this,&quot;__className__&quot;,e),this.setAttribute&amp;&amp;this.setAttribute(&quot;class&quot;,!e&amp;&amp;!1!==t&amp;&amp;s.data(this,&quot;__className__&quot;)||&quot;&quot;)}))}),w=/^[a-z]/,x=/^(?:Border(?:Top|Right|Bottom|Left)?(?:Width|)|(?:Margin|Padding)?(?:Top|Right|Bottom|Left)?|(?:Min|Max)?(?:Width|Height))$/;s.swap&amp;&amp;s.each([&quot;height&quot;,&quot;width&quot;,&quot;reliableMarginRight&quot;],function(e,t){var r=s.cssHooks[t]&amp;&amp;s.cssHooks[t].get;r&amp;&amp;(s.cssHooks[t].get=function(){var e;return b=!0,e=r.apply(this,arguments),b=!1,e})}),s.swap=function(e,t,r,n){var o,i,a={};for(i in b||u(&quot;jQuery.swap() is undocumented and deprecated&quot;),t)a[i]=e.style[i],e.style[i]=t[i];for(i in o=r.apply(e,n||[]),t)e.style[i]=a[i];return o},e(&quot;3.4.0&quot;)&amp;&amp;&quot;undefined&quot;!=typeof Proxy&amp;&amp;(s.cssProps=new Proxy(s.cssProps||{},{set:function(){return u(&quot;JQMIGRATE: jQuery.cssProps is deprecated&quot;),Reflect.set.apply(this,arguments)}})),s.cssNumber||(s.cssNumber={}),Q=s.fn.css,s.fn.css=function(e,t){var r,n,o=this;return e&amp;&amp;&quot;object&quot;==typeof e&amp;&amp;!Array.isArray(e)?(s.each(e,function(e,t){s.fn.css.call(o,e,t)}),this):(&quot;number&quot;==typeof t&amp;&amp;(r=j(e),n=r,w.test(n)&amp;&amp;x.test(n[0].toUpperCase()+n.slice(1))||s.cssNumber[r]||u(&#039;Number-typed values are deprecated for jQuery.fn.css( &quot;&#039;+e+&#039;&quot;, value )&#039;)),Q.apply(this,arguments))};var A,k,S,M,N=s.data;s.data=function(e,t,r){var n,o,i;if(t&amp;&amp;&quot;object&quot;==typeof t&amp;&amp;2===arguments.length){for(i in n=s.hasData(e)&amp;&amp;N.call(this,e),o={},t)i!==j(i)?(u(&quot;jQuery.data() always sets/gets camelCased names: &quot;+i),n[i]=t[i]):o[i]=t[i];return N.call(this,e,o),t}return t&amp;&amp;&quot;string&quot;==typeof t&amp;&amp;t!==j(t)&amp;&amp;(n=s.hasData(e)&amp;&amp;N.call(this,e))&amp;&amp;t in n?(u(&quot;jQuery.data() always sets/gets camelCased names: &quot;+t),2&lt;arguments.length&amp;&amp;(n[t]=r),n[t]):N.apply(this,arguments)},s.fx&amp;&amp;(S=s.Tween.prototype.run,M=function(e){return e},s.Tween.prototype.run=function(){1&lt;s.easing[this.easing].length&amp;&amp;(u(&quot;&#039;jQuery.easing.&quot;+this.easing.toString()+&quot;&#039; should use only one argument&quot;),s.easing[this.easing]=M),S.apply(this,arguments)},A=s.fx.interval||13,k=&quot;jQuery.fx.interval is deprecated&quot;,n.requestAnimationFrame&amp;&amp;Object.defineProperty(s.fx,&quot;interval&quot;,{configurable:!0,enumerable:!0,get:function(){return n.document.hidden||u(k),A},set:function(e){u(k),A=e}}));var R=s.fn.load,H=s.event.add,C=s.event.fix;s.event.props=[],s.event.fixHooks={},t(s.event.props,&quot;concat&quot;,s.event.props.concat,&quot;jQuery.event.props.concat() is deprecated and removed&quot;),s.event.fix=function(e){var t,r=e.type,n=this.fixHooks[r],o=s.event.props;if(o.length){u(&quot;jQuery.event.props are deprecated and removed: &quot;+o.join());while(o.length)s.event.addProp(o.pop())}if(n&amp;&amp;!n._migrated_&amp;&amp;(n._migrated_=!0,u(&quot;jQuery.event.fixHooks are deprecated and removed: &quot;+r),(o=n.props)&amp;&amp;o.length))while(o.length)s.event.addProp(o.pop());return t=C.call(this,e),n&amp;&amp;n.filter?n.filter(t,e):t},s.event.add=function(e,t){return e===n&amp;&amp;&quot;load&quot;===t&amp;&amp;&quot;complete&quot;===n.document.readyState&amp;&amp;u(&quot;jQuery(window).on(&#039;load&#039;...) called after load event occurred&quot;),H.apply(this,arguments)},s.each([&quot;load&quot;,&quot;unload&quot;,&quot;error&quot;],function(e,t){s.fn[t]=function(){var e=Array.prototype.slice.call(arguments,0);return&quot;load&quot;===t&amp;&amp;&quot;string&quot;==typeof e[0]?R.apply(this,e):(u(&quot;jQuery.fn.&quot;+t+&quot;() is deprecated&quot;),e.splice(0,0,t),arguments.length?this.on.apply(this,e):(this.triggerHandler.apply(this,e),this))}}),s.each(&quot;blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu&quot;.split(&quot; &quot;),function(e,r){s.fn[r]=function(e,t){return u(&quot;jQuery.fn.&quot;+r+&quot;() event shorthand is deprecated&quot;),0&lt;arguments.length?this.on(r,null,e,t):this.trigger(r)}}),s(function(){s(n.document).triggerHandler(&quot;ready&quot;)}),s.event.special.ready={setup:function(){this===n.document&amp;&amp;u(&quot;&#039;ready&#039; event is deprecated&quot;)}},s.fn.extend({bind:function(e,t,r){return u(&quot;jQuery.fn.bind() is deprecated&quot;),this.on(e,null,t,r)},unbind:function(e,t){return u(&quot;jQuery.fn.unbind() is deprecated&quot;),this.off(e,null,t)},delegate:function(e,t,r,n){return u(&quot;jQuery.fn.delegate() is deprecated&quot;),this.on(t,e,r,n)},undelegate:function(e,t,r){return u(&quot;jQuery.fn.undelegate() is deprecated&quot;),1===arguments.length?this.off(e,&quot;**&quot;):this.off(t,e||&quot;**&quot;,r)},hover:function(e,t){return u(&quot;jQuery.fn.hover() is deprecated&quot;),this.on(&quot;mouseenter&quot;,e).on(&quot;mouseleave&quot;,t||e)}});function T(e){var t=n.document.implementation.createHTMLDocument(&quot;&quot;);return t.body.innerHTML=e,t.body&amp;&amp;t.body.innerHTML}function P(e){var t=e.replace(O,&quot;\");t!==e&amp;&amp;T(e)!==T(t)&amp;&amp;u(\"HTML tags must be properly nested and closed: \"+e)}var O=/\\x20\\t\\r\\n\\f]*)[^&gt;]*)\\/&gt;/gi,q=s.htmlPrefilter;s.UNSAFE_restoreLegacyHtmlPrefilter=function(){s.htmlPrefilter=function(e){return P(e),e.replace(O,\"\")}},s.htmlPrefilter=function(e){return P(e),q(e)};var D,_=s.fn.offset;s.fn.offset=function(){var e=this[0];return!e||e.nodeType&amp;&amp;e.getBoundingClientRect?_.apply(this,arguments):(u(\"jQuery.fn.offset() requires a valid DOM element\"),arguments.length?this:void 0)},s.ajax&amp;&amp;(D=s.param,s.param=function(e,t){var r=s.ajaxSettings&amp;&amp;s.ajaxSettings.traditional;return void 0===t&amp;&amp;r&amp;&amp;(u(\"jQuery.param() no longer uses jQuery.ajaxSettings.traditional\"),t=r),D.call(this,e,t)});var E,F,J=s.fn.andSelf||s.fn.addBack;return s.fn.andSelf=function(){return u(\"jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()\"),J.apply(this,arguments)},s.Deferred&amp;&amp;(E=s.Deferred,F=[[\"resolve\",\"done\",s.Callbacks(\"once memory\"),s.Callbacks(\"once memory\"),\"resolved\"],[\"reject\",\"fail\",s.Callbacks(\"once memory\"),s.Callbacks(\"once memory\"),\"rejected\"],[\"notify\",\"progress\",s.Callbacks(\"memory\"),s.Callbacks(\"memory\")]],s.Deferred=function(e){var i=E(),a=i.promise();return i.pipe=a.pipe=function(){var o=arguments;return u(\"deferred.pipe() is deprecated\"),s.Deferred(function(n){s.each(F,function(e,t){var r=\"function\"==typeof o[e]&amp;&amp;o[e];i[t[1]](function(){var e=r&amp;&amp;r.apply(this,arguments);e&amp;&amp;\"function\"==typeof e.promise?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[t[0]+\"With\"](this===a?n.promise():this,r?[e]:arguments)})}),o=null}).promise()},e&amp;&amp;e.call(i,i),i},s.Deferred.exceptionHook=E.exceptionHook),s});','06ec858193564ad9d9c09b1bb71f53f8-scripts','','publish','closed','closed','','06ec858193564ad9d9c09b1bb71f53f8-scripts','','','2022-09-12 15:51:41','2022-09-12 13:51:41','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1205',0,'wphb_minify_group','',0),(1206,0,'2022-09-12 15:51:42','2022-09-12 13:51:42','/**handles:jquery-ui-mouse,jquery-ui-draggable,backbone**/\r\n/*!\n * jQuery UI Mouse 1.13.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n!function(e){\"use strict\";\"function\"==typeof define&amp;&amp;define.amd?define([\"jquery\",\"./core\"],e):e(jQuery)}(function(o){\"use strict\";var n=!1;return o(document).on(\"mouseup\",function(){n=!1}),o.widget(\"ui.mouse\",{version:\"1.13.1\",options:{cancel:\"input, textarea, button, select, option\",distance:1,delay:0},_mouseInit:function(){var t=this;this.element.on(\"mousedown.\"+this.widgetName,function(e){return t._mouseDown(e)}).on(\"click.\"+this.widgetName,function(e){if(!0===o.data(e.target,t.widgetName+\".preventClickEvent\"))return o.removeData(e.target,t.widgetName+\".preventClickEvent\"),e.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.off(\".\"+this.widgetName),this._mouseMoveDelegate&amp;&amp;this.document.off(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).off(\"mouseup.\"+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){var t,s,i;if(!n)return this._mouseMoved=!1,this._mouseStarted&amp;&amp;this._mouseUp(e),this._mouseDownEvent=e,t=this,s=1===e.which,i=!(\"string\"!=typeof this.options.cancel||!e.target.nodeName)&amp;&amp;o(e.target).closest(this.options.cancel).length,!(s&amp;&amp;!i&amp;&amp;this._mouseCapture(e))||(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){t.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&amp;&amp;this._mouseDelayMet(e)&amp;&amp;(this._mouseStarted=!1!==this._mouseStart(e),!this._mouseStarted)?(e.preventDefault(),!0):(!0===o.data(e.target,this.widgetName+\".preventClickEvent\")&amp;&amp;o.removeData(e.target,this.widgetName+\".preventClickEvent\"),this._mouseMoveDelegate=function(e){return t._mouseMove(e)},this._mouseUpDelegate=function(e){return t._mouseUp(e)},this.document.on(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).on(\"mouseup.\"+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0))},_mouseMove:function(e){if(this._mouseMoved){if(o.ui.ie&amp;&amp;(!document.documentMode||document.documentMode=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}})});\r\n/*!\n * jQuery UI Draggable 1.13.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n!function(t){\"use strict\";\"function\"==typeof define&amp;&amp;define.amd?define([\"jquery\",\"./mouse\",\"./core\"],t):t(jQuery)}(function(P){\"use strict\";return P.widget(\"ui.draggable\",P.ui.mouse,{version:\"1.13.1\",widgetEventPrefix:\"drag\",options:{addClasses:!0,appendTo:\"parent\",axis:!1,connectToSortable:!1,containment:!1,cursor:\"auto\",cursorAt:!1,grid:!1,handle:!1,helper:\"original\",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:\"default\",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:\"both\",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){\"original\"===this.options.helper&amp;&amp;this._setPositionRelative(),this.options.addClasses&amp;&amp;this._addClass(\"ui-draggable\"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),\"handle\"===t&amp;&amp;(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){(this.helper||this.element).is(\".ui-draggable-dragging\")?this.destroyOnClear=!0:(this._removeHandleClassName(),this._mouseDestroy())},_mouseCapture:function(t){var e=this.options;return!(this.helper||e.disabled||0&lt;P(t.target).closest(&quot;.ui-resizable-handle&quot;).length)&amp;&amp;(this.handle=this._getHandle(t),!!this.handle&amp;&amp;(this._blurActiveElement(t),this._blockFrames(!0===e.iframeFix?&quot;iframe&quot;:e.iframeFix),!0))},_blockFrames:function(t){this.iframeBlocks=this.document.find(t).map(function(){var t=P(this);return P(&quot;<div>\").css(\"position\",\"absolute\").appendTo(t.parent()).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&amp;&amp;(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(t){var e=P.ui.safeActiveElement(this.document[0]);P(t.target).closest(e).length||P.ui.safeBlur(e)},_mouseStart:function(t){var e=this.options;return this.helper=this._createHelper(t),this._addClass(this.helper,\"ui-draggable-dragging\"),this._cacheHelperProportions(),P.ui.ddmanager&amp;&amp;(P.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css(\"position\"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=0&lt;this.helper.parents().filter(function(){return&quot;fixed&quot;===P(this).css(&quot;position&quot;)}).length,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,e.cursorAt&amp;&amp;this._adjustOffsetFromHelper(e.cursorAt),this._setContainment(),!1===this._trigger(&quot;start&quot;,t)?(this._clear(),!1):(this._cacheHelperProportions(),P.ui.ddmanager&amp;&amp;!e.dropBehaviour&amp;&amp;P.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),P.ui.ddmanager&amp;&amp;P.ui.ddmanager.dragStart(this,t),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(t,e){if(this.hasFixedAncestor&amp;&amp;(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo(&quot;absolute&quot;),!e){e=this._uiHash();if(!1===this._trigger(&quot;drag&quot;,t,e))return this._mouseUp(new P.Event(&quot;mouseup&quot;,t)),!1;this.position=e.position}return this.helper[0].style.left=this.position.left+&quot;px&quot;,this.helper[0].style.top=this.position.top+&quot;px&quot;,P.ui.ddmanager&amp;&amp;P.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var e=this,s=!1;return P.ui.ddmanager&amp;&amp;!this.options.dropBehaviour&amp;&amp;(s=P.ui.ddmanager.drop(this,t)),this.dropped&amp;&amp;(s=this.dropped,this.dropped=!1),&quot;invalid&quot;===this.options.revert&amp;&amp;!s||&quot;valid&quot;===this.options.revert&amp;&amp;s||!0===this.options.revert||&quot;function&quot;==typeof this.options.revert&amp;&amp;this.options.revert.call(this.element,s)?P(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){!1!==e._trigger(&quot;stop&quot;,t)&amp;&amp;e._clear()}):!1!==this._trigger(&quot;stop&quot;,t)&amp;&amp;this._clear(),!1},_mouseUp:function(t){return this._unblockFrames(),P.ui.ddmanager&amp;&amp;P.ui.ddmanager.dragStop(this,t),this.handleElement.is(t.target)&amp;&amp;this.element.trigger(&quot;focus&quot;),P.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(&quot;.ui-draggable-dragging&quot;)?this._mouseUp(new P.Event(&quot;mouseup&quot;,{target:this.element[0]})):this._clear(),this},_getHandle:function(t){return!this.options.handle||!!P(t.target).closest(this.element.find(this.options.handle)).length},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,&quot;ui-draggable-handle&quot;)},_removeHandleClassName:function(){this._removeClass(this.handleElement,&quot;ui-draggable-handle&quot;)},_createHelper:function(t){var e=this.options,s=&quot;function&quot;==typeof e.helper,t=s?P(e.helper.apply(this.element[0],[t])):&quot;clone&quot;===e.helper?this.element.clone().removeAttr(&quot;id&quot;):this.element;return t.parents(&quot;body&quot;).length||t.appendTo(&quot;parent&quot;===e.appendTo?this.element[0].parentNode:e.appendTo),s&amp;&amp;t[0]===this.element[0]&amp;&amp;this._setPositionRelative(),t[0]===this.element[0]||/(fixed|absolute)/.test(t.css(&quot;position&quot;))||t.css(&quot;position&quot;,&quot;absolute&quot;),t},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css(&quot;position&quot;))||(this.element[0].style.position=&quot;relative&quot;)},_adjustOffsetFromHelper:function(t){&quot;string&quot;==typeof t&amp;&amp;(t=t.split(&quot; &quot;)),&quot;left&quot;in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&amp;&amp;(this.offset.click.left=t.left+this.margins.left),&quot;right&quot;in t&amp;&amp;(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),&quot;top&quot;in t&amp;&amp;(this.offset.click.top=t.top+this.margins.top),&quot;bottom&quot;in t&amp;&amp;(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var t=this.offsetParent.offset(),e=this.document[0];return&quot;absolute&quot;===this.cssPosition&amp;&amp;this.scrollParent[0]!==e&amp;&amp;P.contains(this.scrollParent[0],this.offsetParent[0])&amp;&amp;(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this._isRootNode(this.offsetParent[0])?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css(&quot;borderTopWidth&quot;),10)||0),left:t.left+(parseInt(this.offsetParent.css(&quot;borderLeftWidth&quot;),10)||0)}},_getRelativeOffset:function(){if(&quot;relative&quot;!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css(&quot;top&quot;),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css(&quot;left&quot;),10)||0)+(e?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css(&quot;marginLeft&quot;),10)||0,top:parseInt(this.element.css(&quot;marginTop&quot;),10)||0,right:parseInt(this.element.css(&quot;marginRight&quot;),10)||0,bottom:parseInt(this.element.css(&quot;marginBottom&quot;),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e=this.options,s=this.document[0];this.relativeContainer=null,e.containment?&quot;window&quot;===e.containment?this.containment=[P(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,P(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,P(window).scrollLeft()+P(window).width()-this.helperProportions.width-this.margins.left,P(window).scrollTop()+(P(window).height()||s.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:&quot;document&quot;===e.containment?this.containment=[0,0,P(s).width()-this.helperProportions.width-this.margins.left,(P(s).height()||s.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:e.containment.constructor===Array?this.containment=e.containment:(&quot;parent&quot;===e.containment&amp;&amp;(e.containment=this.helper[0].parentNode),(e=(s=P(e.containment))[0])&amp;&amp;(t=/(scroll|auto)/.test(s.css(&quot;overflow&quot;)),this.containment=[(parseInt(s.css(&quot;borderLeftWidth&quot;),10)||0)+(parseInt(s.css(&quot;paddingLeft&quot;),10)||0),(parseInt(s.css(&quot;borderTopWidth&quot;),10)||0)+(parseInt(s.css(&quot;paddingTop&quot;),10)||0),(t?Math.max(e.scrollWidth,e.offsetWidth):e.offsetWidth)-(parseInt(s.css(&quot;borderRightWidth&quot;),10)||0)-(parseInt(s.css(&quot;paddingRight&quot;),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(e.scrollHeight,e.offsetHeight):e.offsetHeight)-(parseInt(s.css(&quot;borderBottomWidth&quot;),10)||0)-(parseInt(s.css(&quot;paddingBottom&quot;),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=s)):this.containment=null},_convertPositionTo:function(t,e){e=e||this.position;var t=&quot;absolute&quot;===t?1:-1,s=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*t+this.offset.parent.top*t-(&quot;fixed&quot;===this.cssPosition?-this.offset.scroll.top:s?0:this.offset.scroll.top)*t,left:e.left+this.offset.relative.left*t+this.offset.parent.left*t-(&quot;fixed&quot;===this.cssPosition?-this.offset.scroll.left:s?0:this.offset.scroll.left)*t}},_generatePosition:function(t,e){var s,i=this.options,o=this._isRootNode(this.scrollParent[0]),n=t.pageX,r=t.pageY;return o&amp;&amp;this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&amp;&amp;(this.containment&amp;&amp;(s=this.relativeContainer?(e=this.relativeContainer.offset(),[this.containment[0]+e.left,this.containment[1]+e.top,this.containment[2]+e.left,this.containment[3]+e.top]):this.containment,t.pageX-this.offset.click.left&lt;s[0]&amp;&amp;(n=s[0]+this.offset.click.left),t.pageY-this.offset.click.top<s>s[2]&amp;&amp;(n=s[2]+this.offset.click.left),t.pageY-this.offset.click.top&gt;s[3]&amp;&amp;(r=s[3]+this.offset.click.top)),i.grid&amp;&amp;(e=i.grid[1]?this.originalPageY+Math.round((r-this.originalPageY)/i.grid[1])*i.grid[1]:this.originalPageY,r=!s||e-this.offset.click.top&gt;=s[1]||e-this.offset.click.top&gt;s[3]?e:e-this.offset.click.top&gt;=s[1]?e-i.grid[1]:e+i.grid[1],t=i.grid[0]?this.originalPageX+Math.round((n-this.originalPageX)/i.grid[0])*i.grid[0]:this.originalPageX,n=!s||t-this.offset.click.left&gt;=s[0]||t-this.offset.click.left&gt;s[2]?t:t-this.offset.click.left&gt;=s[0]?t-i.grid[0]:t+i.grid[0]),\"y\"===i.axis&amp;&amp;(n=this.originalPageX),\"x\"===i.axis&amp;&amp;(r=this.originalPageY)),{top:r-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(\"fixed\"===this.cssPosition?-this.offset.scroll.top:o?0:this.offset.scroll.top),left:n-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(\"fixed\"===this.cssPosition?-this.offset.scroll.left:o?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,\"ui-draggable-dragging\"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&amp;&amp;this.destroy()},_trigger:function(t,e,s){return s=s||this._uiHash(),P.ui.plugin.call(this,t,[e,s,this],!0),/^(drag|start|stop)/.test(t)&amp;&amp;(this.positionAbs=this._convertPositionTo(\"absolute\"),s.offset=this.positionAbs),P.Widget.prototype._trigger.call(this,t,e,s)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),P.ui.plugin.add(\"draggable\",\"connectToSortable\",{start:function(e,t,s){var i=P.extend({},t,{item:s.element});s.sortables=[],P(s.options.connectToSortable).each(function(){var t=P(this).sortable(\"instance\");t&amp;&amp;!t.options.disabled&amp;&amp;(s.sortables.push(t),t.refreshPositions(),t._trigger(\"activate\",e,i))})},stop:function(e,t,s){var i=P.extend({},t,{item:s.element});s.cancelHelperRemoval=!1,P.each(s.sortables,function(){var t=this;t.isOver?(t.isOver=0,s.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css(\"position\"),top:t.placeholder.css(\"top\"),left:t.placeholder.css(\"left\")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger(\"deactivate\",e,i))})},drag:function(s,i,o){P.each(o.sortables,function(){var t=!1,e=this;e.positionAbs=o.positionAbs,e.helperProportions=o.helperProportions,e.offset.click=o.offset.click,e._intersectsWith(e.containerCache)&amp;&amp;(t=!0,P.each(o.sortables,function(){return this.positionAbs=o.positionAbs,this.helperProportions=o.helperProportions,this.offset.click=o.offset.click,t=this!==e&amp;&amp;this._intersectsWith(this.containerCache)&amp;&amp;P.contains(e.element[0],this.element[0])?!1:t})),t?(e.isOver||(e.isOver=1,o._parent=i.helper.parent(),e.currentItem=i.helper.appendTo(e.element).data(\"ui-sortable-item\",!0),e.options._helper=e.options.helper,e.options.helper=function(){return i.helper[0]},s.target=e.currentItem[0],e._mouseCapture(s,!0),e._mouseStart(s,!0,!0),e.offset.click.top=o.offset.click.top,e.offset.click.left=o.offset.click.left,e.offset.parent.left-=o.offset.parent.left-e.offset.parent.left,e.offset.parent.top-=o.offset.parent.top-e.offset.parent.top,o._trigger(\"toSortable\",s),o.dropped=e.element,P.each(o.sortables,function(){this.refreshPositions()}),o.currentItem=o.element,e.fromOutside=o),e.currentItem&amp;&amp;(e._mouseDrag(s),i.position=e.position)):e.isOver&amp;&amp;(e.isOver=0,e.cancelHelperRemoval=!0,e.options._revert=e.options.revert,e.options.revert=!1,e._trigger(\"out\",s,e._uiHash(e)),e._mouseStop(s,!0),e.options.revert=e.options._revert,e.options.helper=e.options._helper,e.placeholder&amp;&amp;e.placeholder.remove(),i.helper.appendTo(o._parent),o._refreshOffsets(s),i.position=o._generatePosition(s,!0),o._trigger(\"fromSortable\",s),o.dropped=!1,P.each(o.sortables,function(){this.refreshPositions()}))})}}),P.ui.plugin.add(\"draggable\",\"cursor\",{start:function(t,e,s){var i=P(\"body\"),s=s.options;i.css(\"cursor\")&amp;&amp;(s._cursor=i.css(\"cursor\")),i.css(\"cursor\",s.cursor)},stop:function(t,e,s){s=s.options;s._cursor&amp;&amp;P(\"body\").css(\"cursor\",s._cursor)}}),P.ui.plugin.add(\"draggable\",\"opacity\",{start:function(t,e,s){e=P(e.helper),s=s.options;e.css(\"opacity\")&amp;&amp;(s._opacity=e.css(\"opacity\")),e.css(\"opacity\",s.opacity)},stop:function(t,e,s){s=s.options;s._opacity&amp;&amp;P(e.helper).css(\"opacity\",s._opacity)}}),P.ui.plugin.add(\"draggable\",\"scroll\",{start:function(t,e,s){s.scrollParentNotHidden||(s.scrollParentNotHidden=s.helper.scrollParent(!1)),s.scrollParentNotHidden[0]!==s.document[0]&amp;&amp;\"HTML\"!==s.scrollParentNotHidden[0].tagName&amp;&amp;(s.overflowOffset=s.scrollParentNotHidden.offset())},drag:function(t,e,s){var i=s.options,o=!1,n=s.scrollParentNotHidden[0],r=s.document[0];n!==r&amp;&amp;\"HTML\"!==n.tagName?(i.axis&amp;&amp;\"x\"===i.axis||(s.overflowOffset.top+n.offsetHeight-t.pageY&lt;i.scrollSensitivity?n.scrollTop=o=n.scrollTop+i.scrollSpeed:t.pageY-s.overflowOffset.top&lt;i.scrollSensitivity&amp;&amp;(n.scrollTop=o=n.scrollTop-i.scrollSpeed)),i.axis&amp;&amp;&quot;y&quot;===i.axis||(s.overflowOffset.left+n.offsetWidth-t.pageX&lt;i.scrollSensitivity?n.scrollLeft=o=n.scrollLeft+i.scrollSpeed:t.pageX-s.overflowOffset.left&lt;i.scrollSensitivity&amp;&amp;(n.scrollLeft=o=n.scrollLeft-i.scrollSpeed))):(i.axis&amp;&amp;&quot;x&quot;===i.axis||(t.pageY-P(r).scrollTop()&lt;i.scrollSensitivity?o=P(r).scrollTop(P(r).scrollTop()-i.scrollSpeed):P(window).height()-(t.pageY-P(r).scrollTop())&lt;i.scrollSensitivity&amp;&amp;(o=P(r).scrollTop(P(r).scrollTop()+i.scrollSpeed))),i.axis&amp;&amp;&quot;y&quot;===i.axis||(t.pageX-P(r).scrollLeft()&lt;i.scrollSensitivity?o=P(r).scrollLeft(P(r).scrollLeft()-i.scrollSpeed):P(window).width()-(t.pageX-P(r).scrollLeft())&lt;i.scrollSensitivity&amp;&amp;(o=P(r).scrollLeft(P(r).scrollLeft()+i.scrollSpeed)))),!1!==o&amp;&amp;P.ui.ddmanager&amp;&amp;!i.dropBehaviour&amp;&amp;P.ui.ddmanager.prepareOffsets(s,t)}}),P.ui.plugin.add(&quot;draggable&quot;,&quot;snap&quot;,{start:function(t,e,s){var i=s.options;s.snapElements=[],P(i.snap.constructor!==String?i.snap.items||&quot;:data(ui-draggable)&quot;:i.snap).each(function(){var t=P(this),e=t.offset();this!==s.element[0]&amp;&amp;s.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:e.top,left:e.left})})},drag:function(t,e,s){for(var i,o,n,r,l,a,h,p,c,f=s.options,d=f.snapTolerance,g=e.offset.left,u=g+s.helperProportions.width,m=e.offset.top,v=m+s.helperProportions.height,_=s.snapElements.length-1;0&lt;=_;_--)a=(l=s.snapElements[_].left-s.margins.left)+s.snapElements[_].width,p=(h=s.snapElements[_].top-s.margins.top)+s.snapElements[_].height,u&lt;l-d||a+d&lt;g||v&lt;h-d||p+d&lt;m||!P.contains(s.snapElements[_].item.ownerDocument,s.snapElements[_].item)?(s.snapElements[_].snapping&amp;&amp;s.options.snap.release&amp;&amp;s.options.snap.release.call(s.element,t,P.extend(s._uiHash(),{snapItem:s.snapElements[_].item})),s.snapElements[_].snapping=!1):(&quot;inner&quot;!==f.snapMode&amp;&amp;(i=Math.abs(h-v)&lt;=d,o=Math.abs(p-m)&lt;=d,n=Math.abs(l-u)&lt;=d,r=Math.abs(a-g)&lt;=d,i&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:h-s.helperProportions.height,left:0}).top),o&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:p,left:0}).top),n&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:l-s.helperProportions.width}).left),r&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:a}).left)),c=i||o||n||r,&quot;outer&quot;!==f.snapMode&amp;&amp;(i=Math.abs(h-m)&lt;=d,o=Math.abs(p-v)&lt;=d,n=Math.abs(l-g)&lt;=d,r=Math.abs(a-u)&lt;=d,i&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:h,left:0}).top),o&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:p-s.helperProportions.height,left:0}).top),n&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:l}).left),r&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:a-s.helperProportions.width}).left)),!s.snapElements[_].snapping&amp;&amp;(i||o||n||r||c)&amp;&amp;s.options.snap.snap&amp;&amp;s.options.snap.snap.call(s.element,t,P.extend(s._uiHash(),{snapItem:s.snapElements[_].item})),s.snapElements[_].snapping=i||o||n||r||c)}}),P.ui.plugin.add(&quot;draggable&quot;,&quot;stack&quot;,{start:function(t,e,s){var i,s=s.options,s=P.makeArray(P(s.stack)).sort(function(t,e){return(parseInt(P(t).css(&quot;zIndex&quot;),10)||0)-(parseInt(P(e).css(&quot;zIndex&quot;),10)||0)});s.length&amp;&amp;(i=parseInt(P(s[0]).css(&quot;zIndex&quot;),10)||0,P(s).each(function(t){P(this).css(&quot;zIndex&quot;,i+t)}),this.css(&quot;zIndex&quot;,i+s.length))}}),P.ui.plugin.add(&quot;draggable&quot;,&quot;zIndex&quot;,{start:function(t,e,s){e=P(e.helper),s=s.options;e.css(&quot;zIndex&quot;)&amp;&amp;(s._zIndex=e.css(&quot;zIndex&quot;)),e.css(&quot;zIndex&quot;,s.zIndex)},stop:function(t,e,s){s=s.options;s._zIndex&amp;&amp;P(e.helper).css(&quot;zIndex&quot;,s._zIndex)}}),P.ui.draggable});\r\n/*! This file is auto-generated */\n!function(n){var s=&quot;object&quot;==typeof self&amp;&amp;self.self===self&amp;&amp;self||&quot;object&quot;==typeof global&amp;&amp;global.global===global&amp;&amp;global;if(&quot;function&quot;==typeof define&amp;&amp;define.amd)define([&quot;underscore&quot;,&quot;jquery&quot;,&quot;exports&quot;],function(t,e,i){s.Backbone=n(s,i,t,e)});else if(&quot;undefined&quot;!=typeof exports){var t,e=require(&quot;underscore&quot;);try{t=require(&quot;jquery&quot;)}catch(t){}n(s,exports,e,t)}else s.Backbone=n(s,{},s._,s.jQuery||s.Zepto||s.ender||s.$)}(function(t,h,b,e){function a(t,e,i,n,s){var r,o=0;if(i&amp;&amp;&quot;object&quot;==typeof i){void 0!==n&amp;&amp;&quot;context&quot;in s&amp;&amp;void 0===s.context&amp;&amp;(s.context=n);for(r=b.keys(i);o&lt;r.length;o++)e=a(t,e,r[o],i[r[o]],s)}else if(i&amp;&amp;c.test(i))for(r=i.split(c);o&lt;r.length;o++)e=t(e,r[o],n,s);else e=t(e,i,n,s);return e}function x(t,e,i){i=Math.min(Math.max(i,0),t.length);for(var n=Array(t.length-i),s=e.length,r=0;r&lt;n.length;r++)n[r]=t[r+i];for(r=0;r&lt;s;r++)t[r+i]=e[r];for(r=0;r&lt;n.length;r++)t[r+s+i]=n[r]}function s(i,n,t,s){b.each(t,function(t,e){n[e]&amp;&amp;(i.prototype[e]=function(n,t,s,r){switch(t){case 1:return function(){return n[s](this[r])};case 2:return function(t){return n[s](this[r],t)};case 3:return function(t,e){return n[s](this[r],P(t,this),e)};case 4:return function(t,e,i){return n[s](this[r],P(t,this),e,i)};default:return function(){var t=u.call(arguments);return t.unshift(this[r]),n[s].apply(n,t)}}}(n,t,e,s))})}var o,i=t.Backbone,u=Array.prototype.slice,e=(h.VERSION=&quot;1.4.1&quot;,h.$=e,h.noConflict=function(){return t.Backbone=i,this},h.emulateHTTP=!1,h.emulateJSON=!1,h.Events={}),c=/\\s+/,n=(e.on=function(t,e,i){return this._events=a(n,this._events||{},t,e,{context:i,ctx:this,listening:o}),o&amp;&amp;(((this._listeners||(this._listeners={}))[o.id]=o).interop=!1),this},e.listenTo=function(t,e,i){if(!t)return this;var n=t._listenId||(t._listenId=b.uniqueId(&quot;l&quot;)),s=this._listeningTo||(this._listeningTo={}),r=o=s[n],s=(r||(this._listenId||(this._listenId=b.uniqueId(&quot;l&quot;)),r=o=s[n]=new g(this,t)),l(t,e,i,this));if(o=void 0,s)throw s;return r.interop&amp;&amp;r.on(e,i),this},function(t,e,i,n){var s,r;return i&amp;&amp;(e=t[e]||(t[e]=[]),s=n.context,r=n.ctx,(n=n.listening)&amp;&amp;n.count++,e.push({callback:i,context:s,ctx:s||r,listening:n})),t}),l=function(t,e,i,n){try{t.on(e,i,n)}catch(t){return t}},r=(e.off=function(t,e,i){return this._events&amp;&amp;(this._events=a(r,this._events,t,e,{context:i,listeners:this._listeners})),this},e.stopListening=function(t,e,i){var n=this._listeningTo;if(!n)return this;for(var s=t?[t._listenId]:b.keys(n),r=0;r&lt;s.length;r++){var o=n[s[r]];if(!o)break;o.obj.off(e,i,this),o.interop&amp;&amp;o.off(e,i)}return b.isEmpty(n)&amp;&amp;(this._listeningTo=void 0),this},function(t,e,i,n){if(t){var s,r=n.context,o=n.listeners,h=0;if(e||r||i){for(s=e?[e]:b.keys(t);h&lt;s.length;h++){var a=t[e=s[h]];if(!a)break;for(var u=[],c=0;c&lt;a.length;c++){var l=a[c];i&amp;&amp;i!==l.callback&amp;&amp;i!==l.callback._callback||r&amp;&amp;r!==l.context?u.push(l):(l=l.listening)&amp;&amp;l.off(e,i)}u.length?t[e]=u:delete t[e]}return t}for(s=b.keys(o);h&lt;s.length;h++)o[s[h]].cleanup()}}),d=(e.once=function(t,e,i){var n=a(d,{},t,e,this.off.bind(this));return this.on(n,e=&quot;string&quot;==typeof t&amp;&amp;null==i?void 0:e,i)},e.listenToOnce=function(t,e,i){e=a(d,{},e,i,this.stopListening.bind(this,t));return this.listenTo(t,e)},function(t,e,i,n){var s;return i&amp;&amp;((s=t[e]=b.once(function(){n(e,s),i.apply(this,arguments)}))._callback=i),t}),f=(e.trigger=function(t){if(!this._events)return this;for(var e=Math.max(0,arguments.length-1),i=Array(e),n=0;n&lt;e;n++)i[n]=arguments[n+1];return a(f,this._events,t,void 0,i),this},function(t,e,i,n){var s,r;return t&amp;&amp;(s=t[e],r=t.all,s&amp;&amp;r&amp;&amp;(r=r.slice()),s&amp;&amp;p(s,n),r&amp;&amp;p(r,[e].concat(n))),t}),p=function(t,e){var i,n=-1,s=t.length,r=e[0],o=e[1],h=e[2];switch(e.length){case 0:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx);return;case 1:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx,r);return;case 2:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx,r,o);return;case 3:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx,r,o,h);return;default:for(;++n&lt;s;)(i=t[n]).callback.apply(i.ctx,e);return}},g=function(t,e){this.id=t._listenId,this.listener=t,this.obj=e,this.interop=!0,this.count=0,this._events=void 0},v=(g.prototype.on=e.on,g.prototype.off=function(t,e){t=this.interop?(this._events=a(r,this._events,t,e,{context:void 0,listeners:void 0}),!this._events):(this.count--,0===this.count);t&amp;&amp;this.cleanup()},g.prototype.cleanup=function(){delete this.listener._listeningTo[this.obj._listenId],this.interop||delete this.obj._listeners[this.id]},e.bind=e.on,e.unbind=e.off,b.extend(h,e),h.Model=function(t,e){var i=t||{},n=(e=e||{},this.preinitialize.apply(this,arguments),this.cid=b.uniqueId(this.cidPrefix),this.attributes={},e.collection&amp;&amp;(this.collection=e.collection),e.parse&amp;&amp;(i=this.parse(i,e)||{}),b.result(this,&quot;defaults&quot;)),i=b.defaults(b.extend({},n,i),n);this.set(i,e),this.changed={},this.initialize.apply(this,arguments)}),m=(b.extend(v.prototype,e,{changed:null,validationError:null,idAttribute:&quot;id&quot;,cidPrefix:&quot;c&quot;,preinitialize:function(){},initialize:function(){},toJSON:function(t){return b.clone(this.attributes)},sync:function(){return h.sync.apply(this,arguments)},get:function(t){return this.attributes[t]},escape:function(t){return b.escape(this.get(t))},has:function(t){return null!=this.get(t)},matches:function(t){return!!b.iteratee(t,this)(this.attributes)},set:function(t,e,i){if(null==t)return this;var n;if(&quot;object&quot;==typeof t?(n=t,i=e):(n={})[t]=e,!this._validate(n,i=i||{}))return!1;var s,r,o=i.unset,t=i.silent,h=[],a=this._changing,u=(this._changing=!0,a||(this._previousAttributes=b.clone(this.attributes),this.changed={}),this.attributes),c=this.changed,l=this._previousAttributes;for(s in n)e=n[s],b.isEqual(u[s],e)||h.push(s),b.isEqual(l[s],e)?delete c[s]:c[s]=e,o?delete u[s]:u[s]=e;if(this.idAttribute in n&amp;&amp;(r=this.id,this.id=this.get(this.idAttribute),this.trigger(&quot;changeId&quot;,this,r,i)),!t){h.length&amp;&amp;(this._pending=i);for(var d=0;dthis.length?this.length:n)&lt;0&amp;&amp;(n+=this.length+1),[]),r=[],o=[],h=[],a={},u=e.add,c=e.merge,l=e.remove,d=!1,f=this.comparator&amp;&amp;null==n&amp;&amp;!1!==e.sort,p=b.isString(this.comparator)?this.comparator:null,g=0;g&lt;t.length;g++){var v,m=t[g],_=this.get(m);_?(c&amp;&amp;m!==_&amp;&amp;(v=this._isModel(m)?m.attributes:m,e.parse&amp;&amp;(v=_.parse(v,e)),_.set(v,e),o.push(_),f&amp;&amp;!d&amp;&amp;(d=_.hasChanged(p))),a[_.cid]||(a[_.cid]=!0,s.push(_)),t[g]=_):u&amp;&amp;(m=t[g]=this._prepareModel(m,e))&amp;&amp;(r.push(m),this._addReference(m,e),a[m.cid]=!0,s.push(m))}if(l){for(g=0;g&lt;this.length;g++)a[(m=this.models[g]).cid]||h.push(m);h.length&amp;&amp;this._removeModels(h,e)}var y=!1;if(s.length&amp;&amp;(!f&amp;&amp;u&amp;&amp;l)?(y=this.length!==s.length||b.some(this.models,function(t,e){return t!==s[e]}),this.models.length=0,x(this.models,s,0),this.length=this.models.length):r.length&amp;&amp;(f&amp;&amp;(d=!0),x(this.models,r,null==n?this.length:n),this.length=this.models.length),d&amp;&amp;this.sort({silent:!0}),!e.silent){for(g=0;g&lt;r.length;g++)null!=n&amp;&amp;(e.index=n+g),(m=r[g]).trigger(&quot;add&quot;,m,this,e);(d||y)&amp;&amp;this.trigger(&quot;sort&quot;,this,e),(r.length||h.length||o.length)&amp;&amp;(e.changes={added:r,removed:h,merged:o},this.trigger(&quot;update&quot;,this,e))}return i?t[0]:t}},reset:function(t,e){e=e?b.clone(e):{};for(var i=0;i&lt;this.models.length;i++)this._removeReference(this.models[i],e);return e.previousModels=this.models,this._reset(),t=this.add(t,b.extend({silent:!0},e)),e.silent||this.trigger(&quot;reset&quot;,this,e),t},push:function(t,e){return this.add(t,b.extend({at:this.length},e))},pop:function(t){var e=this.at(this.length-1);return this.remove(e,t)},unshift:function(t,e){return this.add(t,b.extend({at:0},e))},shift:function(t){var e=this.at(0);return this.remove(e,t)},slice:function(){return u.apply(this.models,arguments)},get:function(t){if(null!=t)return this._byId[t]||this._byId[this.modelId(this._isModel(t)?t.attributes:t,t.idAttribute)]||t.cid&amp;&amp;this._byId[t.cid]},has:function(t){return null!=this.get(t)},at:function(t){return t&lt;0&amp;&amp;(t+=this.length),this.models[t]},where:function(t,e){return this[e?&quot;find&quot;:&quot;filter&quot;](t)},findWhere:function(t){return this.where(t,!0)},sort:function(t){var e=this.comparator;if(!e)throw new Error(&quot;Cannot sort a set without a comparator&quot;);t=t||{};var i=e.length;return b.isFunction(e)&amp;&amp;(e=e.bind(this)),1===i||b.isString(e)?this.models=this.sortBy(e):this.models.sort(e),t.silent||this.trigger(&quot;sort&quot;,this,t),this},pluck:function(t){return this.map(t+&quot;&quot;)},fetch:function(i){var n=(i=b.extend({parse:!0},i)).success,s=this;return i.success=function(t){var e=i.reset?&quot;reset&quot;:&quot;set&quot;;s[e](t,i),n&amp;&amp;n.call(i.context,s,t,i),s.trigger(&quot;sync&quot;,s,t,i)},N(this,i),this.sync(&quot;read&quot;,this,i)},create:function(t,e){var n=(e=e?b.clone(e):{}).wait;if(!(t=this._prepareModel(t,e)))return!1;n||this.add(t,e);var s=this,r=e.success;return e.success=function(t,e,i){n&amp;&amp;s.add(t,i),r&amp;&amp;r.call(i.context,t,e,i)},t.save(null,e),t},parse:function(t,e){return t},clone:function(){return new this.constructor(this.models,{model:this.model,comparator:this.comparator})},modelId:function(t,e){return t[e||this.model.prototype.idAttribute||&quot;id&quot;]},values:function(){return new E(this,I)},keys:function(){return new E(this,k)},entries:function(){return new E(this,S)},_reset:function(){this.length=0,this.models=[],this._byId={}},_prepareModel:function(t,e){return this._isModel(t)?(t.collection||(t.collection=this),t):(t=((e=e?b.clone(e):{}).collection=this).model.prototype?new this.model(t,e):this.model(t,e)).validationError?(this.trigger(&quot;invalid&quot;,this,t.validationError,e),!1):t},_removeModels:function(t,e){for(var i=[],n=0;n&lt;t.length;n++){var s,r,o=this.get(t[n]);o&amp;&amp;(s=this.indexOf(o),this.models.splice(s,1),this.length--,delete this._byId[o.cid],null!=(r=this.modelId(o.attributes,o.idAttribute))&amp;&amp;delete this._byId[r],e.silent||(e.index=s,o.trigger(&quot;remove&quot;,o,this,e)),i.push(o),this._removeReference(o,e))}return i},_isModel:function(t){return t instanceof v},_addReference:function(t,e){this._byId[t.cid]=t;var i=this.modelId(t.attributes,t.idAttribute);null!=i&amp;&amp;(this._byId[i]=t),t.on(&quot;all&quot;,this._onModelEvent,this)},_removeReference:function(t,e){delete this._byId[t.cid];var i=this.modelId(t.attributes,t.idAttribute);null!=i&amp;&amp;delete this._byId[i],this===t.collection&amp;&amp;delete t.collection,t.off(&quot;all&quot;,this._onModelEvent,this)},_onModelEvent:function(t,e,i,n){if(e){if((&quot;add&quot;===t||&quot;remove&quot;===t)&amp;&amp;i!==this)return;var s,r;&quot;destroy&quot;===t&amp;&amp;this.remove(e,n),&quot;changeId&quot;===t&amp;&amp;(s=this.modelId(e.previousAttributes(),e.idAttribute),r=this.modelId(e.attributes,e.idAttribute),null!=s&amp;&amp;delete this._byId[s],null!=r&amp;&amp;(this._byId[r]=e))}this.trigger.apply(this,arguments)}}),&quot;function&quot;==typeof Symbol&amp;&amp;Symbol.iterator),E=(y&amp;&amp;(m.prototype[y]=m.prototype.values),function(t,e){this._collection=t,this._kind=e,this._index=0}),I=1,k=2,S=3,y=(y&amp;&amp;(E.prototype[y]=function(){return this}),E.prototype.next=function(){if(this._collection){var t,e;if(this._index&lt;this._collection.length)return t=this._collection.at(this._index),this._index++,{value:this._kind===I?t:(e=this._collection.modelId(t.attributes,t.idAttribute),this._kind===k?e:[e,t]),done:!1};this._collection=void 0}return{value:void 0,done:!0}},h.View=function(t){this.cid=b.uniqueId(&quot;view&quot;),this.preinitialize.apply(this,arguments),b.extend(this,b.pick(t,T)),this._ensureElement(),this.initialize.apply(this,arguments)}),A=/^(\\S+)\\s*(.*)$/,T=[&quot;model&quot;,&quot;collection&quot;,&quot;el&quot;,&quot;id&quot;,&quot;attributes&quot;,&quot;className&quot;,&quot;tagName&quot;,&quot;events&quot;],P=(b.extend(y.prototype,e,{tagName:&quot;div&quot;,$:function(t){return this.$el.find(t)},preinitialize:function(){},initialize:function(){},render:function(){return this},remove:function(){return this._removeElement(),this.stopListening(),this},_removeElement:function(){this.$el.remove()},setElement:function(t){return this.undelegateEvents(),this._setElement(t),this.delegateEvents(),this},_setElement:function(t){this.$el=t instanceof h.$?t:h.$(t),this.el=this.$el[0]},delegateEvents:function(t){if(!(t=t||b.result(this,&quot;events&quot;)))return this;for(var e in this.undelegateEvents(),t){var i=t[e];(i=b.isFunction(i)?i:this[i])&amp;&amp;(e=e.match(A),this.delegate(e[1],e[2],i.bind(this)))}return this},delegate:function(t,e,i){return this.$el.on(t+&quot;.delegateEvents&quot;+this.cid,e,i),this},undelegateEvents:function(){return this.$el&amp;&amp;this.$el.off(&quot;.delegateEvents&quot;+this.cid),this},undelegate:function(t,e,i){return this.$el.off(t+&quot;.delegateEvents&quot;+this.cid,e,i),this},_createElement:function(t){return document.createElement(t)},_ensureElement:function(){var t;this.el?this.setElement(b.result(this,&quot;el&quot;)):(t=b.extend({},b.result(this,&quot;attributes&quot;)),this.id&amp;&amp;(t.id=b.result(this,&quot;id&quot;)),this.className&amp;&amp;(t.class=b.result(this,&quot;className&quot;)),this.setElement(this._createElement(b.result(this,&quot;tagName&quot;))),this._setAttributes(t))},_setAttributes:function(t){this.$el.attr(t)}}),function(e,t){return b.isFunction(e)?e:b.isObject(e)&amp;&amp;!t._isModel(e)?(i=b.matches(e),function(t){return i(t.attributes)}):b.isString(e)?function(t){return t.get(e)}:e;var i}),H=(b.each([[m,{forEach:3,each:3,map:3,collect:3,reduce:0,foldl:0,inject:0,reduceRight:0,foldr:0,find:3,detect:3,filter:3,select:3,reject:3,every:3,all:3,some:3,any:3,include:3,includes:3,contains:3,invoke:0,max:3,min:3,toArray:1,size:1,first:3,head:3,take:3,initial:3,rest:3,tail:3,drop:3,last:3,without:0,difference:0,indexOf:3,shuffle:1,lastIndexOf:3,isEmpty:1,chain:1,sample:3,partition:3,groupBy:3,countBy:3,sortBy:3,indexBy:3,findIndex:3,findLastIndex:3},&quot;models&quot;],[v,{keys:1,values:1,pairs:1,invert:1,pick:0,omit:0,chain:1,isEmpty:1},&quot;attributes&quot;]],function(t){var i=t[0],e=t[1],n=t[2];i.mixin=function(t){var e=b.reduce(b.functions(t),function(t,e){return t[e]=0,t},{});s(i,t,e,n)},s(i,b,e,n)}),h.sync=function(t,e,n){var i,s=H[t],r=(b.defaults(n=n||{},{emulateHTTP:h.emulateHTTP,emulateJSON:h.emulateJSON}),{type:s,dataType:&quot;json&quot;}),o=(n.url||(r.url=b.result(e,&quot;url&quot;)||M()),null!=n.data||!e||&quot;create&quot;!==t&amp;&amp;&quot;update&quot;!==t&amp;&amp;&quot;patch&quot;!==t||(r.contentType=&quot;application/json&quot;,r.data=JSON.stringify(n.attrs||e.toJSON(n))),n.emulateJSON&amp;&amp;(r.contentType=&quot;application/x-www-form-urlencoded&quot;,r.data=r.data?{model:r.data}:{}),!n.emulateHTTP||&quot;PUT&quot;!==s&amp;&amp;&quot;DELETE&quot;!==s&amp;&amp;&quot;PATCH&quot;!==s||(r.type=&quot;POST&quot;,n.emulateJSON&amp;&amp;(r.data._method=s),i=n.beforeSend,n.beforeSend=function(t){if(t.setRequestHeader(&quot;X-HTTP-Method-Override&quot;,s),i)return i.apply(this,arguments)}),&quot;GET&quot;===r.type||n.emulateJSON||(r.processData=!1),n.error),t=(n.error=function(t,e,i){n.textStatus=e,n.errorThrown=i,o&amp;&amp;o.call(n.context,t,e,i)},n.xhr=h.ajax(b.extend(r,n)));return e.trigger(&quot;request&quot;,e,t,n),t},{create:&quot;POST&quot;,update:&quot;PUT&quot;,patch:&quot;PATCH&quot;,delete:&quot;DELETE&quot;,read:&quot;GET&quot;}),$=(h.ajax=function(){return h.$.ajax.apply(h.$,arguments)},h.Router=function(t){t=t||{},this.preinitialize.apply(this,arguments),t.routes&amp;&amp;(this.routes=t.routes),this._bindRoutes(),this.initialize.apply(this,arguments)}),C=/\\((.*?)\\)/g,j=/(\\(\\?)?:\\w+/g,O=/\\*\\w+/g,U=/[\\-{}\\[\\]+?.,\\\\\\^$|#\\s]/g,R=(b.extend($.prototype,e,{preinitialize:function(){},initialize:function(){},route:function(e,i,n){b.isRegExp(e)||(e=this._routeToRegExp(e)),b.isFunction(i)&amp;&amp;(n=i,i=&quot;&quot;),n=n||this[i];var s=this;return h.history.route(e,function(t){t=s._extractParameters(e,t);!1!==s.execute(n,t,i)&amp;&amp;(s.trigger.apply(s,[&quot;route:&quot;+i].concat(t)),s.trigger(&quot;route&quot;,i,t),h.history.trigger(&quot;route&quot;,s,i,t))}),this},execute:function(t,e,i){t&amp;&amp;t.apply(this,e)},navigate:function(t,e){return h.history.navigate(t,e),this},_bindRoutes:function(){if(this.routes){this.routes=b.result(this,&quot;routes&quot;);for(var t,e=b.keys(this.routes);null!=(t=e.pop());)this.route(t,this.routes[t])}},_routeToRegExp:function(t){return t=t.replace(U,&quot;\\\\$&amp;&quot;).replace(C,&quot;(?:$1)?&quot;).replace(j,function(t,e){return e?t:&quot;([^/?]+)&quot;}).replace(O,&quot;([^?]*?)&quot;),new RegExp(&quot;^&quot;+t+&quot;(?:\\\\?([\\\\s\\\\S]*))?$&quot;)},_extractParameters:function(t,e){var i=t.exec(e).slice(1);return b.map(i,function(t,e){return e===i.length-1?t||null:t?decodeURIComponent(t):null})}}),h.History=function(){this.handlers=[],this.checkUrl=this.checkUrl.bind(this),&quot;undefined&quot;!=typeof window&amp;&amp;(this.location=window.location,this.history=window.history)}),z=/^[#\\/]|\\s+$/g,q=/^\\/+|\\/+$/g,F=/#.*$/,M=(R.started=!1,b.extend(R.prototype,e,{interval:50,atRoot:function(){return this.location.pathname.replace(/[^\\/]$/,&quot;$&amp;/&quot;)===this.root&amp;&amp;!this.getSearch()},matchRoot:function(){return this.decodeFragment(this.location.pathname).slice(0,this.root.length-1)+&quot;/&quot;===this.root},decodeFragment:function(t){return decodeURI(t.replace(/%25/g,&quot;%2525&quot;))},getSearch:function(){var t=this.location.href.replace(/#.*/,&quot;&quot;).match(/\\?.+/);return t?t[0]:&quot;&quot;},getHash:function(t){t=(t||this).location.href.match(/#(.*)$/);return t?t[1]:&quot;&quot;},getPath:function(){var t=this.decodeFragment(this.location.pathname+this.getSearch()).slice(this.root.length-1);return&quot;/&quot;===t.charAt(0)?t.slice(1):t},getFragment:function(t){return(t=null==t?this._usePushState||!this._wantsHashChange?this.getPath():this.getHash():t).replace(z,&quot;&quot;)},start:function(t){if(R.started)throw new Error(&quot;Backbone.history has already been started&quot;);if(R.started=!0,this.options=b.extend({root:&quot;/&quot;},this.options,t),this.root=this.options.root,this._wantsHashChange=!1!==this.options.hashChange,this._hasHashChange=&quot;onhashchange&quot;in window&amp;&amp;(void 0===document.documentMode||7&lt;document.documentMode),this._useHashChange=this._wantsHashChange&amp;&amp;this._hasHashChange,this._wantsPushState=!!this.options.pushState,this._hasPushState=!(!this.history||!this.history.pushState),this._usePushState=this._wantsPushState&amp;&amp;this._hasPushState,this.fragment=this.getFragment(),this.root=(&quot;/&quot;+this.root+&quot;/&quot;).replace(q,&quot;/&quot;),this._wantsHashChange&amp;&amp;this._wantsPushState){if(!this._hasPushState&amp;&amp;!this.atRoot())return t=this.root.slice(0,-1)||&quot;/&quot;,this.location.replace(t+&quot;#&quot;+this.getPath()),!0;this._hasPushState&amp;&amp;this.atRoot()&amp;&amp;this.navigate(this.getHash(),{replace:!0})}this._hasHashChange||!this._wantsHashChange||this._usePushState||(this.iframe=document.createElement(&quot;iframe&quot;),this.iframe.src=&quot;javascript:0&quot;,this.iframe.style.display=&quot;none&quot;,this.iframe.tabIndex=-1,(t=(t=document.body).insertBefore(this.iframe,t.firstChild).contentWindow).document.open(),t.document.close(),t.location.hash=&quot;#&quot;+this.fragment);t=window.addEventListener||function(t,e){return attachEvent(&quot;on&quot;+t,e)};if(this._usePushState?t(&quot;popstate&quot;,this.checkUrl,!1):this._useHashChange&amp;&amp;!this.iframe?t(&quot;hashchange&quot;,this.checkUrl,!1):this._wantsHashChange&amp;&amp;(this._checkUrlInterval=setInterval(this.checkUrl,this.interval)),!this.options.silent)return this.loadUrl()},stop:function(){var t=window.removeEventListener||function(t,e){return detachEvent(&quot;on&quot;+t,e)};this._usePushState?t(&quot;popstate&quot;,this.checkUrl,!1):this._useHashChange&amp;&amp;!this.iframe&amp;&amp;t(&quot;hashchange&quot;,this.checkUrl,!1),this.iframe&amp;&amp;(document.body.removeChild(this.iframe),this.iframe=null),this._checkUrlInterval&amp;&amp;clearInterval(this._checkUrlInterval),R.started=!1},route:function(t,e){this.handlers.unshift({route:t,callback:e})},checkUrl:function(t){var e=this.getFragment();if((e=e===this.fragment&amp;&amp;this.iframe?this.getHash(this.iframe.contentWindow):e)===this.fragment)return!1;this.iframe&amp;&amp;this.navigate(e),this.loadUrl()},loadUrl:function(e){return!!this.matchRoot()&amp;&amp;(e=this.fragment=this.getFragment(e),b.some(this.handlers,function(t){if(t.route.test(e))return t.callback(e),!0}))},navigate:function(t,e){if(!R.started)return!1;e&amp;&amp;!0!==e||(e={trigger:!!e}),t=this.getFragment(t||&quot;&quot;);var i=this.root,i=(i=&quot;&quot;!==t&amp;&amp;&quot;?&quot;!==t.charAt(0)?i:i.slice(0,-1)||&quot;/&quot;)+t,n=(t=t.replace(F,&quot;&quot;),this.decodeFragment(t));if(this.fragment!==n){if(this.fragment=n,this._usePushState)this.history[e.replace?&quot;replaceState&quot;:&quot;pushState&quot;]({},document.title,i);else{if(!this._wantsHashChange)return this.location.assign(i);this._updateHash(this.location,t,e.replace),this.iframe&amp;&amp;t!==this.getHash(this.iframe.contentWindow)&amp;&amp;(n=this.iframe.contentWindow,e.replace||(n.document.open(),n.document.close()),this._updateHash(n.location,t,e.replace))}return e.trigger?this.loadUrl(t):void 0}},_updateHash:function(t,e,i){i?(i=t.href.replace(/(javascript:|#).*$/,&quot;&quot;),t.replace(i+&quot;#&quot;+e)):t.hash=&quot;#&quot;+e}}),h.history=new R,v.extend=m.extend=$.extend=y.extend=R.extend=function(t,e){var i=this,n=t&amp;&amp;b.has(t,&quot;constructor&quot;)?t.constructor:function(){return i.apply(this,arguments)};return b.extend(n,i,e),n.prototype=b.create(i.prototype,t),(n.prototype.constructor=n).__super__=i.prototype,n},function(){throw new Error(&#039;A &quot;url&quot; property or function must be specified&#039;)}),N=function(e,i){var n=i.error;i.error=function(t){n&amp;&amp;n.call(i.context,e,t,i),e.trigger(&quot;error&quot;,e,t,i)}};return h});','1345f5f2a74d0372fa47832657b37e54-scripts','','publish','closed','closed','','1345f5f2a74d0372fa47832657b37e54-scripts','','','2022-09-12 15:51:42','2022-09-12 13:51:42','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1206',0,'wphb_minify_group','',0),(1207,0,'2022-09-12 15:51:43','2022-09-12 13:51:43','/**handles:backbone-marionette,backbone-radio**/\r\n/*! elementor - v3.0.15 - 2020-12-20 */\n// MarionetteJS (Backbone.Marionette)\n// ----------------------------------\n// v2.4.5.e1\n// Change Log:\n// 	e1: Fix - Compatibility with jQuery 3. (`Marionette.Region.reset`).\n//\n// Copyright (c)2016 Derick Bailey, Muted Solutions, LLC.\n// Distributed under MIT license\n//\n// http://marionettejs.com\n\n\n/*!\n * Includes BabySitter\n * https://github.com/marionettejs/backbone.babysitter/\n *\n * Includes Wreqr\n * https://github.com/marionettejs/backbone.wreqr/\n */\n\n\n\n!function(a,b){if(\"function\"==typeof define&amp;&amp;define.amd)define([\"backbone\",\"underscore\"],function(c,d){return a.Marionette=a.Mn=b(a,c,d)});else if(\"undefined\"!=typeof exports){var c=require(\"backbone\"),d=require(\"underscore\");module.exports=b(a,c,d)}else a.Marionette=a.Mn=b(a,a.Backbone,a._)}(this,function(a,b,c){\"use strict\";!function(a,b){var c=a.ChildViewContainer;return a.ChildViewContainer=function(a,b){var c=function(a){this._views={},this._indexByModel={},this._indexByCustom={},this._updateLength(),b.each(a,this.add,this)};b.extend(c.prototype,{add:function(a,b){var c=a.cid;return this._views[c]=a,a.model&amp;&amp;(this._indexByModel[a.model.cid]=c),b&amp;&amp;(this._indexByCustom[b]=c),this._updateLength(),this},findByModel:function(a){return this.findByModelCid(a.cid)},findByModelCid:function(a){var b=this._indexByModel[a];return this.findByCid(b)},findByCustom:function(a){var b=this._indexByCustom[a];return this.findByCid(b)},findByIndex:function(a){return b.values(this._views)[a]},findByCid:function(a){return this._views[a]},remove:function(a){var c=a.cid;return a.model&amp;&amp;delete this._indexByModel[a.model.cid],b.any(this._indexByCustom,function(a,b){return a===c?(delete this._indexByCustom[b],!0):void 0},this),delete this._views[c],this._updateLength(),this},call:function(a){this.apply(a,b.tail(arguments))},apply:function(a,c){b.each(this._views,function(d){b.isFunction(d[a])&amp;&amp;d[a].apply(d,c||[])})},_updateLength:function(){this.length=b.size(this._views)}});var d=[\"forEach\",\"each\",\"map\",\"find\",\"detect\",\"filter\",\"select\",\"reject\",\"every\",\"all\",\"some\",\"any\",\"include\",\"contains\",\"invoke\",\"toArray\",\"first\",\"initial\",\"rest\",\"last\",\"without\",\"isEmpty\",\"pluck\",\"reduce\"];return b.each(d,function(a){c.prototype[a]=function(){var c=b.values(this._views),d=[c].concat(b.toArray(arguments));return b[a].apply(b,d)}}),c}(a,b),a.ChildViewContainer.VERSION=\"0.1.11\",a.ChildViewContainer.noConflict=function(){return a.ChildViewContainer=c,this},a.ChildViewContainer}(b,c),function(a,b){var c=a.Wreqr,d=a.Wreqr={};return a.Wreqr.VERSION=\"1.3.6\",a.Wreqr.noConflict=function(){return a.Wreqr=c,this},d.Handlers=function(a,b){var c=function(a){this.options=a,this._wreqrHandlers={},b.isFunction(this.initialize)&amp;&amp;this.initialize(a)};return c.extend=a.Model.extend,b.extend(c.prototype,a.Events,{setHandlers:function(a){b.each(a,function(a,c){var d=null;b.isObject(a)&amp;&amp;!b.isFunction(a)&amp;&amp;(d=a.context,a=a.callback),this.setHandler(c,a,d)},this)},setHandler:function(a,b,c){var d={callback:b,context:c};this._wreqrHandlers[a]=d,this.trigger(\"handler:add\",a,b,c)},hasHandler:function(a){return!!this._wreqrHandlers[a]},getHandler:function(a){var b=this._wreqrHandlers[a];if(b)return function(){return b.callback.apply(b.context,arguments)}},removeHandler:function(a){delete this._wreqrHandlers[a]},removeAllHandlers:function(){this._wreqrHandlers={}}}),c}(a,b),d.CommandStorage=function(){var c=function(a){this.options=a,this._commands={},b.isFunction(this.initialize)&amp;&amp;this.initialize(a)};return b.extend(c.prototype,a.Events,{getCommands:function(a){var b=this._commands[a];return b||(b={command:a,instances:[]},this._commands[a]=b),b},addCommand:function(a,b){var c=this.getCommands(a);c.instances.push(b)},clearCommands:function(a){var b=this.getCommands(a);b.instances=[]}}),c}(),d.Commands=function(a,b){return a.Handlers.extend({storageType:a.CommandStorage,constructor:function(b){this.options=b||{},this._initializeStorage(this.options),this.on(\"handler:add\",this._executeCommands,this),a.Handlers.prototype.constructor.apply(this,arguments)},execute:function(a){a=arguments[0];var c=b.rest(arguments);this.hasHandler(a)?this.getHandler(a).apply(this,c):this.storage.addCommand(a,c)},_executeCommands:function(a,c,d){var e=this.storage.getCommands(a);b.each(e.instances,function(a){c.apply(d,a)}),this.storage.clearCommands(a)},_initializeStorage:function(a){var c,d=a.storageType||this.storageType;c=b.isFunction(d)?new d:d,this.storage=c}})}(d,b),d.RequestResponse=function(a,b){return a.Handlers.extend({request:function(a){return this.hasHandler(a)?this.getHandler(a).apply(this,b.rest(arguments)):void 0}})}(d,b),d.EventAggregator=function(a,b){var c=function(){};return c.extend=a.Model.extend,b.extend(c.prototype,a.Events),c}(a,b),d.Channel=function(c){var d=function(b){this.vent=new a.Wreqr.EventAggregator,this.reqres=new a.Wreqr.RequestResponse,this.commands=new a.Wreqr.Commands,this.channelName=b};return b.extend(d.prototype,{reset:function(){return this.vent.off(),this.vent.stopListening(),this.reqres.removeAllHandlers(),this.commands.removeAllHandlers(),this},connectEvents:function(a,b){return this._connect(\"vent\",a,b),this},connectCommands:function(a,b){return this._connect(\"commands\",a,b),this},connectRequests:function(a,b){return this._connect(\"reqres\",a,b),this},_connect:function(a,c,d){if(c){d=d||this;var e=\"vent\"===a?\"on\":\"setHandler\";b.each(c,function(c,f){this[a][e](f,b.bind(c,d))},this)}}}),d}(d),d.radio=function(a,b){var c=function(){this._channels={},this.vent={},this.commands={},this.reqres={},this._proxyMethods()};b.extend(c.prototype,{channel:function(a){if(!a)throw new Error(\"Channel must receive a name\");return this._getChannel(a)},_getChannel:function(b){var c=this._channels[b];return c||(c=new a.Channel(b),this._channels[b]=c),c},_proxyMethods:function(){b.each([\"vent\",\"commands\",\"reqres\"],function(a){b.each(d[a],function(b){this[a][b]=e(this,a,b)},this)},this)}});var d={vent:[\"on\",\"off\",\"trigger\",\"once\",\"stopListening\",\"listenTo\",\"listenToOnce\"],commands:[\"execute\",\"setHandler\",\"setHandlers\",\"removeHandler\",\"removeAllHandlers\"],reqres:[\"request\",\"setHandler\",\"setHandlers\",\"removeHandler\",\"removeAllHandlers\"]},e=function(a,c,d){return function(e){var f=a._getChannel(e)[c];return f[d].apply(f,b.rest(arguments))}};return new c}(d,b),a.Wreqr}(b,c);var d=a.Marionette,e=a.Mn,f=b.Marionette={};f.VERSION=\"2.4.5\",f.noConflict=function(){return a.Marionette=d,a.Mn=e,this},b.Marionette=f,f.Deferred=b.$.Deferred,f.extend=b.Model.extend,f.isNodeAttached=function(a){return b.$.contains(document.documentElement,a)},f.mergeOptions=function(a,b){a&amp;&amp;c.extend(this,c.pick(a,b))},f.getOption=function(a,b){return a&amp;&amp;b?a.options&amp;&amp;void 0!==a.options[b]?a.options[b]:a[b]:void 0},f.proxyGetOption=function(a){return f.getOption(this,a)},f._getValue=function(a,b,d){return c.isFunction(a)&amp;&amp;(a=d?a.apply(b,d):a.call(b)),a},f.normalizeMethods=function(a){return c.reduce(a,function(a,b,d){return c.isFunction(b)||(b=this[b]),b&amp;&amp;(a[d]=b),a},{},this)},f.normalizeUIString=function(a,b){return a.replace(/@ui\\.[a-zA-Z-_$0-9]*/g,function(a){return b[a.slice(4)]})},f.normalizeUIKeys=function(a,b){return c.reduce(a,function(a,c,d){var e=f.normalizeUIString(d,b);return a[e]=c,a},{})},f.normalizeUIValues=function(a,b,d){return c.each(a,function(e,g){c.isString(e)?a[g]=f.normalizeUIString(e,b):c.isObject(e)&amp;&amp;c.isArray(d)&amp;&amp;(c.extend(e,f.normalizeUIValues(c.pick(e,d),b)),c.each(d,function(a){var d=e[a];c.isString(d)&amp;&amp;(e[a]=f.normalizeUIString(d,b))}))}),a},f.actAsCollection=function(a,b){var d=[\"forEach\",\"each\",\"map\",\"find\",\"detect\",\"filter\",\"select\",\"reject\",\"every\",\"all\",\"some\",\"any\",\"include\",\"contains\",\"invoke\",\"toArray\",\"first\",\"initial\",\"rest\",\"last\",\"without\",\"isEmpty\",\"pluck\"];c.each(d,function(d){a[d]=function(){var a=c.values(c.result(this,b)),e=[a].concat(c.toArray(arguments));return c[d].apply(c,e)}})};var g=f.deprecate=function(a,b){c.isObject(a)&amp;&amp;(a=a.prev+\" is going to be removed in the future. Please use \"+a.next+\" instead.\"+(a.url?\" See: \"+a.url:\"\")),void 0!==b&amp;&amp;b||g._cache[a]||(g._warn(\"Deprecation warning: \"+a),g._cache[a]=!0)};g._console=\"undefined\"!=typeof console?console:{},g._warn=function(){var a=g._console.warn||g._console.log||function(){};return a.apply(g._console,arguments)},g._cache={},f._triggerMethod=function(){function a(a,b,c){return c.toUpperCase()}var b=/(^|:)(\\w)/gi;return function(d,e,f){var g=arguments.length1?d.trigger.apply(d,g?f:[e].concat(c.drop(f,0))):d.trigger(e)),h}}(),f.triggerMethod=function(a){return f._triggerMethod(this,arguments)},f.triggerMethodOn=function(a){var b=c.isFunction(a.triggerMethod)?a.triggerMethod:f.triggerMethod;return b.apply(a,c.rest(arguments))},f.MonitorDOMRefresh=function(a){function b(){a._isShown=!0,d()}function c(){a._isRendered=!0,d()}function d(){a._isShown&amp;&amp;a._isRendered&amp;&amp;f.isNodeAttached(a.el)&amp;&amp;f.triggerMethodOn(a,\"dom:refresh\",a)}a._isDomRefreshMonitored||(a._isDomRefreshMonitored=!0,a.on({show:b,render:c}))},function(a){function b(b,d,e,f){var g=f.split(/\\s+/);c.each(g,function(c){var f=b[c];if(!f)throw new a.Error(\'Method \"\'+c+\'\" was configured as an event handler, but does not exist.\');b.listenTo(d,e,f)})}function d(a,b,c,d){a.listenTo(b,c,d)}function e(a,b,d,e){var f=e.split(/\\s+/);c.each(f,function(c){var e=a[c];a.stopListening(b,d,e)})}function f(a,b,c,d){a.stopListening(b,c,d)}function g(b,d,e,f,g){if(d&amp;&amp;e){if(!c.isObject(e))throw new a.Error({message:\"Bindings must be an object or function.\",url:\"marionette.functions.html#marionettebindentityevents\"});e=a._getValue(e,b),c.each(e,function(a,e){c.isFunction(a)?f(b,d,e,a):g(b,d,e,a)})}}a.bindEntityEvents=function(a,c,e){g(a,c,e,d,b)},a.unbindEntityEvents=function(a,b,c){g(a,b,c,f,e)},a.proxyBindEntityEvents=function(b,c){return a.bindEntityEvents(this,b,c)},a.proxyUnbindEntityEvents=function(b,c){return a.unbindEntityEvents(this,b,c)}}(f);var h=[\"description\",\"fileName\",\"lineNumber\",\"name\",\"message\",\"number\"];return f.Error=f.extend.call(Error,{urlRoot:\"http://marionettejs.com/docs/v\"+f.VERSION+\"/\",constructor:function(a,b){c.isObject(a)?(b=a,a=b.message):b||(b={});var d=Error.call(this,a);c.extend(this,c.pick(d,h),c.pick(b,h)),this.captureStackTrace(),b.url&amp;&amp;(this.url=this.urlRoot+b.url)},captureStackTrace:function(){Error.captureStackTrace&amp;&amp;Error.captureStackTrace(this,f.Error)},toString:function(){return this.name+\": \"+this.message+(this.url?\" See: \"+this.url:\"\")}}),f.Error.extend=f.extend,f.Callbacks=function(){this._deferred=f.Deferred(),this._callbacks=[]},c.extend(f.Callbacks.prototype,{add:function(a,b){var d=c.result(this._deferred,\"promise\");this._callbacks.push({cb:a,ctx:b}),d.then(function(c){b&amp;&amp;(c.context=b),a.call(c.context,c.options)})},run:function(a,b){this._deferred.resolve({options:a,context:b})},reset:function(){var a=this._callbacks;this._deferred=f.Deferred(),this._callbacks=[],c.each(a,function(a){this.add(a.cb,a.ctx)},this)}}),f.Controller=function(a){this.options=a||{},c.isFunction(this.initialize)&amp;&amp;this.initialize(this.options)},f.Controller.extend=f.extend,c.extend(f.Controller.prototype,b.Events,{destroy:function(){return f._triggerMethod(this,\"before:destroy\",arguments),f._triggerMethod(this,\"destroy\",arguments),this.stopListening(),this.off(),this},triggerMethod:f.triggerMethod,mergeOptions:f.mergeOptions,getOption:f.proxyGetOption}),f.Object=function(a){this.options=c.extend({},c.result(this,\"options\"),a),this.initialize.apply(this,arguments)},f.Object.extend=f.extend,c.extend(f.Object.prototype,b.Events,{initialize:function(){},destroy:function(a){return a=a||{},this.triggerMethod(\"before:destroy\",a),this.triggerMethod(\"destroy\",a),this.stopListening(),this},triggerMethod:f.triggerMethod,mergeOptions:f.mergeOptions,getOption:f.proxyGetOption,bindEntityEvents:f.proxyBindEntityEvents,unbindEntityEvents:f.proxyUnbindEntityEvents}),f.Region=f.Object.extend({constructor:function(a){if(this.options=a||{},this.el=this.getOption(\"el\"),this.el=this.el instanceof b.$?this.el[0]:this.el,!this.el)throw new f.Error({name:\"NoElError\",message:\'An \"el\" must be specified for a region.\'});this.$el=this.getEl(this.el),f.Object.call(this,a)},show:function(a,b){if(this._ensureElement()){this._ensureViewIsIntact(a),f.MonitorDOMRefresh(a);var d=b||{},e=a!==this.currentView,g=!!d.preventDestroy,h=!!d.forceShow,i=!!this.currentView,j=e&amp;&amp;!g,k=e||h;if(i&amp;&amp;this.triggerMethod(\"before:swapOut\",this.currentView,this,b),this.currentView&amp;&amp;e&amp;&amp;delete this.currentView._parent,j?this.empty():i&amp;&amp;k&amp;&amp;this.currentView.off(\"destroy\",this.empty,this),k){a.once(\"destroy\",this.empty,this),a._parent=this,this._renderView(a),i&amp;&amp;this.triggerMethod(\"before:swap\",a,this,b),this.triggerMethod(\"before:show\",a,this,b),f.triggerMethodOn(a,\"before:show\",a,this,b),i&amp;&amp;this.triggerMethod(\"swapOut\",this.currentView,this,b);var l=f.isNodeAttached(this.el),m=[],n=c.extend({triggerBeforeAttach:this.triggerBeforeAttach,triggerAttach:this.triggerAttach},d);return l&amp;&amp;n.triggerBeforeAttach&amp;&amp;(m=this._displayedViews(a),this._triggerAttach(m,\"before:\")),this.attachHtml(a),this.currentView=a,l&amp;&amp;n.triggerAttach&amp;&amp;(m=this._displayedViews(a),this._triggerAttach(m)),i&amp;&amp;this.triggerMethod(\"swap\",a,this,b),this.triggerMethod(\"show\",a,this,b),f.triggerMethodOn(a,\"show\",a,this,b),this}return this}},triggerBeforeAttach:!0,triggerAttach:!0,_triggerAttach:function(a,b){var d=(b||\"\")+\"attach\";c.each(a,function(a){f.triggerMethodOn(a,d,a,this)},this)},_displayedViews:function(a){return c.union([a],c.result(a,\"_getNestedViews\")||[])},_renderView:function(a){a.supportsRenderLifecycle||f.triggerMethodOn(a,\"before:render\",a),a.render(),a.supportsRenderLifecycle||f.triggerMethodOn(a,\"render\",a)},_ensureElement:function(){if(c.isObject(this.el)||(this.$el=this.getEl(this.el),this.el=this.$el[0]),!this.$el||0===this.$el.length){if(this.getOption(\"allowMissingEl\"))return!1;throw new f.Error(\'An \"el\" \'+this.$el.selector+\" must exist in DOM\")}return!0},_ensureViewIsIntact:function(a){if(!a)throw new f.Error({name:\"ViewNotValid\",message:\"The view passed is undefined and therefore invalid. You must pass a view instance to show.\"});if(a.isDestroyed)throw new f.Error({name:\"ViewDestroyedError\",message:\'View (cid: \"\'+a.cid+\'\") has already been destroyed and cannot be used.\'})},getEl:function(a){return b.$(a,f._getValue(this.options.parentEl,this))},attachHtml:function(a){this.$el.contents().detach(),this.el.appendChild(a.el)},empty:function(a){var b=this.currentView,c=a||{},d=!!c.preventDestroy;return b?(b.off(\"destroy\",this.empty,this),this.triggerMethod(\"before:empty\",b),d||this._destroyView(),this.triggerMethod(\"empty\",b),delete this.currentView,d&amp;&amp;this.$el.contents().detach(),this):this},_destroyView:function(){var a=this.currentView;a.isDestroyed||(a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"before:destroy\",a),a.destroy?a.destroy():(a.remove(),a.isDestroyed=!0),a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"destroy\",a))},attachView:function(a){return this.currentView&amp;&amp;delete this.currentView._parent,a._parent=this,this.currentView=a,this},hasView:function(){return!!this.currentView},reset:function(){return this.empty(),this.$el&amp;&amp;(this.el=this.options.el),delete this.$el,this}},{buildRegion:function(a,b){if(c.isString(a))return this._buildRegionFromSelector(a,b);if(a.selector||a.el||a.regionClass)return this._buildRegionFromObject(a,b);if(c.isFunction(a))return this._buildRegionFromRegionClass(a);throw new f.Error({message:\"Improper region configuration type.\",url:\"marionette.region.html#region-configuration-types\"})},_buildRegionFromSelector:function(a,b){return new b({el:a})},_buildRegionFromObject:function(a,b){var d=a.regionClass||b,e=c.omit(a,\"selector\",\"regionClass\");return a.selector&amp;&amp;!e.el&amp;&amp;(e.el=a.selector),new d(e)},_buildRegionFromRegionClass:function(a){return new a}}),f.RegionManager=f.Controller.extend({constructor:function(a){this._regions={},this.length=0,f.Controller.call(this,a),this.addRegions(this.getOption(\"regions\"))},addRegions:function(a,b){return a=f._getValue(a,this,arguments),c.reduce(a,function(a,d,e){return c.isString(d)&amp;&amp;(d={selector:d}),d.selector&amp;&amp;(d=c.defaults({},d,b)),a[e]=this.addRegion(e,d),a},{},this)},addRegion:function(a,b){var c;return c=b instanceof f.Region?b:f.Region.buildRegion(b,f.Region),this.triggerMethod(\"before:add:region\",a,c),c._parent=this,this._store(a,c),this.triggerMethod(\"add:region\",a,c),c},get:function(a){return this._regions[a]},getRegions:function(){return c.clone(this._regions)},removeRegion:function(a){var b=this._regions[a];return this._remove(a,b),b},removeRegions:function(){var a=this.getRegions();return c.each(this._regions,function(a,b){this._remove(b,a)},this),a},emptyRegions:function(){var a=this.getRegions();return c.invoke(a,\"empty\"),a},destroy:function(){return this.removeRegions(),f.Controller.prototype.destroy.apply(this,arguments)},_store:function(a,b){this._regions[a]||this.length++,this._regions[a]=b},_remove:function(a,b){this.triggerMethod(\"before:remove:region\",a,b),b.empty(),b.stopListening(),delete b._parent,delete this._regions[a],this.length--,this.triggerMethod(\"remove:region\",a,b)}}),f.actAsCollection(f.RegionManager.prototype,\"_regions\"),f.TemplateCache=function(a){this.templateId=a},c.extend(f.TemplateCache,{templateCaches:{},get:function(a,b){var c=this.templateCaches[a];return c||(c=new f.TemplateCache(a),this.templateCaches[a]=c),c.load(b)},clear:function(){var a,b=c.toArray(arguments),d=b.length;if(d&gt;0)for(a=0;d&gt;a;a++)delete this.templateCaches[b[a]];else this.templateCaches={}}}),c.extend(f.TemplateCache.prototype,{load:function(a){if(this.compiledTemplate)return this.compiledTemplate;var b=this.loadTemplate(this.templateId,a);return this.compiledTemplate=this.compileTemplate(b,a),this.compiledTemplate},loadTemplate:function(a,c){var d=b.$(a);if(!d.length)throw new f.Error({name:\"NoTemplateError\",message:\'Could not find template: \"\'+a+\'\"\'});return d.html()},compileTemplate:function(a,b){return c.template(a,b)}}),f.Renderer={render:function(a,b){if(!a)throw new f.Error({name:\"TemplateNotFoundError\",message:\"Cannot render the template since its false, null or undefined.\"});var d=c.isFunction(a)?a:f.TemplateCache.get(a);return d(b)}},f.View=b.View.extend({isDestroyed:!1,supportsRenderLifecycle:!0,supportsDestroyLifecycle:!0,constructor:function(a){this.render=c.bind(this.render,this),a=f._getValue(a,this),this.options=c.extend({},c.result(this,\"options\"),a),this._behaviors=f.Behaviors(this),b.View.call(this,this.options),f.MonitorDOMRefresh(this)},getTemplate:function(){return this.getOption(\"template\")},serializeModel:function(a){return a.toJSON.apply(a,c.rest(arguments))},mixinTemplateHelpers:function(a){a=a||{};var b=this.getOption(\"templateHelpers\");return b=f._getValue(b,this),c.extend(a,b)},normalizeUIKeys:function(a){var b=c.result(this,\"_uiBindings\");return f.normalizeUIKeys(a,b||c.result(this,\"ui\"))},normalizeUIValues:function(a,b){var d=c.result(this,\"ui\"),e=c.result(this,\"_uiBindings\");return f.normalizeUIValues(a,e||d,b)},configureTriggers:function(){if(this.triggers){var a=this.normalizeUIKeys(c.result(this,\"triggers\"));return c.reduce(a,function(a,b,c){return a[c]=this._buildViewTrigger(b),a},{},this)}},delegateEvents:function(a){return this._delegateDOMEvents(a),this.bindEntityEvents(this.model,this.getOption(\"modelEvents\")),this.bindEntityEvents(this.collection,this.getOption(\"collectionEvents\")),c.each(this._behaviors,function(a){a.bindEntityEvents(this.model,a.getOption(\"modelEvents\")),a.bindEntityEvents(this.collection,a.getOption(\"collectionEvents\"))},this),this},_delegateDOMEvents:function(a){var d=f._getValue(a||this.events,this);d=this.normalizeUIKeys(d),c.isUndefined(a)&amp;&amp;(this.events=d);var e={},g=c.result(this,\"behaviorEvents\")||{},h=this.configureTriggers(),i=c.result(this,\"behaviorTriggers\")||{};c.extend(e,g,d,h,i),b.View.prototype.delegateEvents.call(this,e)},undelegateEvents:function(){return b.View.prototype.undelegateEvents.apply(this,arguments),this.unbindEntityEvents(this.model,this.getOption(\"modelEvents\")),this.unbindEntityEvents(this.collection,this.getOption(\"collectionEvents\")),c.each(this._behaviors,function(a){a.unbindEntityEvents(this.model,a.getOption(\"modelEvents\")),a.unbindEntityEvents(this.collection,a.getOption(\"collectionEvents\"))},this),this},_ensureViewIsIntact:function(){if(this.isDestroyed)throw new f.Error({name:\"ViewDestroyedError\",message:\'View (cid: \"\'+this.cid+\'\") has already been destroyed and cannot be used.\'})},destroy:function(){if(this.isDestroyed)return this;var a=c.toArray(arguments);return this.triggerMethod.apply(this,[\"before:destroy\"].concat(a)),this.isDestroyed=!0,this.triggerMethod.apply(this,[\"destroy\"].concat(a)),this.unbindUIElements(),this.isRendered=!1,this.remove(),c.invoke(this._behaviors,\"destroy\",a),this},bindUIElements:function(){this._bindUIElements(),c.invoke(this._behaviors,this._bindUIElements)},_bindUIElements:function(){if(this.ui){this._uiBindings||(this._uiBindings=this.ui);var a=c.result(this,\"_uiBindings\");this.ui={},c.each(a,function(a,b){this.ui[b]=this.$(a)},this)}},unbindUIElements:function(){this._unbindUIElements(),c.invoke(this._behaviors,this._unbindUIElements)},_unbindUIElements:function(){this.ui&amp;&amp;this._uiBindings&amp;&amp;(c.each(this.ui,function(a,b){delete this.ui[b]},this),this.ui=this._uiBindings,delete this._uiBindings)},_buildViewTrigger:function(a){var b=c.defaults({},a,{preventDefault:!0,stopPropagation:!0}),d=c.isObject(a)?b.event:a;return function(a){a&amp;&amp;(a.preventDefault&amp;&amp;b.preventDefault&amp;&amp;a.preventDefault(),a.stopPropagation&amp;&amp;b.stopPropagation&amp;&amp;a.stopPropagation());var c={view:this,model:this.model,collection:this.collection};this.triggerMethod(d,c)}},setElement:function(){var a=b.View.prototype.setElement.apply(this,arguments);return c.invoke(this._behaviors,\"proxyViewProperties\",this),a},triggerMethod:function(){var a=f._triggerMethod(this,arguments);return this._triggerEventOnBehaviors(arguments),this._triggerEventOnParentLayout(arguments[0],c.rest(arguments)),a},_triggerEventOnBehaviors:function(a){for(var b=f._triggerMethod,c=this._behaviors,d=0,e=c&amp;&amp;c.length;e&gt;d;d++)b(c[d],a)},_triggerEventOnParentLayout:function(a,b){var d=this._parentLayoutView();if(d){var e=f.getOption(d,\"childViewEventPrefix\"),g=e+\":\"+a,h=[this].concat(b);f._triggerMethod(d,g,h);var i=f.getOption(d,\"childEvents\");i=f._getValue(i,d);var j=d.normalizeMethods(i);j&amp;&amp;c.isFunction(j[a])&amp;&amp;j[a].apply(d,h)}},_getImmediateChildren:function(){return[]},_getNestedViews:function(){var a=this._getImmediateChildren();return a.length?c.reduce(a,function(a,b){return b._getNestedViews?a.concat(b._getNestedViews()):a},a):a},_parentLayoutView:function(){for(var a=this._parent;a;){if(a instanceof f.LayoutView)return a;a=a._parent}},normalizeMethods:f.normalizeMethods,mergeOptions:f.mergeOptions,getOption:f.proxyGetOption,bindEntityEvents:f.proxyBindEntityEvents,unbindEntityEvents:f.proxyUnbindEntityEvents}),f.ItemView=f.View.extend({constructor:function(){f.View.apply(this,arguments)},serializeData:function(){if(!this.model&amp;&amp;!this.collection)return{};var a=[this.model||this.collection];return arguments.length&amp;&amp;a.push.apply(a,arguments),this.model?this.serializeModel.apply(this,a):{items:this.serializeCollection.apply(this,a)}},serializeCollection:function(a){return a.toJSON.apply(a,c.rest(arguments))},render:function(){return this._ensureViewIsIntact(),this.triggerMethod(\"before:render\",this),this._renderTemplate(),this.isRendered=!0,this.bindUIElements(),this.triggerMethod(\"render\",this),this},_renderTemplate:function(){var a=this.getTemplate();if(a!==!1){if(!a)throw new f.Error({name:\"UndefinedTemplateError\",message:\"Cannot render the template since it is null or undefined.\"});var b=this.mixinTemplateHelpers(this.serializeData()),c=f.Renderer.render(a,b,this);return this.attachElContent(c),this}},attachElContent:function(a){return this.$el.html(a),this}}),f.CollectionView=f.View.extend({childViewEventPrefix:\"childview\",sort:!0,constructor:function(a){this.once(\"render\",this._initialEvents),this._initChildViewStorage(),f.View.apply(this,arguments),this.on({\"before:show\":this._onBeforeShowCalled,show:this._onShowCalled,\"before:attach\":this._onBeforeAttachCalled,attach:this._onAttachCalled}),this.initRenderBuffer()},initRenderBuffer:function(){this._bufferedChildren=[]},startBuffering:function(){this.initRenderBuffer(),this.isBuffering=!0},endBuffering:function(){var a,b=this._isShown&amp;&amp;f.isNodeAttached(this.el);this.isBuffering=!1,this._isShown&amp;&amp;this._triggerMethodMany(this._bufferedChildren,this,\"before:show\"),b&amp;&amp;this._triggerBeforeAttach&amp;&amp;(a=this._getNestedViews(),this._triggerMethodMany(a,this,\"before:attach\")),this.attachBuffer(this,this._createBuffer()),b&amp;&amp;this._triggerAttach&amp;&amp;(a=this._getNestedViews(),this._triggerMethodMany(a,this,\"attach\")),this._isShown&amp;&amp;this._triggerMethodMany(this._bufferedChildren,this,\"show\"),this.initRenderBuffer()},_triggerMethodMany:function(a,b,d){var e=c.drop(arguments,3);c.each(a,function(a){f.triggerMethodOn.apply(a,[a,d,a,b].concat(e))})},_initialEvents:function(){this.collection&amp;&amp;(this.listenTo(this.collection,\"add\",this._onCollectionAdd),this.listenTo(this.collection,\"remove\",this._onCollectionRemove),this.listenTo(this.collection,\"reset\",this.render),this.getOption(\"sort\")&amp;&amp;this.listenTo(this.collection,\"sort\",this._sortViews))},_onCollectionAdd:function(a,b,d){var e=void 0!==d.at&amp;&amp;(d.index||b.indexOf(a));if((this.getOption(\"filter\")||e===!1)&amp;&amp;(e=c.indexOf(this._filteredSortedModels(e),a)),this._shouldAddChild(a,e)){this.destroyEmptyView();var f=this.getChildView(a);this.addChild(a,f,e)}},_onCollectionRemove:function(a){var b=this.children.findByModel(a);this.removeChildView(b),this.checkEmpty()},_onBeforeShowCalled:function(){this._triggerBeforeAttach=this._triggerAttach=!1,this.children.each(function(a){f.triggerMethodOn(a,\"before:show\",a)})},_onShowCalled:function(){this.children.each(function(a){f.triggerMethodOn(a,\"show\",a)})},_onBeforeAttachCalled:function(){this._triggerBeforeAttach=!0},_onAttachCalled:function(){this._triggerAttach=!0},render:function(){return this._ensureViewIsIntact(),this.triggerMethod(\"before:render\",this),this._renderChildren(),this.isRendered=!0,this.triggerMethod(\"render\",this),this},reorder:function(){var a=this.children,b=this._filteredSortedModels(),d=c.some(b,function(b){return!a.findByModel(b)});if(d)this.render();else{var e=c.map(b,function(b,c){var d=a.findByModel(b);return d._index=c,d.el}),f=a.filter(function(a){return!c.contains(e,a.el)});this.triggerMethod(\"before:reorder\"),this._appendReorderedChildren(e),c.each(f,this.removeChildView,this),this.checkEmpty(),this.triggerMethod(\"reorder\")}},resortView:function(){f.getOption(this,\"reorderOnSort\")?this.reorder():this.render()},_sortViews:function(){var a=this._filteredSortedModels(),b=c.find(a,function(a,b){var c=this.children.findByModel(a);return!c||c._index!==b},this);b&amp;&amp;this.resortView()},_emptyViewIndex:-1,_appendReorderedChildren:function(a){this.$el.append(a)},_renderChildren:function(){this.destroyEmptyView(),this.destroyChildren({checkEmpty:!1}),this.isEmpty(this.collection)?this.showEmptyView():(this.triggerMethod(\"before:render:collection\",this),this.startBuffering(),this.showCollection(),this.endBuffering(),this.triggerMethod(\"render:collection\",this),this.children.isEmpty()&amp;&amp;this.getOption(\"filter\")&amp;&amp;this.showEmptyView())},showCollection:function(){var a,b=this._filteredSortedModels();c.each(b,function(b,c){a=this.getChildView(b),this.addChild(b,a,c)},this)},_filteredSortedModels:function(a){var b=this.getViewComparator(),d=this.collection.models;if(a=Math.min(Math.max(a,0),d.length-1),b){var e;a&amp;&amp;(e=d[a],d=d.slice(0,a).concat(d.slice(a+1))),d=this._sortModelsBy(d,b),e&amp;&amp;d.splice(a,0,e)}return this.getOption(\"filter\")&amp;&amp;(d=c.filter(d,function(a,b){return this._shouldAddChild(a,b)},this)),d},_sortModelsBy:function(a,b){return\"string\"==typeof b?c.sortBy(a,function(a){return a.get(b)},this):1===b.length?c.sortBy(a,b,this):a.sort(c.bind(b,this))},showEmptyView:function(){var a=this.getEmptyView();if(a&amp;&amp;!this._showingEmptyView){this.triggerMethod(\"before:render:empty\"),this._showingEmptyView=!0;var c=new b.Model;this.addEmptyView(c,a),this.triggerMethod(\"render:empty\")}},destroyEmptyView:function(){this._showingEmptyView&amp;&amp;(this.triggerMethod(\"before:remove:empty\"),this.destroyChildren(),delete this._showingEmptyView,this.triggerMethod(\"remove:empty\"))},getEmptyView:function(){return this.getOption(\"emptyView\")},addEmptyView:function(a,b){var d,e=this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.isNodeAttached(this.el),g=this.getOption(\"emptyViewOptions\")||this.getOption(\"childViewOptions\");c.isFunction(g)&amp;&amp;(g=g.call(this,a,this._emptyViewIndex));var h=this.buildChildView(a,b,g);h._parent=this,this.proxyChildEvents(h),h.once(\"render\",function(){this._isShown&amp;&amp;f.triggerMethodOn(h,\"before:show\",h),e&amp;&amp;this._triggerBeforeAttach&amp;&amp;(d=this._getViewAndNested(h),this._triggerMethodMany(d,this,\"before:attach\"))},this),this.children.add(h),this.renderChildView(h,this._emptyViewIndex),e&amp;&amp;this._triggerAttach&amp;&amp;(d=this._getViewAndNested(h),this._triggerMethodMany(d,this,\"attach\")),this._isShown&amp;&amp;f.triggerMethodOn(h,\"show\",h)},getChildView:function(a){var b=this.getOption(\"childView\");if(!b)throw new f.Error({name:\"NoChildViewError\",message:\'A \"childView\" must be specified\'});return b},addChild:function(a,b,c){var d=this.getOption(\"childViewOptions\");d=f._getValue(d,this,[a,c]);var e=this.buildChildView(a,b,d);return this._updateIndices(e,!0,c),this.triggerMethod(\"before:add:child\",e),this._addChildView(e,c),this.triggerMethod(\"add:child\",e),e._parent=this,e},_updateIndices:function(a,b,c){this.getOption(\"sort\")&amp;&amp;(b&amp;&amp;(a._index=c),this.children.each(function(c){c._index&gt;=a._index&amp;&amp;(c._index+=b?1:-1)}))},_addChildView:function(a,b){var c,d=this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.isNodeAttached(this.el);this.proxyChildEvents(a),a.once(\"render\",function(){this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.triggerMethodOn(a,\"before:show\",a),d&amp;&amp;this._triggerBeforeAttach&amp;&amp;(c=this._getViewAndNested(a),this._triggerMethodMany(c,this,\"before:attach\"))},this),this.children.add(a),this.renderChildView(a,b),d&amp;&amp;this._triggerAttach&amp;&amp;(c=this._getViewAndNested(a),this._triggerMethodMany(c,this,\"attach\")),this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.triggerMethodOn(a,\"show\",a)},renderChildView:function(a,b){return a.supportsRenderLifecycle||f.triggerMethodOn(a,\"before:render\",a),a.render(),a.supportsRenderLifecycle||f.triggerMethodOn(a,\"render\",a),this.attachHtml(this,a,b),a},buildChildView:function(a,b,d){var e=c.extend({model:a},d),g=new b(e);return f.MonitorDOMRefresh(g),g},removeChildView:function(a){return a?(this.triggerMethod(\"before:remove:child\",a),a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"before:destroy\",a),a.destroy?a.destroy():a.remove(),a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"destroy\",a),delete a._parent,this.stopListening(a),this.children.remove(a),this.triggerMethod(\"remove:child\",a),this._updateIndices(a,!1),a):a},isEmpty:function(){return!this.collection||0===this.collection.length},checkEmpty:function(){this.isEmpty(this.collection)&amp;&amp;this.showEmptyView()},attachBuffer:function(a,b){a.$el.append(b)},_createBuffer:function(){var a=document.createDocumentFragment();return c.each(this._bufferedChildren,function(b){a.appendChild(b.el)}),a},attachHtml:function(a,b,c){a.isBuffering?a._bufferedChildren.splice(c,0,b):a._insertBefore(b,c)||a._insertAfter(b)},_insertBefore:function(a,b){var c,d=this.getOption(\"sort\")&amp;&amp;b&lt;this.children.length-1;return d&amp;&amp;(c=this.children.find(function(a){return a._index===b+1})),c?(c.$el.before(a.el),!0):!1},_insertAfter:function(a){this.$el.append(a.el)},_initChildViewStorage:function(){this.children=new b.ChildViewContainer},destroy:function(){return this.isDestroyed?this:(this.triggerMethod(&quot;before:destroy:collection&quot;),this.destroyChildren({checkEmpty:!1}),this.triggerMethod(&quot;destroy:collection&quot;),f.View.prototype.destroy.apply(this,arguments))},destroyChildren:function(a){var b=a||{},d=!0,e=this.children.map(c.identity);return c.isUndefined(b.checkEmpty)||(d=b.checkEmpty),this.children.each(this.removeChildView,this),d&amp;&amp;this.checkEmpty(),e},_shouldAddChild:function(a,b){var d=this.getOption(&quot;filter&quot;);return!c.isFunction(d)||d.call(this,a,b,this.collection)},proxyChildEvents:function(a){var b=this.getOption(&quot;childViewEventPrefix&quot;);this.listenTo(a,&quot;all&quot;,function(){var d=c.toArray(arguments),e=d[0],f=this.normalizeMethods(c.result(this,&quot;childEvents&quot;));\nd[0]=b+&quot;:&quot;+e,d.splice(1,0,a),&quot;undefined&quot;!=typeof f&amp;&amp;c.isFunction(f[e])&amp;&amp;f[e].apply(this,d.slice(1)),this.triggerMethod.apply(this,d)})},_getImmediateChildren:function(){return c.values(this.children._views)},_getViewAndNested:function(a){return[a].concat(c.result(a,&quot;_getNestedViews&quot;)||[])},getViewComparator:function(){return this.getOption(&quot;viewComparator&quot;)}}),f.CompositeView=f.CollectionView.extend({constructor:function(){f.CollectionView.apply(this,arguments)},_initialEvents:function(){this.collection&amp;&amp;(this.listenTo(this.collection,&quot;add&quot;,this._onCollectionAdd),this.listenTo(this.collection,&quot;remove&quot;,this._onCollectionRemove),this.listenTo(this.collection,&quot;reset&quot;,this._renderChildren),this.getOption(&quot;sort&quot;)&amp;&amp;this.listenTo(this.collection,&quot;sort&quot;,this._sortViews))},getChildView:function(a){var b=this.getOption(&quot;childView&quot;)||this.constructor;return b},serializeData:function(){var a={};return this.model&amp;&amp;(a=c.partial(this.serializeModel,this.model).apply(this,arguments)),a},render:function(){return this._ensureViewIsIntact(),this._isRendering=!0,this.resetChildViewContainer(),this.triggerMethod(&quot;before:render&quot;,this),this._renderTemplate(),this._renderChildren(),this._isRendering=!1,this.isRendered=!0,this.triggerMethod(&quot;render&quot;,this),this},_renderChildren:function(){(this.isRendered||this._isRendering)&amp;&amp;f.CollectionView.prototype._renderChildren.call(this)},_renderTemplate:function(){var a={};a=this.serializeData(),a=this.mixinTemplateHelpers(a),this.triggerMethod(&quot;before:render:template&quot;);var b=this.getTemplate(),c=f.Renderer.render(b,a,this);this.attachElContent(c),this.bindUIElements(),this.triggerMethod(&quot;render:template&quot;)},attachElContent:function(a){return this.$el.html(a),this},attachBuffer:function(a,b){var c=this.getChildViewContainer(a);c.append(b)},_insertAfter:function(a){var b=this.getChildViewContainer(this,a);b.append(a.el)},_appendReorderedChildren:function(a){var b=this.getChildViewContainer(this);b.append(a)},getChildViewContainer:function(a,b){if(a.$childViewContainer)return a.$childViewContainer;var c,d=f.getOption(a,&quot;childViewContainer&quot;);if(d){var e=f._getValue(d,a);if(c=&quot;@&quot;===e.charAt(0)&amp;&amp;a.ui?a.ui[e.substr(4)]:a.$(e),c.lengtha;a++)r=s[a],n[r]&amp;&amp;t(n,r,o,i)&amp;&amp;(u=!0);return u}function o(n){return l[n]||(l[n]=e.partial(a.log,n))}function i(n){return e.isFunction(n)?n:function(){return n}}e=\"default\"in e?e[\"default\"]:e,n=\"default\"in n?n[\"default\"]:n;var s={};s[\"typeof\"]=\"function\"==typeof Symbol&amp;&amp;\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&amp;&amp;\"function\"==typeof Symbol&amp;&amp;e.constructor===Symbol?\"symbol\":typeof e};var u=n.Radio,a=n.Radio={};a.VERSION=\"1.0.4\",a.noConflict=function(){return n.Radio=u,this},a.DEBUG=!1,a._debugText=function(e,n,t){return e+(t?\" on the \"+t+\" channel\":\"\")+\': \"\'+n+\'\"\'},a.debugLog=function(e,n,t){a.DEBUG&amp;&amp;console&amp;&amp;console.warn&amp;&amp;console.warn(a._debugText(e,n,t))};var c=/\\s+/;a._eventsApi=function(n,t,r,o){if(!r)return!1;var i={};if(\"object\"===(\"undefined\"==typeof r?\"undefined\":s[\"typeof\"](r))){for(var u in r){var a=n[t].apply(n,[u,r[u]].concat(o));c.test(u)?e.extend(i,a):i[u]=a}return i}if(c.test(r)){for(var l=r.split(c),f=0,h=l.length;h&gt;f;f++)i[l[f]]=n[t].apply(n,[l[f]].concat(o));return i}return!1},a._callHandler=function(e,n,t){var r=t[0],o=t[1],i=t[2];switch(t.length){case 0:return e.call(n);case 1:return e.call(n,r);case 2:return e.call(n,r,o);case 3:return e.call(n,r,o,i);default:return e.apply(n,t)}};var l={};e.extend(a,{log:function(n,t){if(\"undefined\"!=typeof console){var r=e.drop(arguments,2);console.log(\"[\"+n+\'] \"\'+t+\'\"\',r)}},tuneIn:function(e){var n=a.channel(e);return n._tunedIn=!0,n.on(\"all\",o(e)),this},tuneOut:function(e){var n=a.channel(e);return n._tunedIn=!1,n.off(\"all\",o(e)),delete l[e],this}}),a.Requests={request:function(n){var t=e.rest(arguments),r=a._eventsApi(this,\"request\",n,t);if(r)return r;var o=this.channelName,i=this._requests;if(o&amp;&amp;this._tunedIn&amp;&amp;a.log.apply(this,[o,n].concat(t)),i&amp;&amp;(i[n]||i[\"default\"])){var s=i[n]||i[\"default\"];return t=i[n]?t:arguments,a._callHandler(s.callback,s.context,t)}a.debugLog(\"An unhandled request was fired\",n,o)},reply:function(e,n,t){return a._eventsApi(this,\"reply\",e,[n,t])?this:(this._requests||(this._requests={}),this._requests[e]&amp;&amp;a.debugLog(\"A request was overwritten\",e,this.channelName),this._requests[e]={callback:i(n),context:t||this},this)},replyOnce:function(n,t,r){if(a._eventsApi(this,\"replyOnce\",n,[t,r]))return this;var o=this,s=e.once(function(){return o.stopReplying(n),i(t).apply(this,arguments)});return this.reply(n,s,r)},stopReplying:function(e,n,t){return a._eventsApi(this,\"stopReplying\",e)?this:(e||n||t?r(this._requests,e,n,t)||a.debugLog(\"Attempted to remove the unregistered request\",e,this.channelName):delete this._requests,this)}},a._channels={},a.channel=function(e){if(!e)throw new Error(\"You must provide a name for the channel.\");return a._channels[e]?a._channels[e]:a._channels[e]=new a.Channel(e)},a.Channel=function(e){this.channelName=e},e.extend(a.Channel.prototype,n.Events,a.Requests,{reset:function(){return this.off(),this.stopListening(),this.stopReplying(),this}});var f,h,d=[n.Events,a.Requests];return e.each(d,function(n){e.each(n,function(n,t){a[t]=function(n){return h=e.rest(arguments),f=this.channel(n),f[t].apply(f,h)}})}),a.reset=function(n){var t=n?[this._channels[n]]:this._channels;e.invoke(t,\"reset\")},a});','a7b6ff489a9ebe4a40fe7db3c19e97e0-scripts','','publish','closed','closed','','a7b6ff489a9ebe4a40fe7db3c19e97e0-scripts','','','2022-09-12 15:51:43','2022-09-12 13:51:43','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1207',0,'wphb_minify_group','',0),(1208,0,'2022-09-12 15:51:44','2022-09-12 13:51:44','/**handles:wp-hooks,wp-i18n**/\r\n/*! This file is auto-generated */\n!function(){\"use strict\";var n={d:function(t,r){for(var e in r)n.o(r,e)&amp;&amp;!n.o(t,e)&amp;&amp;Object.defineProperty(t,e,{enumerable:!0,get:r[e]})},o:function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r:function(n){\"undefined\"!=typeof Symbol&amp;&amp;Symbol.toStringTag&amp;&amp;Object.defineProperty(n,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(n,\"__esModule\",{value:!0})}},t={};n.r(t),n.d(t,{actions:function(){return S},addAction:function(){return v},addFilter:function(){return m},applyFilters:function(){return k},createHooks:function(){return h},currentAction:function(){return w},currentFilter:function(){return I},defaultHooks:function(){return f},didAction:function(){return O},didFilter:function(){return j},doAction:function(){return b},doingAction:function(){return x},doingFilter:function(){return T},filters:function(){return z},hasAction:function(){return _},hasFilter:function(){return g},removeAction:function(){return p},removeAllActions:function(){return y},removeAllFilters:function(){return F},removeFilter:function(){return A}});var r=function(n){return\"string\"!=typeof n||\"\"===n?(console.error(\"The namespace must be a non-empty string.\"),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\\-\\/]*$/.test(n)||(console.error(\"The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.\"),!1)};var e=function(n){return\"string\"!=typeof n||\"\"===n?(console.error(\"The hook name must be a non-empty string.\"),!1):/^__/.test(n)?(console.error(\"The hook name cannot begin with `__`.\"),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(n)||(console.error(\"The hook name can only contain numbers, letters, dashes, periods and underscores.\"),!1)};var o=function(n,t){return function(o,i,c){let s=arguments.length&gt;3&amp;&amp;void 0!==arguments[3]?arguments[3]:10;const u=n[t];if(!e(o))return;if(!r(i))return;if(\"function\"!=typeof c)return void console.error(\"The hook callback must be a function.\");if(\"number\"!=typeof s)return void console.error(\"If specified, the hook priority must be a number.\");const l={callback:c,priority:s,namespace:i};if(u[o]){const n=u[o].handlers;let t;for(t=n.length;t&gt;0&amp;&amp;!(s&gt;=n[t-1].priority);t--);t===n.length?n[t]=l:n.splice(t,0,l),u.__current.forEach((n=&gt;{n.name===o&amp;&amp;n.currentIndex&gt;=t&amp;&amp;n.currentIndex++}))}else u[o]={handlers:[l],runs:0};\"hookAdded\"!==o&amp;&amp;n.doAction(\"hookAdded\",o,i,c,s)}};var i=function(n,t){let o=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]&amp;&amp;arguments[2];return function(i,c){const s=n[t];if(!e(i))return;if(!o&amp;&amp;!r(c))return;if(!s[i])return 0;let u=0;if(o)u=s[i].handlers.length,s[i]={runs:s[i].runs,handlers:[]};else{const n=s[i].handlers;for(let t=n.length-1;t&gt;=0;t--)n[t].namespace===c&amp;&amp;(n.splice(t,1),u++,s.__current.forEach((n=&gt;{n.name===i&amp;&amp;n.currentIndex&gt;=t&amp;&amp;n.currentIndex--})))}return\"hookRemoved\"!==i&amp;&amp;n.doAction(\"hookRemoved\",i,c),u}};var c=function(n,t){return function(r,e){const o=n[t];return void 0!==e?r in o&amp;&amp;o[r].handlers.some((n=&gt;n.namespace===e)):r in o}};var s=function(n,t){let r=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]&amp;&amp;arguments[2];return function(e){const o=n[t];o[e]||(o[e]={handlers:[],runs:0}),o[e].runs++;const i=o[e].handlers;for(var c=arguments.length,s=new Array(c&gt;1?c-1:0),u=1;u&lt;c;u++)s[u-1]=arguments[u];if(!i||!i.length)return r?s[0]:void 0;const l={name:e,currentIndex:0};for(o.__current.push(l);l.currentIndex&lt;i.length;){const n=i[l.currentIndex].callback.apply(null,s);r&amp;&amp;(s[0]=n),l.currentIndex++}return o.__current.pop(),r?s[0]:void 0}};var u=function(n,t){return function(){var r,e;const o=n[t];return null!==(r=null===(e=o.__current[o.__current.length-1])||void 0===e?void 0:e.name)&amp;&amp;void 0!==r?r:null}};var l=function(n,t){return function(r){const e=n[t];return void 0===r?void 0!==e.__current[0]:!!e.__current[0]&amp;&amp;r===e.__current[0].name}};var a=function(n,t){return function(r){const o=n[t];if(e(r))return o[r]&amp;&amp;o[r].runs?o[r].runs:0}};class d{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=o(this,&quot;actions&quot;),this.addFilter=o(this,&quot;filters&quot;),this.removeAction=i(this,&quot;actions&quot;),this.removeFilter=i(this,&quot;filters&quot;),this.hasAction=c(this,&quot;actions&quot;),this.hasFilter=c(this,&quot;filters&quot;),this.removeAllActions=i(this,&quot;actions&quot;,!0),this.removeAllFilters=i(this,&quot;filters&quot;,!0),this.doAction=s(this,&quot;actions&quot;),this.applyFilters=s(this,&quot;filters&quot;,!0),this.currentAction=u(this,&quot;actions&quot;),this.currentFilter=u(this,&quot;filters&quot;),this.doingAction=l(this,&quot;actions&quot;),this.doingFilter=l(this,&quot;filters&quot;),this.didAction=a(this,&quot;actions&quot;),this.didFilter=a(this,&quot;filters&quot;)}}var h=function(){return new d};const f=h(),{addAction:v,addFilter:m,removeAction:p,removeFilter:A,hasAction:_,hasFilter:g,removeAllActions:y,removeAllFilters:F,doAction:b,applyFilters:k,currentAction:w,currentFilter:I,doingAction:x,doingFilter:T,didAction:O,didFilter:j,actions:S,filters:z}=f;(window.wp=window.wp||{}).hooks=t}();\r\n/*! This file is auto-generated */\n!function(){var t={9756:function(t){t.exports=function(t,n){var e,r,i=0;function o(){var o,a,s=e,u=arguments.length;t:for(;s;){if(s.args.length===arguments.length){for(a=0;a&lt;u;a++)if(s.args[a]!==arguments[a]){s=s.next;continue t}return s!==e&amp;&amp;(s===r&amp;&amp;(r=s.prev),s.prev.next=s.next,s.next&amp;&amp;(s.next.prev=s.prev),s.next=e,s.prev=null,e.prev=s,e=s),s.val}s=s.next}for(o=new Array(u),a=0;a&lt;u;a++)o[a]=arguments[a];return s={args:o,val:t.apply(null,o)},e?(e.prev=s,s.next=e):r=s,i===n.maxSize?(r=r.prev).next=null:i++,e=s,s.val}return n=n||{},o.clear=function(){e=null,r=null,i=0},o}},124:function(t,n,e){var r;!function(){&quot;use strict&quot;;var i={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|&#039;[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function o(t){return s(l(t),arguments)}function a(t,n){return o.apply(null,[t].concat(n||[]))}function s(t,n){var e,r,a,s,u,l,c,p,f,d=1,h=t.length,g=&quot;&quot;;for(r=0;r&lt;h;r++)if(&quot;string&quot;==typeof t[r])g+=t[r];else if(&quot;object&quot;==typeof t[r]){if((s=t[r]).keys)for(e=n[d],a=0;a<s>=0),s.type){case\"b\":e=parseInt(e,10).toString(2);break;case\"c\":e=String.fromCharCode(parseInt(e,10));break;case\"d\":case\"i\":e=parseInt(e,10);break;case\"j\":e=JSON.stringify(e,null,s.width?parseInt(s.width):0);break;case\"e\":e=s.precision?parseFloat(e).toExponential(s.precision):parseFloat(e).toExponential();break;case\"f\":e=s.precision?parseFloat(e).toFixed(s.precision):parseFloat(e);break;case\"g\":e=s.precision?String(Number(e.toPrecision(s.precision))):parseFloat(e);break;case\"o\":e=(parseInt(e,10)&gt;&gt;&gt;0).toString(8);break;case\"s\":e=String(e),e=s.precision?e.substring(0,s.precision):e;break;case\"t\":e=String(!!e),e=s.precision?e.substring(0,s.precision):e;break;case\"T\":e=Object.prototype.toString.call(e).slice(8,-1).toLowerCase(),e=s.precision?e.substring(0,s.precision):e;break;case\"u\":e=parseInt(e,10)&gt;&gt;&gt;0;break;case\"v\":e=e.valueOf(),e=s.precision?e.substring(0,s.precision):e;break;case\"x\":e=(parseInt(e,10)&gt;&gt;&gt;0).toString(16);break;case\"X\":e=(parseInt(e,10)&gt;&gt;&gt;0).toString(16).toUpperCase()}i.json.test(s.type)?g+=e:(!i.number.test(s.type)||p&amp;&amp;!s.sign?f=\"\":(f=p?\"+\":\"-\",e=e.toString().replace(i.sign,\"\")),l=s.pad_char?\"0\"===s.pad_char?\"0\":s.pad_char.charAt(1):\" \",c=s.width-(f+e).length,u=s.width&amp;&amp;c&gt;0?l.repeat(c):\"\",g+=s.align?f+e+u:\"0\"===l?f+u+e:u+f+e)}return g}var u=Object.create(null);function l(t){if(u[t])return u[t];for(var n,e=t,r=[],o=0;e;){if(null!==(n=i.text.exec(e)))r.push(n[0]);else if(null!==(n=i.modulo.exec(e)))r.push(\"%\");else{if(null===(n=i.placeholder.exec(e)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(n[2]){o|=1;var a=[],s=n[2],l=[];if(null===(l=i.key.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(a.push(l[1]);\"\"!==(s=s.substring(l[0].length));)if(null!==(l=i.key_access.exec(s)))a.push(l[1]);else{if(null===(l=i.index_access.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");a.push(l[1])}n[2]=a}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");r.push({placeholder:n[0],param_no:n[1],keys:n[2],sign:n[3],pad_char:n[4],align:n[5],width:n[6],precision:n[7],type:n[8]})}e=e.substring(n[0].length)}return u[t]=r}n.sprintf=o,n.vsprintf=a,\"undefined\"!=typeof window&amp;&amp;(window.sprintf=o,window.vsprintf=a,void 0===(r=function(){return{sprintf:o,vsprintf:a}}.call(n,e,n,t))||(t.exports=r))}()}},n={};function e(r){var i=n[r];if(void 0!==i)return i.exports;var o=n[r]={exports:{}};return t[r](o,o.exports,e),o.exports}e.n=function(t){var n=t&amp;&amp;t.__esModule?function(){return t.default}:function(){return t};return e.d(n,{a:n}),n},e.d=function(t,n){for(var r in n)e.o(n,r)&amp;&amp;!e.o(t,r)&amp;&amp;Object.defineProperty(t,r,{enumerable:!0,get:n[r]})},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.r=function(t){\"undefined\"!=typeof Symbol&amp;&amp;Symbol.toStringTag&amp;&amp;Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})};var r={};!function(){\"use strict\";e.r(r),e.d(r,{__:function(){return j},_n:function(){return T},_nx:function(){return D},_x:function(){return L},createI18n:function(){return y},defaultI18n:function(){return m},getLocaleData:function(){return w},hasTranslation:function(){return E},isRTL:function(){return O},resetLocaleData:function(){return F},setLocaleData:function(){return k},sprintf:function(){return s},subscribe:function(){return S}});var t=e(9756),n=e.n(t),i=e(124),o=e.n(i);const a=n()(console.error);function s(t){try{for(var n=arguments.length,e=new Array(n&gt;1?n-1:0),r=1;r&lt;n;r++)e[r-1]=arguments[r];return o().sprintf(t,...e)}catch(n){return n instanceof Error&amp;&amp;a(&quot;sprintf error: \\n\\n&quot;+n.toString()),t}}var u,l,c,p;u={&quot;(&quot;:9,&quot;!&quot;:8,&quot;*&quot;:7,&quot;/&quot;:7,&quot;%&quot;:7,&quot;+&quot;:6,&quot;-&quot;:6,&quot;&lt;&quot;:5,&quot;\":5,\"&gt;=\":5,\"==\":4,\"!=\":4,\"&amp;&amp;\":3,\"||\":2,\"?\":1,\"?:\":1},l=[\"(\",\"?\"],c={\")\":[\"(\"],\":\":[\"?\",\"?:\"]},p=/=|==|!=|&amp;&amp;|\\|\\||\\?:|\\(|!|\\*|\\/|%|\\+|-||\\?|\\)|:/;var f={\"!\":function(t){return!t},\"*\":function(t,n){return t*n},\"/\":function(t,n){return t/n},\"%\":function(t,n){return t%n},\"+\":function(t,n){return t+n},\"-\":function(t,n){return t-n},\"&lt;&quot;:function(t,n){return t&lt;n},&quot;&lt;=&quot;:function(t,n){return t\":function(t,n){return t&gt;n},\"&gt;=\":function(t,n){return t&gt;=n},\"==\":function(t,n){return t===n},\"!=\":function(t,n){return t!==n},\"&amp;&amp;\":function(t,n){return t&amp;&amp;n},\"||\":function(t,n){return t||n},\"?:\":function(t,n,e){if(t)throw n;return e}};function d(t){var n=function(t){for(var n,e,r,i,o=[],a=[];n=t.match(p);){for(e=n[0],(r=t.substr(0,n.index).trim())&amp;&amp;o.push(r);i=a.pop();){if(c[e]){if(c[e][0]===i){e=c[e][1]||e;break}}else if(l.indexOf(i)&gt;=0||u[i]&lt;u[e]){a.push(i);break}o.push(i)}c[e]||a.push(e),t=t.substr(n.index+e.length)}return(t=t.trim())&amp;&amp;o.push(t),o.concat(a.reverse())}(t);return function(t){return function(t,n){var e,r,i,o,a,s,u=[];for(e=0;e&lt;t.length;e++){if(a=t[e],o=f[a]){for(r=o.length,i=Array(r);r--;)i[r]=u.pop();try{s=o.apply(null,i)}catch(t){return t}}else s=n.hasOwnProperty(a)?n[a]:+a;u.push(s)}return u[0]}(n,t)}}var h={contextDelimiter:&quot;&quot;,onMissingKey:null};function g(t,n){var e;for(e in this.data=t,this.pluralForms={},this.options={},h)this.options[e]=void 0!==n&amp;&amp;e in n?n[e]:h[e]}g.prototype.getPluralForm=function(t,n){var e,r,i,o=this.pluralForms[t];return o||(&quot;function&quot;!=typeof(i=(e=this.data[t][&quot;&quot;])[&quot;Plural-Forms&quot;]||e[&quot;plural-forms&quot;]||e.plural_forms)&amp;&amp;(r=function(t){var n,e,r;for(n=t.split(&quot;;&quot;),e=0;e1===t?0:1},x=/^i18n\\.(n?gettext|has_translation)(_|$)/,y=(t,n,e)=&gt;{const r=new g({}),i=new Set,o=()=&gt;{i.forEach((t=&gt;t()))},a=function(t){var n;let e=arguments.length&gt;1&amp;&amp;void 0!==arguments[1]?arguments[1]:\"default\";r.data[e]={...r.data[e],...t},r.data[e][\"\"]={...v,...null===(n=r.data[e])||void 0===n?void 0:n[\"\"]},delete r.pluralForms[e]},s=(t,n)=&gt;{a(t,n),o()},u=function(){let t=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:\"default\",n=arguments.length&gt;1?arguments[1]:void 0,e=arguments.length&gt;2?arguments[2]:void 0,i=arguments.length&gt;3?arguments[3]:void 0,o=arguments.length&gt;4?arguments[4]:void 0;return r.data[t]||a(void 0,t),r.dcnpgettext(t,n,e,i,o)},l=function(){let t=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:\"default\";return t},c=(t,n,r)=&gt;{let i=u(r,n,t);return e?(i=e.applyFilters(\"i18n.gettext_with_context\",i,t,n,r),e.applyFilters(\"i18n.gettext_with_context_\"+l(r),i,t,n,r)):i};if(t&amp;&amp;s(t,n),e){const t=t=&gt;{x.test(t)&amp;&amp;o()};e.addAction(\"hookAdded\",\"core/i18n\",t),e.addAction(\"hookRemoved\",\"core/i18n\",t)}return{getLocaleData:function(){let t=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:\"default\";return r.data[t]},setLocaleData:s,addLocaleData:function(t){var n;let e=arguments.length&gt;1&amp;&amp;void 0!==arguments[1]?arguments[1]:\"default\";r.data[e]={...r.data[e],...t,\"\":{...v,...null===(n=r.data[e])||void 0===n?void 0:n[\"\"],...null==t?void 0:t[\"\"]}},delete r.pluralForms[e],o()},resetLocaleData:(t,n)=&gt;{r.data={},r.pluralForms={},s(t,n)},subscribe:t=&gt;(i.add(t),()=&gt;i.delete(t)),__:(t,n)=&gt;{let r=u(n,void 0,t);return e?(r=e.applyFilters(\"i18n.gettext\",r,t,n),e.applyFilters(\"i18n.gettext_\"+l(n),r,t,n)):r},_x:c,_n:(t,n,r,i)=&gt;{let o=u(i,void 0,t,n,r);return e?(o=e.applyFilters(\"i18n.ngettext\",o,t,n,r,i),e.applyFilters(\"i18n.ngettext_\"+l(i),o,t,n,r,i)):o},_nx:(t,n,r,i,o)=&gt;{let a=u(o,i,t,n,r);return e?(a=e.applyFilters(\"i18n.ngettext_with_context\",a,t,n,r,i,o),e.applyFilters(\"i18n.ngettext_with_context_\"+l(o),a,t,n,r,i,o)):a},isRTL:()=&gt;\"rtl\"===c(\"ltr\",\"text direction\"),hasTranslation:(t,n,i)=&gt;{var o,a;const s=n?n+\"\"+t:t;let u=!(null===(o=r.data)||void 0===o||null===(a=o[null!=i?i:\"default\"])||void 0===a||!a[s]);return e&amp;&amp;(u=e.applyFilters(\"i18n.has_translation\",u,t,n,i),u=e.applyFilters(\"i18n.has_translation_\"+l(i),u,t,n,i)),u}}};var b=window.wp.hooks;const _=y(void 0,void 0,b.defaultHooks);var m=_;const w=_.getLocaleData.bind(_),k=_.setLocaleData.bind(_),F=_.resetLocaleData.bind(_),S=_.subscribe.bind(_),j=_.__.bind(_),L=_._x.bind(_),T=_._n.bind(_),D=_._nx.bind(_),O=_.isRTL.bind(_),E=_.hasTranslation.bind(_)}(),(window.wp=window.wp||{}).i18n=r}();','c2d5dbccba7458907fa773ec9e24d1c1-scripts','','publish','closed','closed','','c2d5dbccba7458907fa773ec9e24d1c1-scripts','','','2022-09-12 15:51:44','2022-09-12 13:51:44','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1208',0,'wphb_minify_group','',0),(1209,0,'2022-09-12 15:51:44','2022-09-12 13:51:44','/**handles:smush-lazy-load**/\r\n!function(){var e={90:function(e){!function(t,n){var a=function(e,t,n){\"use strict\";var a,i;if(function(){var t,n={lazyClass:\"lazyload\",loadedClass:\"lazyloaded\",loadingClass:\"lazyloading\",preloadClass:\"lazypreload\",errorClass:\"lazyerror\",autosizesClass:\"lazyautosizes\",fastLoadedClass:\"ls-is-cached\",iframeLoadMode:0,srcAttr:\"data-src\",srcsetAttr:\"data-srcset\",sizesAttr:\"data-sizes\",minSize:40,customMedia:{},init:!0,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:!0,ricTimeout:0,throttleDelay:125};for(t in i=e.lazySizesConfig||e.lazysizesConfig||{},n)t in i||(i[t]=n[t])}(),!t||!t.getElementsByClassName)return{init:function(){},cfg:i,noSupport:!0};var r=t.documentElement,o=e.HTMLPictureElement,s=\"addEventListener\",l=\"getAttribute\",c=e[s].bind(e),d=e.setTimeout,u=e.requestAnimationFrame||d,f=e.requestIdleCallback,m=/^picture$/i,v=[\"load\",\"error\",\"lazyincluded\",\"_lazyloaded\"],y={},h=Array.prototype.forEach,z=function(e,t){return y[t]||(y[t]=new RegExp(\"(\\\\s|^)\"+t+\"(\\\\s|$)\")),y[t].test(e[l](\"class\")||\"\")&amp;&amp;y[t]},p=function(e,t){z(e,t)||e.setAttribute(\"class\",(e[l](\"class\")||\"\").trim()+\" \"+t)},g=function(e,t){var n;(n=z(e,t))&amp;&amp;e.setAttribute(\"class\",(e[l](\"class\")||\"\").replace(n,\" \"))},C=function(e,t,n){var a=n?s:\"removeEventListener\";n&amp;&amp;C(e,t),v.forEach((function(n){e[a](n,t)}))},b=function(e,n,i,r,o){var s=t.createEvent(\"Event\");return i||(i={}),i.instance=a,s.initEvent(n,!r,!o),s.detail=i,e.dispatchEvent(s),s},A=function(t,n){var a;!o&amp;&amp;(a=e.picturefill||i.pf)?(n&amp;&amp;n.src&amp;&amp;!t[l](\"srcset\")&amp;&amp;t.setAttribute(\"srcset\",n.src),a({reevaluate:!0,elements:[t]})):n&amp;&amp;n.src&amp;&amp;(t.src=n.src)},E=function(e,t){return(getComputedStyle(e,null)||{})[t]},_=function(e,t,n){for(n=n||e.offsetWidth;n<i>49?function(){f(s,{timeout:o}),o!==i.ricTimeout&amp;&amp;(o=i.ricTimeout)}:M((function(){d(s)}),!0);return function(e){var i;(e=!0===e)&amp;&amp;(o=33),t||(t=!0,(i=r-(n.now()-a))&lt;0&amp;&amp;(i=0),e||i&lt;9?l():d(l,i))}},x=function(e){var t,a,i=99,r=function(){t=null,e()},o=function(){var e=n.now()-a;e&lt;i?d(o,i-e):(f||r)(r)};return function(){a=n.now(),t||(t=d(o,i))}},L=(K=/^img$/i,Q=/^iframe$/i,V=&quot;onscroll&quot;in e&amp;&amp;!/(gle|ing)bot/.test(navigator.userAgent),X=0,Y=0,Z=0,ee=-1,te=function(e){Z--,(!e||Z0)&amp;&amp;\"visible\"!=E(i,\"overflow\")&amp;&amp;(a=i.getBoundingClientRect(),o=U&gt;a.left&amp;&amp;j<a>a.top-1&amp;&amp;I&lt;a.bottom+1);return o},ie=function(){var e,n,o,s,c,d,u,f,m,v,y,h,z=a.elements;if((k=i.loadMode)&amp;&amp;Z&lt;8&amp;&amp;(e=z.length)){for(n=0,ee++;n&lt;e;n++)if(z[n]&amp;&amp;!z[n]._lazyRace)if(!V||a.prematureUnveil&amp;&amp;a.prematureUnveil(z[n]))fe(z[n]);else if((f=z[n][l](&quot;data-expand&quot;))&amp;&amp;(d=1*f)||(d=Y),v||(v=!i.expand||i.expand500&amp;&amp;r.clientWidth&gt;500?500:370:i.expand,a._defEx=v,y=v*i.expFactor,h=i.hFac,J=null,Y&lt;y&amp;&amp;Z2&amp;&amp;k&gt;2&amp;&amp;!t.hidden?(Y=y,ee=0):Y=k&gt;1&amp;&amp;ee&gt;1&amp;&amp;Z=u&amp;&amp;(I=o.top)=u*h&amp;&amp;(j=o.left)&lt;=$&amp;&amp;(G||U||j||I)&amp;&amp;(i.loadHidden||ne(z[n]))&amp;&amp;(P&amp;&amp;Z&lt;3&amp;&amp;!f&amp;&amp;(k&lt;3||ee9)break}else!c&amp;&amp;P&amp;&amp;!s&amp;&amp;Z&lt;4&amp;&amp;ee2&amp;&amp;(R[0]||i.preloadAfterLoad)&amp;&amp;(R[0]||!f&amp;&amp;(G||U||j||I||\"auto\"!=z[n][l](i.sizesAttr)))&amp;&amp;(s=R[0]||z[n]);s&amp;&amp;!c&amp;&amp;fe(s)}},re=N(ie),oe=function(e){var t=e.target;t._lazyCache?delete t._lazyCache:(te(e),p(t,i.loadedClass),g(t,i.loadingClass),C(t,le),b(t,\"lazyloaded\"))},se=M(oe),le=function(e){se({target:e.target})},ce=function(e,t){var n=e.getAttribute(\"data-load-mode\")||i.iframeLoadMode;0==n?e.contentWindow.location.replace(t):1==n&amp;&amp;(e.src=t)},de=function(e){var t,n=e[l](i.srcsetAttr);(t=i.customMedia[e[l](\"data-media\")||e[l](\"media\")])&amp;&amp;e.setAttribute(\"media\",t),n&amp;&amp;e.setAttribute(\"srcset\",n)},ue=M((function(e,t,n,a,r){var o,s,c,u,f,v;(f=b(e,\"lazybeforeunveil\",t)).defaultPrevented||(a&amp;&amp;(n?p(e,i.autosizesClass):e.setAttribute(\"sizes\",a)),s=e[l](i.srcsetAttr),o=e[l](i.srcAttr),r&amp;&amp;(u=(c=e.parentNode)&amp;&amp;m.test(c.nodeName||\"\")),v=t.firesLoad||\"src\"in e&amp;&amp;(s||o||u),f={target:e},p(e,i.loadingClass),v&amp;&amp;(clearTimeout(D),D=d(te,2500),C(e,le,!0)),u&amp;&amp;h.call(c.getElementsByTagName(\"source\"),de),s?e.setAttribute(\"srcset\",s):o&amp;&amp;!u&amp;&amp;(Q.test(e.nodeName)?ce(e,o):e.src=o),r&amp;&amp;(s||u)&amp;&amp;A(e,{src:o})),e._lazyRace&amp;&amp;delete e._lazyRace,g(e,i.lazyClass),w((function(){var t=e.complete&amp;&amp;e.naturalWidth&gt;1;v&amp;&amp;!t||(t&amp;&amp;p(e,i.fastLoadedClass),oe(f),e._lazyCache=!0,d((function(){\"_lazyCache\"in e&amp;&amp;delete e._lazyCache}),9)),\"lazy\"==e.loading&amp;&amp;Z--}),!0)})),fe=function(e){if(!e._lazyRace){var t,n=K.test(e.nodeName),a=n&amp;&amp;(e[l](i.sizesAttr)||e[l](\"sizes\")),r=\"auto\"==a;(!r&amp;&amp;P||!n||!e[l](\"src\")&amp;&amp;!e.srcset||e.complete||z(e,i.errorClass)||!z(e,i.lazyClass))&amp;&amp;(t=b(e,\"lazyunveilread\").detail,r&amp;&amp;W.updateElem(e,!0,e.offsetWidth),e._lazyRace=!0,Z++,ue(e,t,r,a,n))}},me=x((function(){i.loadMode=3,re()})),ve=function(){3==i.loadMode&amp;&amp;(i.loadMode=2),me()},ye=function(){P||(n.now()-H&lt;999?d(ye,999):(P=!0,i.loadMode=3,re(),c(&quot;scroll&quot;,ve,!0)))},{_:function(){H=n.now(),a.elements=t.getElementsByClassName(i.lazyClass),R=t.getElementsByClassName(i.lazyClass+&quot; &quot;+i.preloadClass),c(&quot;scroll&quot;,re,!0),c(&quot;resize&quot;,re,!0),c(&quot;pageshow&quot;,(function(e){if(e.persisted){var n=t.querySelectorAll(&quot;.&quot;+i.loadingClass);n.length&amp;&amp;n.forEach&amp;&amp;u((function(){n.forEach((function(e){e.complete&amp;&amp;fe(e)}))}))}})),e.MutationObserver?new MutationObserver(re).observe(r,{childList:!0,subtree:!0,attributes:!0}):(r[s](&quot;DOMNodeInserted&quot;,re,!0),r[s](&quot;DOMAttrModified&quot;,re,!0),setInterval(re,999)),c(&quot;hashchange&quot;,re,!0),[&quot;focus&quot;,&quot;mouseover&quot;,&quot;click&quot;,&quot;load&quot;,&quot;transitionend&quot;,&quot;animationend&quot;].forEach((function(e){t[s](e,re,!0)})),/d$|^c/.test(t.readyState)?ye():(c(&quot;load&quot;,ye),t[s](&quot;DOMContentLoaded&quot;,re),d(ye,2e4)),a.elements.length?(ie(),w._lsFlush()):re()},checkElems:re,unveil:fe,_aLSL:ve}),W=(T=M((function(e,t,n,a){var i,r,o;if(e._lazysizesWidth=a,a+=&quot;px&quot;,e.setAttribute(&quot;sizes&quot;,a),m.test(t.nodeName||&quot;&quot;))for(r=0,o=(i=t.getElementsByTagName(&quot;source&quot;)).length;r&lt;o;r++)i[r].setAttribute(&quot;sizes&quot;,a);n.detail.dataAttr||A(e,n.detail)})),F=function(e,t,n){var a,i=e.parentNode;i&amp;&amp;(n=_(e,i,n),(a=b(e,&quot;lazybeforesizes&quot;,{width:n,dataAttr:!!t})).defaultPrevented||(n=a.detail.width)&amp;&amp;n!==e._lazysizesWidth&amp;&amp;T(e,i,a,n))},O=x((function(){var e,t=B.length;if(t)for(e=0;e&lt;t;e++)F(B[e])})),{_:function(){B=t.getElementsByClassName(i.autosizesClass),c(&quot;resize&quot;,O)},checkElems:O,updateElem:F}),S=function(){!S.i&amp;&amp;t.getElementsByClassName&amp;&amp;(S.i=!0,W._(),L._())};var B,T,F,O;var R,P,D,k,H,$,q,I,j,U,G,J,K,Q,V,X,Y,Z,ee,te,ne,ae,ie,re,oe,se,le,ce,de,ue,fe,me,ve,ye;var he,ze,pe,ge,Ce,be,Ae;return d((function(){i.init&amp;&amp;S()})),a={cfg:i,autoSizer:W,loader:L,init:S,uP:A,aC:p,rC:g,hC:z,fire:b,gW:_,rAF:w}}(t,t.document,Date);t.lazySizes=a,e.exports&amp;&amp;(e.exports=a)}(&quot;undefined&quot;!=typeof window?window:{})}},t={};function n(a){var i=t[a];if(void 0!==i)return i.exports;var r=t[a]={exports:{}};return e[a](r,r.exports,n),r.exports}n.n=function(e){var t=e&amp;&amp;e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var a in t)n.o(t,a)&amp;&amp;!n.o(e,a)&amp;&amp;Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){&quot;use strict&quot;;var e=n(90);n.n(e)().init()}()}();\n//# sourceMappingURL=smush-lazy-load.min.js.map','a36869448d6f94a774a536d94fcf7464-scripts','','publish','closed','closed','','a36869448d6f94a774a536d94fcf7464-scripts','','','2022-09-12 15:51:44','2022-09-12 13:51:44','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1209',0,'wphb_minify_group','',0),(1210,0,'2022-09-12 15:51:45','2022-09-12 13:51:45','/**handles:elementor-frontend-modules,elementor-waypoints,elementor-frontend,elementor-admin-bar**/\r\n/*! elementor - v3.7.4 - 31-08-2022 */\n(self.webpackChunkelementor=self.webpackChunkelementor||[]).push([[354],{381:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;t.default=(e,t)=&gt;{t=Array.isArray(t)?t:[t];for(const r of t)if(e.constructor.name===r.prototype[Symbol.toStringTag])return!0;return!1}},8135:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class _default extends elementorModules.ViewModule{getDefaultSettings(){return{selectors:{elements:\".elementor-element\",nestedDocumentElements:\".elementor .elementor-element\"},classes:{editMode:\"elementor-edit-mode\"}}}getDefaultElements(){const e=this.getSettings(\"selectors\");return{$elements:this.$element.find(e.elements).not(this.$element.find(e.nestedDocumentElements))}}getDocumentSettings(e){let t;if(this.isEdit){t={};const e=elementor.settings.page.model;jQuery.each(e.getActiveControls(),(r=&gt;{t[r]=e.attributes[r]}))}else t=this.$element.data(\"elementor-settings\")||{};return this.getItems(t,e)}runElementsHandlers(){this.elements.$elements.each(((e,t)=&gt;elementorFrontend.elementsHandler.runReadyTrigger(t)))}onInit(){this.$element=this.getSettings(\"$element\"),super.onInit(),this.isEdit=this.$element.hasClass(this.getSettings(\"classes.editMode\")),this.isEdit?elementor.on(\"document:loaded\",(()=&gt;{elementor.settings.page.model.on(\"change\",this.onSettingsChange.bind(this))})):this.runElementsHandlers()}onSettingsChange(){}}t.default=_default},2821:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(3090));class SwiperHandlerBase extends o.default{getInitialSlide(){const e=this.getEditSettings();return e.activeItemIndex?e.activeItemIndex-1:0}getSlidesCount(){return this.elements.$slides.length}togglePauseOnHover(e){e?this.elements.$swiperContainer.on({mouseenter:()=&gt;{this.swiper.autoplay.stop()},mouseleave:()=&gt;{this.swiper.autoplay.start()}}):this.elements.$swiperContainer.off(\"mouseenter mouseleave\")}handleKenBurns(){const e=this.getSettings();this.$activeImageBg&amp;&amp;this.$activeImageBg.removeClass(e.classes.kenBurnsActive),this.activeItemIndex=this.swiper?this.swiper.activeIndex:this.getInitialSlide(),this.swiper?this.$activeImageBg=jQuery(this.swiper.slides[this.activeItemIndex]).children(\".\"+e.classes.slideBackground):this.$activeImageBg=jQuery(this.elements.$slides[0]).children(\".\"+e.classes.slideBackground),this.$activeImageBg.addClass(e.classes.kenBurnsActive)}}t.default=SwiperHandlerBase},3090:e=&gt;{\"use strict\";e.exports=elementorModules.ViewModule.extend({$element:null,editorListeners:null,onElementChange:null,onEditSettingsChange:null,onPageSettingsChange:null,isEdit:null,__construct(e){this.isActive(e)&amp;&amp;(this.$element=e.$element,this.isEdit=this.$element.hasClass(\"elementor-element-edit-mode\"),this.isEdit&amp;&amp;this.addEditorListeners())},isActive:()=&gt;!0,findElement(e){var t=this.$element;return t.find(e).filter((function(){return jQuery(this).parent().closest(\".elementor-element\").is(t)}))},getUniqueHandlerID(e,t){return e||(e=this.getModelCID()),t||(t=this.$element),e+t.attr(\"data-element_type\")+this.getConstructorID()},initEditorListeners(){var e=this;if(e.editorListeners=[{event:\"element:destroy\",to:elementor.channels.data,callback(t){t.cid===e.getModelCID()&amp;&amp;e.onDestroy()}}],e.onElementChange){const t=e.getWidgetType()||e.getElementType();let r=\"change\";\"global\"!==t&amp;&amp;(r+=\":\"+t),e.editorListeners.push({event:r,to:elementor.channels.editor,callback(t,r){e.getUniqueHandlerID(r.model.cid,r.$el)===e.getUniqueHandlerID()&amp;&amp;e.onElementChange(t.model.get(\"name\"),t,r)}})}e.onEditSettingsChange&amp;&amp;e.editorListeners.push({event:\"change:editSettings\",to:elementor.channels.editor,callback(t,r){if(r.model.cid!==e.getModelCID())return;const n=Object.keys(t.changed)[0];e.onEditSettingsChange(n,t.changed[n])}}),[\"page\"].forEach((function(t){var r=\"on\"+t[0].toUpperCase()+t.slice(1)+\"SettingsChange\";e[r]&amp;&amp;e.editorListeners.push({event:\"change\",to:elementor.settings[t].model,callback(t){e[r](t.changed)}})}))},getEditorListeners(){return this.editorListeners||this.initEditorListeners(),this.editorListeners},addEditorListeners(){var e=this.getUniqueHandlerID();this.getEditorListeners().forEach((function(t){elementorFrontend.addListenerOnce(e,t.event,t.callback,t.to)}))},removeEditorListeners(){var e=this.getUniqueHandlerID();this.getEditorListeners().forEach((function(t){elementorFrontend.removeListeners(e,t.event,null,t.to)}))},getElementType(){return this.$element.data(\"element_type\")},getWidgetType(){const e=this.$element.data(\"widget_type\");if(e)return e.split(\".\")[0]},getID(){return this.$element.data(\"id\")},getModelCID(){return this.$element.data(\"model-cid\")},getElementSettings(e){let t={};const r=this.getModelCID();if(this.isEdit&amp;&amp;r){const e=elementorFrontend.config.elements.data[r],n=e.attributes;let o=n.widgetType||n.elType;n.isInner&amp;&amp;(o=\"inner-\"+o);let i=elementorFrontend.config.elements.keys[o];i||(i=elementorFrontend.config.elements.keys[o]=[],jQuery.each(e.controls,((e,t)=&gt;{t.frontend_available&amp;&amp;i.push(e)}))),jQuery.each(e.getActiveControls(),(function(e){if(-1!==i.indexOf(e)){let r=n[e];r.toJSON&amp;&amp;(r=r.toJSON()),t[e]=r}}))}else t=this.$element.data(\"settings\")||{};return this.getItems(t,e)},getEditSettings(e){var t={};return this.isEdit&amp;&amp;(t=elementorFrontend.config.elements.editSettings[this.getModelCID()].attributes),this.getItems(t,e)},getCurrentDeviceSetting(e){return elementorFrontend.getCurrentDeviceSetting(this.getElementSettings(),e)},onInit(){this.isActive(this.getSettings())&amp;&amp;elementorModules.ViewModule.prototype.onInit.apply(this,arguments)},onDestroy(){this.isEdit&amp;&amp;this.removeEditorListeners(),this.unbindEvents&amp;&amp;this.unbindEvents()}})},6412:(e,t,r)=&gt;{\"use strict\";var n=r(3203),o=n(r(5955)),i=n(r(8135)),s=n(r(5658)),a=n(r(3090)),u=n(r(2821));o.default.frontend={Document:i.default,tools:{StretchElement:s.default},handlers:{Base:a.default,SwiperBase:u.default}}},5658:e=&gt;{\"use strict\";e.exports=elementorModules.ViewModule.extend({getDefaultSettings:()=&gt;({element:null,direction:elementorFrontend.config.is_rtl?\"right\":\"left\",selectors:{container:window}}),getDefaultElements(){return{$element:jQuery(this.getSettings(\"element\"))}},stretch(){var e,t=this.getSettings(\"selectors.container\");try{e=jQuery(t)}catch(e){}e&amp;&amp;e.length||(e=jQuery(this.getDefaultSettings().selectors.container)),this.reset();var r=this.elements.$element,n=e.innerWidth(),o=r.offset().left,i=\"fixed\"===r.css(\"position\"),s=i?0:o;if(window!==e[0]){var a=e.offset().left;i&amp;&amp;(s=a),o&gt;a&amp;&amp;(s=o-a)}i||(elementorFrontend.config.is_rtl&amp;&amp;(s=n-(r.outerWidth()+s)),s=-s);var u={};u.width=n+\"px\",u[this.getSettings(\"direction\")]=s+\"px\",r.css(u)},reset(){var e={width:\"\"};e[this.getSettings(\"direction\")]=\"\",this.elements.$element.css(e)}})},2618:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0,r(740);var o=n(r(7597)),i=n(r(381));class ArgsObject extends o.default{static getInstanceType(){return\"ArgsObject\"}constructor(e){super(),this.args=e}requireArgument(e){let t=arguments.length&gt;1&amp;&amp;void 0!==arguments[1]?arguments[1]:this.args;if(!Object.prototype.hasOwnProperty.call(t,e))throw Error(`${e} is required.`)}requireArgumentType(e,t){let r=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(e,r),typeof r[e]!==t)throw Error(`${e} invalid type: ${t}.`)}requireArgumentInstance(e,t){let r=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(e,r),!(r[e]instanceof t||(0,i.default)(r[e],t)))throw Error(`${e} invalid instance.`)}requireArgumentConstructor(e,t){let r=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(e,r),r[e].constructor.toString()!==t.prototype.constructor.toString())throw Error(`${e} invalid constructor type.`)}}t.default=ArgsObject},869:(e,t,r)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=t.ForceMethodImplementation=void 0,r(740),r(5623);class ForceMethodImplementation extends Error{constructor(){let e=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=arguments.length&gt;1&amp;&amp;void 0!==arguments[1]?arguments[1]:{};super(`${e.isStatic?\"static \":\"\"}${e.fullName}() should be implemented, please provide \'${e.functionName||e.fullName}\' functionality.`,t),Object.keys(t).length&amp;&amp;console.error(t),Error.captureStackTrace(this,ForceMethodImplementation)}}t.ForceMethodImplementation=ForceMethodImplementation;t.default=e=&gt;{const t=Error().stack.split(\"\\n\")[2].trim(),r=t.startsWith(\"at new\")?\"constructor\":t.split(\" \")[1],n={};if(n.functionName=r,n.fullName=r,n.functionName.includes(\".\")){const e=n.functionName.split(\".\");n.className=e[0],n.functionName=e[1]}else n.isStatic=!0;throw new ForceMethodImplementation(n,e)}},7597:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class InstanceType{static[Symbol.hasInstance](e){let t=super[Symbol.hasInstance](e);if(e&amp;&amp;!e.constructor.getInstanceType)return t;if(e&amp;&amp;(e.instanceTypes||(e.instanceTypes=[]),t||this.getInstanceType()===e.constructor.getInstanceType()&amp;&amp;(t=!0),t)){const t=this.getInstanceType===InstanceType.getInstanceType?\"BaseInstanceType\":this.getInstanceType();-1===e.instanceTypes.indexOf(t)&amp;&amp;e.instanceTypes.push(t)}return!t&amp;&amp;e&amp;&amp;(t=e.instanceTypes&amp;&amp;Array.isArray(e.instanceTypes)&amp;&amp;-1!==e.instanceTypes.indexOf(this.getInstanceType())),t}static getInstanceType(){elementorModules.ForceMethodImplementation()}constructor(){let e=new.target;const t=[];for(;e.__proto__&amp;&amp;e.__proto__.name;)t.push(e.__proto__),e=e.__proto__;t.reverse().forEach((e=&gt;this instanceof e))}}t.default=InstanceType},1192:(e,t,r)=&gt;{\"use strict\";r(740);const Module=function(){const e=jQuery,t=arguments,r=this,n={};let o;const ensureClosureMethods=function(){e.each(r,(function(e){const t=r[e];\"function\"==typeof t&amp;&amp;(r[e]=function(){return t.apply(r,arguments)})}))},initSettings=function(){o=r.getDefaultSettings();const n=t[0];n&amp;&amp;e.extend(!0,o,n)},init=function(){r.__construct.apply(r,t),ensureClosureMethods(),initSettings(),r.trigger(\"init\")};this.getItems=function(e,t){if(t){const r=t.split(\".\"),n=r.splice(0,1);if(!r.length)return e[n];if(!e[n])return;return this.getItems(e[n],r.join(\".\"))}return e},this.getSettings=function(e){return this.getItems(o,e)},this.setSettings=function(t,n,i){if(i||(i=o),\"object\"==typeof t)return e.extend(i,t),r;const s=t.split(\".\"),a=s.splice(0,1);return s.length?(i[a]||(i[a]={}),r.setSettings(s.join(\".\"),n,i[a])):(i[a]=n,r)},this.getErrorMessage=function(e,t){let r;if(\"forceMethodImplementation\"===e)r=`The method \'${t}\' must to be implemented in the inheritor child.`;else r=\"An error occurs\";return r},this.forceMethodImplementation=function(e){throw new Error(this.getErrorMessage(\"forceMethodImplementation\",e))},this.on=function(t,o){if(\"object\"==typeof t)return e.each(t,(function(e){r.on(e,this)})),r;return t.split(\" \").forEach((function(e){n[e]||(n[e]=[]),n[e].push(o)})),r},this.off=function(e,t){if(!n[e])return r;if(!t)return delete n[e],r;const o=n[e].indexOf(t);return-1!==o&amp;&amp;(delete n[e][o],n[e]=n[e].filter((e=&gt;e))),r},this.trigger=function(t){const o=\"on\"+t[0].toUpperCase()+t.slice(1),i=Array.prototype.slice.call(arguments,1);r[o]&amp;&amp;r[o].apply(r,i);const s=n[t];return s?(e.each(s,(function(e,t){t.apply(r,i)})),r):r},init()};Module.prototype.__construct=function(){},Module.prototype.getDefaultSettings=function(){return{}},Module.prototype.getConstructorID=function(){return this.constructor.name},Module.extend=function(e){const t=jQuery,r=this,child=function(){return r.apply(this,arguments)};return t.extend(child,r),(child.prototype=Object.create(t.extend({},r.prototype,e))).constructor=child,child.__super__=r.prototype,child},e.exports=Module},6516:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(2640)).default.extend({getDefaultSettings:()=&gt;({container:null,items:null,columnsCount:3,verticalSpaceBetween:30}),getDefaultElements(){return{$container:jQuery(this.getSettings(\"container\")),$items:jQuery(this.getSettings(\"items\"))}},run(){var e=[],t=this.elements.$container.position().top,r=this.getSettings(),n=r.columnsCount;t+=parseInt(this.elements.$container.css(\"margin-top\"),10),this.elements.$items.each((function(o){var i=Math.floor(o/n),s=jQuery(this),a=s[0].getBoundingClientRect().height+r.verticalSpaceBetween;if(i){var u=s.position(),c=o%n,l=u.top-t-e[c];l-=parseInt(s.css(\"margin-top\"),10),l*=-1,s.css(\"margin-top\",l+\"px\"),e[c]+=a}else e.push(a)}))}});t.default=o},400:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;t.default=class Scroll{static scrollObserver(e){let t=0;const r={root:e.root||null,rootMargin:e.offset||\"0px\",threshold:function(){let e=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:0;const t=[];if(e&gt;0&amp;&amp;e&lt;=100){const r=100/e;for(let e=0;e&lt;=100;e+=r)t.push(e/100)}else t.push(0);return t}(e.sensitivity)};return new IntersectionObserver((function handleIntersect(r){const n=r[0].boundingClientRect.y,o=r[0].isIntersecting,i=n1&amp;&amp;void 0!==arguments[1]?arguments[1]:{};const r=e[0].getBoundingClientRect(),n=t.start||0,o=t.end||0,i=window.innerHeight*n/100,s=window.innerHeight*o/100,a=r.top-window.innerHeight,u=0-a+i,c=r.top+i+e.height()-a+s,l=Math.max(0,Math.min(u/c,1));return parseFloat((100*l).toFixed(2))}static getPageScrollPercentage(){let e=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=arguments.length&gt;1?arguments[1]:void 0;const r=e.start||0,n=e.end||0,o=t||document.documentElement.scrollHeight-document.documentElement.clientHeight,i=o*r/100,s=o+i+o*n/100;return(document.documentElement.scrollTop+document.body.scrollTop+i)/s*100}}},2640:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(1192)).default.extend({elements:null,getDefaultElements:()=&gt;({}),bindEvents(){},onInit(){this.initElements(),this.bindEvents()},initElements(){this.elements=this.getDefaultElements()}});t.default=o},5955:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(1192)),i=n(r(2640)),s=n(r(2618)),a=n(r(6516)),u=n(r(400)),c=n(r(869)),l=window.elementorModules={Module:o.default,ViewModule:i.default,ArgsObject:s.default,ForceMethodImplementation:c.default,utils:{Masonry:a.default,Scroll:u.default}};t.default=l},5089:(e,t,r)=&gt;{var n=r(930),o=r(9268),i=TypeError;e.exports=function(e){if(n(e))return e;throw i(o(e)+\" is not a function\")}},1378:(e,t,r)=&gt;{var n=r(930),o=String,i=TypeError;e.exports=function(e){if(\"object\"==typeof e||n(e))return e;throw i(\"Can\'t set \"+o(e)+\" as a prototype\")}},8669:(e,t,r)=&gt;{var n=r(211),o=r(4710),i=r(7826).f,s=n(\"unscopables\"),a=Array.prototype;null==a[s]&amp;&amp;i(a,s,{configurable:!0,value:o(null)}),e.exports=function(e){a[s][e]=!0}},6112:(e,t,r)=&gt;{var n=r(8759),o=String,i=TypeError;e.exports=function(e){if(n(e))return e;throw i(o(e)+\" is not an object\")}},6198:(e,t,r)=&gt;{var n=r(4088),o=r(7740),i=r(2871),createMethod=function(e){return function(t,r,s){var a,u=n(t),c=i(u),l=o(s,c);if(e&amp;&amp;r!=r){for(;c&gt;l;)if((a=u[l++])!=a)return!0}else for(;c&gt;l;l++)if((e||l in u)&amp;&amp;u[l]===r)return e||l||0;return!e&amp;&amp;-1}};e.exports={includes:createMethod(!0),indexOf:createMethod(!1)}},2306:(e,t,r)=&gt;{var n=r(8240),o=n({}.toString),i=n(\"\".slice);e.exports=function(e){return i(o(e),8,-1)}},375:(e,t,r)=&gt;{var n=r(2371),o=r(930),i=r(2306),s=r(211)(\"toStringTag\"),a=Object,u=\"Arguments\"==i(function(){return arguments}());e.exports=n?i:function(e){var t,r,n;return void 0===e?\"Undefined\":null===e?\"Null\":\"string\"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=a(e),s))?r:u?i(t):\"Object\"==(n=i(t))&amp;&amp;o(t.callee)?\"Arguments\":n}},1765:(e,t,r)=&gt;{var n=r(8240),o=Error,i=n(\"\".replace),s=String(o(\"zxcasd\").stack),a=/\\n\\s*at [^:]*:[^\\n]*/,u=a.test(s);e.exports=function(e,t){if(u&amp;&amp;\"string\"==typeof e&amp;&amp;!o.prepareStackTrace)for(;t--;)e=i(e,a,\"\");return e}},8474:(e,t,r)=&gt;{var n=r(9606),o=r(6095),i=r(4399),s=r(7826);e.exports=function(e,t,r){for(var a=o(t),u=s.f,c=i.f,l=0;l<a>{var n=r(5283),o=r(7826),i=r(5736);e.exports=n?function(e,t,r){return o.f(e,t,i(1,r))}:function(e,t,r){return e[t]=r,e}},5736:e=&gt;{e.exports=function(e,t){return{enumerable:!(1&amp;e),configurable:!(2&amp;e),writable:!(4&amp;e),value:t}}},1343:(e,t,r)=&gt;{var n=r(930),o=r(7826),i=r(3712),s=r(9444);e.exports=function(e,t,r,a){a||(a={});var u=a.enumerable,c=void 0!==a.name?a.name:t;if(n(r)&amp;&amp;i(r,c,a),a.global)u?e[t]=r:s(t,r);else{try{a.unsafe?e[t]&amp;&amp;(u=!0):delete e[t]}catch(e){}u?e[t]=r:o.f(e,t,{value:r,enumerable:!1,configurable:!a.nonConfigurable,writable:!a.nonWritable})}return e}},9444:(e,t,r)=&gt;{var n=r(2086),o=Object.defineProperty;e.exports=function(e,t){try{o(n,e,{value:t,configurable:!0,writable:!0})}catch(r){n[e]=t}return t}},5283:(e,t,r)=&gt;{var n=r(3677);e.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},821:(e,t,r)=&gt;{var n=r(2086),o=r(8759),i=n.document,s=o(i)&amp;&amp;o(i.createElement);e.exports=function(e){return s?i.createElement(e):{}}},4999:(e,t,r)=&gt;{var n=r(563);e.exports=n(\"navigator\",\"userAgent\")||\"\"},1448:(e,t,r)=&gt;{var n,o,i=r(2086),s=r(4999),a=i.process,u=i.Deno,c=a&amp;&amp;a.versions||u&amp;&amp;u.version,l=c&amp;&amp;c.v8;l&amp;&amp;(o=(n=l.split(\".\"))[0]&gt;0&amp;&amp;n[0]=74)&amp;&amp;(n=s.match(/Chrome\\/(\\d+)/))&amp;&amp;(o=+n[1]),e.exports=o},8684:e=&gt;{e.exports=[\"constructor\",\"hasOwnProperty\",\"isPrototypeOf\",\"propertyIsEnumerable\",\"toLocaleString\",\"toString\",\"valueOf\"]},2114:(e,t,r)=&gt;{var n=r(3677),o=r(5736);e.exports=!n((function(){var e=Error(\"a\");return!(\"stack\"in e)||(Object.defineProperty(e,\"stack\",o(1,7)),7!==e.stack)}))},1695:(e,t,r)=&gt;{var n=r(2086),o=r(4399).f,i=r(2585),s=r(1343),a=r(9444),u=r(8474),c=r(7189);e.exports=function(e,t){var r,l,f,p,d,g=e.target,h=e.global,m=e.stat;if(r=h?n:m?n[g]||a(g,{}):(n[g]||{}).prototype)for(l in t){if(p=t[l],f=e.dontCallGetSet?(d=o(r,l))&amp;&amp;d.value:r[l],!c(h?l:g+(m?\".\":\"#\")+l,e.forced)&amp;&amp;void 0!==f){if(typeof p==typeof f)continue;u(p,f)}(e.sham||f&amp;&amp;f.sham)&amp;&amp;i(p,\"sham\",!0),s(r,l,p,e)}}},3677:e=&gt;{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7258:(e,t,r)=&gt;{var n=r(6059),o=Function.prototype,i=o.apply,s=o.call;e.exports=\"object\"==typeof Reflect&amp;&amp;Reflect.apply||(n?s.bind(i):function(){return s.apply(i,arguments)})},6059:(e,t,r)=&gt;{var n=r(3677);e.exports=!n((function(){var e=function(){}.bind();return\"function\"!=typeof e||e.hasOwnProperty(\"prototype\")}))},9413:(e,t,r)=&gt;{var n=r(6059),o=Function.prototype.call;e.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},4398:(e,t,r)=&gt;{var n=r(5283),o=r(9606),i=Function.prototype,s=n&amp;&amp;Object.getOwnPropertyDescriptor,a=o(i,\"name\"),u=a&amp;&amp;\"something\"===function something(){}.name,c=a&amp;&amp;(!n||n&amp;&amp;s(i,\"name\").configurable);e.exports={EXISTS:a,PROPER:u,CONFIGURABLE:c}},8240:(e,t,r)=&gt;{var n=r(6059),o=Function.prototype,i=o.bind,s=o.call,a=n&amp;&amp;i.bind(s,s);e.exports=n?function(e){return e&amp;&amp;a(e)}:function(e){return e&amp;&amp;function(){return s.apply(e,arguments)}}},563:(e,t,r)=&gt;{var n=r(2086),o=r(930),aFunction=function(e){return o(e)?e:void 0};e.exports=function(e,t){return arguments.length{var n=r(5089);e.exports=function(e,t){var r=e[t];return null==r?void 0:n(r)}},2086:(e,t,r)=&gt;{var check=function(e){return e&amp;&amp;e.Math==Math&amp;&amp;e};e.exports=check(\"object\"==typeof globalThis&amp;&amp;globalThis)||check(\"object\"==typeof window&amp;&amp;window)||check(\"object\"==typeof self&amp;&amp;self)||check(\"object\"==typeof r.g&amp;&amp;r.g)||function(){return this}()||Function(\"return this\")()},9606:(e,t,r)=&gt;{var n=r(8240),o=r(3060),i=n({}.hasOwnProperty);e.exports=Object.hasOwn||function hasOwn(e,t){return i(o(e),t)}},7153:e=&gt;{e.exports={}},5963:(e,t,r)=&gt;{var n=r(563);e.exports=n(\"document\",\"documentElement\")},6761:(e,t,r)=&gt;{var n=r(5283),o=r(3677),i=r(821);e.exports=!n&amp;&amp;!o((function(){return 7!=Object.defineProperty(i(\"div\"),\"a\",{get:function(){return 7}}).a}))},5974:(e,t,r)=&gt;{var n=r(8240),o=r(3677),i=r(2306),s=Object,a=n(\"\".split);e.exports=o((function(){return!s(\"z\").propertyIsEnumerable(0)}))?function(e){return\"String\"==i(e)?a(e,\"\"):s(e)}:s},5070:(e,t,r)=&gt;{var n=r(930),o=r(8759),i=r(7530);e.exports=function(e,t,r){var s,a;return i&amp;&amp;n(s=t.constructor)&amp;&amp;s!==r&amp;&amp;o(a=s.prototype)&amp;&amp;a!==r.prototype&amp;&amp;i(e,a),e}},9277:(e,t,r)=&gt;{var n=r(8240),o=r(930),i=r(4489),s=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return s(e)}),e.exports=i.inspectSource},8945:(e,t,r)=&gt;{var n=r(8759),o=r(2585);e.exports=function(e,t){n(t)&amp;&amp;\"cause\"in t&amp;&amp;o(e,\"cause\",t.cause)}},3278:(e,t,r)=&gt;{var n,o,i,s=r(9316),a=r(2086),u=r(8240),c=r(8759),l=r(2585),f=r(9606),p=r(4489),d=r(8944),g=r(7153),h=\"Object already initialized\",m=a.TypeError,v=a.WeakMap;if(s||p.state){var y=p.state||(p.state=new v),b=u(y.get),x=u(y.has),E=u(y.set);n=function(e,t){if(x(y,e))throw new m(h);return t.facade=e,E(y,e,t),t},o=function(e){return b(y,e)||{}},i=function(e){return x(y,e)}}else{var S=d(\"state\");g[S]=!0,n=function(e,t){if(f(e,S))throw new m(h);return t.facade=e,l(e,S,t),t},o=function(e){return f(e,S)?e[S]:{}},i=function(e){return f(e,S)}}e.exports={set:n,get:o,has:i,enforce:function(e){return i(e)?o(e):n(e,{})},getterFor:function(e){return function(t){var r;if(!c(t)||(r=o(t)).type!==e)throw m(\"Incompatible receiver, \"+e+\" required\");return r}}}},930:e=&gt;{e.exports=function(e){return\"function\"==typeof e}},7189:(e,t,r)=&gt;{var n=r(3677),o=r(930),i=/#|\\.prototype\\./,isForced=function(e,t){var r=a[s(e)];return r==c||r!=u&amp;&amp;(o(t)?n(t):!!t)},s=isForced.normalize=function(e){return String(e).replace(i,\".\").toLowerCase()},a=isForced.data={},u=isForced.NATIVE=\"N\",c=isForced.POLYFILL=\"P\";e.exports=isForced},8759:(e,t,r)=&gt;{var n=r(930);e.exports=function(e){return\"object\"==typeof e?null!==e:n(e)}},3296:e=&gt;{e.exports=!1},2071:(e,t,r)=&gt;{var n=r(563),o=r(930),i=r(5516),s=r(1876),a=Object;e.exports=s?function(e){return\"symbol\"==typeof e}:function(e){var t=n(\"Symbol\");return o(t)&amp;&amp;i(t.prototype,a(e))}},2871:(e,t,r)=&gt;{var n=r(4005);e.exports=function(e){return n(e.length)}},3712:(e,t,r)=&gt;{var n=r(3677),o=r(930),i=r(9606),s=r(5283),a=r(4398).CONFIGURABLE,u=r(9277),c=r(3278),l=c.enforce,f=c.get,p=Object.defineProperty,d=s&amp;&amp;!n((function(){return 8!==p((function(){}),\"length\",{value:8}).length})),g=String(String).split(\"String\"),h=e.exports=function(e,t,r){\"Symbol(\"===String(t).slice(0,7)&amp;&amp;(t=\"[\"+String(t).replace(/^Symbol\\(([^)]*)\\)/,\"$1\")+\"]\"),r&amp;&amp;r.getter&amp;&amp;(t=\"get \"+t),r&amp;&amp;r.setter&amp;&amp;(t=\"set \"+t),(!i(e,\"name\")||a&amp;&amp;e.name!==t)&amp;&amp;(s?p(e,\"name\",{value:t,configurable:!0}):e.name=t),d&amp;&amp;r&amp;&amp;i(r,\"arity\")&amp;&amp;e.length!==r.arity&amp;&amp;p(e,\"length\",{value:r.arity});try{r&amp;&amp;i(r,\"constructor\")&amp;&amp;r.constructor?s&amp;&amp;p(e,\"prototype\",{writable:!1}):e.prototype&amp;&amp;(e.prototype=void 0)}catch(e){}var n=l(e);return i(n,\"source\")||(n.source=g.join(\"string\"==typeof t?t:\"\")),e};Function.prototype.toString=h((function toString(){return o(this)&amp;&amp;f(this).source||u(this)}),\"toString\")},5681:e=&gt;{var t=Math.ceil,r=Math.floor;e.exports=Math.trunc||function trunc(e){var n=+e;return(n&gt;0?r:t)(n)}},3193:(e,t,r)=&gt;{var n=r(1448),o=r(3677);e.exports=!!Object.getOwnPropertySymbols&amp;&amp;!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&amp;&amp;n&amp;&amp;n{var n=r(2086),o=r(930),i=r(9277),s=n.WeakMap;e.exports=o(s)&amp;&amp;/native code/.test(i(s))},1879:(e,t,r)=&gt;{var n=r(4059);e.exports=function(e,t){return void 0===e?arguments.length{var n,o=r(6112),i=r(7711),s=r(8684),a=r(7153),u=r(5963),c=r(821),l=r(8944),f=l(\"IE_PROTO\"),EmptyConstructor=function(){},scriptTag=function(e){return\"\"+e+\"\"},NullProtoObjectViaActiveX=function(e){e.write(scriptTag(\"\")),e.close();var t=e.parentWindow.Object;return e=null,t},NullProtoObject=function(){try{n=new ActiveXObject(\"htmlfile\")}catch(e){}var e,t;NullProtoObject=\"undefined\"!=typeof document?document.domain&amp;&amp;n?NullProtoObjectViaActiveX(n):((t=c(\"iframe\")).style.display=\"none\",u.appendChild(t),t.src=String(\"javascript:\"),(e=t.contentWindow.document).open(),e.write(scriptTag(\"document.F=Object\")),e.close(),e.F):NullProtoObjectViaActiveX(n);for(var r=s.length;r--;)delete NullProtoObject.prototype[s[r]];return NullProtoObject()};a[f]=!0,e.exports=Object.create||function create(e,t){var r;return null!==e?(EmptyConstructor.prototype=o(e),r=new EmptyConstructor,EmptyConstructor.prototype=null,r[f]=e):r=NullProtoObject(),void 0===t?r:i.f(r,t)}},7711:(e,t,r)=&gt;{var n=r(5283),o=r(8202),i=r(7826),s=r(6112),a=r(4088),u=r(8779);t.f=n&amp;&amp;!o?Object.defineProperties:function defineProperties(e,t){s(e);for(var r,n=a(t),o=u(t),c=o.length,l=0;c&gt;l;)i.f(e,r=o[l++],n[r]);return e}},7826:(e,t,r)=&gt;{var n=r(5283),o=r(6761),i=r(8202),s=r(6112),a=r(2258),u=TypeError,c=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f=\"enumerable\",p=\"configurable\",d=\"writable\";t.f=n?i?function defineProperty(e,t,r){if(s(e),t=a(t),s(r),\"function\"==typeof e&amp;&amp;\"prototype\"===t&amp;&amp;\"value\"in r&amp;&amp;d in r&amp;&amp;!r.writable){var n=l(e,t);n&amp;&amp;n.writable&amp;&amp;(e[t]=r.value,r={configurable:p in r?r.configurable:n.configurable,enumerable:f in r?r.enumerable:n.enumerable,writable:!1})}return c(e,t,r)}:c:function defineProperty(e,t,r){if(s(e),t=a(t),s(r),o)try{return c(e,t,r)}catch(e){}if(\"get\"in r||\"set\"in r)throw u(\"Accessors not supported\");return\"value\"in r&amp;&amp;(e[t]=r.value),e}},4399:(e,t,r)=&gt;{var n=r(5283),o=r(9413),i=r(7446),s=r(5736),a=r(4088),u=r(2258),c=r(9606),l=r(6761),f=Object.getOwnPropertyDescriptor;t.f=n?f:function getOwnPropertyDescriptor(e,t){if(e=a(e),t=u(t),l)try{return f(e,t)}catch(e){}if(c(e,t))return s(!o(i.f,e,t),e[t])}},62:(e,t,r)=&gt;{var n=r(1352),o=r(8684).concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function getOwnPropertyNames(e){return n(e,o)}},6952:(e,t)=&gt;{t.f=Object.getOwnPropertySymbols},5516:(e,t,r)=&gt;{var n=r(8240);e.exports=n({}.isPrototypeOf)},1352:(e,t,r)=&gt;{var n=r(8240),o=r(9606),i=r(4088),s=r(6198).indexOf,a=r(7153),u=n([].push);e.exports=function(e,t){var r,n=i(e),c=0,l=[];for(r in n)!o(a,r)&amp;&amp;o(n,r)&amp;&amp;u(l,r);for(;t.length&gt;c;)o(n,r=t[c++])&amp;&amp;(~s(l,r)||u(l,r));return l}},8779:(e,t,r)=&gt;{var n=r(1352),o=r(8684);e.exports=Object.keys||function keys(e){return n(e,o)}},7446:(e,t)=&gt;{\"use strict\";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&amp;&amp;!r.call({1:2},1);t.f=o?function propertyIsEnumerable(e){var t=n(this,e);return!!t&amp;&amp;t.enumerable}:r},7530:(e,t,r)=&gt;{var n=r(8240),o=r(6112),i=r(1378);e.exports=Object.setPrototypeOf||(\"__proto__\"in{}?function(){var e,t=!1,r={};try{(e=n(Object.getOwnPropertyDescriptor(Object.prototype,\"__proto__\").set))(r,[]),t=r instanceof Array}catch(e){}return function setPrototypeOf(r,n){return o(r),i(n),t?e(r,n):r.__proto__=n,r}}():void 0)},7999:(e,t,r)=&gt;{var n=r(9413),o=r(930),i=r(8759),s=TypeError;e.exports=function(e,t){var r,a;if(\"string\"===t&amp;&amp;o(r=e.toString)&amp;&amp;!i(a=n(r,e)))return a;if(o(r=e.valueOf)&amp;&amp;!i(a=n(r,e)))return a;if(\"string\"!==t&amp;&amp;o(r=e.toString)&amp;&amp;!i(a=n(r,e)))return a;throw s(\"Can\'t convert object to primitive value\")}},6095:(e,t,r)=&gt;{var n=r(563),o=r(8240),i=r(62),s=r(6952),a=r(6112),u=o([].concat);e.exports=n(\"Reflect\",\"ownKeys\")||function ownKeys(e){var t=i.f(a(e)),r=s.f;return r?u(t,r(e)):t}},1632:(e,t,r)=&gt;{var n=r(7826).f;e.exports=function(e,t,r){r in e||n(e,r,{configurable:!0,get:function(){return t[r]},set:function(e){t[r]=e}})}},9586:e=&gt;{var t=TypeError;e.exports=function(e){if(null==e)throw t(\"Can\'t call method on \"+e);return e}},8944:(e,t,r)=&gt;{var n=r(9197),o=r(5422),i=n(\"keys\");e.exports=function(e){return i[e]||(i[e]=o(e))}},4489:(e,t,r)=&gt;{var n=r(2086),o=r(9444),i=\"__core-js_shared__\",s=n[i]||o(i,{});e.exports=s},9197:(e,t,r)=&gt;{var n=r(3296),o=r(4489);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})(\"versions\",[]).push({version:\"3.24.1\",mode:n?\"pure\":\"global\",copyright:\"© 2014-2022 Denis Pushkarev (zloirock.ru)\",license:\"https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE\",source:\"https://github.com/zloirock/core-js\"})},7740:(e,t,r)=&gt;{var n=r(9502),o=Math.max,i=Math.min;e.exports=function(e,t){var r=n(e);return r{var n=r(5974),o=r(9586);e.exports=function(e){return n(o(e))}},9502:(e,t,r)=&gt;{var n=r(5681);e.exports=function(e){var t=+e;return t!=t||0===t?0:n(t)}},4005:(e,t,r)=&gt;{var n=r(9502),o=Math.min;e.exports=function(e){return e&gt;0?o(n(e),9007199254740991):0}},3060:(e,t,r)=&gt;{var n=r(9586),o=Object;e.exports=function(e){return o(n(e))}},1288:(e,t,r)=&gt;{var n=r(9413),o=r(8759),i=r(2071),s=r(2964),a=r(7999),u=r(211),c=TypeError,l=u(\"toPrimitive\");e.exports=function(e,t){if(!o(e)||i(e))return e;var r,u=s(e,l);if(u){if(void 0===t&amp;&amp;(t=\"default\"),r=n(u,e,t),!o(r)||i(r))return r;throw c(\"Can\'t convert object to primitive value\")}return void 0===t&amp;&amp;(t=\"number\"),a(e,t)}},2258:(e,t,r)=&gt;{var n=r(1288),o=r(2071);e.exports=function(e){var t=n(e,\"string\");return o(t)?t:t+\"\"}},2371:(e,t,r)=&gt;{var n={};n[r(211)(\"toStringTag\")]=\"z\",e.exports=\"[object z]\"===String(n)},4059:(e,t,r)=&gt;{var n=r(375),o=String;e.exports=function(e){if(\"Symbol\"===n(e))throw TypeError(\"Cannot convert a Symbol value to a string\");return o(e)}},9268:e=&gt;{var t=String;e.exports=function(e){try{return t(e)}catch(e){return\"Object\"}}},5422:(e,t,r)=&gt;{var n=r(8240),o=0,i=Math.random(),s=n(1..toString);e.exports=function(e){return\"Symbol(\"+(void 0===e?\"\":e)+\")_\"+s(++o+i,36)}},1876:(e,t,r)=&gt;{var n=r(3193);e.exports=n&amp;&amp;!Symbol.sham&amp;&amp;\"symbol\"==typeof Symbol.iterator},8202:(e,t,r)=&gt;{var n=r(5283),o=r(3677);e.exports=n&amp;&amp;o((function(){return 42!=Object.defineProperty((function(){}),\"prototype\",{value:42,writable:!1}).prototype}))},211:(e,t,r)=&gt;{var n=r(2086),o=r(9197),i=r(9606),s=r(5422),a=r(3193),u=r(1876),c=o(\"wks\"),l=n.Symbol,f=l&amp;&amp;l.for,p=u?l:l&amp;&amp;l.withoutSetter||s;e.exports=function(e){if(!i(c,e)||!a&amp;&amp;\"string\"!=typeof c[e]){var t=\"Symbol.\"+e;a&amp;&amp;i(l,e)?c[e]=l[e]:c[e]=u&amp;&amp;f?f(t):p(t)}return c[e]}},1557:(e,t,r)=&gt;{\"use strict\";var n=r(563),o=r(9606),i=r(2585),s=r(5516),a=r(7530),u=r(8474),c=r(1632),l=r(5070),f=r(1879),p=r(8945),d=r(1765),g=r(2114),h=r(5283),m=r(3296);e.exports=function(e,t,r,v){var y=\"stackTraceLimit\",b=v?2:1,x=e.split(\".\"),E=x[x.length-1],S=n.apply(null,x);if(S){var w=S.prototype;if(!m&amp;&amp;o(w,\"cause\")&amp;&amp;delete w.cause,!r)return S;var O=n(\"Error\"),I=t((function(e,t){var r=f(v?t:e,void 0),n=v?new S(e):new S;return void 0!==r&amp;&amp;i(n,\"message\",r),g&amp;&amp;i(n,\"stack\",d(n.stack,2)),this&amp;&amp;s(w,this)&amp;&amp;l(n,this,I),arguments.length&gt;b&amp;&amp;p(n,arguments[b]),n}));if(I.prototype=w,\"Error\"!==E?a?a(I,O):u(I,O,{name:!0}):h&amp;&amp;y in S&amp;&amp;(c(I,S,y),c(I,S,\"prepareStackTrace\")),u(I,S),!m)try{w.name!==E&amp;&amp;i(w,\"name\",E),w.constructor=I}catch(e){}return I}}},5623:(e,t,r)=&gt;{\"use strict\";var n=r(1695),o=r(6198).includes,i=r(3677),s=r(8669);n({target:\"Array\",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function includes(e){return o(this,e,arguments.length&gt;1?arguments[1]:void 0)}}),s(\"includes\")},740:(e,t,r)=&gt;{var n=r(1695),o=r(2086),i=r(7258),s=r(1557),a=\"WebAssembly\",u=o.WebAssembly,c=7!==Error(\"e\",{cause:7}).cause,exportGlobalErrorCauseWrapper=function(e,t){var r={};r[e]=s(e,t,c),n({global:!0,constructor:!0,arity:1,forced:c},r)},exportWebAssemblyErrorCauseWrapper=function(e,t){if(u&amp;&amp;u[e]){var r={};r[e]=s(\"WebAssembly.\"+e,t,c),n({target:a,stat:!0,constructor:!0,arity:1,forced:c},r)}};exportGlobalErrorCauseWrapper(\"Error\",(function(e){return function Error(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"EvalError\",(function(e){return function EvalError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"RangeError\",(function(e){return function RangeError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"ReferenceError\",(function(e){return function ReferenceError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"SyntaxError\",(function(e){return function SyntaxError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"TypeError\",(function(e){return function TypeError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"URIError\",(function(e){return function URIError(t){return i(e,this,arguments)}})),exportWebAssemblyErrorCauseWrapper(\"CompileError\",(function(e){return function CompileError(t){return i(e,this,arguments)}})),exportWebAssemblyErrorCauseWrapper(\"LinkError\",(function(e){return function LinkError(t){return i(e,this,arguments)}})),exportWebAssemblyErrorCauseWrapper(\"RuntimeError\",(function(e){return function RuntimeError(t){return i(e,this,arguments)}}))},3203:e=&gt;{e.exports=function _interopRequireDefault(e){return e&amp;&amp;e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports}},e=&gt;{var t;t=6412,e(e.s=t)}]);\r\n!function(){\"use strict\";function Waypoint(options){if(!options)throw new Error(\"No options passed to Waypoint constructor\");if(!options.element)throw new Error(\"No element option passed to Waypoint constructor\");if(!options.handler)throw new Error(\"No handler option passed to Waypoint constructor\");this.key=\"waypoint-\"+keyCounter,this.options=Waypoint.Adapter.extend({},Waypoint.defaults,options),this.element=this.options.element,this.adapter=new Waypoint.Adapter(this.element),this.callback=options.handler,this.axis=this.options.horizontal?\"horizontal\":\"vertical\",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=Waypoint.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=Waypoint.Context.findOrCreateByElement(this.options.context),Waypoint.offsetAliases[this.options.offset]&amp;&amp;(this.options.offset=Waypoint.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),allWaypoints[this.key]=this,keyCounter+=1}var keyCounter=0,allWaypoints={};Waypoint.prototype.queueTrigger=function(direction){this.group.queueTrigger(this,direction)},Waypoint.prototype.trigger=function(args){this.enabled&amp;&amp;this.callback&amp;&amp;this.callback.apply(this,args)},Waypoint.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete allWaypoints[this.key]},Waypoint.prototype.disable=function(){return this.enabled=!1,this},Waypoint.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},Waypoint.prototype.next=function(){return this.group.next(this)},Waypoint.prototype.previous=function(){return this.group.previous(this)},Waypoint.invokeAll=function(method){var allWaypointsArray=[];for(var waypointKey in allWaypoints)allWaypointsArray.push(allWaypoints[waypointKey]);for(var i=0,end=allWaypointsArray.length;iaxis.oldScroll,direction=isForward?axis.forward:axis.backward;for(var waypointKey in this.waypoints[axisKey]){var waypoint=this.waypoints[axisKey][waypointKey];if(null!==waypoint.triggerPoint){var wasBeforeTriggerPoint=axis.oldScroll=waypoint.triggerPoint,crossedForward=wasBeforeTriggerPoint&amp;&amp;nowAfterTriggerPoint,crossedBackward=!wasBeforeTriggerPoint&amp;&amp;!nowAfterTriggerPoint;(crossedForward||crossedBackward)&amp;&amp;(waypoint.queueTrigger(direction),triggeredGroups[waypoint.group.id]=waypoint.group)}}}for(var groupKey in triggeredGroups)triggeredGroups[groupKey].flushTriggers();this.oldScroll={x:axes.horizontal.newScroll,y:axes.vertical.newScroll}},Context.prototype.innerHeight=function(){return this.element==this.element.window?Waypoint.viewportHeight():this.adapter.innerHeight()},Context.prototype.remove=function(waypoint){delete this.waypoints[waypoint.axis][waypoint.key],this.checkEmpty()},Context.prototype.innerWidth=function(){return this.element==this.element.window?Waypoint.viewportWidth():this.adapter.innerWidth()},Context.prototype.destroy=function(){var allWaypoints=[];for(var axis in this.waypoints)for(var waypointKey in this.waypoints[axis])allWaypoints.push(this.waypoints[axis][waypointKey]);for(var i=0,end=allWaypoints.length;i-1&amp;&amp;(adjustment=Math.ceil(axis.contextDimension*adjustment/100))),contextModifier=axis.contextScroll-axis.contextOffset,waypoint.triggerPoint=Math.floor(elementOffset+contextModifier-adjustment),wasBeforeScroll=oldTriggerPoint=axis.oldScroll,triggeredBackward=wasBeforeScroll&amp;&amp;nowAfterScroll,triggeredForward=!wasBeforeScroll&amp;&amp;!nowAfterScroll,!freshWaypoint&amp;&amp;triggeredBackward?(waypoint.queueTrigger(axis.backward),triggeredGroups[waypoint.group.id]=waypoint.group):!freshWaypoint&amp;&amp;triggeredForward?(waypoint.queueTrigger(axis.forward),triggeredGroups[waypoint.group.id]=waypoint.group):freshWaypoint&amp;&amp;axis.oldScroll&gt;=waypoint.triggerPoint&amp;&amp;(waypoint.queueTrigger(axis.forward),triggeredGroups[waypoint.group.id]=waypoint.group)}}return Waypoint.requestAnimationFrame(function(){for(var groupKey in triggeredGroups)triggeredGroups[groupKey].flushTriggers()}),this},Context.findOrCreateByElement=function(element){return Context.findByElement(element)||new Context(element)},Context.refreshAll=function(){for(var contextId in contexts)contexts[contextId].refresh()},Context.findByElement=function(element){return contexts[element.waypointContextKey]},window.onload=function(){oldWindowLoad&amp;&amp;oldWindowLoad(),Context.refreshAll()},Waypoint.requestAnimationFrame=function(callback){var requestFn=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||requestAnimationFrameShim;requestFn.call(window,callback)},Waypoint.Context=Context}(),function(){\"use strict\";function byTriggerPoint(a,b){return a.triggerPoint-b.triggerPoint}function byReverseTriggerPoint(a,b){return b.triggerPoint-a.triggerPoint}function Group(options){this.name=options.name,this.axis=options.axis,this.id=this.name+\"-\"+this.axis,this.waypoints=[],this.clearTriggerQueues(),groups[this.axis][this.name]=this}var groups={vertical:{},horizontal:{}},Waypoint=window.Waypoint;Group.prototype.add=function(waypoint){this.waypoints.push(waypoint)},Group.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},Group.prototype.flushTriggers=function(){for(var direction in this.triggerQueues){var waypoints=this.triggerQueues[direction],reverse=\"up\"===direction||\"left\"===direction;waypoints.sort(reverse?byReverseTriggerPoint:byTriggerPoint);for(var i=0,end=waypoints.length;i-1&amp;&amp;this.waypoints.splice(index,1)},Group.prototype.first=function(){return this.waypoints[0]},Group.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},Group.findOrCreate=function(options){return groups[options.axis][options.name]||new Group(options)},Waypoint.Group=Group}(),function(){\"use strict\";function JQueryAdapter(element){this.$element=$(element)}var $=window.jQuery,Waypoint=window.Waypoint;$.each([\"innerHeight\",\"innerWidth\",\"off\",\"offset\",\"on\",\"outerHeight\",\"outerWidth\",\"scrollLeft\",\"scrollTop\"],function(i,method){JQueryAdapter.prototype[method]=function(){var args=Array.prototype.slice.call(arguments);return this.$element[method].apply(this.$element,args)}}),$.each([\"extend\",\"inArray\",\"isEmptyObject\"],function(i,method){JQueryAdapter[method]=$[method]}),Waypoint.adapters.push({name:\"jquery\",Adapter:JQueryAdapter}),Waypoint.Adapter=JQueryAdapter}(),function(){\"use strict\";function createExtension(framework){return function(){var waypoints=[],overrides=arguments[0];return framework.isFunction(arguments[0])&amp;&amp;(overrides=framework.extend({},arguments[1]),overrides.handler=arguments[0]),this.each(function(){var options=framework.extend({},overrides,{element:this});\"string\"==typeof options.context&amp;&amp;(options.context=framework(this).closest(options.context)[0]),waypoints.push(new Waypoint(options))}),waypoints}}var Waypoint=window.Waypoint;window.jQuery&amp;&amp;(window.jQuery.fn.elementorWaypoint=createExtension(window.jQuery)),window.Zepto&amp;&amp;(window.Zepto.fn.elementorWaypoint=createExtension(window.Zepto))}();\r\n/*! elementor - v3.7.4 - 31-08-2022 */\n(self.webpackChunkelementor=self.webpackChunkelementor||[]).push([[819],{9220:(e,t,n)=&gt;{\"use strict\";var i=n(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var s=i(n(8135));class _default extends elementorModules.ViewModule{constructor(){super(...arguments),this.documents={},this.initDocumentClasses(),this.attachDocumentsClasses()}getDefaultSettings(){return{selectors:{document:\".elementor\"}}}getDefaultElements(){const e=this.getSettings(\"selectors\");return{$documents:jQuery(e.document)}}initDocumentClasses(){this.documentClasses={base:s.default},elementorFrontend.hooks.doAction(\"elementor/frontend/documents-manager/init-classes\",this)}addDocumentClass(e,t){this.documentClasses[e]=t}attachDocumentsClasses(){this.elements.$documents.each(((e,t)=&gt;this.attachDocumentClass(jQuery(t))))}attachDocumentClass(e){const t=e.data(),n=t.elementorId,i=t.elementorType,s=this.documentClasses[i]||this.documentClasses.base;this.documents[n]=new s({$element:e,id:n})}}t.default=_default},9804:(e,t,n)=&gt;{\"use strict\";var i=n(3203),s=i(n(6397)),o=i(n(8704)),r=i(n(4985)),a=i(n(7537)),l=i(n(355)),d=i(n(2804)),c=i(n(3384));e.exports=function(e){var t=this;const i={};this.elementsHandlers={\"accordion.default\":()=&gt;n.e(209).then(n.bind(n,8470)),\"alert.default\":()=&gt;n.e(745).then(n.bind(n,9269)),\"counter.default\":()=&gt;n.e(120).then(n.bind(n,7884)),\"progress.default\":()=&gt;n.e(192).then(n.bind(n,1351)),\"tabs.default\":()=&gt;n.e(520).then(n.bind(n,9459)),\"toggle.default\":()=&gt;n.e(181).then(n.bind(n,2)),\"video.default\":()=&gt;n.e(791).then(n.bind(n,5363)),\"image-carousel.default\":()=&gt;n.e(268).then(n.bind(n,5914)),\"text-editor.default\":()=&gt;n.e(357).then(n.bind(n,1327)),\"wp-widget-media_audio.default\":()=&gt;n.e(52).then(n.bind(n,7602))};const addElementsHandlers=()=&gt;{this.elementsHandlers.section=[d.default,...o.default,l.default,c.default],this.elementsHandlers.container=[...o.default],elementorFrontend.isEditMode()&amp;&amp;this.elementsHandlers.container.push(...r.default),this.elementsHandlers.column=a.default,e.each(this.elementsHandlers,((e,t)=&gt;{const n=e.split(\".\");e=n[0];const i=n[1]||null;this.attachHandler(e,t,i)}))},isClassHandler=e=&gt;e.prototype?.getUniqueHandlerID;this.addHandler=function(e,t){const n=t.$element.data(\"model-cid\");let s;if(n){s=e.prototype.getConstructorID(),i[n]||(i[n]={});const t=i[n][s];t&amp;&amp;t.onDestroy()}const o=new e(t);n&amp;&amp;(i[n][s]=o)},this.attachHandler=(e,n,i)=&gt;{Array.isArray(n)||(n=[n]),n.forEach((n=&gt;function(e,n){let i=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:\"default\";i=i?\".\"+i:\"\",elementorFrontend.hooks.addAction(`frontend/element_ready/${e}${i}`,(e=&gt;{if(isClassHandler(n))t.addHandler(n,{$element:e},!0);else{const i=n();if(!i)return;i instanceof Promise?i.then((n=&gt;{let{default:i}=n;t.addHandler(i,{$element:e},!0)})):t.addHandler(i,{$element:e},!0)}}))}(e,n,i)))},this.getHandler=function(e){const t=this.elementsHandlers[e];return isClassHandler(t)?t:new Promise((e=&gt;{t().then((t=&gt;{let{default:n}=t;e(n)}))}))},this.getHandlers=function(e){return elementorDevTools.deprecation.deprecated(\"getHandlers\",\"3.1.0\",\"elementorFrontend.elementsHandler.getHandler\"),e?this.getHandler(e):this.elementsHandlers},this.runReadyTrigger=function(t){if(elementorFrontend.config.is_static)return;const n=jQuery(t),i=n.attr(\"data-element_type\");if(i&amp;&amp;(elementorFrontend.hooks.doAction(\"frontend/element_ready/global\",n,e),elementorFrontend.hooks.doAction(`frontend/element_ready/${i}`,n,e),\"widget\"===i)){const t=n.attr(\"data-widget_type\");elementorFrontend.hooks.doAction(`frontend/element_ready/${t}`,n,e)}},this.init=()=&gt;{elementorFrontend.hooks.addAction(\"frontend/element_ready/global\",s.default),addElementsHandlers()}}},5654:(e,t,n)=&gt;{\"use strict\";var i=n(3203);n(59);var s=i(n(9220)),o=i(n(5107)),r=i(n(3308)),a=i(n(1604)),l=i(n(1911)),d=i(n(4773)),c=i(n(2064)),u=i(n(8628)),h=i(n(8646)),m=i(n(6866)),g=i(n(4375)),p=i(n(6404)),f=i(n(6046)),v=n(6028);const b=n(9469),_=n(9804),y=n(3346);class Frontend extends elementorModules.ViewModule{constructor(){super(...arguments),this.config=elementorFrontendConfig,this.config.legacyMode={get elementWrappers(){return elementorFrontend.isEditMode()&amp;&amp;window.top.elementorDevTools.deprecation.deprecated(\"elementorFrontend.config.legacyMode.elementWrappers\",\"3.1.0\",\"elementorFrontend.config.experimentalFeatures.e_dom_optimization\"),!elementorFrontend.config.experimentalFeatures.e_dom_optimization}},this.populateActiveBreakpointsConfig()}get Module(){return this.isEditMode()&amp;&amp;parent.elementorDevTools.deprecation.deprecated(\"elementorFrontend.Module\",\"2.5.0\",\"elementorModules.frontend.handlers.Base\"),elementorModules.frontend.handlers.Base}getDefaultSettings(){return{selectors:{elementor:\".elementor\",adminBar:\"#wpadminbar\"}}}getDefaultElements(){const e={window,$window:jQuery(window),$document:jQuery(document),$head:jQuery(document.head),$body:jQuery(document.body),$deviceMode:jQuery(\"<span>\",{id:\"elementor-device-mode\",class:\"elementor-screen-only\"})};return e.$body.append(e.$deviceMode),e}bindEvents(){this.elements.$window.on(\"resize\",(()=&gt;this.setDeviceModeData()))}getElements(e){return this.getItems(this.elements,e)}getPageSettings(e){const t=this.isEditMode()?elementor.settings.page.model.attributes:this.config.settings.page;return this.getItems(t,e)}getGeneralSettings(e){return this.isEditMode()&amp;&amp;parent.elementorDevTools.deprecation.deprecated(\"getGeneralSettings\",\"3.0.0\",\"getKitSettings and remove the `elementor_` prefix\"),this.getKitSettings(`elementor_${e}`)}getKitSettings(e){return this.getItems(this.config.kit,e)}getCurrentDeviceMode(){return getComputedStyle(this.elements.$deviceMode[0],\":after\").content.replace(/\"/g,\"\")}getDeviceSetting(e,t,n){if(\"widescreen\"===e)return this.getWidescreenSetting(t,n);const i=elementorFrontend.breakpoints.getActiveBreakpointsList({largeToSmall:!0,withDesktop:!0});let s=i.indexOf(e);for(;s&gt;0;){const e=t[n+\"_\"+i[s]];if(e||0===e)return e;s--}return t[n]}getWidescreenSetting(e,t){const n=t+\"_widescreen\";let i;return i=e[n]?e[n]:e[t],i}getCurrentDeviceSetting(e,t){return this.getDeviceSetting(elementorFrontend.getCurrentDeviceMode(),e,t)}isEditMode(){return this.config.environmentMode.edit}isWPPreviewMode(){return this.config.environmentMode.wpPreview}initDialogsManager(){let e;this.getDialogsManager=()=&gt;(e||(e=new DialogsManager.Instance),e)}initOnReadyComponents(){this.utils={youtube:new a.default,vimeo:new l.default,baseVideoLoader:new d.default,anchors:new y,get lightbox(){return h.default.getLightbox()},urlActions:new c.default,swiper:u.default,environment:r.default,assetsLoader:new m.default,escapeHTML:v.escapeHTML,events:p.default},this.modules={StretchElement:elementorModules.frontend.tools.StretchElement,Masonry:elementorModules.utils.Masonry},this.elementsHandler.init(),this.isEditMode()?elementor.once(\"document:loaded\",(()=&gt;this.onDocumentLoaded())):this.onDocumentLoaded()}initOnReadyElements(){this.elements.$wpAdminBar=this.elements.$document.find(this.getSettings(\"selectors.adminBar\"))}addUserAgentClasses(){for(const[e,t]of Object.entries(r.default))t&amp;&amp;this.elements.$body.addClass(\"e--ua-\"+e)}setDeviceModeData(){this.elements.$body.attr(\"data-elementor-device-mode\",this.getCurrentDeviceMode())}addListenerOnce(e,t,n,i){if(i||(i=this.elements.$window),this.isEditMode())if(this.removeListeners(e,t,i),i instanceof jQuery){const s=t+\".\"+e;i.on(s,n)}else i.on(t,n,e);else i.on(t,n)}removeListeners(e,t,n,i){if(i||(i=this.elements.$window),i instanceof jQuery){const s=t+\".\"+e;i.off(s,n)}else i.off(t,n,e)}debounce(e,t){let n;return function(){const i=this,s=arguments,later=()=&gt;{n=null,e.apply(i,s)},o=!n;clearTimeout(n),n=setTimeout(later,t),o&amp;&amp;e.apply(i,s)}}waypoint(e,t,n){n=jQuery.extend({offset:\"100%\",triggerOnce:!0},n);return e.elementorWaypoint((function(){const e=this.element||this,i=t.apply(e,arguments);return n.triggerOnce&amp;&amp;this.destroy&amp;&amp;this.destroy(),i}),n)}muteMigrationTraces(){jQuery.migrateMute=!0,jQuery.migrateTrace=!1}initModules(){const e={shapes:f.default};elementorFrontend.trigger(\"elementor/modules/init:before\"),elementorFrontend.trigger(\"elementor/modules/init/before\"),Object.entries(e).forEach((e=&gt;{let[t,n]=e;this.modulesHandlers[t]=new n}))}populateActiveBreakpointsConfig(){this.config.responsive.activeBreakpoints={},Object.entries(this.config.responsive.breakpoints).forEach((e=&gt;{let[t,n]=e;n.is_enabled&amp;&amp;(this.config.responsive.activeBreakpoints[t]=n)}))}init(){this.hooks=new b,this.breakpoints=new g.default(this.config.responsive),this.storage=new o.default,this.elementsHandler=new _(jQuery),this.modulesHandlers={},this.addUserAgentClasses(),this.setDeviceModeData(),this.initDialogsManager(),this.isEditMode()&amp;&amp;this.muteMigrationTraces(),p.default.dispatch(this.elements.$window,\"elementor/frontend/init\"),this.initModules(),this.initOnReadyElements(),this.initOnReadyComponents()}onDocumentLoaded(){this.documentsManager=new s.default,this.trigger(\"components:init\"),new h.default}}window.elementorFrontend=new Frontend,elementorFrontend.isEditMode()||jQuery((()=&gt;elementorFrontend.init()))},4058:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class BackgroundSlideshow extends elementorModules.frontend.handlers.SwiperBase{getDefaultSettings(){return{classes:{swiperContainer:\"elementor-background-slideshow swiper-container\",swiperWrapper:\"swiper-wrapper\",swiperSlide:\"elementor-background-slideshow__slide swiper-slide\",swiperPreloader:\"swiper-lazy-preloader\",slideBackground:\"elementor-background-slideshow__slide__image\",kenBurns:\"elementor-ken-burns\",kenBurnsActive:\"elementor-ken-burns--active\",kenBurnsIn:\"elementor-ken-burns--in\",kenBurnsOut:\"elementor-ken-burns--out\"}}}getSwiperOptions(){const e=this.getElementSettings(),t={grabCursor:!1,slidesPerView:1,slidesPerGroup:1,loop:\"yes\"===e.background_slideshow_loop,speed:e.background_slideshow_transition_duration,autoplay:{delay:e.background_slideshow_slide_duration,stopOnLastSlide:!e.background_slideshow_loop},handleElementorBreakpoints:!0,on:{slideChange:()=&gt;{e.background_slideshow_ken_burns&amp;&amp;this.handleKenBurns()}}};switch(\"yes\"===e.background_slideshow_loop&amp;&amp;(t.loopedSlides=this.getSlidesCount()),e.background_slideshow_slide_transition){case\"fade\":t.effect=\"fade\",t.fadeEffect={crossFade:!0};break;case\"slide_down\":t.autoplay.reverseDirection=!0,t.direction=\"vertical\";break;case\"slide_up\":t.direction=\"vertical\"}return\"yes\"===e.background_slideshow_lazyload&amp;&amp;(t.lazy={loadPrevNext:!0,loadPrevNextAmount:1}),t}buildSwiperElements(){const e=this.getSettings(\"classes\"),t=this.getElementSettings(),n=\"slide_left\"===t.background_slideshow_slide_transition?\"ltr\":\"rtl\",i=jQuery(\"<div>\",{class:e.swiperContainer,dir:n}),s=jQuery(\"<div>\",{class:e.swiperWrapper}),o=t.background_slideshow_ken_burns,r=\"yes\"===t.background_slideshow_lazyload;let a=e.slideBackground;if(o){a+=\" \"+e.kenBurns;const n=\"in\"===t.background_slideshow_ken_burns_zoom_direction?\"kenBurnsIn\":\"kenBurnsOut\";a+=\" \"+e[n]}r&amp;&amp;(a+=\" swiper-lazy\"),this.elements.$slides=jQuery(),t.background_slideshow_gallery.forEach((t=&gt;{const n=jQuery(\"<div>\",{class:e.swiperSlide});let i;if(r){const n=jQuery(\"<div>\",{class:e.swiperPreloader});i=jQuery(\"<div>\",{class:a,\"data-background\":t.url}),i.append(n)}else i=jQuery(\"<div>\",{class:a,style:\'background-image: url(\"\'+t.url+\'\");\'});n.append(i),s.append(n),this.elements.$slides=this.elements.$slides.add(n)})),i.append(s),this.$element.prepend(i),this.elements.$backgroundSlideShowContainer=i}async initSlider(){if(1&gt;=this.getSlidesCount())return;const e=this.getElementSettings(),t=elementorFrontend.utils.swiper;this.swiper=await new t(this.elements.$backgroundSlideShowContainer,this.getSwiperOptions()),this.elements.$backgroundSlideShowContainer.data(\"swiper\",this.swiper),e.background_slideshow_ken_burns&amp;&amp;this.handleKenBurns()}activate(){this.buildSwiperElements(),this.initSlider()}deactivate(){this.swiper&amp;&amp;(this.swiper.destroy(),this.elements.$backgroundSlideShowContainer.remove())}run(){\"slideshow\"===this.getElementSettings(\"background_background\")?this.activate():this.deactivate()}onInit(){super.onInit(),this.getElementSettings(\"background_slideshow_gallery\")&amp;&amp;this.run()}onDestroy(){super.onDestroy(),this.deactivate()}onElementChange(e){\"background_background\"===e&amp;&amp;this.run()}}t.default=BackgroundSlideshow},9501:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class BackgroundVideo extends elementorModules.frontend.handlers.Base{getDefaultSettings(){return{selectors:{backgroundVideoContainer:\".elementor-background-video-container\",backgroundVideoEmbed:\".elementor-background-video-embed\",backgroundVideoHosted:\".elementor-background-video-hosted\"}}}getDefaultElements(){const e=this.getSettings(\"selectors\"),t={$backgroundVideoContainer:this.$element.find(e.backgroundVideoContainer)};return t.$backgroundVideoEmbed=t.$backgroundVideoContainer.children(e.backgroundVideoEmbed),t.$backgroundVideoHosted=t.$backgroundVideoContainer.children(e.backgroundVideoHosted),t}calcVideosSize(e){let t=\"16:9\";\"vimeo\"===this.videoType&amp;&amp;(t=e[0].width+\":\"+e[0].height);const n=this.elements.$backgroundVideoContainer.outerWidth(),i=this.elements.$backgroundVideoContainer.outerHeight(),s=t.split(\":\"),o=s[0]/s[1],r=n/i&gt;o;return{width:r?n:i*o,height:r?n/o:i}}changeVideoSize(){if(\"hosted\"!==this.videoType&amp;&amp;!this.player)return;let e;if(\"youtube\"===this.videoType?e=jQuery(this.player.getIframe()):\"vimeo\"===this.videoType?e=jQuery(this.player.element):\"hosted\"===this.videoType&amp;&amp;(e=this.elements.$backgroundVideoHosted),!e)return;const t=this.calcVideosSize(e);e.width(t.width).height(t.height)}startVideoLoop(e){if(!this.player.getIframe().contentWindow)return;const t=this.getElementSettings(),n=t.background_video_start||0,i=t.background_video_end;if(!t.background_play_once||e){if(this.player.seekTo(n),i){setTimeout((()=&gt;{this.startVideoLoop(!1)}),1e3*(i-n+1))}}else this.player.stopVideo()}prepareVimeoVideo(e,t){const n=this.getElementSettings(),i={url:t,width:this.elements.$backgroundVideoContainer.outerWidth().width,autoplay:!0,loop:!n.background_play_once,transparent:!1,background:!0,muted:!0};this.player=new e.Player(this.elements.$backgroundVideoContainer,i),this.handleVimeoStartEndTimes(n),this.player.ready().then((()=&gt;{jQuery(this.player.element).addClass(\"elementor-background-video-embed\"),this.changeVideoSize()}))}handleVimeoStartEndTimes(e){e.background_video_start&amp;&amp;this.player.on(\"play\",(t=&gt;{0===t.seconds&amp;&amp;this.player.setCurrentTime(e.background_video_start)})),this.player.on(\"timeupdate\",(t=&gt;{e.background_video_end&amp;&amp;e.background_video_end{e.background_video_start&amp;&amp;!e.background_video_end&amp;&amp;t.seconds&gt;n-.5&amp;&amp;this.player.setCurrentTime(e.background_video_start)}))}))}prepareYTVideo(e,t){const n=this.elements.$backgroundVideoContainer,i=this.getElementSettings();let s=e.PlayerState.PLAYING;window.chrome&amp;&amp;(s=e.PlayerState.UNSTARTED);const o={videoId:t,events:{onReady:()=&gt;{this.player.mute(),this.changeVideoSize(),this.startVideoLoop(!0),this.player.playVideo()},onStateChange:t=&gt;{switch(t.data){case s:n.removeClass(\"elementor-invisible elementor-loading\");break;case e.PlayerState.ENDED:this.player.seekTo(i.background_video_start||0),i.background_play_once&amp;&amp;this.player.destroy()}}},playerVars:{controls:0,rel:0,playsinline:1}};i.background_privacy_mode&amp;&amp;(o.host=\"https://www.youtube-nocookie.com\",o.origin=window.location.hostname),n.addClass(\"elementor-loading elementor-invisible\"),this.player=new e.Player(this.elements.$backgroundVideoEmbed[0],o)}activate(){let e,t=this.getElementSettings(\"background_video_link\");const n=this.getElementSettings(\"background_play_once\");if(-1!==t.indexOf(\"vimeo.com\")?(this.videoType=\"vimeo\",this.apiProvider=elementorFrontend.utils.vimeo):t.match(/^(?:https?:\\/\\/)?(?:www\\.)?(?:m\\.)?(?:youtu\\.be\\/|youtube\\.com)/)&amp;&amp;(this.videoType=\"youtube\",this.apiProvider=elementorFrontend.utils.youtube),this.apiProvider)e=this.apiProvider.getVideoIDFromURL(t),this.apiProvider.onApiReady((n=&gt;{\"youtube\"===this.videoType&amp;&amp;this.prepareYTVideo(n,e),\"vimeo\"===this.videoType&amp;&amp;this.prepareVimeoVideo(n,t)}));else{this.videoType=\"hosted\";const e=this.getElementSettings(\"background_video_start\"),i=this.getElementSettings(\"background_video_end\");(e||i)&amp;&amp;(t+=\"#t=\"+(e||0)+(i?\",\"+i:\"\")),this.elements.$backgroundVideoHosted.attr(\"src\",t).one(\"canplay\",this.changeVideoSize.bind(this)),n&amp;&amp;this.elements.$backgroundVideoHosted.on(\"ended\",(()=&gt;{this.elements.$backgroundVideoHosted.hide()}))}elementorFrontend.elements.$window.on(\"resize\",this.changeVideoSize)}deactivate(){\"youtube\"===this.videoType&amp;&amp;this.player.getIframe()||\"vimeo\"===this.videoType?this.player.destroy():this.elements.$backgroundVideoHosted.removeAttr(\"src\").off(\"ended\"),elementorFrontend.elements.$window.off(\"resize\",this.changeVideoSize)}run(){const e=this.getElementSettings();(e.background_play_on_mobile||\"mobile\"!==elementorFrontend.getCurrentDeviceMode())&amp;&amp;(\"video\"===e.background_background&amp;&amp;e.background_video_link?this.activate():this.deactivate())}onInit(){super.onInit(...arguments),this.changeVideoSize=this.changeVideoSize.bind(this),this.run()}onElementChange(e){\"background_background\"===e&amp;&amp;this.run()}}t.default=BackgroundVideo},8704:(e,t,n)=&gt;{\"use strict\";var i=n(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var s=i(n(4058)),o=i(n(9501)),r=[s.default,o.default];t.default=r},7537:(e,t,n)=&gt;{\"use strict\";var i=n(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var s=[i(n(4058)).default];t.default=s},4985:(e,t,n)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var i=[()=&gt;n.e(413).then(n.bind(n,2929)),()=&gt;n.e(413).then(n.bind(n,343))];t.default=i},6397:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class GlobalHandler extends elementorModules.frontend.handlers.Base{getWidgetType(){return\"global\"}animate(){const e=this.$element,t=this.getAnimation();if(\"none\"===t)return void e.removeClass(\"elementor-invisible\");const n=this.getElementSettings(),i=n._animation_delay||n.animation_delay||0;e.removeClass(t),this.currentAnimation&amp;&amp;e.removeClass(this.currentAnimation),this.currentAnimation=t,setTimeout((()=&gt;{e.removeClass(\"elementor-invisible\").addClass(\"animated \"+t)}),i)}getAnimation(){return this.getCurrentDeviceSetting(\"animation\")||this.getCurrentDeviceSetting(\"_animation\")}onInit(){if(super.onInit(...arguments),this.getAnimation()){const e=elementorModules.utils.Scroll.scrollObserver({callback:t=&gt;{t.isInViewport&amp;&amp;(this.animate(),e.unobserve(this.$element[0]))}});e.observe(this.$element[0])}}onElementChange(e){/^_?animation/.test(e)&amp;&amp;this.animate()}}t.default=e=&gt;{elementorFrontend.elementsHandler.addHandler(GlobalHandler,{$element:e})}},355:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class HandlesPosition extends elementorModules.frontend.handlers.Base{isActive(){return elementorFrontend.isEditMode()}isFirstSection(){return this.$element[0]===document.querySelector(\".elementor-edit-mode .elementor-top-section\")}isOverflowHidden(){return\"hidden\"===this.$element.css(\"overflow\")}getOffset(){if(\"body\"===elementor.config.document.container)return this.$element.offset().top;const e=jQuery(elementor.config.document.container);return this.$element.offset().top-e.offset().top}setHandlesPosition(){const e=elementor.documents.getCurrent();if(!e||!e.container.isEditable())return;const t=\"elementor-section--handles-inside\";if(elementor.settings.page.model.attributes.scroll_snap)return void this.$element.addClass(t);const n=this.isOverflowHidden();if(!n&amp;&amp;!this.isFirstSection())return;const i=n?0:this.getOffset();if(i .elementor-element-overlay &gt; .elementor-editor-section-settings\");i{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class Shapes extends elementorModules.frontend.handlers.Base{getDefaultSettings(){return{selectors:{container:\"&gt; .elementor-shape-%s\"},svgURL:elementorFrontend.config.urls.assets+\"shapes/\"}}getDefaultElements(){const e={},t=this.getSettings(\"selectors\");return e.$topContainer=this.$element.find(t.container.replace(\"%s\",\"top\")),e.$bottomContainer=this.$element.find(t.container.replace(\"%s\",\"bottom\")),e}isActive(){return elementorFrontend.isEditMode()}getSvgURL(e,t){let n=this.getSettings(\"svgURL\")+t+\".svg\";return elementor.config.additional_shapes&amp;&amp;e in elementor.config.additional_shapes&amp;&amp;(n=elementor.config.additional_shapes[e],-1{i.empty().append(e.childNodes[0])})),this.setNegative(e)}setNegative(e){this.elements[\"$\"+e+\"Container\"].attr(\"data-negative\",!!this.getElementSettings(\"shape_divider_\"+e+\"_negative\"))}onInit(){this.isActive(this.getSettings())&amp;&amp;(super.onInit(...arguments),[\"top\",\"bottom\"].forEach((e=&gt;{this.getElementSettings(\"shape_divider_\"+e)&amp;&amp;this.buildSVG(e)})))}onElementChange(e){const t=e.match(/^shape_divider_(top|bottom)$/);if(t)return void this.buildSVG(t[1]);const n=e.match(/^shape_divider_(top|bottom)_negative$/);n&amp;&amp;(this.buildSVG(n[1]),this.setNegative(n[1]))}}t.default=Shapes},2804:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class StretchedSection extends elementorModules.frontend.handlers.Base{bindEvents(){const e=this.getUniqueHandlerID();elementorFrontend.addListenerOnce(e,\"resize\",this.stretch),elementorFrontend.addListenerOnce(e,\"sticky:stick\",this.stretch,this.$element),elementorFrontend.addListenerOnce(e,\"sticky:unstick\",this.stretch,this.$element),elementorFrontend.isEditMode()&amp;&amp;(this.onKitChangeStretchContainerChange=this.onKitChangeStretchContainerChange.bind(this),elementor.channels.editor.on(\"kit:change:stretchContainer\",this.onKitChangeStretchContainerChange))}unbindEvents(){elementorFrontend.removeListeners(this.getUniqueHandlerID(),\"resize\",this.stretch),elementorFrontend.isEditMode()&amp;&amp;elementor.channels.editor.off(\"kit:change:stretchContainer\",this.onKitChangeStretchContainerChange)}isActive(e){return elementorFrontend.isEditMode()||e.$element.hasClass(\"elementor-section-stretched\")}initStretch(){this.stretch=this.stretch.bind(this),this.stretchElement=new elementorModules.frontend.tools.StretchElement({element:this.$element,selectors:{container:this.getStretchContainer()}})}getStretchContainer(){return elementorFrontend.getKitSettings(\"stretched_section_container\")||window}stretch(){this.getElementSettings(\"stretch_section\")&amp;&amp;this.stretchElement.stretch()}onInit(){this.isActive(this.getSettings())&amp;&amp;(this.initStretch(),super.onInit(...arguments),this.stretch())}onElementChange(e){\"stretch_section\"===e&amp;&amp;(this.getElementSettings(\"stretch_section\")?this.stretch():this.stretchElement.reset())}onKitChangeStretchContainerChange(){this.stretchElement.setSettings(\"selectors.container\",this.getStretchContainer()),this.stretch()}}t.default=StretchedSection},3346:(e,t,n)=&gt;{\"use strict\";var i=n(6028);e.exports=elementorModules.ViewModule.extend({getDefaultSettings:()=&gt;({scrollDuration:500,selectors:{links:\'a[href*=\"#\"]\',targets:\".elementor-element, .elementor-menu-anchor\",scrollable:(0,i.isScrollSnapActive)()?\"body\":\"html, body\"}}),getDefaultElements(){return{$scrollable:jQuery(this.getSettings(\"selectors\").scrollable)}},bindEvents(){elementorFrontend.elements.$document.on(\"click\",this.getSettings(\"selectors.links\"),this.handleAnchorLinks)},handleAnchorLinks(e){var t,n=e.currentTarget,s=location.pathname===n.pathname;if(location.hostname===n.hostname&amp;&amp;s&amp;&amp;!(n.hash.length0&amp;&amp;(o-=r.height()),a.length&gt;0&amp;&amp;(o-=Math.max.apply(null,a.map((function(){return jQuery(this).outerHeight()})).get())),e.preventDefault(),o=elementorFrontend.hooks.applyFilters(\"frontend/handlers/menu_anchor/scroll_top_distance\",o),(0,i.isScrollSnapActive)()&amp;&amp;elementorFrontend.elements.$body.css(\"scroll-snap-type\",\"none\"),this.elements.$scrollable.animate({scrollTop:o},this.getSettings(\"scrollDuration\"),\"linear\",(()=&gt;{(0,i.isScrollSnapActive)()&amp;&amp;elementorFrontend.elements.$body.css(\"scroll-snap-type\",\"\")}))}}},onInit(){elementorModules.ViewModule.prototype.onInit.apply(this,arguments)}})},6866:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class AssetsLoader{getScriptElement(e){const t=document.createElement(\"script\");return t.src=e,t}getStyleElement(e){const t=document.createElement(\"link\");return t.rel=\"stylesheet\",t.href=e,t}load(e,t){const n=AssetsLoader.assets[e][t];return n.loader||(n.loader=new Promise((t=&gt;{const i=\"style\"===e?this.getStyleElement(n.src):this.getScriptElement(n.src);i.onload=()=&gt;t(!0);const s=\"head\"===n.parent?n.parent:\"body\";document[s].appendChild(i)}))),n.loader}}t.default=AssetsLoader;const n=elementorFrontendConfig.environmentMode.isScriptDebug?\"\":\".min\";AssetsLoader.assets={script:{dialog:{src:`${elementorFrontendConfig.urls.assets}lib/dialog/dialog${n}.js?ver=4.9.0`},\"share-link\":{src:`${elementorFrontendConfig.urls.assets}lib/share-link/share-link${n}.js?ver=${elementorFrontendConfig.version}`},swiper:{src:`${elementorFrontendConfig.urls.assets}lib/swiper/swiper${n}.js?ver=5.3.6`}},style:{}}},8646:(e,t,n)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class LightboxManager extends elementorModules.ViewModule{static getLightbox(){const e=new Promise((e=&gt;{n.e(723).then(n.t.bind(n,3896,23)).then((t=&gt;{let{default:n}=t;return e(new n)}))})),t=elementorFrontend.utils.assetsLoader.load(\"script\",\"dialog\"),i=elementorFrontend.utils.assetsLoader.load(\"script\",\"share-link\");return Promise.all([e,t,i]).then((()=&gt;e))}getDefaultSettings(){return{selectors:{links:\"a, [data-elementor-lightbox]\"}}}getDefaultElements(){return{$links:jQuery(this.getSettings(\"selectors.links\"))}}isLightboxLink(e){if(\"a\"===e.tagName.toLowerCase()&amp;&amp;(e.hasAttribute(\"download\")||!/^[^?]+\\.(png|jpe?g|gif|svg|webp)(\\?.*)?$/i.test(e.href))&amp;&amp;!e.dataset.elementorLightboxVideo)return!1;const t=elementorFrontend.getKitSettings(\"global_image_lightbox\"),n=e.dataset.elementorOpenLightbox;return\"yes\"===n||t&amp;&amp;\"no\"!==n}async onLinkClick(e){const t=e.currentTarget,n=jQuery(e.target),i=elementorFrontend.isEditMode(),s=i&amp;&amp;elementor.$previewContents.find(\"body\").hasClass(\"elementor-editor__ui-state__color-picker\"),o=!!n.closest(\".elementor-edit-area\").length;if(!this.isLightboxLink(t))return void(i&amp;&amp;o&amp;&amp;e.preventDefault());if(e.preventDefault(),i&amp;&amp;!elementor.getPreferences(\"lightbox_in_editor\"))return;if(s)return;(this.isOptimizedAssetsLoading()?await LightboxManager.getLightbox():elementorFrontend.utils.lightbox).createLightbox(t)}isOptimizedAssetsLoading(){return elementorFrontend.config.experimentalFeatures.e_optimized_assets_loading}bindEvents(){elementorFrontend.elements.$document.on(\"click\",this.getSettings(\"selectors.links\"),(e=&gt;this.onLinkClick(e)))}onInit(){super.onInit(...arguments),this.isOptimizedAssetsLoading()&amp;&amp;!elementorFrontend.isEditMode()&amp;&amp;this.elements.$links.each(((e,t)=&gt;{if(this.isLightboxLink(t))return LightboxManager.getLightbox(),!1}))}}t.default=LightboxManager},8628:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;t.default=class Swiper{constructor(e,t){return this.config=t,this.config.breakpoints&amp;&amp;(this.config=this.adjustConfig(t)),jQuery(e).closest(\".elementor-widget-wrap\").addClass(\"e-swiper-container\"),jQuery(e).closest(\".elementor-widget\").addClass(\"e-widget-swiper\"),new Promise((t=&gt;{if(!elementorFrontend.config.experimentalFeatures.e_optimized_assets_loading)return t(this.createSwiperInstance(e,this.config));elementorFrontend.utils.assetsLoader.load(\"script\",\"swiper\").then((()=&gt;t(this.createSwiperInstance(e,this.config))))}))}createSwiperInstance(e,t){const n=window.Swiper;return n.prototype.adjustConfig=this.adjustConfig,new n(e,t)}adjustConfig(e){if(!e.handleElementorBreakpoints)return e;const t=elementorFrontend.config.responsive.activeBreakpoints,n=elementorFrontend.breakpoints.getBreakpointValues();return Object.keys(e.breakpoints).forEach((i=&gt;{const s=parseInt(i);let o;if(s===t.mobile.value||s+1===t.mobile.value)o=0;else if(!t.widescreen||s!==t.widescreen.value&amp;&amp;s+1!==t.widescreen.value){const e=n.findIndex((e=&gt;s===e||s+1===e));o=n[e-1]}else o=s;e.breakpoints[o]=e.breakpoints[i],e.breakpoints[i]={slidesPerView:e.slidesPerView,slidesPerGroup:e.slidesPerGroup?e.slidesPerGroup:1}})),e}}},2064:(e,t,n)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0,n(5719);class _default extends elementorModules.ViewModule{getDefaultSettings(){return{selectors:{links:\'a[href^=\"%23elementor-action\"], a[href^=\"#elementor-action\"]\'}}}bindEvents(){elementorFrontend.elements.$document.on(\"click\",this.getSettings(\"selectors.links\"),this.runLinkAction.bind(this))}initActions(){this.actions={lightbox:async e=&gt;{const t=await elementorFrontend.utils.lightbox;e.slideshow?t.openSlideshow(e.slideshow,e.url):(e.id&amp;&amp;(e.type=\"image\"),t.showModal(e))}}}addAction(e,t){this.actions[e]=t}runAction(e){const t=(e=decodeURIComponent(e)).match(/action=(.+?)&amp;/);if(!t)return;const n=this.actions[t[1]];if(!n)return;let i={};const s=e.match(/settings=(.+)/);s&amp;&amp;(i=JSON.parse(atob(s[1])));for(var o=arguments.length,r=new Array(o&gt;1?o-1:0),a=1;a{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.isScrollSnapActive=t.escapeHTML=void 0;t.escapeHTML=e=&gt;{const t={\"&amp;\":\"&amp;\",\"\":\"&gt;\",\"\'\":\"&#039;\",\'\"\':\"&quot;\"};return e.replace(/[&amp;\'\"]/g,(e=&gt;t[e]||e))};t.isScrollSnapActive=()=&gt;\"yes\"===(elementorFrontend.isEditMode()?elementor.settings.page.model.attributes?.scroll_snap:elementorFrontend.config.settings.page?.scroll_snap)},4773:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class BaseLoader extends elementorModules.ViewModule{getDefaultSettings(){return{isInserted:!1,selectors:{firstScript:\"script:first\"}}}getDefaultElements(){return{$firstScript:jQuery(this.getSettings(\"selectors.firstScript\"))}}insertAPI(){this.elements.$firstScript.before(jQuery(\"\",{src:this.getApiURL()})),this.setSettings(\"isInserted\",!0)}getVideoIDFromURL(e){const t=e.match(this.getURLRegex());return t&amp;&amp;t[1]}onApiReady(e){this.getSettings(\"isInserted\")||this.insertAPI(),this.isApiLoaded()?e(this.getApiObject()):setTimeout((()=&gt;{this.onApiReady(e)}),350)}getAutoplayURL(e){return e.replace(\"&amp;autoplay=0\",\"\")+\"&amp;autoplay=1\"}}t.default=BaseLoader},1911:(e,t,n)=&gt;{\"use strict\";var i=n(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var s=i(n(4773));class VimeoLoader extends s.default{getApiURL(){return\"https://player.vimeo.com/api/player.js\"}getURLRegex(){return/^(?:https?:\\/\\/)?(?:www|player\\.)?(?:vimeo\\.com\\/)?(?:video\\/|external\\/)?(\\d+)([^.?&amp;#\"\'&gt;]?)/}isApiLoaded(){return window.Vimeo}getApiObject(){return Vimeo}getAutoplayURL(e){const t=(e=super.getAutoplayURL(e)).match(/#t=[^&amp;]*/);return e.replace(t[0],\"\")+t}}t.default=VimeoLoader},1604:(e,t,n)=&gt;{\"use strict\";var i=n(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var s=i(n(4773));class YoutubeLoader extends s.default{getApiURL(){return\"https://www.youtube.com/iframe_api\"}getURLRegex(){return/^(?:https?:\\/\\/)?(?:www\\.)?(?:m\\.)?(?:youtu\\.be\\/|youtube\\.com\\/(?:(?:watch)?\\?(?:.*&amp;)?vi?=|(?:embed|v|vi|user)\\/))([^?&amp;\"\'&gt;]+)/}isApiLoaded(){return window.YT&amp;&amp;YT.loaded}getApiObject(){return YT}}t.default=YoutubeLoader},59:(e,t,n)=&gt;{\"use strict\";n.p=elementorFrontendConfig.urls.assets+\"js/\"},4375:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class Breakpoints extends elementorModules.Module{constructor(e){super(),this.responsiveConfig=e}getActiveBreakpointsList(){let e=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:{};e={largeToSmall:!1,withDesktop:!1,...e};const t=Object.keys(this.responsiveConfig.activeBreakpoints);if(e.withDesktop){const e=-1===t.indexOf(\"widescreen\")?t.length:t.length-1;t.splice(e,0,\"desktop\")}return e.largeToSmall&amp;&amp;t.reverse(),t}getBreakpointValues(){const{activeBreakpoints:e}=this.responsiveConfig,t=[];return Object.values(e).forEach((e=&gt;{t.push(e.value)})),t}getDesktopPreviousDeviceKey(){let e=\"\";const{activeBreakpoints:t}=this.responsiveConfig,n=Object.keys(t),i=n.length;return e=\"min\"===t[n[i-1]].direction?n[i-2]:n[i-1],e}getDesktopMinPoint(){const{activeBreakpoints:e}=this.responsiveConfig;return e[this.getDesktopPreviousDeviceKey()].value+1}getDeviceMinBreakpoint(e){if(\"desktop\"===e)return this.getDesktopMinPoint();const{activeBreakpoints:t}=this.responsiveConfig,n=Object.keys(t);let i;if(n[0]===e)i=320;else if(\"widescreen\"===e)i=t[e]?t[e].value:this.responsiveConfig.breakpoints.widescreen;else{const s=n.indexOf(e);i=t[n[s-1]].value+1}return i}getActiveMatchRegex(){return new RegExp(this.getActiveBreakpointsList().map((e=&gt;\"_\"+e)).join(\"|\")+\"$\")}}t.default=Breakpoints},6404:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=t.Events=void 0;class Events{static dispatch(e,t){let n=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:null,i=arguments.length&gt;3&amp;&amp;void 0!==arguments[3]?arguments[3]:null;e=e instanceof jQuery?e[0]:e,i&amp;&amp;e.dispatchEvent(new CustomEvent(i,{detail:n})),e.dispatchEvent(new CustomEvent(t,{detail:n}))}}t.Events=Events;var n=Events;t.default=n},9469:e=&gt;{\"use strict\";e.exports=function(){var e,t=Array.prototype.slice,n={actions:{},filters:{}};function _removeHook(e,t,i,s){var o,r,a;if(n[e][t])if(i)if(o=n[e][t],s)for(a=o.length;a--;)(r=o[a]).callback===i&amp;&amp;r.context===s&amp;&amp;o.splice(a,1);else for(a=o.length;a--;)o[a].callback===i&amp;&amp;o.splice(a,1);else n[e][t]=[]}function _addHook(e,t,i,s,o){var r={callback:i,priority:s,context:o},a=n[e][t];if(a){var l=!1;if(jQuery.each(a,(function(){if(this.callback===i)return l=!0,!1})),l)return;a.push(r),a=function _hookInsertSort(e){for(var t,n,i,s=1,o=e.length;st.priority;)e[n]=e[n-1],--n;e[n]=t}return e}(a)}else a=[r];n[e][t]=a}function _runHook(e,t,i){var s,o,r=n[e][t];if(!r)return\"filters\"===e&amp;&amp;i[0];if(o=r.length,\"filters\"===e)for(s=0;s&lt;o;s++)i[0]=r[s].callback.apply(r[s].context,i);else for(s=0;s{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;const matchUserAgent=e=&gt;n.indexOf(e)&gt;=0,n=navigator.userAgent,i=!!window.opr&amp;&amp;!!opr.addons||!!window.opera||matchUserAgent(\" OPR/\"),s=matchUserAgent(\"Firefox\"),o=/^((?!chrome|android).)*safari/i.test(n)||/constructor/i.test(window.HTMLElement)||\"[object SafariRemoteNotification]\"===(!window.safari||\"undefined\"!=typeof safari&amp;&amp;safari.pushNotification).toString(),r=/Trident|MSIE/.test(n)&amp;&amp;!!document.documentMode,a=!r&amp;&amp;!!window.StyleMedia||matchUserAgent(\"Edg\"),l=!!window.chrome&amp;&amp;matchUserAgent(\"Chrome\")&amp;&amp;!(a||i),d=matchUserAgent(\"Chrome\")&amp;&amp;!!window.CSS;var c={appleWebkit:matchUserAgent(\"AppleWebKit\")&amp;&amp;!d,blink:d,chrome:l,edge:a,firefox:s,ie:r,mac:matchUserAgent(\"Macintosh\"),opera:i,safari:o,webkit:matchUserAgent(\"AppleWebKit\")};t.default=c},5107:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class _default extends elementorModules.Module{get(e,t){let n;t=t||{};try{n=t.session?sessionStorage:localStorage}catch(t){return e?void 0:{}}let i=n.getItem(\"elementor\");i=i?JSON.parse(i):{},i.__expiration||(i.__expiration={});const s=i.__expiration;let o=[];e?s[e]&amp;&amp;(o=[e]):o=Object.keys(s);let r=!1;return o.forEach((e=&gt;{new Date(s[e]){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class _default extends elementorModules.Module{constructor(){super(),elementorFrontend.elementsHandler.attachHandler(\"text-path\",(()=&gt;n.e(48).then(n.bind(n,6468))))}}t.default=_default},1855:(e,t,n)=&gt;{var i=n(5516),s=TypeError;e.exports=function(e,t){if(i(t,e))return e;throw s(\"Incorrect invocation\")}},3621:e=&gt;{e.exports={IndexSizeError:{s:\"INDEX_SIZE_ERR\",c:1,m:1},DOMStringSizeError:{s:\"DOMSTRING_SIZE_ERR\",c:2,m:0},HierarchyRequestError:{s:\"HIERARCHY_REQUEST_ERR\",c:3,m:1},WrongDocumentError:{s:\"WRONG_DOCUMENT_ERR\",c:4,m:1},InvalidCharacterError:{s:\"INVALID_CHARACTER_ERR\",c:5,m:1},NoDataAllowedError:{s:\"NO_DATA_ALLOWED_ERR\",c:6,m:0},NoModificationAllowedError:{s:\"NO_MODIFICATION_ALLOWED_ERR\",c:7,m:1},NotFoundError:{s:\"NOT_FOUND_ERR\",c:8,m:1},NotSupportedError:{s:\"NOT_SUPPORTED_ERR\",c:9,m:1},InUseAttributeError:{s:\"INUSE_ATTRIBUTE_ERR\",c:10,m:1},InvalidStateError:{s:\"INVALID_STATE_ERR\",c:11,m:1},SyntaxError:{s:\"SYNTAX_ERR\",c:12,m:1},InvalidModificationError:{s:\"INVALID_MODIFICATION_ERR\",c:13,m:1},NamespaceError:{s:\"NAMESPACE_ERR\",c:14,m:1},InvalidAccessError:{s:\"INVALID_ACCESS_ERR\",c:15,m:1},ValidationError:{s:\"VALIDATION_ERR\",c:16,m:0},TypeMismatchError:{s:\"TYPE_MISMATCH_ERR\",c:17,m:1},SecurityError:{s:\"SECURITY_ERR\",c:18,m:1},NetworkError:{s:\"NETWORK_ERR\",c:19,m:1},AbortError:{s:\"ABORT_ERR\",c:20,m:1},URLMismatchError:{s:\"URL_MISMATCH_ERR\",c:21,m:1},QuotaExceededError:{s:\"QUOTA_EXCEEDED_ERR\",c:22,m:1},TimeoutError:{s:\"TIMEOUT_ERR\",c:23,m:1},InvalidNodeTypeError:{s:\"INVALID_NODE_TYPE_ERR\",c:24,m:1},DataCloneError:{s:\"DATA_CLONE_ERR\",c:25,m:1}}},5719:(e,t,n)=&gt;{\"use strict\";var i=n(1695),s=n(2086),o=n(563),r=n(5736),a=n(7826).f,l=n(9606),d=n(1855),c=n(5070),u=n(1879),h=n(3621),m=n(1765),g=n(5283),p=n(3296),f=\"DOMException\",v=o(\"Error\"),b=o(f),_=function DOMException(){d(this,y);var e=arguments.length,t=u(e&lt;1?void 0:arguments[0]),n=u(e{e.O(0,[354],(()=&gt;{return t=5654,e(e.s=t);var t}));e.O()}]);\r\n/*! elementor - v3.7.4 - 31-08-2022 */\n(()=&gt;{var e={77266:e=&gt;{e.exports=function _assertThisInitialized(e){if(void 0===e)throw new ReferenceError(\"this hasn\'t been initialised - super() hasn\'t been called\");return e},e.exports.__esModule=!0,e.exports.default=e.exports},78983:e=&gt;{e.exports=function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")},e.exports.__esModule=!0,e.exports.default=e.exports},42081:e=&gt;{function _defineProperties(e,t){for(var r=0;r{var n=r(79443);function _get(){return\"undefined\"!=typeof Reflect&amp;&amp;Reflect.get?(e.exports=_get=Reflect.get.bind(),e.exports.__esModule=!0,e.exports.default=e.exports):(e.exports=_get=function _get(e,t,r){var o=n(e,t);if(o){var s=Object.getOwnPropertyDescriptor(o,t);return s.get?s.get.call(arguments.length{function _getPrototypeOf(t){return e.exports=_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function _getPrototypeOf(e){return e.__proto__||Object.getPrototypeOf(e)},e.exports.__esModule=!0,e.exports.default=e.exports,_getPrototypeOf(t)}e.exports=_getPrototypeOf,e.exports.__esModule=!0,e.exports.default=e.exports},58724:(e,t,r)=&gt;{var n=r(96196);e.exports=function _inherits(e,t){if(\"function\"!=typeof t&amp;&amp;null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,\"prototype\",{writable:!1}),t&amp;&amp;n(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},73203:e=&gt;{e.exports=function _interopRequireDefault(e){return e&amp;&amp;e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},71173:(e,t,r)=&gt;{var n=r(7501).default,o=r(77266);e.exports=function _possibleConstructorReturn(e,t){if(t&amp;&amp;(\"object\"===n(t)||\"function\"==typeof t))return t;if(void 0!==t)throw new TypeError(\"Derived constructors may only return object or undefined\");return o(e)},e.exports.__esModule=!0,e.exports.default=e.exports},96196:e=&gt;{function _setPrototypeOf(t,r){return e.exports=_setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function _setPrototypeOf(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,_setPrototypeOf(t,r)}e.exports=_setPrototypeOf,e.exports.__esModule=!0,e.exports.default=e.exports},79443:(e,t,r)=&gt;{var n=r(74910);e.exports=function _superPropBase(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&amp;&amp;null!==(e=n(e)););return e},e.exports.__esModule=!0,e.exports.default=e.exports},7501:e=&gt;{function _typeof(t){return e.exports=_typeof=\"function\"==typeof Symbol&amp;&amp;\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&amp;&amp;\"function\"==typeof Symbol&amp;&amp;e.constructor===Symbol&amp;&amp;e!==Symbol.prototype?\"symbol\":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,_typeof(t)}e.exports=_typeof,e.exports.__esModule=!0,e.exports.default=e.exports}},t={};function __webpack_require__(r){var n=t[r];if(void 0!==n)return n.exports;var o=t[r]={exports:{}};return e[r](o,o.exports,__webpack_require__),o.exports}(()=&gt;{\"use strict\";var e=__webpack_require__(73203),t=e(__webpack_require__(78983)),r=e(__webpack_require__(42081)),n=e(__webpack_require__(51121)),o=e(__webpack_require__(58724)),s=e(__webpack_require__(71173)),a=e(__webpack_require__(74910));function _createSuper(e){var t=function _isNativeReflectConstruct(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function _createSuperInternal(){var r,n=(0,a.default)(e);if(t){var o=(0,a.default)(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return(0,s.default)(this,r)}}var u=function(e){(0,o.default)(AdminBar,e);var s=_createSuper(AdminBar);function AdminBar(){return(0,t.default)(this,AdminBar),s.apply(this,arguments)}return(0,r.default)(AdminBar,[{key:\"getDefaultSettings\",value:function getDefaultSettings(){return{prefixes:{adminBarId:\"wp-admin-bar-\"},classes:{adminBarItem:\"ab-item\",adminBarItemTitle:\"elementor-edit-link-title\",adminBarItemSubTitle:\"elementor-edit-link-type\",adminBarNonLinkItem:\"ab-empty-item\",adminBarSubItemsWrapper:\"ab-sub-wrapper\",adminBarSubItems:\"ab-submenu\"},selectors:{adminBar:\"#wp-admin-bar-root-default\",editMenuItem:\"#wp-admin-bar-edit\",newMenuItem:\"#wp-admin-bar-new-content\"}}}},{key:\"getDefaultElements\",value:function getDefaultElements(){var e=this.getSettings(\"selectors\"),t=e.adminBar,r=e.editMenuItem,n=e.newMenuItem;return{$adminBar:jQuery(t),$editMenuItem:jQuery(r),$newMenuItem:jQuery(n)}}},{key:\"onInit\",value:function onInit(){(0,n.default)((0,a.default)(AdminBar.prototype),\"onInit\",this).call(this),this.createMenu(elementorAdminBarConfig)}},{key:\"createMenu\",value:function createMenu(e){var t=this.createMenuItems(Object.values(e));this.elements.$editMenuItem.length?this.elements.$editMenuItem.after(t):this.elements.$newMenuItem?this.elements.$newMenuItem.after(t):this.elements.$adminBar.append(t)}},{key:\"createMenuItems\",value:function createMenuItems(e){var t=this;return e.map((function(e){return t.createMenuItem(e)}))}},{key:\"createMenuItem\",value:function createMenuItem(e){var t=e.children?Object.values(e.children):[],r=\"\".concat(this.getSettings(\"prefixes.adminBarId\")).concat(e.id),n=jQuery(\"<span>\",{class:this.getSettings(\"classes.adminBarItemTitle\"),html:e.title}),o=e.sub_title?jQuery(\"<span>\",{class:this.getSettings(\"classes.adminBarItemSubTitle\"),html:e.sub_title}):null,s=jQuery(e.href?\"<a>\":\"<div>\",{\"aria-haspopup\":!!t.length||null,class:[this.getSettings(\"classes.adminBarItem\"),e.href?\"\":this.getSettings(\"classes.adminBarNonLinkItem\"),e.class].join(\" \"),href:e.href}).append([n,o]);return jQuery(\"<li>\",{id:r,class:t.length?\"menupop\":\"\"+(e.parent_class||\"elementor-general-section\")}).append([s,t.length?this.createSubMenuItems(r,t):null])}},{key:\"createSubMenuItems\",value:function createSubMenuItems(e,t){var r=jQuery(\"<ul>\",{class:this.getSettings(\"classes.adminBarSubItems\"),id:\"\".concat(e,\"-default\")}).append(this.createMenuItems(t));return jQuery(\"<div>\",{class:this.getSettings(\"classes.adminBarSubItemsWrapper\")}).append(r)}}]),AdminBar}(elementorModules.ViewModule);document.addEventListener(\"DOMContentLoaded\",(function(){return new u}))})()})();','0e0a35fb48e4ab67b3a16d3bf3fe75bd-scripts','','publish','closed','closed','','0e0a35fb48e4ab67b3a16d3bf3fe75bd-scripts','','','2022-09-12 15:51:45','2022-09-12 13:51:45','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1210',0,'wphb_minify_group','',0),(1211,0,'2022-09-12 15:51:46','2022-09-12 13:51:46','/**handles:hoverintent-js,admin-bar**/\r\n/*! This file is auto-generated */\n!function(e,t){if(\"function\"==typeof define&amp;&amp;define.amd)define(\"hoverintent\",[\"module\"],t);else if(\"undefined\"!=typeof exports)t(module);else{var n={exports:{}};t(n),e.hoverintent=n.exports}}(this,function(e){\"use strict\";var t=Object.assign||function(e){for(var t=1;t&lt;arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&amp;&amp;(e[o]=n[o])}return e};e.exports=function(e,n,o){function i(e,t){return y&amp;&amp;(y=clearTimeout(y)),b=0,p?void 0:o.call(e,t)}function r(e){m=e.clientX,d=e.clientY}function u(e,t){if(y&amp;&amp;(y=clearTimeout(y)),Math.abs(h-m)+Math.abs(E-d) .ab-item\").focus(),y(e,\"hover\"))}function f(e){var t;13!==e.which||w(e.target,\".ab-sub-wrapper\")||(t=w(e.target,\".menupop\"))&amp;&amp;(e.preventDefault(),(o(t,\"hover\")?y:b)(t,\"hover\"))}function p(e){var t;13===e.which&amp;&amp;(t=e.target.getAttribute(\"href\"),-1&lt;d.userAgent.toLowerCase().indexOf(&quot;applewebkit&quot;)&amp;&amp;t&amp;&amp;&quot;#&quot;===t.charAt(0)&amp;&amp;setTimeout(function(){var e=l.getElementById(t.replace(&quot;#&quot;,&quot;&quot;));e&amp;&amp;(e.setAttribute(&quot;tabIndex&quot;,&quot;0&quot;),e.focus())},100))}function h(e,t){w(t.target,&quot;.ab-sub-wrapper&quot;)||(t.preventDefault(),(t=w(t.target,&quot;.menupop&quot;))&amp;&amp;(o(t,&quot;hover&quot;)?y(t,&quot;hover&quot;):(E(e),b(t,&quot;hover&quot;))))}function v(e){var t,n=e.target.parentNode;if(t=n?n.querySelector(&quot;.shortlink-input&quot;):t)return e.preventDefault&amp;&amp;e.preventDefault(),e.returnValue=!1,b(n,&quot;selected&quot;),t.focus(),t.select(),!(t.onblur=function(){y(n,&quot;selected&quot;)})}function g(){if(&quot;sessionStorage&quot;in u)try{for(var e in sessionStorage)-1&lt;e.indexOf(&quot;wp-autosave-&quot;)&amp;&amp;sessionStorage.removeItem(e)}catch(e){}}function o(e,t){return e&amp;&amp;(e.classList&amp;&amp;e.classList.contains?e.classList.contains(t):e.className&amp;&amp;-1&lt;e.className.split(&quot; &quot;).indexOf(t))}function b(e,t){e&amp;&amp;(e.classList&amp;&amp;e.classList.add?e.classList.add(t):o(e,t)||(e.className&amp;&amp;(e.className+=&quot; &quot;),e.className+=t))}function y(e,t){var n,r;if(e&amp;&amp;o(e,t))if(e.classList&amp;&amp;e.classList.remove)e.classList.remove(t);else{for(n=&quot; &quot;+t+&quot; &quot;,r=&quot; &quot;+e.className+&quot; &quot;;-1&lt;r.indexOf(n);)r=r.replace(n,&quot;&quot;);e.className=r.replace(/^[\\s]+|[\\s]+$/g,&quot;&quot;)}}function E(e){if(e&amp;&amp;e.length)for(var t=0;t&lt;e.length;t++)y(e[t],&quot;hover&quot;)}function L(e){if(!e.target||&quot;wpadminbar&quot;===e.target.id||&quot;wp-admin-bar-top-secondary&quot;===e.target.id)try{u.scrollTo({top:-32,left:0,behavior:&quot;smooth&quot;})}catch(e){u.scrollTo(0,-32)}}function w(e,t){for(u.Element.prototype.matches||(u.Element.prototype.matches=u.Element.prototype.matchesSelector||u.Element.prototype.mozMatchesSelector||u.Element.prototype.msMatchesSelector||u.Element.prototype.oMatchesSelector||u.Element.prototype.webkitMatchesSelector||function(e){for(var t=(this.document||this.ownerDocument).querySelectorAll(e),n=t.length;0&lt;=--n&amp;&amp;t.item(n)!==this;);return-1&lt;n});e&amp;&amp;e!==l;e=e.parentNode)if(e.matches(t))return e;return null}l.addEventListener(&quot;DOMContentLoaded&quot;,function(){var n,e,t,r,o,a,s,i,c=l.getElementById(&quot;wpadminbar&quot;);if(c&amp;&amp;&quot;querySelectorAll&quot;in c){n=c.querySelectorAll(&quot;li.menupop&quot;),e=c.querySelectorAll(&quot;.ab-item&quot;),t=l.getElementById(&quot;wp-admin-bar-logout&quot;),r=l.getElementById(&quot;adminbarsearch&quot;),o=l.getElementById(&quot;wp-admin-bar-get-shortlink&quot;),a=c.querySelector(&quot;.screen-reader-shortcut&quot;),s=/Mobile\\/.+Safari/.test(d.userAgent)?&quot;touchstart&quot;:&quot;click&quot;,y(c,&quot;nojs&quot;),&quot;ontouchstart&quot;in u&amp;&amp;(l.body.addEventListener(s,function(e){w(e.target,&quot;li.menupop&quot;)||E(n)}),c.addEventListener(&quot;touchstart&quot;,function e(){for(var t=0;t&lt;n.length;t++)n[t].addEventListener(&quot;click&quot;,h.bind(null,n));c.removeEventListener(&quot;touchstart&quot;,e)})),c.addEventListener(&quot;click&quot;,L);for(i=0;i&lt;n.length;i++)u.hoverintent(n[i],b.bind(null,n[i],&quot;hover&quot;),y.bind(null,n[i],&quot;hover&quot;)).options({timeout:180}),n[i].addEventListener(&quot;keydown&quot;,f);for(i=0;i&lt;e.length;i++)e[i].addEventListener(&quot;keydown&quot;,m);r&amp;&amp;((s=l.getElementById(&quot;adminbar-search&quot;)).addEventListener(&quot;focus&quot;,function(){b(r,&quot;adminbar-focused&quot;)}),s.addEventListener(&quot;blur&quot;,function(){y(r,&quot;adminbar-focused&quot;)})),a&amp;&amp;a.addEventListener(&quot;keydown&quot;,p),o&amp;&amp;o.addEventListener(&quot;click&quot;,v),u.location.hash&amp;&amp;u.scrollBy(0,-32),t&amp;&amp;t.addEventListener(&quot;click&quot;,g)}})}(document,window,navigator);','0dac8fec54af0222b5179c3170e05941-scripts','','publish','closed','closed','','0dac8fec54af0222b5179c3170e05941-scripts','','','2022-09-12 15:51:46','2022-09-12 13:51:46','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1211',0,'wphb_minify_group','',0),(1212,1,'2022-09-12 15:52:33','2022-09-12 13:52:33','{\n    \"hello-elementor::nav_menu_locations[menu-1]\": {\n        \"value\": 2,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-09-12 13:52:33\"\n    }\n}','','','trash','closed','closed','','07f45893-bee4-4ebf-94eb-b94b3647893b','','','2022-09-12 15:52:33','2022-09-12 13:52:33','',0,'https://podiatrist.capetown/2022/09/12/07f45893-bee4-4ebf-94eb-b94b3647893b/',0,'customize_changeset','',0),(1213,0,'2022-09-12 15:53:36','2022-09-12 13:53:36','/**handles:elementor-frontend-modules,elementor-waypoints**/\r\n/*! elementor - v3.7.4 - 31-08-2022 */\n(self.webpackChunkelementor=self.webpackChunkelementor||[]).push([[354],{381:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;t.default=(e,t)=&gt;{t=Array.isArray(t)?t:[t];for(const r of t)if(e.constructor.name===r.prototype[Symbol.toStringTag])return!0;return!1}},8135:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class _default extends elementorModules.ViewModule{getDefaultSettings(){return{selectors:{elements:\".elementor-element\",nestedDocumentElements:\".elementor .elementor-element\"},classes:{editMode:\"elementor-edit-mode\"}}}getDefaultElements(){const e=this.getSettings(\"selectors\");return{$elements:this.$element.find(e.elements).not(this.$element.find(e.nestedDocumentElements))}}getDocumentSettings(e){let t;if(this.isEdit){t={};const e=elementor.settings.page.model;jQuery.each(e.getActiveControls(),(r=&gt;{t[r]=e.attributes[r]}))}else t=this.$element.data(\"elementor-settings\")||{};return this.getItems(t,e)}runElementsHandlers(){this.elements.$elements.each(((e,t)=&gt;elementorFrontend.elementsHandler.runReadyTrigger(t)))}onInit(){this.$element=this.getSettings(\"$element\"),super.onInit(),this.isEdit=this.$element.hasClass(this.getSettings(\"classes.editMode\")),this.isEdit?elementor.on(\"document:loaded\",(()=&gt;{elementor.settings.page.model.on(\"change\",this.onSettingsChange.bind(this))})):this.runElementsHandlers()}onSettingsChange(){}}t.default=_default},2821:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(3090));class SwiperHandlerBase extends o.default{getInitialSlide(){const e=this.getEditSettings();return e.activeItemIndex?e.activeItemIndex-1:0}getSlidesCount(){return this.elements.$slides.length}togglePauseOnHover(e){e?this.elements.$swiperContainer.on({mouseenter:()=&gt;{this.swiper.autoplay.stop()},mouseleave:()=&gt;{this.swiper.autoplay.start()}}):this.elements.$swiperContainer.off(\"mouseenter mouseleave\")}handleKenBurns(){const e=this.getSettings();this.$activeImageBg&amp;&amp;this.$activeImageBg.removeClass(e.classes.kenBurnsActive),this.activeItemIndex=this.swiper?this.swiper.activeIndex:this.getInitialSlide(),this.swiper?this.$activeImageBg=jQuery(this.swiper.slides[this.activeItemIndex]).children(\".\"+e.classes.slideBackground):this.$activeImageBg=jQuery(this.elements.$slides[0]).children(\".\"+e.classes.slideBackground),this.$activeImageBg.addClass(e.classes.kenBurnsActive)}}t.default=SwiperHandlerBase},3090:e=&gt;{\"use strict\";e.exports=elementorModules.ViewModule.extend({$element:null,editorListeners:null,onElementChange:null,onEditSettingsChange:null,onPageSettingsChange:null,isEdit:null,__construct(e){this.isActive(e)&amp;&amp;(this.$element=e.$element,this.isEdit=this.$element.hasClass(\"elementor-element-edit-mode\"),this.isEdit&amp;&amp;this.addEditorListeners())},isActive:()=&gt;!0,findElement(e){var t=this.$element;return t.find(e).filter((function(){return jQuery(this).parent().closest(\".elementor-element\").is(t)}))},getUniqueHandlerID(e,t){return e||(e=this.getModelCID()),t||(t=this.$element),e+t.attr(\"data-element_type\")+this.getConstructorID()},initEditorListeners(){var e=this;if(e.editorListeners=[{event:\"element:destroy\",to:elementor.channels.data,callback(t){t.cid===e.getModelCID()&amp;&amp;e.onDestroy()}}],e.onElementChange){const t=e.getWidgetType()||e.getElementType();let r=\"change\";\"global\"!==t&amp;&amp;(r+=\":\"+t),e.editorListeners.push({event:r,to:elementor.channels.editor,callback(t,r){e.getUniqueHandlerID(r.model.cid,r.$el)===e.getUniqueHandlerID()&amp;&amp;e.onElementChange(t.model.get(\"name\"),t,r)}})}e.onEditSettingsChange&amp;&amp;e.editorListeners.push({event:\"change:editSettings\",to:elementor.channels.editor,callback(t,r){if(r.model.cid!==e.getModelCID())return;const n=Object.keys(t.changed)[0];e.onEditSettingsChange(n,t.changed[n])}}),[\"page\"].forEach((function(t){var r=\"on\"+t[0].toUpperCase()+t.slice(1)+\"SettingsChange\";e[r]&amp;&amp;e.editorListeners.push({event:\"change\",to:elementor.settings[t].model,callback(t){e[r](t.changed)}})}))},getEditorListeners(){return this.editorListeners||this.initEditorListeners(),this.editorListeners},addEditorListeners(){var e=this.getUniqueHandlerID();this.getEditorListeners().forEach((function(t){elementorFrontend.addListenerOnce(e,t.event,t.callback,t.to)}))},removeEditorListeners(){var e=this.getUniqueHandlerID();this.getEditorListeners().forEach((function(t){elementorFrontend.removeListeners(e,t.event,null,t.to)}))},getElementType(){return this.$element.data(\"element_type\")},getWidgetType(){const e=this.$element.data(\"widget_type\");if(e)return e.split(\".\")[0]},getID(){return this.$element.data(\"id\")},getModelCID(){return this.$element.data(\"model-cid\")},getElementSettings(e){let t={};const r=this.getModelCID();if(this.isEdit&amp;&amp;r){const e=elementorFrontend.config.elements.data[r],n=e.attributes;let o=n.widgetType||n.elType;n.isInner&amp;&amp;(o=\"inner-\"+o);let i=elementorFrontend.config.elements.keys[o];i||(i=elementorFrontend.config.elements.keys[o]=[],jQuery.each(e.controls,((e,t)=&gt;{t.frontend_available&amp;&amp;i.push(e)}))),jQuery.each(e.getActiveControls(),(function(e){if(-1!==i.indexOf(e)){let r=n[e];r.toJSON&amp;&amp;(r=r.toJSON()),t[e]=r}}))}else t=this.$element.data(\"settings\")||{};return this.getItems(t,e)},getEditSettings(e){var t={};return this.isEdit&amp;&amp;(t=elementorFrontend.config.elements.editSettings[this.getModelCID()].attributes),this.getItems(t,e)},getCurrentDeviceSetting(e){return elementorFrontend.getCurrentDeviceSetting(this.getElementSettings(),e)},onInit(){this.isActive(this.getSettings())&amp;&amp;elementorModules.ViewModule.prototype.onInit.apply(this,arguments)},onDestroy(){this.isEdit&amp;&amp;this.removeEditorListeners(),this.unbindEvents&amp;&amp;this.unbindEvents()}})},6412:(e,t,r)=&gt;{\"use strict\";var n=r(3203),o=n(r(5955)),i=n(r(8135)),s=n(r(5658)),a=n(r(3090)),u=n(r(2821));o.default.frontend={Document:i.default,tools:{StretchElement:s.default},handlers:{Base:a.default,SwiperBase:u.default}}},5658:e=&gt;{\"use strict\";e.exports=elementorModules.ViewModule.extend({getDefaultSettings:()=&gt;({element:null,direction:elementorFrontend.config.is_rtl?\"right\":\"left\",selectors:{container:window}}),getDefaultElements(){return{$element:jQuery(this.getSettings(\"element\"))}},stretch(){var e,t=this.getSettings(\"selectors.container\");try{e=jQuery(t)}catch(e){}e&amp;&amp;e.length||(e=jQuery(this.getDefaultSettings().selectors.container)),this.reset();var r=this.elements.$element,n=e.innerWidth(),o=r.offset().left,i=\"fixed\"===r.css(\"position\"),s=i?0:o;if(window!==e[0]){var a=e.offset().left;i&amp;&amp;(s=a),o&gt;a&amp;&amp;(s=o-a)}i||(elementorFrontend.config.is_rtl&amp;&amp;(s=n-(r.outerWidth()+s)),s=-s);var u={};u.width=n+\"px\",u[this.getSettings(\"direction\")]=s+\"px\",r.css(u)},reset(){var e={width:\"\"};e[this.getSettings(\"direction\")]=\"\",this.elements.$element.css(e)}})},2618:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0,r(740);var o=n(r(7597)),i=n(r(381));class ArgsObject extends o.default{static getInstanceType(){return\"ArgsObject\"}constructor(e){super(),this.args=e}requireArgument(e){let t=arguments.length&gt;1&amp;&amp;void 0!==arguments[1]?arguments[1]:this.args;if(!Object.prototype.hasOwnProperty.call(t,e))throw Error(`${e} is required.`)}requireArgumentType(e,t){let r=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(e,r),typeof r[e]!==t)throw Error(`${e} invalid type: ${t}.`)}requireArgumentInstance(e,t){let r=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(e,r),!(r[e]instanceof t||(0,i.default)(r[e],t)))throw Error(`${e} invalid instance.`)}requireArgumentConstructor(e,t){let r=arguments.length&gt;2&amp;&amp;void 0!==arguments[2]?arguments[2]:this.args;if(this.requireArgument(e,r),r[e].constructor.toString()!==t.prototype.constructor.toString())throw Error(`${e} invalid constructor type.`)}}t.default=ArgsObject},869:(e,t,r)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=t.ForceMethodImplementation=void 0,r(740),r(5623);class ForceMethodImplementation extends Error{constructor(){let e=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=arguments.length&gt;1&amp;&amp;void 0!==arguments[1]?arguments[1]:{};super(`${e.isStatic?\"static \":\"\"}${e.fullName}() should be implemented, please provide \'${e.functionName||e.fullName}\' functionality.`,t),Object.keys(t).length&amp;&amp;console.error(t),Error.captureStackTrace(this,ForceMethodImplementation)}}t.ForceMethodImplementation=ForceMethodImplementation;t.default=e=&gt;{const t=Error().stack.split(\"\\n\")[2].trim(),r=t.startsWith(\"at new\")?\"constructor\":t.split(\" \")[1],n={};if(n.functionName=r,n.fullName=r,n.functionName.includes(\".\")){const e=n.functionName.split(\".\");n.className=e[0],n.functionName=e[1]}else n.isStatic=!0;throw new ForceMethodImplementation(n,e)}},7597:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;class InstanceType{static[Symbol.hasInstance](e){let t=super[Symbol.hasInstance](e);if(e&amp;&amp;!e.constructor.getInstanceType)return t;if(e&amp;&amp;(e.instanceTypes||(e.instanceTypes=[]),t||this.getInstanceType()===e.constructor.getInstanceType()&amp;&amp;(t=!0),t)){const t=this.getInstanceType===InstanceType.getInstanceType?\"BaseInstanceType\":this.getInstanceType();-1===e.instanceTypes.indexOf(t)&amp;&amp;e.instanceTypes.push(t)}return!t&amp;&amp;e&amp;&amp;(t=e.instanceTypes&amp;&amp;Array.isArray(e.instanceTypes)&amp;&amp;-1!==e.instanceTypes.indexOf(this.getInstanceType())),t}static getInstanceType(){elementorModules.ForceMethodImplementation()}constructor(){let e=new.target;const t=[];for(;e.__proto__&amp;&amp;e.__proto__.name;)t.push(e.__proto__),e=e.__proto__;t.reverse().forEach((e=&gt;this instanceof e))}}t.default=InstanceType},1192:(e,t,r)=&gt;{\"use strict\";r(740);const Module=function(){const e=jQuery,t=arguments,r=this,n={};let o;const ensureClosureMethods=function(){e.each(r,(function(e){const t=r[e];\"function\"==typeof t&amp;&amp;(r[e]=function(){return t.apply(r,arguments)})}))},initSettings=function(){o=r.getDefaultSettings();const n=t[0];n&amp;&amp;e.extend(!0,o,n)},init=function(){r.__construct.apply(r,t),ensureClosureMethods(),initSettings(),r.trigger(\"init\")};this.getItems=function(e,t){if(t){const r=t.split(\".\"),n=r.splice(0,1);if(!r.length)return e[n];if(!e[n])return;return this.getItems(e[n],r.join(\".\"))}return e},this.getSettings=function(e){return this.getItems(o,e)},this.setSettings=function(t,n,i){if(i||(i=o),\"object\"==typeof t)return e.extend(i,t),r;const s=t.split(\".\"),a=s.splice(0,1);return s.length?(i[a]||(i[a]={}),r.setSettings(s.join(\".\"),n,i[a])):(i[a]=n,r)},this.getErrorMessage=function(e,t){let r;if(\"forceMethodImplementation\"===e)r=`The method \'${t}\' must to be implemented in the inheritor child.`;else r=\"An error occurs\";return r},this.forceMethodImplementation=function(e){throw new Error(this.getErrorMessage(\"forceMethodImplementation\",e))},this.on=function(t,o){if(\"object\"==typeof t)return e.each(t,(function(e){r.on(e,this)})),r;return t.split(\" \").forEach((function(e){n[e]||(n[e]=[]),n[e].push(o)})),r},this.off=function(e,t){if(!n[e])return r;if(!t)return delete n[e],r;const o=n[e].indexOf(t);return-1!==o&amp;&amp;(delete n[e][o],n[e]=n[e].filter((e=&gt;e))),r},this.trigger=function(t){const o=\"on\"+t[0].toUpperCase()+t.slice(1),i=Array.prototype.slice.call(arguments,1);r[o]&amp;&amp;r[o].apply(r,i);const s=n[t];return s?(e.each(s,(function(e,t){t.apply(r,i)})),r):r},init()};Module.prototype.__construct=function(){},Module.prototype.getDefaultSettings=function(){return{}},Module.prototype.getConstructorID=function(){return this.constructor.name},Module.extend=function(e){const t=jQuery,r=this,child=function(){return r.apply(this,arguments)};return t.extend(child,r),(child.prototype=Object.create(t.extend({},r.prototype,e))).constructor=child,child.__super__=r.prototype,child},e.exports=Module},6516:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(2640)).default.extend({getDefaultSettings:()=&gt;({container:null,items:null,columnsCount:3,verticalSpaceBetween:30}),getDefaultElements(){return{$container:jQuery(this.getSettings(\"container\")),$items:jQuery(this.getSettings(\"items\"))}},run(){var e=[],t=this.elements.$container.position().top,r=this.getSettings(),n=r.columnsCount;t+=parseInt(this.elements.$container.css(\"margin-top\"),10),this.elements.$items.each((function(o){var i=Math.floor(o/n),s=jQuery(this),a=s[0].getBoundingClientRect().height+r.verticalSpaceBetween;if(i){var u=s.position(),c=o%n,l=u.top-t-e[c];l-=parseInt(s.css(\"margin-top\"),10),l*=-1,s.css(\"margin-top\",l+\"px\"),e[c]+=a}else e.push(a)}))}});t.default=o},400:(e,t)=&gt;{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;t.default=class Scroll{static scrollObserver(e){let t=0;const r={root:e.root||null,rootMargin:e.offset||\"0px\",threshold:function(){let e=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:0;const t=[];if(e&gt;0&amp;&amp;e&lt;=100){const r=100/e;for(let e=0;e&lt;=100;e+=r)t.push(e/100)}else t.push(0);return t}(e.sensitivity)};return new IntersectionObserver((function handleIntersect(r){const n=r[0].boundingClientRect.y,o=r[0].isIntersecting,i=n1&amp;&amp;void 0!==arguments[1]?arguments[1]:{};const r=e[0].getBoundingClientRect(),n=t.start||0,o=t.end||0,i=window.innerHeight*n/100,s=window.innerHeight*o/100,a=r.top-window.innerHeight,u=0-a+i,c=r.top+i+e.height()-a+s,l=Math.max(0,Math.min(u/c,1));return parseFloat((100*l).toFixed(2))}static getPageScrollPercentage(){let e=arguments.length&gt;0&amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=arguments.length&gt;1?arguments[1]:void 0;const r=e.start||0,n=e.end||0,o=t||document.documentElement.scrollHeight-document.documentElement.clientHeight,i=o*r/100,s=o+i+o*n/100;return(document.documentElement.scrollTop+document.body.scrollTop+i)/s*100}}},2640:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(1192)).default.extend({elements:null,getDefaultElements:()=&gt;({}),bindEvents(){},onInit(){this.initElements(),this.bindEvents()},initElements(){this.elements=this.getDefaultElements()}});t.default=o},5955:(e,t,r)=&gt;{\"use strict\";var n=r(3203);Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=n(r(1192)),i=n(r(2640)),s=n(r(2618)),a=n(r(6516)),u=n(r(400)),c=n(r(869)),l=window.elementorModules={Module:o.default,ViewModule:i.default,ArgsObject:s.default,ForceMethodImplementation:c.default,utils:{Masonry:a.default,Scroll:u.default}};t.default=l},5089:(e,t,r)=&gt;{var n=r(930),o=r(9268),i=TypeError;e.exports=function(e){if(n(e))return e;throw i(o(e)+\" is not a function\")}},1378:(e,t,r)=&gt;{var n=r(930),o=String,i=TypeError;e.exports=function(e){if(\"object\"==typeof e||n(e))return e;throw i(\"Can\'t set \"+o(e)+\" as a prototype\")}},8669:(e,t,r)=&gt;{var n=r(211),o=r(4710),i=r(7826).f,s=n(\"unscopables\"),a=Array.prototype;null==a[s]&amp;&amp;i(a,s,{configurable:!0,value:o(null)}),e.exports=function(e){a[s][e]=!0}},6112:(e,t,r)=&gt;{var n=r(8759),o=String,i=TypeError;e.exports=function(e){if(n(e))return e;throw i(o(e)+\" is not an object\")}},6198:(e,t,r)=&gt;{var n=r(4088),o=r(7740),i=r(2871),createMethod=function(e){return function(t,r,s){var a,u=n(t),c=i(u),l=o(s,c);if(e&amp;&amp;r!=r){for(;c&gt;l;)if((a=u[l++])!=a)return!0}else for(;c&gt;l;l++)if((e||l in u)&amp;&amp;u[l]===r)return e||l||0;return!e&amp;&amp;-1}};e.exports={includes:createMethod(!0),indexOf:createMethod(!1)}},2306:(e,t,r)=&gt;{var n=r(8240),o=n({}.toString),i=n(\"\".slice);e.exports=function(e){return i(o(e),8,-1)}},375:(e,t,r)=&gt;{var n=r(2371),o=r(930),i=r(2306),s=r(211)(\"toStringTag\"),a=Object,u=\"Arguments\"==i(function(){return arguments}());e.exports=n?i:function(e){var t,r,n;return void 0===e?\"Undefined\":null===e?\"Null\":\"string\"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=a(e),s))?r:u?i(t):\"Object\"==(n=i(t))&amp;&amp;o(t.callee)?\"Arguments\":n}},1765:(e,t,r)=&gt;{var n=r(8240),o=Error,i=n(\"\".replace),s=String(o(\"zxcasd\").stack),a=/\\n\\s*at [^:]*:[^\\n]*/,u=a.test(s);e.exports=function(e,t){if(u&amp;&amp;\"string\"==typeof e&amp;&amp;!o.prepareStackTrace)for(;t--;)e=i(e,a,\"\");return e}},8474:(e,t,r)=&gt;{var n=r(9606),o=r(6095),i=r(4399),s=r(7826);e.exports=function(e,t,r){for(var a=o(t),u=s.f,c=i.f,l=0;l<a>{var n=r(5283),o=r(7826),i=r(5736);e.exports=n?function(e,t,r){return o.f(e,t,i(1,r))}:function(e,t,r){return e[t]=r,e}},5736:e=&gt;{e.exports=function(e,t){return{enumerable:!(1&amp;e),configurable:!(2&amp;e),writable:!(4&amp;e),value:t}}},1343:(e,t,r)=&gt;{var n=r(930),o=r(7826),i=r(3712),s=r(9444);e.exports=function(e,t,r,a){a||(a={});var u=a.enumerable,c=void 0!==a.name?a.name:t;if(n(r)&amp;&amp;i(r,c,a),a.global)u?e[t]=r:s(t,r);else{try{a.unsafe?e[t]&amp;&amp;(u=!0):delete e[t]}catch(e){}u?e[t]=r:o.f(e,t,{value:r,enumerable:!1,configurable:!a.nonConfigurable,writable:!a.nonWritable})}return e}},9444:(e,t,r)=&gt;{var n=r(2086),o=Object.defineProperty;e.exports=function(e,t){try{o(n,e,{value:t,configurable:!0,writable:!0})}catch(r){n[e]=t}return t}},5283:(e,t,r)=&gt;{var n=r(3677);e.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},821:(e,t,r)=&gt;{var n=r(2086),o=r(8759),i=n.document,s=o(i)&amp;&amp;o(i.createElement);e.exports=function(e){return s?i.createElement(e):{}}},4999:(e,t,r)=&gt;{var n=r(563);e.exports=n(\"navigator\",\"userAgent\")||\"\"},1448:(e,t,r)=&gt;{var n,o,i=r(2086),s=r(4999),a=i.process,u=i.Deno,c=a&amp;&amp;a.versions||u&amp;&amp;u.version,l=c&amp;&amp;c.v8;l&amp;&amp;(o=(n=l.split(\".\"))[0]&gt;0&amp;&amp;n[0]=74)&amp;&amp;(n=s.match(/Chrome\\/(\\d+)/))&amp;&amp;(o=+n[1]),e.exports=o},8684:e=&gt;{e.exports=[\"constructor\",\"hasOwnProperty\",\"isPrototypeOf\",\"propertyIsEnumerable\",\"toLocaleString\",\"toString\",\"valueOf\"]},2114:(e,t,r)=&gt;{var n=r(3677),o=r(5736);e.exports=!n((function(){var e=Error(\"a\");return!(\"stack\"in e)||(Object.defineProperty(e,\"stack\",o(1,7)),7!==e.stack)}))},1695:(e,t,r)=&gt;{var n=r(2086),o=r(4399).f,i=r(2585),s=r(1343),a=r(9444),u=r(8474),c=r(7189);e.exports=function(e,t){var r,l,f,p,d,g=e.target,h=e.global,m=e.stat;if(r=h?n:m?n[g]||a(g,{}):(n[g]||{}).prototype)for(l in t){if(p=t[l],f=e.dontCallGetSet?(d=o(r,l))&amp;&amp;d.value:r[l],!c(h?l:g+(m?\".\":\"#\")+l,e.forced)&amp;&amp;void 0!==f){if(typeof p==typeof f)continue;u(p,f)}(e.sham||f&amp;&amp;f.sham)&amp;&amp;i(p,\"sham\",!0),s(r,l,p,e)}}},3677:e=&gt;{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7258:(e,t,r)=&gt;{var n=r(6059),o=Function.prototype,i=o.apply,s=o.call;e.exports=\"object\"==typeof Reflect&amp;&amp;Reflect.apply||(n?s.bind(i):function(){return s.apply(i,arguments)})},6059:(e,t,r)=&gt;{var n=r(3677);e.exports=!n((function(){var e=function(){}.bind();return\"function\"!=typeof e||e.hasOwnProperty(\"prototype\")}))},9413:(e,t,r)=&gt;{var n=r(6059),o=Function.prototype.call;e.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},4398:(e,t,r)=&gt;{var n=r(5283),o=r(9606),i=Function.prototype,s=n&amp;&amp;Object.getOwnPropertyDescriptor,a=o(i,\"name\"),u=a&amp;&amp;\"something\"===function something(){}.name,c=a&amp;&amp;(!n||n&amp;&amp;s(i,\"name\").configurable);e.exports={EXISTS:a,PROPER:u,CONFIGURABLE:c}},8240:(e,t,r)=&gt;{var n=r(6059),o=Function.prototype,i=o.bind,s=o.call,a=n&amp;&amp;i.bind(s,s);e.exports=n?function(e){return e&amp;&amp;a(e)}:function(e){return e&amp;&amp;function(){return s.apply(e,arguments)}}},563:(e,t,r)=&gt;{var n=r(2086),o=r(930),aFunction=function(e){return o(e)?e:void 0};e.exports=function(e,t){return arguments.length{var n=r(5089);e.exports=function(e,t){var r=e[t];return null==r?void 0:n(r)}},2086:(e,t,r)=&gt;{var check=function(e){return e&amp;&amp;e.Math==Math&amp;&amp;e};e.exports=check(\"object\"==typeof globalThis&amp;&amp;globalThis)||check(\"object\"==typeof window&amp;&amp;window)||check(\"object\"==typeof self&amp;&amp;self)||check(\"object\"==typeof r.g&amp;&amp;r.g)||function(){return this}()||Function(\"return this\")()},9606:(e,t,r)=&gt;{var n=r(8240),o=r(3060),i=n({}.hasOwnProperty);e.exports=Object.hasOwn||function hasOwn(e,t){return i(o(e),t)}},7153:e=&gt;{e.exports={}},5963:(e,t,r)=&gt;{var n=r(563);e.exports=n(\"document\",\"documentElement\")},6761:(e,t,r)=&gt;{var n=r(5283),o=r(3677),i=r(821);e.exports=!n&amp;&amp;!o((function(){return 7!=Object.defineProperty(i(\"div\"),\"a\",{get:function(){return 7}}).a}))},5974:(e,t,r)=&gt;{var n=r(8240),o=r(3677),i=r(2306),s=Object,a=n(\"\".split);e.exports=o((function(){return!s(\"z\").propertyIsEnumerable(0)}))?function(e){return\"String\"==i(e)?a(e,\"\"):s(e)}:s},5070:(e,t,r)=&gt;{var n=r(930),o=r(8759),i=r(7530);e.exports=function(e,t,r){var s,a;return i&amp;&amp;n(s=t.constructor)&amp;&amp;s!==r&amp;&amp;o(a=s.prototype)&amp;&amp;a!==r.prototype&amp;&amp;i(e,a),e}},9277:(e,t,r)=&gt;{var n=r(8240),o=r(930),i=r(4489),s=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return s(e)}),e.exports=i.inspectSource},8945:(e,t,r)=&gt;{var n=r(8759),o=r(2585);e.exports=function(e,t){n(t)&amp;&amp;\"cause\"in t&amp;&amp;o(e,\"cause\",t.cause)}},3278:(e,t,r)=&gt;{var n,o,i,s=r(9316),a=r(2086),u=r(8240),c=r(8759),l=r(2585),f=r(9606),p=r(4489),d=r(8944),g=r(7153),h=\"Object already initialized\",m=a.TypeError,v=a.WeakMap;if(s||p.state){var y=p.state||(p.state=new v),b=u(y.get),x=u(y.has),E=u(y.set);n=function(e,t){if(x(y,e))throw new m(h);return t.facade=e,E(y,e,t),t},o=function(e){return b(y,e)||{}},i=function(e){return x(y,e)}}else{var S=d(\"state\");g[S]=!0,n=function(e,t){if(f(e,S))throw new m(h);return t.facade=e,l(e,S,t),t},o=function(e){return f(e,S)?e[S]:{}},i=function(e){return f(e,S)}}e.exports={set:n,get:o,has:i,enforce:function(e){return i(e)?o(e):n(e,{})},getterFor:function(e){return function(t){var r;if(!c(t)||(r=o(t)).type!==e)throw m(\"Incompatible receiver, \"+e+\" required\");return r}}}},930:e=&gt;{e.exports=function(e){return\"function\"==typeof e}},7189:(e,t,r)=&gt;{var n=r(3677),o=r(930),i=/#|\\.prototype\\./,isForced=function(e,t){var r=a[s(e)];return r==c||r!=u&amp;&amp;(o(t)?n(t):!!t)},s=isForced.normalize=function(e){return String(e).replace(i,\".\").toLowerCase()},a=isForced.data={},u=isForced.NATIVE=\"N\",c=isForced.POLYFILL=\"P\";e.exports=isForced},8759:(e,t,r)=&gt;{var n=r(930);e.exports=function(e){return\"object\"==typeof e?null!==e:n(e)}},3296:e=&gt;{e.exports=!1},2071:(e,t,r)=&gt;{var n=r(563),o=r(930),i=r(5516),s=r(1876),a=Object;e.exports=s?function(e){return\"symbol\"==typeof e}:function(e){var t=n(\"Symbol\");return o(t)&amp;&amp;i(t.prototype,a(e))}},2871:(e,t,r)=&gt;{var n=r(4005);e.exports=function(e){return n(e.length)}},3712:(e,t,r)=&gt;{var n=r(3677),o=r(930),i=r(9606),s=r(5283),a=r(4398).CONFIGURABLE,u=r(9277),c=r(3278),l=c.enforce,f=c.get,p=Object.defineProperty,d=s&amp;&amp;!n((function(){return 8!==p((function(){}),\"length\",{value:8}).length})),g=String(String).split(\"String\"),h=e.exports=function(e,t,r){\"Symbol(\"===String(t).slice(0,7)&amp;&amp;(t=\"[\"+String(t).replace(/^Symbol\\(([^)]*)\\)/,\"$1\")+\"]\"),r&amp;&amp;r.getter&amp;&amp;(t=\"get \"+t),r&amp;&amp;r.setter&amp;&amp;(t=\"set \"+t),(!i(e,\"name\")||a&amp;&amp;e.name!==t)&amp;&amp;(s?p(e,\"name\",{value:t,configurable:!0}):e.name=t),d&amp;&amp;r&amp;&amp;i(r,\"arity\")&amp;&amp;e.length!==r.arity&amp;&amp;p(e,\"length\",{value:r.arity});try{r&amp;&amp;i(r,\"constructor\")&amp;&amp;r.constructor?s&amp;&amp;p(e,\"prototype\",{writable:!1}):e.prototype&amp;&amp;(e.prototype=void 0)}catch(e){}var n=l(e);return i(n,\"source\")||(n.source=g.join(\"string\"==typeof t?t:\"\")),e};Function.prototype.toString=h((function toString(){return o(this)&amp;&amp;f(this).source||u(this)}),\"toString\")},5681:e=&gt;{var t=Math.ceil,r=Math.floor;e.exports=Math.trunc||function trunc(e){var n=+e;return(n&gt;0?r:t)(n)}},3193:(e,t,r)=&gt;{var n=r(1448),o=r(3677);e.exports=!!Object.getOwnPropertySymbols&amp;&amp;!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&amp;&amp;n&amp;&amp;n{var n=r(2086),o=r(930),i=r(9277),s=n.WeakMap;e.exports=o(s)&amp;&amp;/native code/.test(i(s))},1879:(e,t,r)=&gt;{var n=r(4059);e.exports=function(e,t){return void 0===e?arguments.length{var n,o=r(6112),i=r(7711),s=r(8684),a=r(7153),u=r(5963),c=r(821),l=r(8944),f=l(\"IE_PROTO\"),EmptyConstructor=function(){},scriptTag=function(e){return\"\"+e+\"\"},NullProtoObjectViaActiveX=function(e){e.write(scriptTag(\"\")),e.close();var t=e.parentWindow.Object;return e=null,t},NullProtoObject=function(){try{n=new ActiveXObject(\"htmlfile\")}catch(e){}var e,t;NullProtoObject=\"undefined\"!=typeof document?document.domain&amp;&amp;n?NullProtoObjectViaActiveX(n):((t=c(\"iframe\")).style.display=\"none\",u.appendChild(t),t.src=String(\"javascript:\"),(e=t.contentWindow.document).open(),e.write(scriptTag(\"document.F=Object\")),e.close(),e.F):NullProtoObjectViaActiveX(n);for(var r=s.length;r--;)delete NullProtoObject.prototype[s[r]];return NullProtoObject()};a[f]=!0,e.exports=Object.create||function create(e,t){var r;return null!==e?(EmptyConstructor.prototype=o(e),r=new EmptyConstructor,EmptyConstructor.prototype=null,r[f]=e):r=NullProtoObject(),void 0===t?r:i.f(r,t)}},7711:(e,t,r)=&gt;{var n=r(5283),o=r(8202),i=r(7826),s=r(6112),a=r(4088),u=r(8779);t.f=n&amp;&amp;!o?Object.defineProperties:function defineProperties(e,t){s(e);for(var r,n=a(t),o=u(t),c=o.length,l=0;c&gt;l;)i.f(e,r=o[l++],n[r]);return e}},7826:(e,t,r)=&gt;{var n=r(5283),o=r(6761),i=r(8202),s=r(6112),a=r(2258),u=TypeError,c=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f=\"enumerable\",p=\"configurable\",d=\"writable\";t.f=n?i?function defineProperty(e,t,r){if(s(e),t=a(t),s(r),\"function\"==typeof e&amp;&amp;\"prototype\"===t&amp;&amp;\"value\"in r&amp;&amp;d in r&amp;&amp;!r.writable){var n=l(e,t);n&amp;&amp;n.writable&amp;&amp;(e[t]=r.value,r={configurable:p in r?r.configurable:n.configurable,enumerable:f in r?r.enumerable:n.enumerable,writable:!1})}return c(e,t,r)}:c:function defineProperty(e,t,r){if(s(e),t=a(t),s(r),o)try{return c(e,t,r)}catch(e){}if(\"get\"in r||\"set\"in r)throw u(\"Accessors not supported\");return\"value\"in r&amp;&amp;(e[t]=r.value),e}},4399:(e,t,r)=&gt;{var n=r(5283),o=r(9413),i=r(7446),s=r(5736),a=r(4088),u=r(2258),c=r(9606),l=r(6761),f=Object.getOwnPropertyDescriptor;t.f=n?f:function getOwnPropertyDescriptor(e,t){if(e=a(e),t=u(t),l)try{return f(e,t)}catch(e){}if(c(e,t))return s(!o(i.f,e,t),e[t])}},62:(e,t,r)=&gt;{var n=r(1352),o=r(8684).concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function getOwnPropertyNames(e){return n(e,o)}},6952:(e,t)=&gt;{t.f=Object.getOwnPropertySymbols},5516:(e,t,r)=&gt;{var n=r(8240);e.exports=n({}.isPrototypeOf)},1352:(e,t,r)=&gt;{var n=r(8240),o=r(9606),i=r(4088),s=r(6198).indexOf,a=r(7153),u=n([].push);e.exports=function(e,t){var r,n=i(e),c=0,l=[];for(r in n)!o(a,r)&amp;&amp;o(n,r)&amp;&amp;u(l,r);for(;t.length&gt;c;)o(n,r=t[c++])&amp;&amp;(~s(l,r)||u(l,r));return l}},8779:(e,t,r)=&gt;{var n=r(1352),o=r(8684);e.exports=Object.keys||function keys(e){return n(e,o)}},7446:(e,t)=&gt;{\"use strict\";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&amp;&amp;!r.call({1:2},1);t.f=o?function propertyIsEnumerable(e){var t=n(this,e);return!!t&amp;&amp;t.enumerable}:r},7530:(e,t,r)=&gt;{var n=r(8240),o=r(6112),i=r(1378);e.exports=Object.setPrototypeOf||(\"__proto__\"in{}?function(){var e,t=!1,r={};try{(e=n(Object.getOwnPropertyDescriptor(Object.prototype,\"__proto__\").set))(r,[]),t=r instanceof Array}catch(e){}return function setPrototypeOf(r,n){return o(r),i(n),t?e(r,n):r.__proto__=n,r}}():void 0)},7999:(e,t,r)=&gt;{var n=r(9413),o=r(930),i=r(8759),s=TypeError;e.exports=function(e,t){var r,a;if(\"string\"===t&amp;&amp;o(r=e.toString)&amp;&amp;!i(a=n(r,e)))return a;if(o(r=e.valueOf)&amp;&amp;!i(a=n(r,e)))return a;if(\"string\"!==t&amp;&amp;o(r=e.toString)&amp;&amp;!i(a=n(r,e)))return a;throw s(\"Can\'t convert object to primitive value\")}},6095:(e,t,r)=&gt;{var n=r(563),o=r(8240),i=r(62),s=r(6952),a=r(6112),u=o([].concat);e.exports=n(\"Reflect\",\"ownKeys\")||function ownKeys(e){var t=i.f(a(e)),r=s.f;return r?u(t,r(e)):t}},1632:(e,t,r)=&gt;{var n=r(7826).f;e.exports=function(e,t,r){r in e||n(e,r,{configurable:!0,get:function(){return t[r]},set:function(e){t[r]=e}})}},9586:e=&gt;{var t=TypeError;e.exports=function(e){if(null==e)throw t(\"Can\'t call method on \"+e);return e}},8944:(e,t,r)=&gt;{var n=r(9197),o=r(5422),i=n(\"keys\");e.exports=function(e){return i[e]||(i[e]=o(e))}},4489:(e,t,r)=&gt;{var n=r(2086),o=r(9444),i=\"__core-js_shared__\",s=n[i]||o(i,{});e.exports=s},9197:(e,t,r)=&gt;{var n=r(3296),o=r(4489);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})(\"versions\",[]).push({version:\"3.24.1\",mode:n?\"pure\":\"global\",copyright:\"© 2014-2022 Denis Pushkarev (zloirock.ru)\",license:\"https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE\",source:\"https://github.com/zloirock/core-js\"})},7740:(e,t,r)=&gt;{var n=r(9502),o=Math.max,i=Math.min;e.exports=function(e,t){var r=n(e);return r{var n=r(5974),o=r(9586);e.exports=function(e){return n(o(e))}},9502:(e,t,r)=&gt;{var n=r(5681);e.exports=function(e){var t=+e;return t!=t||0===t?0:n(t)}},4005:(e,t,r)=&gt;{var n=r(9502),o=Math.min;e.exports=function(e){return e&gt;0?o(n(e),9007199254740991):0}},3060:(e,t,r)=&gt;{var n=r(9586),o=Object;e.exports=function(e){return o(n(e))}},1288:(e,t,r)=&gt;{var n=r(9413),o=r(8759),i=r(2071),s=r(2964),a=r(7999),u=r(211),c=TypeError,l=u(\"toPrimitive\");e.exports=function(e,t){if(!o(e)||i(e))return e;var r,u=s(e,l);if(u){if(void 0===t&amp;&amp;(t=\"default\"),r=n(u,e,t),!o(r)||i(r))return r;throw c(\"Can\'t convert object to primitive value\")}return void 0===t&amp;&amp;(t=\"number\"),a(e,t)}},2258:(e,t,r)=&gt;{var n=r(1288),o=r(2071);e.exports=function(e){var t=n(e,\"string\");return o(t)?t:t+\"\"}},2371:(e,t,r)=&gt;{var n={};n[r(211)(\"toStringTag\")]=\"z\",e.exports=\"[object z]\"===String(n)},4059:(e,t,r)=&gt;{var n=r(375),o=String;e.exports=function(e){if(\"Symbol\"===n(e))throw TypeError(\"Cannot convert a Symbol value to a string\");return o(e)}},9268:e=&gt;{var t=String;e.exports=function(e){try{return t(e)}catch(e){return\"Object\"}}},5422:(e,t,r)=&gt;{var n=r(8240),o=0,i=Math.random(),s=n(1..toString);e.exports=function(e){return\"Symbol(\"+(void 0===e?\"\":e)+\")_\"+s(++o+i,36)}},1876:(e,t,r)=&gt;{var n=r(3193);e.exports=n&amp;&amp;!Symbol.sham&amp;&amp;\"symbol\"==typeof Symbol.iterator},8202:(e,t,r)=&gt;{var n=r(5283),o=r(3677);e.exports=n&amp;&amp;o((function(){return 42!=Object.defineProperty((function(){}),\"prototype\",{value:42,writable:!1}).prototype}))},211:(e,t,r)=&gt;{var n=r(2086),o=r(9197),i=r(9606),s=r(5422),a=r(3193),u=r(1876),c=o(\"wks\"),l=n.Symbol,f=l&amp;&amp;l.for,p=u?l:l&amp;&amp;l.withoutSetter||s;e.exports=function(e){if(!i(c,e)||!a&amp;&amp;\"string\"!=typeof c[e]){var t=\"Symbol.\"+e;a&amp;&amp;i(l,e)?c[e]=l[e]:c[e]=u&amp;&amp;f?f(t):p(t)}return c[e]}},1557:(e,t,r)=&gt;{\"use strict\";var n=r(563),o=r(9606),i=r(2585),s=r(5516),a=r(7530),u=r(8474),c=r(1632),l=r(5070),f=r(1879),p=r(8945),d=r(1765),g=r(2114),h=r(5283),m=r(3296);e.exports=function(e,t,r,v){var y=\"stackTraceLimit\",b=v?2:1,x=e.split(\".\"),E=x[x.length-1],S=n.apply(null,x);if(S){var w=S.prototype;if(!m&amp;&amp;o(w,\"cause\")&amp;&amp;delete w.cause,!r)return S;var O=n(\"Error\"),I=t((function(e,t){var r=f(v?t:e,void 0),n=v?new S(e):new S;return void 0!==r&amp;&amp;i(n,\"message\",r),g&amp;&amp;i(n,\"stack\",d(n.stack,2)),this&amp;&amp;s(w,this)&amp;&amp;l(n,this,I),arguments.length&gt;b&amp;&amp;p(n,arguments[b]),n}));if(I.prototype=w,\"Error\"!==E?a?a(I,O):u(I,O,{name:!0}):h&amp;&amp;y in S&amp;&amp;(c(I,S,y),c(I,S,\"prepareStackTrace\")),u(I,S),!m)try{w.name!==E&amp;&amp;i(w,\"name\",E),w.constructor=I}catch(e){}return I}}},5623:(e,t,r)=&gt;{\"use strict\";var n=r(1695),o=r(6198).includes,i=r(3677),s=r(8669);n({target:\"Array\",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function includes(e){return o(this,e,arguments.length&gt;1?arguments[1]:void 0)}}),s(\"includes\")},740:(e,t,r)=&gt;{var n=r(1695),o=r(2086),i=r(7258),s=r(1557),a=\"WebAssembly\",u=o.WebAssembly,c=7!==Error(\"e\",{cause:7}).cause,exportGlobalErrorCauseWrapper=function(e,t){var r={};r[e]=s(e,t,c),n({global:!0,constructor:!0,arity:1,forced:c},r)},exportWebAssemblyErrorCauseWrapper=function(e,t){if(u&amp;&amp;u[e]){var r={};r[e]=s(\"WebAssembly.\"+e,t,c),n({target:a,stat:!0,constructor:!0,arity:1,forced:c},r)}};exportGlobalErrorCauseWrapper(\"Error\",(function(e){return function Error(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"EvalError\",(function(e){return function EvalError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"RangeError\",(function(e){return function RangeError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"ReferenceError\",(function(e){return function ReferenceError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"SyntaxError\",(function(e){return function SyntaxError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"TypeError\",(function(e){return function TypeError(t){return i(e,this,arguments)}})),exportGlobalErrorCauseWrapper(\"URIError\",(function(e){return function URIError(t){return i(e,this,arguments)}})),exportWebAssemblyErrorCauseWrapper(\"CompileError\",(function(e){return function CompileError(t){return i(e,this,arguments)}})),exportWebAssemblyErrorCauseWrapper(\"LinkError\",(function(e){return function LinkError(t){return i(e,this,arguments)}})),exportWebAssemblyErrorCauseWrapper(\"RuntimeError\",(function(e){return function RuntimeError(t){return i(e,this,arguments)}}))},3203:e=&gt;{e.exports=function _interopRequireDefault(e){return e&amp;&amp;e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports}},e=&gt;{var t;t=6412,e(e.s=t)}]);\r\n!function(){\"use strict\";function Waypoint(options){if(!options)throw new Error(\"No options passed to Waypoint constructor\");if(!options.element)throw new Error(\"No element option passed to Waypoint constructor\");if(!options.handler)throw new Error(\"No handler option passed to Waypoint constructor\");this.key=\"waypoint-\"+keyCounter,this.options=Waypoint.Adapter.extend({},Waypoint.defaults,options),this.element=this.options.element,this.adapter=new Waypoint.Adapter(this.element),this.callback=options.handler,this.axis=this.options.horizontal?\"horizontal\":\"vertical\",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=Waypoint.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=Waypoint.Context.findOrCreateByElement(this.options.context),Waypoint.offsetAliases[this.options.offset]&amp;&amp;(this.options.offset=Waypoint.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),allWaypoints[this.key]=this,keyCounter+=1}var keyCounter=0,allWaypoints={};Waypoint.prototype.queueTrigger=function(direction){this.group.queueTrigger(this,direction)},Waypoint.prototype.trigger=function(args){this.enabled&amp;&amp;this.callback&amp;&amp;this.callback.apply(this,args)},Waypoint.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete allWaypoints[this.key]},Waypoint.prototype.disable=function(){return this.enabled=!1,this},Waypoint.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},Waypoint.prototype.next=function(){return this.group.next(this)},Waypoint.prototype.previous=function(){return this.group.previous(this)},Waypoint.invokeAll=function(method){var allWaypointsArray=[];for(var waypointKey in allWaypoints)allWaypointsArray.push(allWaypoints[waypointKey]);for(var i=0,end=allWaypointsArray.length;iaxis.oldScroll,direction=isForward?axis.forward:axis.backward;for(var waypointKey in this.waypoints[axisKey]){var waypoint=this.waypoints[axisKey][waypointKey];if(null!==waypoint.triggerPoint){var wasBeforeTriggerPoint=axis.oldScroll=waypoint.triggerPoint,crossedForward=wasBeforeTriggerPoint&amp;&amp;nowAfterTriggerPoint,crossedBackward=!wasBeforeTriggerPoint&amp;&amp;!nowAfterTriggerPoint;(crossedForward||crossedBackward)&amp;&amp;(waypoint.queueTrigger(direction),triggeredGroups[waypoint.group.id]=waypoint.group)}}}for(var groupKey in triggeredGroups)triggeredGroups[groupKey].flushTriggers();this.oldScroll={x:axes.horizontal.newScroll,y:axes.vertical.newScroll}},Context.prototype.innerHeight=function(){return this.element==this.element.window?Waypoint.viewportHeight():this.adapter.innerHeight()},Context.prototype.remove=function(waypoint){delete this.waypoints[waypoint.axis][waypoint.key],this.checkEmpty()},Context.prototype.innerWidth=function(){return this.element==this.element.window?Waypoint.viewportWidth():this.adapter.innerWidth()},Context.prototype.destroy=function(){var allWaypoints=[];for(var axis in this.waypoints)for(var waypointKey in this.waypoints[axis])allWaypoints.push(this.waypoints[axis][waypointKey]);for(var i=0,end=allWaypoints.length;i-1&amp;&amp;(adjustment=Math.ceil(axis.contextDimension*adjustment/100))),contextModifier=axis.contextScroll-axis.contextOffset,waypoint.triggerPoint=Math.floor(elementOffset+contextModifier-adjustment),wasBeforeScroll=oldTriggerPoint=axis.oldScroll,triggeredBackward=wasBeforeScroll&amp;&amp;nowAfterScroll,triggeredForward=!wasBeforeScroll&amp;&amp;!nowAfterScroll,!freshWaypoint&amp;&amp;triggeredBackward?(waypoint.queueTrigger(axis.backward),triggeredGroups[waypoint.group.id]=waypoint.group):!freshWaypoint&amp;&amp;triggeredForward?(waypoint.queueTrigger(axis.forward),triggeredGroups[waypoint.group.id]=waypoint.group):freshWaypoint&amp;&amp;axis.oldScroll&gt;=waypoint.triggerPoint&amp;&amp;(waypoint.queueTrigger(axis.forward),triggeredGroups[waypoint.group.id]=waypoint.group)}}return Waypoint.requestAnimationFrame(function(){for(var groupKey in triggeredGroups)triggeredGroups[groupKey].flushTriggers()}),this},Context.findOrCreateByElement=function(element){return Context.findByElement(element)||new Context(element)},Context.refreshAll=function(){for(var contextId in contexts)contexts[contextId].refresh()},Context.findByElement=function(element){return contexts[element.waypointContextKey]},window.onload=function(){oldWindowLoad&amp;&amp;oldWindowLoad(),Context.refreshAll()},Waypoint.requestAnimationFrame=function(callback){var requestFn=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||requestAnimationFrameShim;requestFn.call(window,callback)},Waypoint.Context=Context}(),function(){\"use strict\";function byTriggerPoint(a,b){return a.triggerPoint-b.triggerPoint}function byReverseTriggerPoint(a,b){return b.triggerPoint-a.triggerPoint}function Group(options){this.name=options.name,this.axis=options.axis,this.id=this.name+\"-\"+this.axis,this.waypoints=[],this.clearTriggerQueues(),groups[this.axis][this.name]=this}var groups={vertical:{},horizontal:{}},Waypoint=window.Waypoint;Group.prototype.add=function(waypoint){this.waypoints.push(waypoint)},Group.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},Group.prototype.flushTriggers=function(){for(var direction in this.triggerQueues){var waypoints=this.triggerQueues[direction],reverse=\"up\"===direction||\"left\"===direction;waypoints.sort(reverse?byReverseTriggerPoint:byTriggerPoint);for(var i=0,end=waypoints.length;i-1&amp;&amp;this.waypoints.splice(index,1)},Group.prototype.first=function(){return this.waypoints[0]},Group.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},Group.findOrCreate=function(options){return groups[options.axis][options.name]||new Group(options)},Waypoint.Group=Group}(),function(){\"use strict\";function JQueryAdapter(element){this.$element=$(element)}var $=window.jQuery,Waypoint=window.Waypoint;$.each([\"innerHeight\",\"innerWidth\",\"off\",\"offset\",\"on\",\"outerHeight\",\"outerWidth\",\"scrollLeft\",\"scrollTop\"],function(i,method){JQueryAdapter.prototype[method]=function(){var args=Array.prototype.slice.call(arguments);return this.$element[method].apply(this.$element,args)}}),$.each([\"extend\",\"inArray\",\"isEmptyObject\"],function(i,method){JQueryAdapter[method]=$[method]}),Waypoint.adapters.push({name:\"jquery\",Adapter:JQueryAdapter}),Waypoint.Adapter=JQueryAdapter}(),function(){\"use strict\";function createExtension(framework){return function(){var waypoints=[],overrides=arguments[0];return framework.isFunction(arguments[0])&amp;&amp;(overrides=framework.extend({},arguments[1]),overrides.handler=arguments[0]),this.each(function(){var options=framework.extend({},overrides,{element:this});\"string\"==typeof options.context&amp;&amp;(options.context=framework(this).closest(options.context)[0]),waypoints.push(new Waypoint(options))}),waypoints}}var Waypoint=window.Waypoint;window.jQuery&amp;&amp;(window.jQuery.fn.elementorWaypoint=createExtension(window.jQuery)),window.Zepto&amp;&amp;(window.Zepto.fn.elementorWaypoint=createExtension(window.Zepto))}();','2a7c63695d9b26a6e38038b18334be09-scripts','','publish','closed','closed','','2a7c63695d9b26a6e38038b18334be09-scripts','','','2022-09-12 15:53:36','2022-09-12 13:53:36','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1213',0,'wphb_minify_group','',0),(1214,0,'2022-09-12 15:56:49','2022-09-12 13:56:49','/**handles:wphb-global,hello-theme-frontend**/\r\n!function(){\"use strict\";var e={init:function(){this.registerClearAllCache(),this.registerClearNetworkCache(),this.registerClearCacheFromNotice(),this.registerClearCloudflare()},clearCache:function(e){jQuery.ajax({url:wphbGlobal.ajaxurl,method:\"POST\",data:{nonce:wphbGlobal.nonce,action:\"wphb_clear_caches\",modules:[e]}}).done((function(){location.reload()}))},registerClearAllCache:function(){var e=this,n=document.getElementById(\"wp-admin-bar-wphb-clear-all-cache\");n&amp;&amp;n.addEventListener(\"click\",(function(){return e.post(\"wphb_global_clear_cache\")}))},registerClearNetworkCache:function(){var e=document.querySelector(\"#wp-admin-bar-wphb-clear-cache-network-wide &gt; a\");e&amp;&amp;e.addEventListener(\"click\",(function(){void 0!==window.WPHB_Admin?window.SUI.openModal(\"ccnw-modal\",\"wpbody\",\"ccnw-clear-now\"):window.location.href=\"/wp-admin/network/admin.php?page=wphb-caching&amp;update=open-ccnw\"}))},registerClearCacheFromNotice:function(){var e=this,n=document.getElementById(\"wp-admin-notice-wphb-clear-cache\");n&amp;&amp;n.addEventListener(\"click\",(function(){return e.post(\"wphb_global_clear_cache\")}))},registerClearCloudflare:function(){var e=this,n=document.querySelector(\"#wp-admin-bar-wphb-clear-cloudflare &gt; a\");n&amp;&amp;n.addEventListener(\"click\",(function(){return e.post(\"wphb_front_clear_cloudflare\")}))},post:function(e){var n=new XMLHttpRequest;n.open(\"POST\",wphbGlobal.ajaxurl+\"?action=\"+e),n.onload=function(){200===n.status&amp;&amp;location.reload()},n.send()}};document.addEventListener(\"DOMContentLoaded\",(function(){e.init()})),window.WPHBGlobal=e}();\n//# sourceMappingURL=wphb-global.min.js.map\r\n(()=&gt;{var e={690:e=&gt;{e.exports=function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")},e.exports.__esModule=!0,e.exports.default=e.exports},728:e=&gt;{function _defineProperties(e,t){for(var n=0;n{e.exports=function _interopRequireDefault(e){return e&amp;&amp;e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports}},t={};function __webpack_require__(n){var r=t[n];if(void 0!==r)return r.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,__webpack_require__),o.exports}(()=&gt;{\"use strict\";var e=__webpack_require__(836),t=e(__webpack_require__(690)),n=e(__webpack_require__(728)),r=function(){function elementorHelloThemeHandler(){(0,t.default)(this,elementorHelloThemeHandler),this.initSettings(),this.initElements(),this.bindEvents()}return(0,n.default)(elementorHelloThemeHandler,[{key:\"initSettings\",value:function initSettings(){this.settings={selectors:{header:\"header.site-header\",footer:\"footer.site-footer\",menuToggle:\".site-header .site-navigation-toggle\",menuToggleHolder:\".site-header .site-navigation-toggle-holder\",dropdownMenu:\".site-header .site-navigation-dropdown\"}}}},{key:\"initElements\",value:function initElements(){this.elements={$window:jQuery(window),$document:jQuery(document),$header:jQuery(this.settings.selectors.header),$footer:jQuery(this.settings.selectors.footer),$menuToggle:jQuery(this.settings.selectors.menuToggle),$menuToggleHolder:jQuery(this.settings.selectors.menuToggleHolder),$dropdownMenu:jQuery(this.settings.selectors.dropdownMenu)}}},{key:\"bindEvents\",value:function bindEvents(){var e=this;this.elements.$menuToggle.on(\"click\",(function(){return e.handleMenuToggle()})),this.elements.$dropdownMenu.on(\"click\",\".menu-item-has-children &gt; a\",this.handleMenuChildren)}},{key:\"closeMenuItems\",value:function closeMenuItems(){var e=this;this.elements.$menuToggleHolder.removeClass(\"elementor-active\"),this.elements.$window.off(\"resize\",(function(){return e.closeMenuItems()}))}},{key:\"handleMenuToggle\",value:function handleMenuToggle(){var e=this,t=!this.elements.$menuToggleHolder.hasClass(\"elementor-active\");this.elements.$menuToggle.attr(\"aria-expanded\",t),this.elements.$dropdownMenu.attr(\"aria-hidden\",!t),this.elements.$menuToggleHolder.toggleClass(\"elementor-active\",t),this.elements.$dropdownMenu.find(\".elementor-active\").removeClass(\"elementor-active\"),t?this.elements.$window.on(\"resize\",(function(){return e.closeMenuItems()})):this.elements.$window.off(\"resize\",(function(){return e.closeMenuItems()}))}},{key:\"handleMenuChildren\",value:function handleMenuChildren(e){var t=jQuery(e.currentTarget).parent(\"li\");t.hasClass(\"elementor-active\")?t.removeClass(\"elementor-active\"):t.addClass(\"elementor-active\")}}]),elementorHelloThemeHandler}();jQuery((function(){new r}))})()})();','044405e0e54223ba5fd29fe2bc0e29f4-scripts','','publish','closed','closed','','044405e0e54223ba5fd29fe2bc0e29f4-scripts','','','2022-09-12 15:56:49','2022-09-12 13:56:49','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1214',0,'wphb_minify_group','',0),(1215,0,'2022-09-12 15:56:50','2022-09-12 13:56:50','/**handles:jquery-ui-mouse,jquery-ui-draggable,backbone**/\r\n/*!\n * jQuery UI Mouse 1.13.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n!function(e){\"use strict\";\"function\"==typeof define&amp;&amp;define.amd?define([\"jquery\",\"./core\"],e):e(jQuery)}(function(o){\"use strict\";var n=!1;return o(document).on(\"mouseup\",function(){n=!1}),o.widget(\"ui.mouse\",{version:\"1.13.1\",options:{cancel:\"input, textarea, button, select, option\",distance:1,delay:0},_mouseInit:function(){var t=this;this.element.on(\"mousedown.\"+this.widgetName,function(e){return t._mouseDown(e)}).on(\"click.\"+this.widgetName,function(e){if(!0===o.data(e.target,t.widgetName+\".preventClickEvent\"))return o.removeData(e.target,t.widgetName+\".preventClickEvent\"),e.stopImmediatePropagation(),!1}),this.started=!1},_mouseDestroy:function(){this.element.off(\".\"+this.widgetName),this._mouseMoveDelegate&amp;&amp;this.document.off(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).off(\"mouseup.\"+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){var t,s,i;if(!n)return this._mouseMoved=!1,this._mouseStarted&amp;&amp;this._mouseUp(e),this._mouseDownEvent=e,t=this,s=1===e.which,i=!(\"string\"!=typeof this.options.cancel||!e.target.nodeName)&amp;&amp;o(e.target).closest(this.options.cancel).length,!(s&amp;&amp;!i&amp;&amp;this._mouseCapture(e))||(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){t.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&amp;&amp;this._mouseDelayMet(e)&amp;&amp;(this._mouseStarted=!1!==this._mouseStart(e),!this._mouseStarted)?(e.preventDefault(),!0):(!0===o.data(e.target,this.widgetName+\".preventClickEvent\")&amp;&amp;o.removeData(e.target,this.widgetName+\".preventClickEvent\"),this._mouseMoveDelegate=function(e){return t._mouseMove(e)},this._mouseUpDelegate=function(e){return t._mouseUp(e)},this.document.on(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).on(\"mouseup.\"+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0))},_mouseMove:function(e){if(this._mouseMoved){if(o.ui.ie&amp;&amp;(!document.documentMode||document.documentMode=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}})});\r\n/*!\n * jQuery UI Draggable 1.13.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n!function(t){\"use strict\";\"function\"==typeof define&amp;&amp;define.amd?define([\"jquery\",\"./mouse\",\"./core\"],t):t(jQuery)}(function(P){\"use strict\";return P.widget(\"ui.draggable\",P.ui.mouse,{version:\"1.13.1\",widgetEventPrefix:\"drag\",options:{addClasses:!0,appendTo:\"parent\",axis:!1,connectToSortable:!1,containment:!1,cursor:\"auto\",cursorAt:!1,grid:!1,handle:!1,helper:\"original\",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:\"default\",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:\"both\",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){\"original\"===this.options.helper&amp;&amp;this._setPositionRelative(),this.options.addClasses&amp;&amp;this._addClass(\"ui-draggable\"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),\"handle\"===t&amp;&amp;(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){(this.helper||this.element).is(\".ui-draggable-dragging\")?this.destroyOnClear=!0:(this._removeHandleClassName(),this._mouseDestroy())},_mouseCapture:function(t){var e=this.options;return!(this.helper||e.disabled||0&lt;P(t.target).closest(&quot;.ui-resizable-handle&quot;).length)&amp;&amp;(this.handle=this._getHandle(t),!!this.handle&amp;&amp;(this._blurActiveElement(t),this._blockFrames(!0===e.iframeFix?&quot;iframe&quot;:e.iframeFix),!0))},_blockFrames:function(t){this.iframeBlocks=this.document.find(t).map(function(){var t=P(this);return P(&quot;<div>\").css(\"position\",\"absolute\").appendTo(t.parent()).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&amp;&amp;(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(t){var e=P.ui.safeActiveElement(this.document[0]);P(t.target).closest(e).length||P.ui.safeBlur(e)},_mouseStart:function(t){var e=this.options;return this.helper=this._createHelper(t),this._addClass(this.helper,\"ui-draggable-dragging\"),this._cacheHelperProportions(),P.ui.ddmanager&amp;&amp;(P.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css(\"position\"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=0&lt;this.helper.parents().filter(function(){return&quot;fixed&quot;===P(this).css(&quot;position&quot;)}).length,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,e.cursorAt&amp;&amp;this._adjustOffsetFromHelper(e.cursorAt),this._setContainment(),!1===this._trigger(&quot;start&quot;,t)?(this._clear(),!1):(this._cacheHelperProportions(),P.ui.ddmanager&amp;&amp;!e.dropBehaviour&amp;&amp;P.ui.ddmanager.prepareOffsets(this,t),this._mouseDrag(t,!0),P.ui.ddmanager&amp;&amp;P.ui.ddmanager.dragStart(this,t),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(t,e){if(this.hasFixedAncestor&amp;&amp;(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo(&quot;absolute&quot;),!e){e=this._uiHash();if(!1===this._trigger(&quot;drag&quot;,t,e))return this._mouseUp(new P.Event(&quot;mouseup&quot;,t)),!1;this.position=e.position}return this.helper[0].style.left=this.position.left+&quot;px&quot;,this.helper[0].style.top=this.position.top+&quot;px&quot;,P.ui.ddmanager&amp;&amp;P.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var e=this,s=!1;return P.ui.ddmanager&amp;&amp;!this.options.dropBehaviour&amp;&amp;(s=P.ui.ddmanager.drop(this,t)),this.dropped&amp;&amp;(s=this.dropped,this.dropped=!1),&quot;invalid&quot;===this.options.revert&amp;&amp;!s||&quot;valid&quot;===this.options.revert&amp;&amp;s||!0===this.options.revert||&quot;function&quot;==typeof this.options.revert&amp;&amp;this.options.revert.call(this.element,s)?P(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){!1!==e._trigger(&quot;stop&quot;,t)&amp;&amp;e._clear()}):!1!==this._trigger(&quot;stop&quot;,t)&amp;&amp;this._clear(),!1},_mouseUp:function(t){return this._unblockFrames(),P.ui.ddmanager&amp;&amp;P.ui.ddmanager.dragStop(this,t),this.handleElement.is(t.target)&amp;&amp;this.element.trigger(&quot;focus&quot;),P.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(&quot;.ui-draggable-dragging&quot;)?this._mouseUp(new P.Event(&quot;mouseup&quot;,{target:this.element[0]})):this._clear(),this},_getHandle:function(t){return!this.options.handle||!!P(t.target).closest(this.element.find(this.options.handle)).length},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,&quot;ui-draggable-handle&quot;)},_removeHandleClassName:function(){this._removeClass(this.handleElement,&quot;ui-draggable-handle&quot;)},_createHelper:function(t){var e=this.options,s=&quot;function&quot;==typeof e.helper,t=s?P(e.helper.apply(this.element[0],[t])):&quot;clone&quot;===e.helper?this.element.clone().removeAttr(&quot;id&quot;):this.element;return t.parents(&quot;body&quot;).length||t.appendTo(&quot;parent&quot;===e.appendTo?this.element[0].parentNode:e.appendTo),s&amp;&amp;t[0]===this.element[0]&amp;&amp;this._setPositionRelative(),t[0]===this.element[0]||/(fixed|absolute)/.test(t.css(&quot;position&quot;))||t.css(&quot;position&quot;,&quot;absolute&quot;),t},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css(&quot;position&quot;))||(this.element[0].style.position=&quot;relative&quot;)},_adjustOffsetFromHelper:function(t){&quot;string&quot;==typeof t&amp;&amp;(t=t.split(&quot; &quot;)),&quot;left&quot;in(t=Array.isArray(t)?{left:+t[0],top:+t[1]||0}:t)&amp;&amp;(this.offset.click.left=t.left+this.margins.left),&quot;right&quot;in t&amp;&amp;(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),&quot;top&quot;in t&amp;&amp;(this.offset.click.top=t.top+this.margins.top),&quot;bottom&quot;in t&amp;&amp;(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var t=this.offsetParent.offset(),e=this.document[0];return&quot;absolute&quot;===this.cssPosition&amp;&amp;this.scrollParent[0]!==e&amp;&amp;P.contains(this.scrollParent[0],this.offsetParent[0])&amp;&amp;(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),{top:(t=this._isRootNode(this.offsetParent[0])?{top:0,left:0}:t).top+(parseInt(this.offsetParent.css(&quot;borderTopWidth&quot;),10)||0),left:t.left+(parseInt(this.offsetParent.css(&quot;borderLeftWidth&quot;),10)||0)}},_getRelativeOffset:function(){if(&quot;relative&quot;!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css(&quot;top&quot;),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css(&quot;left&quot;),10)||0)+(e?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css(&quot;marginLeft&quot;),10)||0,top:parseInt(this.element.css(&quot;marginTop&quot;),10)||0,right:parseInt(this.element.css(&quot;marginRight&quot;),10)||0,bottom:parseInt(this.element.css(&quot;marginBottom&quot;),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,e=this.options,s=this.document[0];this.relativeContainer=null,e.containment?&quot;window&quot;===e.containment?this.containment=[P(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,P(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,P(window).scrollLeft()+P(window).width()-this.helperProportions.width-this.margins.left,P(window).scrollTop()+(P(window).height()||s.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:&quot;document&quot;===e.containment?this.containment=[0,0,P(s).width()-this.helperProportions.width-this.margins.left,(P(s).height()||s.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]:e.containment.constructor===Array?this.containment=e.containment:(&quot;parent&quot;===e.containment&amp;&amp;(e.containment=this.helper[0].parentNode),(e=(s=P(e.containment))[0])&amp;&amp;(t=/(scroll|auto)/.test(s.css(&quot;overflow&quot;)),this.containment=[(parseInt(s.css(&quot;borderLeftWidth&quot;),10)||0)+(parseInt(s.css(&quot;paddingLeft&quot;),10)||0),(parseInt(s.css(&quot;borderTopWidth&quot;),10)||0)+(parseInt(s.css(&quot;paddingTop&quot;),10)||0),(t?Math.max(e.scrollWidth,e.offsetWidth):e.offsetWidth)-(parseInt(s.css(&quot;borderRightWidth&quot;),10)||0)-(parseInt(s.css(&quot;paddingRight&quot;),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(e.scrollHeight,e.offsetHeight):e.offsetHeight)-(parseInt(s.css(&quot;borderBottomWidth&quot;),10)||0)-(parseInt(s.css(&quot;paddingBottom&quot;),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=s)):this.containment=null},_convertPositionTo:function(t,e){e=e||this.position;var t=&quot;absolute&quot;===t?1:-1,s=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*t+this.offset.parent.top*t-(&quot;fixed&quot;===this.cssPosition?-this.offset.scroll.top:s?0:this.offset.scroll.top)*t,left:e.left+this.offset.relative.left*t+this.offset.parent.left*t-(&quot;fixed&quot;===this.cssPosition?-this.offset.scroll.left:s?0:this.offset.scroll.left)*t}},_generatePosition:function(t,e){var s,i=this.options,o=this._isRootNode(this.scrollParent[0]),n=t.pageX,r=t.pageY;return o&amp;&amp;this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&amp;&amp;(this.containment&amp;&amp;(s=this.relativeContainer?(e=this.relativeContainer.offset(),[this.containment[0]+e.left,this.containment[1]+e.top,this.containment[2]+e.left,this.containment[3]+e.top]):this.containment,t.pageX-this.offset.click.left&lt;s[0]&amp;&amp;(n=s[0]+this.offset.click.left),t.pageY-this.offset.click.top<s>s[2]&amp;&amp;(n=s[2]+this.offset.click.left),t.pageY-this.offset.click.top&gt;s[3]&amp;&amp;(r=s[3]+this.offset.click.top)),i.grid&amp;&amp;(e=i.grid[1]?this.originalPageY+Math.round((r-this.originalPageY)/i.grid[1])*i.grid[1]:this.originalPageY,r=!s||e-this.offset.click.top&gt;=s[1]||e-this.offset.click.top&gt;s[3]?e:e-this.offset.click.top&gt;=s[1]?e-i.grid[1]:e+i.grid[1],t=i.grid[0]?this.originalPageX+Math.round((n-this.originalPageX)/i.grid[0])*i.grid[0]:this.originalPageX,n=!s||t-this.offset.click.left&gt;=s[0]||t-this.offset.click.left&gt;s[2]?t:t-this.offset.click.left&gt;=s[0]?t-i.grid[0]:t+i.grid[0]),\"y\"===i.axis&amp;&amp;(n=this.originalPageX),\"x\"===i.axis&amp;&amp;(r=this.originalPageY)),{top:r-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(\"fixed\"===this.cssPosition?-this.offset.scroll.top:o?0:this.offset.scroll.top),left:n-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(\"fixed\"===this.cssPosition?-this.offset.scroll.left:o?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,\"ui-draggable-dragging\"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&amp;&amp;this.destroy()},_trigger:function(t,e,s){return s=s||this._uiHash(),P.ui.plugin.call(this,t,[e,s,this],!0),/^(drag|start|stop)/.test(t)&amp;&amp;(this.positionAbs=this._convertPositionTo(\"absolute\"),s.offset=this.positionAbs),P.Widget.prototype._trigger.call(this,t,e,s)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),P.ui.plugin.add(\"draggable\",\"connectToSortable\",{start:function(e,t,s){var i=P.extend({},t,{item:s.element});s.sortables=[],P(s.options.connectToSortable).each(function(){var t=P(this).sortable(\"instance\");t&amp;&amp;!t.options.disabled&amp;&amp;(s.sortables.push(t),t.refreshPositions(),t._trigger(\"activate\",e,i))})},stop:function(e,t,s){var i=P.extend({},t,{item:s.element});s.cancelHelperRemoval=!1,P.each(s.sortables,function(){var t=this;t.isOver?(t.isOver=0,s.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css(\"position\"),top:t.placeholder.css(\"top\"),left:t.placeholder.css(\"left\")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger(\"deactivate\",e,i))})},drag:function(s,i,o){P.each(o.sortables,function(){var t=!1,e=this;e.positionAbs=o.positionAbs,e.helperProportions=o.helperProportions,e.offset.click=o.offset.click,e._intersectsWith(e.containerCache)&amp;&amp;(t=!0,P.each(o.sortables,function(){return this.positionAbs=o.positionAbs,this.helperProportions=o.helperProportions,this.offset.click=o.offset.click,t=this!==e&amp;&amp;this._intersectsWith(this.containerCache)&amp;&amp;P.contains(e.element[0],this.element[0])?!1:t})),t?(e.isOver||(e.isOver=1,o._parent=i.helper.parent(),e.currentItem=i.helper.appendTo(e.element).data(\"ui-sortable-item\",!0),e.options._helper=e.options.helper,e.options.helper=function(){return i.helper[0]},s.target=e.currentItem[0],e._mouseCapture(s,!0),e._mouseStart(s,!0,!0),e.offset.click.top=o.offset.click.top,e.offset.click.left=o.offset.click.left,e.offset.parent.left-=o.offset.parent.left-e.offset.parent.left,e.offset.parent.top-=o.offset.parent.top-e.offset.parent.top,o._trigger(\"toSortable\",s),o.dropped=e.element,P.each(o.sortables,function(){this.refreshPositions()}),o.currentItem=o.element,e.fromOutside=o),e.currentItem&amp;&amp;(e._mouseDrag(s),i.position=e.position)):e.isOver&amp;&amp;(e.isOver=0,e.cancelHelperRemoval=!0,e.options._revert=e.options.revert,e.options.revert=!1,e._trigger(\"out\",s,e._uiHash(e)),e._mouseStop(s,!0),e.options.revert=e.options._revert,e.options.helper=e.options._helper,e.placeholder&amp;&amp;e.placeholder.remove(),i.helper.appendTo(o._parent),o._refreshOffsets(s),i.position=o._generatePosition(s,!0),o._trigger(\"fromSortable\",s),o.dropped=!1,P.each(o.sortables,function(){this.refreshPositions()}))})}}),P.ui.plugin.add(\"draggable\",\"cursor\",{start:function(t,e,s){var i=P(\"body\"),s=s.options;i.css(\"cursor\")&amp;&amp;(s._cursor=i.css(\"cursor\")),i.css(\"cursor\",s.cursor)},stop:function(t,e,s){s=s.options;s._cursor&amp;&amp;P(\"body\").css(\"cursor\",s._cursor)}}),P.ui.plugin.add(\"draggable\",\"opacity\",{start:function(t,e,s){e=P(e.helper),s=s.options;e.css(\"opacity\")&amp;&amp;(s._opacity=e.css(\"opacity\")),e.css(\"opacity\",s.opacity)},stop:function(t,e,s){s=s.options;s._opacity&amp;&amp;P(e.helper).css(\"opacity\",s._opacity)}}),P.ui.plugin.add(\"draggable\",\"scroll\",{start:function(t,e,s){s.scrollParentNotHidden||(s.scrollParentNotHidden=s.helper.scrollParent(!1)),s.scrollParentNotHidden[0]!==s.document[0]&amp;&amp;\"HTML\"!==s.scrollParentNotHidden[0].tagName&amp;&amp;(s.overflowOffset=s.scrollParentNotHidden.offset())},drag:function(t,e,s){var i=s.options,o=!1,n=s.scrollParentNotHidden[0],r=s.document[0];n!==r&amp;&amp;\"HTML\"!==n.tagName?(i.axis&amp;&amp;\"x\"===i.axis||(s.overflowOffset.top+n.offsetHeight-t.pageY&lt;i.scrollSensitivity?n.scrollTop=o=n.scrollTop+i.scrollSpeed:t.pageY-s.overflowOffset.top&lt;i.scrollSensitivity&amp;&amp;(n.scrollTop=o=n.scrollTop-i.scrollSpeed)),i.axis&amp;&amp;&quot;y&quot;===i.axis||(s.overflowOffset.left+n.offsetWidth-t.pageX&lt;i.scrollSensitivity?n.scrollLeft=o=n.scrollLeft+i.scrollSpeed:t.pageX-s.overflowOffset.left&lt;i.scrollSensitivity&amp;&amp;(n.scrollLeft=o=n.scrollLeft-i.scrollSpeed))):(i.axis&amp;&amp;&quot;x&quot;===i.axis||(t.pageY-P(r).scrollTop()&lt;i.scrollSensitivity?o=P(r).scrollTop(P(r).scrollTop()-i.scrollSpeed):P(window).height()-(t.pageY-P(r).scrollTop())&lt;i.scrollSensitivity&amp;&amp;(o=P(r).scrollTop(P(r).scrollTop()+i.scrollSpeed))),i.axis&amp;&amp;&quot;y&quot;===i.axis||(t.pageX-P(r).scrollLeft()&lt;i.scrollSensitivity?o=P(r).scrollLeft(P(r).scrollLeft()-i.scrollSpeed):P(window).width()-(t.pageX-P(r).scrollLeft())&lt;i.scrollSensitivity&amp;&amp;(o=P(r).scrollLeft(P(r).scrollLeft()+i.scrollSpeed)))),!1!==o&amp;&amp;P.ui.ddmanager&amp;&amp;!i.dropBehaviour&amp;&amp;P.ui.ddmanager.prepareOffsets(s,t)}}),P.ui.plugin.add(&quot;draggable&quot;,&quot;snap&quot;,{start:function(t,e,s){var i=s.options;s.snapElements=[],P(i.snap.constructor!==String?i.snap.items||&quot;:data(ui-draggable)&quot;:i.snap).each(function(){var t=P(this),e=t.offset();this!==s.element[0]&amp;&amp;s.snapElements.push({item:this,width:t.outerWidth(),height:t.outerHeight(),top:e.top,left:e.left})})},drag:function(t,e,s){for(var i,o,n,r,l,a,h,p,c,f=s.options,d=f.snapTolerance,g=e.offset.left,u=g+s.helperProportions.width,m=e.offset.top,v=m+s.helperProportions.height,_=s.snapElements.length-1;0&lt;=_;_--)a=(l=s.snapElements[_].left-s.margins.left)+s.snapElements[_].width,p=(h=s.snapElements[_].top-s.margins.top)+s.snapElements[_].height,u&lt;l-d||a+d&lt;g||v&lt;h-d||p+d&lt;m||!P.contains(s.snapElements[_].item.ownerDocument,s.snapElements[_].item)?(s.snapElements[_].snapping&amp;&amp;s.options.snap.release&amp;&amp;s.options.snap.release.call(s.element,t,P.extend(s._uiHash(),{snapItem:s.snapElements[_].item})),s.snapElements[_].snapping=!1):(&quot;inner&quot;!==f.snapMode&amp;&amp;(i=Math.abs(h-v)&lt;=d,o=Math.abs(p-m)&lt;=d,n=Math.abs(l-u)&lt;=d,r=Math.abs(a-g)&lt;=d,i&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:h-s.helperProportions.height,left:0}).top),o&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:p,left:0}).top),n&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:l-s.helperProportions.width}).left),r&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:a}).left)),c=i||o||n||r,&quot;outer&quot;!==f.snapMode&amp;&amp;(i=Math.abs(h-m)&lt;=d,o=Math.abs(p-v)&lt;=d,n=Math.abs(l-g)&lt;=d,r=Math.abs(a-u)&lt;=d,i&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:h,left:0}).top),o&amp;&amp;(e.position.top=s._convertPositionTo(&quot;relative&quot;,{top:p-s.helperProportions.height,left:0}).top),n&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:l}).left),r&amp;&amp;(e.position.left=s._convertPositionTo(&quot;relative&quot;,{top:0,left:a-s.helperProportions.width}).left)),!s.snapElements[_].snapping&amp;&amp;(i||o||n||r||c)&amp;&amp;s.options.snap.snap&amp;&amp;s.options.snap.snap.call(s.element,t,P.extend(s._uiHash(),{snapItem:s.snapElements[_].item})),s.snapElements[_].snapping=i||o||n||r||c)}}),P.ui.plugin.add(&quot;draggable&quot;,&quot;stack&quot;,{start:function(t,e,s){var i,s=s.options,s=P.makeArray(P(s.stack)).sort(function(t,e){return(parseInt(P(t).css(&quot;zIndex&quot;),10)||0)-(parseInt(P(e).css(&quot;zIndex&quot;),10)||0)});s.length&amp;&amp;(i=parseInt(P(s[0]).css(&quot;zIndex&quot;),10)||0,P(s).each(function(t){P(this).css(&quot;zIndex&quot;,i+t)}),this.css(&quot;zIndex&quot;,i+s.length))}}),P.ui.plugin.add(&quot;draggable&quot;,&quot;zIndex&quot;,{start:function(t,e,s){e=P(e.helper),s=s.options;e.css(&quot;zIndex&quot;)&amp;&amp;(s._zIndex=e.css(&quot;zIndex&quot;)),e.css(&quot;zIndex&quot;,s.zIndex)},stop:function(t,e,s){s=s.options;s._zIndex&amp;&amp;P(e.helper).css(&quot;zIndex&quot;,s._zIndex)}}),P.ui.draggable});\r\n/*! This file is auto-generated */\n!function(n){var s=&quot;object&quot;==typeof self&amp;&amp;self.self===self&amp;&amp;self||&quot;object&quot;==typeof global&amp;&amp;global.global===global&amp;&amp;global;if(&quot;function&quot;==typeof define&amp;&amp;define.amd)define([&quot;underscore&quot;,&quot;jquery&quot;,&quot;exports&quot;],function(t,e,i){s.Backbone=n(s,i,t,e)});else if(&quot;undefined&quot;!=typeof exports){var t,e=require(&quot;underscore&quot;);try{t=require(&quot;jquery&quot;)}catch(t){}n(s,exports,e,t)}else s.Backbone=n(s,{},s._,s.jQuery||s.Zepto||s.ender||s.$)}(function(t,h,b,e){function a(t,e,i,n,s){var r,o=0;if(i&amp;&amp;&quot;object&quot;==typeof i){void 0!==n&amp;&amp;&quot;context&quot;in s&amp;&amp;void 0===s.context&amp;&amp;(s.context=n);for(r=b.keys(i);o&lt;r.length;o++)e=a(t,e,r[o],i[r[o]],s)}else if(i&amp;&amp;c.test(i))for(r=i.split(c);o&lt;r.length;o++)e=t(e,r[o],n,s);else e=t(e,i,n,s);return e}function x(t,e,i){i=Math.min(Math.max(i,0),t.length);for(var n=Array(t.length-i),s=e.length,r=0;r&lt;n.length;r++)n[r]=t[r+i];for(r=0;r&lt;s;r++)t[r+i]=e[r];for(r=0;r&lt;n.length;r++)t[r+s+i]=n[r]}function s(i,n,t,s){b.each(t,function(t,e){n[e]&amp;&amp;(i.prototype[e]=function(n,t,s,r){switch(t){case 1:return function(){return n[s](this[r])};case 2:return function(t){return n[s](this[r],t)};case 3:return function(t,e){return n[s](this[r],P(t,this),e)};case 4:return function(t,e,i){return n[s](this[r],P(t,this),e,i)};default:return function(){var t=u.call(arguments);return t.unshift(this[r]),n[s].apply(n,t)}}}(n,t,e,s))})}var o,i=t.Backbone,u=Array.prototype.slice,e=(h.VERSION=&quot;1.4.1&quot;,h.$=e,h.noConflict=function(){return t.Backbone=i,this},h.emulateHTTP=!1,h.emulateJSON=!1,h.Events={}),c=/\\s+/,n=(e.on=function(t,e,i){return this._events=a(n,this._events||{},t,e,{context:i,ctx:this,listening:o}),o&amp;&amp;(((this._listeners||(this._listeners={}))[o.id]=o).interop=!1),this},e.listenTo=function(t,e,i){if(!t)return this;var n=t._listenId||(t._listenId=b.uniqueId(&quot;l&quot;)),s=this._listeningTo||(this._listeningTo={}),r=o=s[n],s=(r||(this._listenId||(this._listenId=b.uniqueId(&quot;l&quot;)),r=o=s[n]=new g(this,t)),l(t,e,i,this));if(o=void 0,s)throw s;return r.interop&amp;&amp;r.on(e,i),this},function(t,e,i,n){var s,r;return i&amp;&amp;(e=t[e]||(t[e]=[]),s=n.context,r=n.ctx,(n=n.listening)&amp;&amp;n.count++,e.push({callback:i,context:s,ctx:s||r,listening:n})),t}),l=function(t,e,i,n){try{t.on(e,i,n)}catch(t){return t}},r=(e.off=function(t,e,i){return this._events&amp;&amp;(this._events=a(r,this._events,t,e,{context:i,listeners:this._listeners})),this},e.stopListening=function(t,e,i){var n=this._listeningTo;if(!n)return this;for(var s=t?[t._listenId]:b.keys(n),r=0;r&lt;s.length;r++){var o=n[s[r]];if(!o)break;o.obj.off(e,i,this),o.interop&amp;&amp;o.off(e,i)}return b.isEmpty(n)&amp;&amp;(this._listeningTo=void 0),this},function(t,e,i,n){if(t){var s,r=n.context,o=n.listeners,h=0;if(e||r||i){for(s=e?[e]:b.keys(t);h&lt;s.length;h++){var a=t[e=s[h]];if(!a)break;for(var u=[],c=0;c&lt;a.length;c++){var l=a[c];i&amp;&amp;i!==l.callback&amp;&amp;i!==l.callback._callback||r&amp;&amp;r!==l.context?u.push(l):(l=l.listening)&amp;&amp;l.off(e,i)}u.length?t[e]=u:delete t[e]}return t}for(s=b.keys(o);h&lt;s.length;h++)o[s[h]].cleanup()}}),d=(e.once=function(t,e,i){var n=a(d,{},t,e,this.off.bind(this));return this.on(n,e=&quot;string&quot;==typeof t&amp;&amp;null==i?void 0:e,i)},e.listenToOnce=function(t,e,i){e=a(d,{},e,i,this.stopListening.bind(this,t));return this.listenTo(t,e)},function(t,e,i,n){var s;return i&amp;&amp;((s=t[e]=b.once(function(){n(e,s),i.apply(this,arguments)}))._callback=i),t}),f=(e.trigger=function(t){if(!this._events)return this;for(var e=Math.max(0,arguments.length-1),i=Array(e),n=0;n&lt;e;n++)i[n]=arguments[n+1];return a(f,this._events,t,void 0,i),this},function(t,e,i,n){var s,r;return t&amp;&amp;(s=t[e],r=t.all,s&amp;&amp;r&amp;&amp;(r=r.slice()),s&amp;&amp;p(s,n),r&amp;&amp;p(r,[e].concat(n))),t}),p=function(t,e){var i,n=-1,s=t.length,r=e[0],o=e[1],h=e[2];switch(e.length){case 0:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx);return;case 1:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx,r);return;case 2:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx,r,o);return;case 3:for(;++n&lt;s;)(i=t[n]).callback.call(i.ctx,r,o,h);return;default:for(;++n&lt;s;)(i=t[n]).callback.apply(i.ctx,e);return}},g=function(t,e){this.id=t._listenId,this.listener=t,this.obj=e,this.interop=!0,this.count=0,this._events=void 0},v=(g.prototype.on=e.on,g.prototype.off=function(t,e){t=this.interop?(this._events=a(r,this._events,t,e,{context:void 0,listeners:void 0}),!this._events):(this.count--,0===this.count);t&amp;&amp;this.cleanup()},g.prototype.cleanup=function(){delete this.listener._listeningTo[this.obj._listenId],this.interop||delete this.obj._listeners[this.id]},e.bind=e.on,e.unbind=e.off,b.extend(h,e),h.Model=function(t,e){var i=t||{},n=(e=e||{},this.preinitialize.apply(this,arguments),this.cid=b.uniqueId(this.cidPrefix),this.attributes={},e.collection&amp;&amp;(this.collection=e.collection),e.parse&amp;&amp;(i=this.parse(i,e)||{}),b.result(this,&quot;defaults&quot;)),i=b.defaults(b.extend({},n,i),n);this.set(i,e),this.changed={},this.initialize.apply(this,arguments)}),m=(b.extend(v.prototype,e,{changed:null,validationError:null,idAttribute:&quot;id&quot;,cidPrefix:&quot;c&quot;,preinitialize:function(){},initialize:function(){},toJSON:function(t){return b.clone(this.attributes)},sync:function(){return h.sync.apply(this,arguments)},get:function(t){return this.attributes[t]},escape:function(t){return b.escape(this.get(t))},has:function(t){return null!=this.get(t)},matches:function(t){return!!b.iteratee(t,this)(this.attributes)},set:function(t,e,i){if(null==t)return this;var n;if(&quot;object&quot;==typeof t?(n=t,i=e):(n={})[t]=e,!this._validate(n,i=i||{}))return!1;var s,r,o=i.unset,t=i.silent,h=[],a=this._changing,u=(this._changing=!0,a||(this._previousAttributes=b.clone(this.attributes),this.changed={}),this.attributes),c=this.changed,l=this._previousAttributes;for(s in n)e=n[s],b.isEqual(u[s],e)||h.push(s),b.isEqual(l[s],e)?delete c[s]:c[s]=e,o?delete u[s]:u[s]=e;if(this.idAttribute in n&amp;&amp;(r=this.id,this.id=this.get(this.idAttribute),this.trigger(&quot;changeId&quot;,this,r,i)),!t){h.length&amp;&amp;(this._pending=i);for(var d=0;dthis.length?this.length:n)&lt;0&amp;&amp;(n+=this.length+1),[]),r=[],o=[],h=[],a={},u=e.add,c=e.merge,l=e.remove,d=!1,f=this.comparator&amp;&amp;null==n&amp;&amp;!1!==e.sort,p=b.isString(this.comparator)?this.comparator:null,g=0;g&lt;t.length;g++){var v,m=t[g],_=this.get(m);_?(c&amp;&amp;m!==_&amp;&amp;(v=this._isModel(m)?m.attributes:m,e.parse&amp;&amp;(v=_.parse(v,e)),_.set(v,e),o.push(_),f&amp;&amp;!d&amp;&amp;(d=_.hasChanged(p))),a[_.cid]||(a[_.cid]=!0,s.push(_)),t[g]=_):u&amp;&amp;(m=t[g]=this._prepareModel(m,e))&amp;&amp;(r.push(m),this._addReference(m,e),a[m.cid]=!0,s.push(m))}if(l){for(g=0;g&lt;this.length;g++)a[(m=this.models[g]).cid]||h.push(m);h.length&amp;&amp;this._removeModels(h,e)}var y=!1;if(s.length&amp;&amp;(!f&amp;&amp;u&amp;&amp;l)?(y=this.length!==s.length||b.some(this.models,function(t,e){return t!==s[e]}),this.models.length=0,x(this.models,s,0),this.length=this.models.length):r.length&amp;&amp;(f&amp;&amp;(d=!0),x(this.models,r,null==n?this.length:n),this.length=this.models.length),d&amp;&amp;this.sort({silent:!0}),!e.silent){for(g=0;g&lt;r.length;g++)null!=n&amp;&amp;(e.index=n+g),(m=r[g]).trigger(&quot;add&quot;,m,this,e);(d||y)&amp;&amp;this.trigger(&quot;sort&quot;,this,e),(r.length||h.length||o.length)&amp;&amp;(e.changes={added:r,removed:h,merged:o},this.trigger(&quot;update&quot;,this,e))}return i?t[0]:t}},reset:function(t,e){e=e?b.clone(e):{};for(var i=0;i&lt;this.models.length;i++)this._removeReference(this.models[i],e);return e.previousModels=this.models,this._reset(),t=this.add(t,b.extend({silent:!0},e)),e.silent||this.trigger(&quot;reset&quot;,this,e),t},push:function(t,e){return this.add(t,b.extend({at:this.length},e))},pop:function(t){var e=this.at(this.length-1);return this.remove(e,t)},unshift:function(t,e){return this.add(t,b.extend({at:0},e))},shift:function(t){var e=this.at(0);return this.remove(e,t)},slice:function(){return u.apply(this.models,arguments)},get:function(t){if(null!=t)return this._byId[t]||this._byId[this.modelId(this._isModel(t)?t.attributes:t,t.idAttribute)]||t.cid&amp;&amp;this._byId[t.cid]},has:function(t){return null!=this.get(t)},at:function(t){return t&lt;0&amp;&amp;(t+=this.length),this.models[t]},where:function(t,e){return this[e?&quot;find&quot;:&quot;filter&quot;](t)},findWhere:function(t){return this.where(t,!0)},sort:function(t){var e=this.comparator;if(!e)throw new Error(&quot;Cannot sort a set without a comparator&quot;);t=t||{};var i=e.length;return b.isFunction(e)&amp;&amp;(e=e.bind(this)),1===i||b.isString(e)?this.models=this.sortBy(e):this.models.sort(e),t.silent||this.trigger(&quot;sort&quot;,this,t),this},pluck:function(t){return this.map(t+&quot;&quot;)},fetch:function(i){var n=(i=b.extend({parse:!0},i)).success,s=this;return i.success=function(t){var e=i.reset?&quot;reset&quot;:&quot;set&quot;;s[e](t,i),n&amp;&amp;n.call(i.context,s,t,i),s.trigger(&quot;sync&quot;,s,t,i)},N(this,i),this.sync(&quot;read&quot;,this,i)},create:function(t,e){var n=(e=e?b.clone(e):{}).wait;if(!(t=this._prepareModel(t,e)))return!1;n||this.add(t,e);var s=this,r=e.success;return e.success=function(t,e,i){n&amp;&amp;s.add(t,i),r&amp;&amp;r.call(i.context,t,e,i)},t.save(null,e),t},parse:function(t,e){return t},clone:function(){return new this.constructor(this.models,{model:this.model,comparator:this.comparator})},modelId:function(t,e){return t[e||this.model.prototype.idAttribute||&quot;id&quot;]},values:function(){return new E(this,I)},keys:function(){return new E(this,k)},entries:function(){return new E(this,S)},_reset:function(){this.length=0,this.models=[],this._byId={}},_prepareModel:function(t,e){return this._isModel(t)?(t.collection||(t.collection=this),t):(t=((e=e?b.clone(e):{}).collection=this).model.prototype?new this.model(t,e):this.model(t,e)).validationError?(this.trigger(&quot;invalid&quot;,this,t.validationError,e),!1):t},_removeModels:function(t,e){for(var i=[],n=0;n&lt;t.length;n++){var s,r,o=this.get(t[n]);o&amp;&amp;(s=this.indexOf(o),this.models.splice(s,1),this.length--,delete this._byId[o.cid],null!=(r=this.modelId(o.attributes,o.idAttribute))&amp;&amp;delete this._byId[r],e.silent||(e.index=s,o.trigger(&quot;remove&quot;,o,this,e)),i.push(o),this._removeReference(o,e))}return i},_isModel:function(t){return t instanceof v},_addReference:function(t,e){this._byId[t.cid]=t;var i=this.modelId(t.attributes,t.idAttribute);null!=i&amp;&amp;(this._byId[i]=t),t.on(&quot;all&quot;,this._onModelEvent,this)},_removeReference:function(t,e){delete this._byId[t.cid];var i=this.modelId(t.attributes,t.idAttribute);null!=i&amp;&amp;delete this._byId[i],this===t.collection&amp;&amp;delete t.collection,t.off(&quot;all&quot;,this._onModelEvent,this)},_onModelEvent:function(t,e,i,n){if(e){if((&quot;add&quot;===t||&quot;remove&quot;===t)&amp;&amp;i!==this)return;var s,r;&quot;destroy&quot;===t&amp;&amp;this.remove(e,n),&quot;changeId&quot;===t&amp;&amp;(s=this.modelId(e.previousAttributes(),e.idAttribute),r=this.modelId(e.attributes,e.idAttribute),null!=s&amp;&amp;delete this._byId[s],null!=r&amp;&amp;(this._byId[r]=e))}this.trigger.apply(this,arguments)}}),&quot;function&quot;==typeof Symbol&amp;&amp;Symbol.iterator),E=(y&amp;&amp;(m.prototype[y]=m.prototype.values),function(t,e){this._collection=t,this._kind=e,this._index=0}),I=1,k=2,S=3,y=(y&amp;&amp;(E.prototype[y]=function(){return this}),E.prototype.next=function(){if(this._collection){var t,e;if(this._index&lt;this._collection.length)return t=this._collection.at(this._index),this._index++,{value:this._kind===I?t:(e=this._collection.modelId(t.attributes,t.idAttribute),this._kind===k?e:[e,t]),done:!1};this._collection=void 0}return{value:void 0,done:!0}},h.View=function(t){this.cid=b.uniqueId(&quot;view&quot;),this.preinitialize.apply(this,arguments),b.extend(this,b.pick(t,T)),this._ensureElement(),this.initialize.apply(this,arguments)}),A=/^(\\S+)\\s*(.*)$/,T=[&quot;model&quot;,&quot;collection&quot;,&quot;el&quot;,&quot;id&quot;,&quot;attributes&quot;,&quot;className&quot;,&quot;tagName&quot;,&quot;events&quot;],P=(b.extend(y.prototype,e,{tagName:&quot;div&quot;,$:function(t){return this.$el.find(t)},preinitialize:function(){},initialize:function(){},render:function(){return this},remove:function(){return this._removeElement(),this.stopListening(),this},_removeElement:function(){this.$el.remove()},setElement:function(t){return this.undelegateEvents(),this._setElement(t),this.delegateEvents(),this},_setElement:function(t){this.$el=t instanceof h.$?t:h.$(t),this.el=this.$el[0]},delegateEvents:function(t){if(!(t=t||b.result(this,&quot;events&quot;)))return this;for(var e in this.undelegateEvents(),t){var i=t[e];(i=b.isFunction(i)?i:this[i])&amp;&amp;(e=e.match(A),this.delegate(e[1],e[2],i.bind(this)))}return this},delegate:function(t,e,i){return this.$el.on(t+&quot;.delegateEvents&quot;+this.cid,e,i),this},undelegateEvents:function(){return this.$el&amp;&amp;this.$el.off(&quot;.delegateEvents&quot;+this.cid),this},undelegate:function(t,e,i){return this.$el.off(t+&quot;.delegateEvents&quot;+this.cid,e,i),this},_createElement:function(t){return document.createElement(t)},_ensureElement:function(){var t;this.el?this.setElement(b.result(this,&quot;el&quot;)):(t=b.extend({},b.result(this,&quot;attributes&quot;)),this.id&amp;&amp;(t.id=b.result(this,&quot;id&quot;)),this.className&amp;&amp;(t.class=b.result(this,&quot;className&quot;)),this.setElement(this._createElement(b.result(this,&quot;tagName&quot;))),this._setAttributes(t))},_setAttributes:function(t){this.$el.attr(t)}}),function(e,t){return b.isFunction(e)?e:b.isObject(e)&amp;&amp;!t._isModel(e)?(i=b.matches(e),function(t){return i(t.attributes)}):b.isString(e)?function(t){return t.get(e)}:e;var i}),H=(b.each([[m,{forEach:3,each:3,map:3,collect:3,reduce:0,foldl:0,inject:0,reduceRight:0,foldr:0,find:3,detect:3,filter:3,select:3,reject:3,every:3,all:3,some:3,any:3,include:3,includes:3,contains:3,invoke:0,max:3,min:3,toArray:1,size:1,first:3,head:3,take:3,initial:3,rest:3,tail:3,drop:3,last:3,without:0,difference:0,indexOf:3,shuffle:1,lastIndexOf:3,isEmpty:1,chain:1,sample:3,partition:3,groupBy:3,countBy:3,sortBy:3,indexBy:3,findIndex:3,findLastIndex:3},&quot;models&quot;],[v,{keys:1,values:1,pairs:1,invert:1,pick:0,omit:0,chain:1,isEmpty:1},&quot;attributes&quot;]],function(t){var i=t[0],e=t[1],n=t[2];i.mixin=function(t){var e=b.reduce(b.functions(t),function(t,e){return t[e]=0,t},{});s(i,t,e,n)},s(i,b,e,n)}),h.sync=function(t,e,n){var i,s=H[t],r=(b.defaults(n=n||{},{emulateHTTP:h.emulateHTTP,emulateJSON:h.emulateJSON}),{type:s,dataType:&quot;json&quot;}),o=(n.url||(r.url=b.result(e,&quot;url&quot;)||M()),null!=n.data||!e||&quot;create&quot;!==t&amp;&amp;&quot;update&quot;!==t&amp;&amp;&quot;patch&quot;!==t||(r.contentType=&quot;application/json&quot;,r.data=JSON.stringify(n.attrs||e.toJSON(n))),n.emulateJSON&amp;&amp;(r.contentType=&quot;application/x-www-form-urlencoded&quot;,r.data=r.data?{model:r.data}:{}),!n.emulateHTTP||&quot;PUT&quot;!==s&amp;&amp;&quot;DELETE&quot;!==s&amp;&amp;&quot;PATCH&quot;!==s||(r.type=&quot;POST&quot;,n.emulateJSON&amp;&amp;(r.data._method=s),i=n.beforeSend,n.beforeSend=function(t){if(t.setRequestHeader(&quot;X-HTTP-Method-Override&quot;,s),i)return i.apply(this,arguments)}),&quot;GET&quot;===r.type||n.emulateJSON||(r.processData=!1),n.error),t=(n.error=function(t,e,i){n.textStatus=e,n.errorThrown=i,o&amp;&amp;o.call(n.context,t,e,i)},n.xhr=h.ajax(b.extend(r,n)));return e.trigger(&quot;request&quot;,e,t,n),t},{create:&quot;POST&quot;,update:&quot;PUT&quot;,patch:&quot;PATCH&quot;,delete:&quot;DELETE&quot;,read:&quot;GET&quot;}),$=(h.ajax=function(){return h.$.ajax.apply(h.$,arguments)},h.Router=function(t){t=t||{},this.preinitialize.apply(this,arguments),t.routes&amp;&amp;(this.routes=t.routes),this._bindRoutes(),this.initialize.apply(this,arguments)}),C=/\\((.*?)\\)/g,j=/(\\(\\?)?:\\w+/g,O=/\\*\\w+/g,U=/[\\-{}\\[\\]+?.,\\\\\\^$|#\\s]/g,R=(b.extend($.prototype,e,{preinitialize:function(){},initialize:function(){},route:function(e,i,n){b.isRegExp(e)||(e=this._routeToRegExp(e)),b.isFunction(i)&amp;&amp;(n=i,i=&quot;&quot;),n=n||this[i];var s=this;return h.history.route(e,function(t){t=s._extractParameters(e,t);!1!==s.execute(n,t,i)&amp;&amp;(s.trigger.apply(s,[&quot;route:&quot;+i].concat(t)),s.trigger(&quot;route&quot;,i,t),h.history.trigger(&quot;route&quot;,s,i,t))}),this},execute:function(t,e,i){t&amp;&amp;t.apply(this,e)},navigate:function(t,e){return h.history.navigate(t,e),this},_bindRoutes:function(){if(this.routes){this.routes=b.result(this,&quot;routes&quot;);for(var t,e=b.keys(this.routes);null!=(t=e.pop());)this.route(t,this.routes[t])}},_routeToRegExp:function(t){return t=t.replace(U,&quot;\\\\$&amp;&quot;).replace(C,&quot;(?:$1)?&quot;).replace(j,function(t,e){return e?t:&quot;([^/?]+)&quot;}).replace(O,&quot;([^?]*?)&quot;),new RegExp(&quot;^&quot;+t+&quot;(?:\\\\?([\\\\s\\\\S]*))?$&quot;)},_extractParameters:function(t,e){var i=t.exec(e).slice(1);return b.map(i,function(t,e){return e===i.length-1?t||null:t?decodeURIComponent(t):null})}}),h.History=function(){this.handlers=[],this.checkUrl=this.checkUrl.bind(this),&quot;undefined&quot;!=typeof window&amp;&amp;(this.location=window.location,this.history=window.history)}),z=/^[#\\/]|\\s+$/g,q=/^\\/+|\\/+$/g,F=/#.*$/,M=(R.started=!1,b.extend(R.prototype,e,{interval:50,atRoot:function(){return this.location.pathname.replace(/[^\\/]$/,&quot;$&amp;/&quot;)===this.root&amp;&amp;!this.getSearch()},matchRoot:function(){return this.decodeFragment(this.location.pathname).slice(0,this.root.length-1)+&quot;/&quot;===this.root},decodeFragment:function(t){return decodeURI(t.replace(/%25/g,&quot;%2525&quot;))},getSearch:function(){var t=this.location.href.replace(/#.*/,&quot;&quot;).match(/\\?.+/);return t?t[0]:&quot;&quot;},getHash:function(t){t=(t||this).location.href.match(/#(.*)$/);return t?t[1]:&quot;&quot;},getPath:function(){var t=this.decodeFragment(this.location.pathname+this.getSearch()).slice(this.root.length-1);return&quot;/&quot;===t.charAt(0)?t.slice(1):t},getFragment:function(t){return(t=null==t?this._usePushState||!this._wantsHashChange?this.getPath():this.getHash():t).replace(z,&quot;&quot;)},start:function(t){if(R.started)throw new Error(&quot;Backbone.history has already been started&quot;);if(R.started=!0,this.options=b.extend({root:&quot;/&quot;},this.options,t),this.root=this.options.root,this._wantsHashChange=!1!==this.options.hashChange,this._hasHashChange=&quot;onhashchange&quot;in window&amp;&amp;(void 0===document.documentMode||7&lt;document.documentMode),this._useHashChange=this._wantsHashChange&amp;&amp;this._hasHashChange,this._wantsPushState=!!this.options.pushState,this._hasPushState=!(!this.history||!this.history.pushState),this._usePushState=this._wantsPushState&amp;&amp;this._hasPushState,this.fragment=this.getFragment(),this.root=(&quot;/&quot;+this.root+&quot;/&quot;).replace(q,&quot;/&quot;),this._wantsHashChange&amp;&amp;this._wantsPushState){if(!this._hasPushState&amp;&amp;!this.atRoot())return t=this.root.slice(0,-1)||&quot;/&quot;,this.location.replace(t+&quot;#&quot;+this.getPath()),!0;this._hasPushState&amp;&amp;this.atRoot()&amp;&amp;this.navigate(this.getHash(),{replace:!0})}this._hasHashChange||!this._wantsHashChange||this._usePushState||(this.iframe=document.createElement(&quot;iframe&quot;),this.iframe.src=&quot;javascript:0&quot;,this.iframe.style.display=&quot;none&quot;,this.iframe.tabIndex=-1,(t=(t=document.body).insertBefore(this.iframe,t.firstChild).contentWindow).document.open(),t.document.close(),t.location.hash=&quot;#&quot;+this.fragment);t=window.addEventListener||function(t,e){return attachEvent(&quot;on&quot;+t,e)};if(this._usePushState?t(&quot;popstate&quot;,this.checkUrl,!1):this._useHashChange&amp;&amp;!this.iframe?t(&quot;hashchange&quot;,this.checkUrl,!1):this._wantsHashChange&amp;&amp;(this._checkUrlInterval=setInterval(this.checkUrl,this.interval)),!this.options.silent)return this.loadUrl()},stop:function(){var t=window.removeEventListener||function(t,e){return detachEvent(&quot;on&quot;+t,e)};this._usePushState?t(&quot;popstate&quot;,this.checkUrl,!1):this._useHashChange&amp;&amp;!this.iframe&amp;&amp;t(&quot;hashchange&quot;,this.checkUrl,!1),this.iframe&amp;&amp;(document.body.removeChild(this.iframe),this.iframe=null),this._checkUrlInterval&amp;&amp;clearInterval(this._checkUrlInterval),R.started=!1},route:function(t,e){this.handlers.unshift({route:t,callback:e})},checkUrl:function(t){var e=this.getFragment();if((e=e===this.fragment&amp;&amp;this.iframe?this.getHash(this.iframe.contentWindow):e)===this.fragment)return!1;this.iframe&amp;&amp;this.navigate(e),this.loadUrl()},loadUrl:function(e){return!!this.matchRoot()&amp;&amp;(e=this.fragment=this.getFragment(e),b.some(this.handlers,function(t){if(t.route.test(e))return t.callback(e),!0}))},navigate:function(t,e){if(!R.started)return!1;e&amp;&amp;!0!==e||(e={trigger:!!e}),t=this.getFragment(t||&quot;&quot;);var i=this.root,i=(i=&quot;&quot;!==t&amp;&amp;&quot;?&quot;!==t.charAt(0)?i:i.slice(0,-1)||&quot;/&quot;)+t,n=(t=t.replace(F,&quot;&quot;),this.decodeFragment(t));if(this.fragment!==n){if(this.fragment=n,this._usePushState)this.history[e.replace?&quot;replaceState&quot;:&quot;pushState&quot;]({},document.title,i);else{if(!this._wantsHashChange)return this.location.assign(i);this._updateHash(this.location,t,e.replace),this.iframe&amp;&amp;t!==this.getHash(this.iframe.contentWindow)&amp;&amp;(n=this.iframe.contentWindow,e.replace||(n.document.open(),n.document.close()),this._updateHash(n.location,t,e.replace))}return e.trigger?this.loadUrl(t):void 0}},_updateHash:function(t,e,i){i?(i=t.href.replace(/(javascript:|#).*$/,&quot;&quot;),t.replace(i+&quot;#&quot;+e)):t.hash=&quot;#&quot;+e}}),h.history=new R,v.extend=m.extend=$.extend=y.extend=R.extend=function(t,e){var i=this,n=t&amp;&amp;b.has(t,&quot;constructor&quot;)?t.constructor:function(){return i.apply(this,arguments)};return b.extend(n,i,e),n.prototype=b.create(i.prototype,t),(n.prototype.constructor=n).__super__=i.prototype,n},function(){throw new Error(&#039;A &quot;url&quot; property or function must be specified&#039;)}),N=function(e,i){var n=i.error;i.error=function(t){n&amp;&amp;n.call(i.context,e,t,i),e.trigger(&quot;error&quot;,e,t,i)}};return h});','00f415f9e73d10773403bfbfd9ff51c8-scripts','','publish','closed','closed','','00f415f9e73d10773403bfbfd9ff51c8-scripts','','','2022-09-12 15:56:50','2022-09-12 13:56:50','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1215',0,'wphb_minify_group','',0),(1216,0,'2022-09-12 15:56:50','2022-09-12 13:56:50','/**handles:backbone-marionette,backbone-radio**/\r\n/*! elementor - v3.0.15 - 2020-12-20 */\n// MarionetteJS (Backbone.Marionette)\n// ----------------------------------\n// v2.4.5.e1\n// Change Log:\n// 	e1: Fix - Compatibility with jQuery 3. (`Marionette.Region.reset`).\n//\n// Copyright (c)2016 Derick Bailey, Muted Solutions, LLC.\n// Distributed under MIT license\n//\n// http://marionettejs.com\n\n\n/*!\n * Includes BabySitter\n * https://github.com/marionettejs/backbone.babysitter/\n *\n * Includes Wreqr\n * https://github.com/marionettejs/backbone.wreqr/\n */\n\n\n\n!function(a,b){if(\"function\"==typeof define&amp;&amp;define.amd)define([\"backbone\",\"underscore\"],function(c,d){return a.Marionette=a.Mn=b(a,c,d)});else if(\"undefined\"!=typeof exports){var c=require(\"backbone\"),d=require(\"underscore\");module.exports=b(a,c,d)}else a.Marionette=a.Mn=b(a,a.Backbone,a._)}(this,function(a,b,c){\"use strict\";!function(a,b){var c=a.ChildViewContainer;return a.ChildViewContainer=function(a,b){var c=function(a){this._views={},this._indexByModel={},this._indexByCustom={},this._updateLength(),b.each(a,this.add,this)};b.extend(c.prototype,{add:function(a,b){var c=a.cid;return this._views[c]=a,a.model&amp;&amp;(this._indexByModel[a.model.cid]=c),b&amp;&amp;(this._indexByCustom[b]=c),this._updateLength(),this},findByModel:function(a){return this.findByModelCid(a.cid)},findByModelCid:function(a){var b=this._indexByModel[a];return this.findByCid(b)},findByCustom:function(a){var b=this._indexByCustom[a];return this.findByCid(b)},findByIndex:function(a){return b.values(this._views)[a]},findByCid:function(a){return this._views[a]},remove:function(a){var c=a.cid;return a.model&amp;&amp;delete this._indexByModel[a.model.cid],b.any(this._indexByCustom,function(a,b){return a===c?(delete this._indexByCustom[b],!0):void 0},this),delete this._views[c],this._updateLength(),this},call:function(a){this.apply(a,b.tail(arguments))},apply:function(a,c){b.each(this._views,function(d){b.isFunction(d[a])&amp;&amp;d[a].apply(d,c||[])})},_updateLength:function(){this.length=b.size(this._views)}});var d=[\"forEach\",\"each\",\"map\",\"find\",\"detect\",\"filter\",\"select\",\"reject\",\"every\",\"all\",\"some\",\"any\",\"include\",\"contains\",\"invoke\",\"toArray\",\"first\",\"initial\",\"rest\",\"last\",\"without\",\"isEmpty\",\"pluck\",\"reduce\"];return b.each(d,function(a){c.prototype[a]=function(){var c=b.values(this._views),d=[c].concat(b.toArray(arguments));return b[a].apply(b,d)}}),c}(a,b),a.ChildViewContainer.VERSION=\"0.1.11\",a.ChildViewContainer.noConflict=function(){return a.ChildViewContainer=c,this},a.ChildViewContainer}(b,c),function(a,b){var c=a.Wreqr,d=a.Wreqr={};return a.Wreqr.VERSION=\"1.3.6\",a.Wreqr.noConflict=function(){return a.Wreqr=c,this},d.Handlers=function(a,b){var c=function(a){this.options=a,this._wreqrHandlers={},b.isFunction(this.initialize)&amp;&amp;this.initialize(a)};return c.extend=a.Model.extend,b.extend(c.prototype,a.Events,{setHandlers:function(a){b.each(a,function(a,c){var d=null;b.isObject(a)&amp;&amp;!b.isFunction(a)&amp;&amp;(d=a.context,a=a.callback),this.setHandler(c,a,d)},this)},setHandler:function(a,b,c){var d={callback:b,context:c};this._wreqrHandlers[a]=d,this.trigger(\"handler:add\",a,b,c)},hasHandler:function(a){return!!this._wreqrHandlers[a]},getHandler:function(a){var b=this._wreqrHandlers[a];if(b)return function(){return b.callback.apply(b.context,arguments)}},removeHandler:function(a){delete this._wreqrHandlers[a]},removeAllHandlers:function(){this._wreqrHandlers={}}}),c}(a,b),d.CommandStorage=function(){var c=function(a){this.options=a,this._commands={},b.isFunction(this.initialize)&amp;&amp;this.initialize(a)};return b.extend(c.prototype,a.Events,{getCommands:function(a){var b=this._commands[a];return b||(b={command:a,instances:[]},this._commands[a]=b),b},addCommand:function(a,b){var c=this.getCommands(a);c.instances.push(b)},clearCommands:function(a){var b=this.getCommands(a);b.instances=[]}}),c}(),d.Commands=function(a,b){return a.Handlers.extend({storageType:a.CommandStorage,constructor:function(b){this.options=b||{},this._initializeStorage(this.options),this.on(\"handler:add\",this._executeCommands,this),a.Handlers.prototype.constructor.apply(this,arguments)},execute:function(a){a=arguments[0];var c=b.rest(arguments);this.hasHandler(a)?this.getHandler(a).apply(this,c):this.storage.addCommand(a,c)},_executeCommands:function(a,c,d){var e=this.storage.getCommands(a);b.each(e.instances,function(a){c.apply(d,a)}),this.storage.clearCommands(a)},_initializeStorage:function(a){var c,d=a.storageType||this.storageType;c=b.isFunction(d)?new d:d,this.storage=c}})}(d,b),d.RequestResponse=function(a,b){return a.Handlers.extend({request:function(a){return this.hasHandler(a)?this.getHandler(a).apply(this,b.rest(arguments)):void 0}})}(d,b),d.EventAggregator=function(a,b){var c=function(){};return c.extend=a.Model.extend,b.extend(c.prototype,a.Events),c}(a,b),d.Channel=function(c){var d=function(b){this.vent=new a.Wreqr.EventAggregator,this.reqres=new a.Wreqr.RequestResponse,this.commands=new a.Wreqr.Commands,this.channelName=b};return b.extend(d.prototype,{reset:function(){return this.vent.off(),this.vent.stopListening(),this.reqres.removeAllHandlers(),this.commands.removeAllHandlers(),this},connectEvents:function(a,b){return this._connect(\"vent\",a,b),this},connectCommands:function(a,b){return this._connect(\"commands\",a,b),this},connectRequests:function(a,b){return this._connect(\"reqres\",a,b),this},_connect:function(a,c,d){if(c){d=d||this;var e=\"vent\"===a?\"on\":\"setHandler\";b.each(c,function(c,f){this[a][e](f,b.bind(c,d))},this)}}}),d}(d),d.radio=function(a,b){var c=function(){this._channels={},this.vent={},this.commands={},this.reqres={},this._proxyMethods()};b.extend(c.prototype,{channel:function(a){if(!a)throw new Error(\"Channel must receive a name\");return this._getChannel(a)},_getChannel:function(b){var c=this._channels[b];return c||(c=new a.Channel(b),this._channels[b]=c),c},_proxyMethods:function(){b.each([\"vent\",\"commands\",\"reqres\"],function(a){b.each(d[a],function(b){this[a][b]=e(this,a,b)},this)},this)}});var d={vent:[\"on\",\"off\",\"trigger\",\"once\",\"stopListening\",\"listenTo\",\"listenToOnce\"],commands:[\"execute\",\"setHandler\",\"setHandlers\",\"removeHandler\",\"removeAllHandlers\"],reqres:[\"request\",\"setHandler\",\"setHandlers\",\"removeHandler\",\"removeAllHandlers\"]},e=function(a,c,d){return function(e){var f=a._getChannel(e)[c];return f[d].apply(f,b.rest(arguments))}};return new c}(d,b),a.Wreqr}(b,c);var d=a.Marionette,e=a.Mn,f=b.Marionette={};f.VERSION=\"2.4.5\",f.noConflict=function(){return a.Marionette=d,a.Mn=e,this},b.Marionette=f,f.Deferred=b.$.Deferred,f.extend=b.Model.extend,f.isNodeAttached=function(a){return b.$.contains(document.documentElement,a)},f.mergeOptions=function(a,b){a&amp;&amp;c.extend(this,c.pick(a,b))},f.getOption=function(a,b){return a&amp;&amp;b?a.options&amp;&amp;void 0!==a.options[b]?a.options[b]:a[b]:void 0},f.proxyGetOption=function(a){return f.getOption(this,a)},f._getValue=function(a,b,d){return c.isFunction(a)&amp;&amp;(a=d?a.apply(b,d):a.call(b)),a},f.normalizeMethods=function(a){return c.reduce(a,function(a,b,d){return c.isFunction(b)||(b=this[b]),b&amp;&amp;(a[d]=b),a},{},this)},f.normalizeUIString=function(a,b){return a.replace(/@ui\\.[a-zA-Z-_$0-9]*/g,function(a){return b[a.slice(4)]})},f.normalizeUIKeys=function(a,b){return c.reduce(a,function(a,c,d){var e=f.normalizeUIString(d,b);return a[e]=c,a},{})},f.normalizeUIValues=function(a,b,d){return c.each(a,function(e,g){c.isString(e)?a[g]=f.normalizeUIString(e,b):c.isObject(e)&amp;&amp;c.isArray(d)&amp;&amp;(c.extend(e,f.normalizeUIValues(c.pick(e,d),b)),c.each(d,function(a){var d=e[a];c.isString(d)&amp;&amp;(e[a]=f.normalizeUIString(d,b))}))}),a},f.actAsCollection=function(a,b){var d=[\"forEach\",\"each\",\"map\",\"find\",\"detect\",\"filter\",\"select\",\"reject\",\"every\",\"all\",\"some\",\"any\",\"include\",\"contains\",\"invoke\",\"toArray\",\"first\",\"initial\",\"rest\",\"last\",\"without\",\"isEmpty\",\"pluck\"];c.each(d,function(d){a[d]=function(){var a=c.values(c.result(this,b)),e=[a].concat(c.toArray(arguments));return c[d].apply(c,e)}})};var g=f.deprecate=function(a,b){c.isObject(a)&amp;&amp;(a=a.prev+\" is going to be removed in the future. Please use \"+a.next+\" instead.\"+(a.url?\" See: \"+a.url:\"\")),void 0!==b&amp;&amp;b||g._cache[a]||(g._warn(\"Deprecation warning: \"+a),g._cache[a]=!0)};g._console=\"undefined\"!=typeof console?console:{},g._warn=function(){var a=g._console.warn||g._console.log||function(){};return a.apply(g._console,arguments)},g._cache={},f._triggerMethod=function(){function a(a,b,c){return c.toUpperCase()}var b=/(^|:)(\\w)/gi;return function(d,e,f){var g=arguments.length1?d.trigger.apply(d,g?f:[e].concat(c.drop(f,0))):d.trigger(e)),h}}(),f.triggerMethod=function(a){return f._triggerMethod(this,arguments)},f.triggerMethodOn=function(a){var b=c.isFunction(a.triggerMethod)?a.triggerMethod:f.triggerMethod;return b.apply(a,c.rest(arguments))},f.MonitorDOMRefresh=function(a){function b(){a._isShown=!0,d()}function c(){a._isRendered=!0,d()}function d(){a._isShown&amp;&amp;a._isRendered&amp;&amp;f.isNodeAttached(a.el)&amp;&amp;f.triggerMethodOn(a,\"dom:refresh\",a)}a._isDomRefreshMonitored||(a._isDomRefreshMonitored=!0,a.on({show:b,render:c}))},function(a){function b(b,d,e,f){var g=f.split(/\\s+/);c.each(g,function(c){var f=b[c];if(!f)throw new a.Error(\'Method \"\'+c+\'\" was configured as an event handler, but does not exist.\');b.listenTo(d,e,f)})}function d(a,b,c,d){a.listenTo(b,c,d)}function e(a,b,d,e){var f=e.split(/\\s+/);c.each(f,function(c){var e=a[c];a.stopListening(b,d,e)})}function f(a,b,c,d){a.stopListening(b,c,d)}function g(b,d,e,f,g){if(d&amp;&amp;e){if(!c.isObject(e))throw new a.Error({message:\"Bindings must be an object or function.\",url:\"marionette.functions.html#marionettebindentityevents\"});e=a._getValue(e,b),c.each(e,function(a,e){c.isFunction(a)?f(b,d,e,a):g(b,d,e,a)})}}a.bindEntityEvents=function(a,c,e){g(a,c,e,d,b)},a.unbindEntityEvents=function(a,b,c){g(a,b,c,f,e)},a.proxyBindEntityEvents=function(b,c){return a.bindEntityEvents(this,b,c)},a.proxyUnbindEntityEvents=function(b,c){return a.unbindEntityEvents(this,b,c)}}(f);var h=[\"description\",\"fileName\",\"lineNumber\",\"name\",\"message\",\"number\"];return f.Error=f.extend.call(Error,{urlRoot:\"http://marionettejs.com/docs/v\"+f.VERSION+\"/\",constructor:function(a,b){c.isObject(a)?(b=a,a=b.message):b||(b={});var d=Error.call(this,a);c.extend(this,c.pick(d,h),c.pick(b,h)),this.captureStackTrace(),b.url&amp;&amp;(this.url=this.urlRoot+b.url)},captureStackTrace:function(){Error.captureStackTrace&amp;&amp;Error.captureStackTrace(this,f.Error)},toString:function(){return this.name+\": \"+this.message+(this.url?\" See: \"+this.url:\"\")}}),f.Error.extend=f.extend,f.Callbacks=function(){this._deferred=f.Deferred(),this._callbacks=[]},c.extend(f.Callbacks.prototype,{add:function(a,b){var d=c.result(this._deferred,\"promise\");this._callbacks.push({cb:a,ctx:b}),d.then(function(c){b&amp;&amp;(c.context=b),a.call(c.context,c.options)})},run:function(a,b){this._deferred.resolve({options:a,context:b})},reset:function(){var a=this._callbacks;this._deferred=f.Deferred(),this._callbacks=[],c.each(a,function(a){this.add(a.cb,a.ctx)},this)}}),f.Controller=function(a){this.options=a||{},c.isFunction(this.initialize)&amp;&amp;this.initialize(this.options)},f.Controller.extend=f.extend,c.extend(f.Controller.prototype,b.Events,{destroy:function(){return f._triggerMethod(this,\"before:destroy\",arguments),f._triggerMethod(this,\"destroy\",arguments),this.stopListening(),this.off(),this},triggerMethod:f.triggerMethod,mergeOptions:f.mergeOptions,getOption:f.proxyGetOption}),f.Object=function(a){this.options=c.extend({},c.result(this,\"options\"),a),this.initialize.apply(this,arguments)},f.Object.extend=f.extend,c.extend(f.Object.prototype,b.Events,{initialize:function(){},destroy:function(a){return a=a||{},this.triggerMethod(\"before:destroy\",a),this.triggerMethod(\"destroy\",a),this.stopListening(),this},triggerMethod:f.triggerMethod,mergeOptions:f.mergeOptions,getOption:f.proxyGetOption,bindEntityEvents:f.proxyBindEntityEvents,unbindEntityEvents:f.proxyUnbindEntityEvents}),f.Region=f.Object.extend({constructor:function(a){if(this.options=a||{},this.el=this.getOption(\"el\"),this.el=this.el instanceof b.$?this.el[0]:this.el,!this.el)throw new f.Error({name:\"NoElError\",message:\'An \"el\" must be specified for a region.\'});this.$el=this.getEl(this.el),f.Object.call(this,a)},show:function(a,b){if(this._ensureElement()){this._ensureViewIsIntact(a),f.MonitorDOMRefresh(a);var d=b||{},e=a!==this.currentView,g=!!d.preventDestroy,h=!!d.forceShow,i=!!this.currentView,j=e&amp;&amp;!g,k=e||h;if(i&amp;&amp;this.triggerMethod(\"before:swapOut\",this.currentView,this,b),this.currentView&amp;&amp;e&amp;&amp;delete this.currentView._parent,j?this.empty():i&amp;&amp;k&amp;&amp;this.currentView.off(\"destroy\",this.empty,this),k){a.once(\"destroy\",this.empty,this),a._parent=this,this._renderView(a),i&amp;&amp;this.triggerMethod(\"before:swap\",a,this,b),this.triggerMethod(\"before:show\",a,this,b),f.triggerMethodOn(a,\"before:show\",a,this,b),i&amp;&amp;this.triggerMethod(\"swapOut\",this.currentView,this,b);var l=f.isNodeAttached(this.el),m=[],n=c.extend({triggerBeforeAttach:this.triggerBeforeAttach,triggerAttach:this.triggerAttach},d);return l&amp;&amp;n.triggerBeforeAttach&amp;&amp;(m=this._displayedViews(a),this._triggerAttach(m,\"before:\")),this.attachHtml(a),this.currentView=a,l&amp;&amp;n.triggerAttach&amp;&amp;(m=this._displayedViews(a),this._triggerAttach(m)),i&amp;&amp;this.triggerMethod(\"swap\",a,this,b),this.triggerMethod(\"show\",a,this,b),f.triggerMethodOn(a,\"show\",a,this,b),this}return this}},triggerBeforeAttach:!0,triggerAttach:!0,_triggerAttach:function(a,b){var d=(b||\"\")+\"attach\";c.each(a,function(a){f.triggerMethodOn(a,d,a,this)},this)},_displayedViews:function(a){return c.union([a],c.result(a,\"_getNestedViews\")||[])},_renderView:function(a){a.supportsRenderLifecycle||f.triggerMethodOn(a,\"before:render\",a),a.render(),a.supportsRenderLifecycle||f.triggerMethodOn(a,\"render\",a)},_ensureElement:function(){if(c.isObject(this.el)||(this.$el=this.getEl(this.el),this.el=this.$el[0]),!this.$el||0===this.$el.length){if(this.getOption(\"allowMissingEl\"))return!1;throw new f.Error(\'An \"el\" \'+this.$el.selector+\" must exist in DOM\")}return!0},_ensureViewIsIntact:function(a){if(!a)throw new f.Error({name:\"ViewNotValid\",message:\"The view passed is undefined and therefore invalid. You must pass a view instance to show.\"});if(a.isDestroyed)throw new f.Error({name:\"ViewDestroyedError\",message:\'View (cid: \"\'+a.cid+\'\") has already been destroyed and cannot be used.\'})},getEl:function(a){return b.$(a,f._getValue(this.options.parentEl,this))},attachHtml:function(a){this.$el.contents().detach(),this.el.appendChild(a.el)},empty:function(a){var b=this.currentView,c=a||{},d=!!c.preventDestroy;return b?(b.off(\"destroy\",this.empty,this),this.triggerMethod(\"before:empty\",b),d||this._destroyView(),this.triggerMethod(\"empty\",b),delete this.currentView,d&amp;&amp;this.$el.contents().detach(),this):this},_destroyView:function(){var a=this.currentView;a.isDestroyed||(a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"before:destroy\",a),a.destroy?a.destroy():(a.remove(),a.isDestroyed=!0),a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"destroy\",a))},attachView:function(a){return this.currentView&amp;&amp;delete this.currentView._parent,a._parent=this,this.currentView=a,this},hasView:function(){return!!this.currentView},reset:function(){return this.empty(),this.$el&amp;&amp;(this.el=this.options.el),delete this.$el,this}},{buildRegion:function(a,b){if(c.isString(a))return this._buildRegionFromSelector(a,b);if(a.selector||a.el||a.regionClass)return this._buildRegionFromObject(a,b);if(c.isFunction(a))return this._buildRegionFromRegionClass(a);throw new f.Error({message:\"Improper region configuration type.\",url:\"marionette.region.html#region-configuration-types\"})},_buildRegionFromSelector:function(a,b){return new b({el:a})},_buildRegionFromObject:function(a,b){var d=a.regionClass||b,e=c.omit(a,\"selector\",\"regionClass\");return a.selector&amp;&amp;!e.el&amp;&amp;(e.el=a.selector),new d(e)},_buildRegionFromRegionClass:function(a){return new a}}),f.RegionManager=f.Controller.extend({constructor:function(a){this._regions={},this.length=0,f.Controller.call(this,a),this.addRegions(this.getOption(\"regions\"))},addRegions:function(a,b){return a=f._getValue(a,this,arguments),c.reduce(a,function(a,d,e){return c.isString(d)&amp;&amp;(d={selector:d}),d.selector&amp;&amp;(d=c.defaults({},d,b)),a[e]=this.addRegion(e,d),a},{},this)},addRegion:function(a,b){var c;return c=b instanceof f.Region?b:f.Region.buildRegion(b,f.Region),this.triggerMethod(\"before:add:region\",a,c),c._parent=this,this._store(a,c),this.triggerMethod(\"add:region\",a,c),c},get:function(a){return this._regions[a]},getRegions:function(){return c.clone(this._regions)},removeRegion:function(a){var b=this._regions[a];return this._remove(a,b),b},removeRegions:function(){var a=this.getRegions();return c.each(this._regions,function(a,b){this._remove(b,a)},this),a},emptyRegions:function(){var a=this.getRegions();return c.invoke(a,\"empty\"),a},destroy:function(){return this.removeRegions(),f.Controller.prototype.destroy.apply(this,arguments)},_store:function(a,b){this._regions[a]||this.length++,this._regions[a]=b},_remove:function(a,b){this.triggerMethod(\"before:remove:region\",a,b),b.empty(),b.stopListening(),delete b._parent,delete this._regions[a],this.length--,this.triggerMethod(\"remove:region\",a,b)}}),f.actAsCollection(f.RegionManager.prototype,\"_regions\"),f.TemplateCache=function(a){this.templateId=a},c.extend(f.TemplateCache,{templateCaches:{},get:function(a,b){var c=this.templateCaches[a];return c||(c=new f.TemplateCache(a),this.templateCaches[a]=c),c.load(b)},clear:function(){var a,b=c.toArray(arguments),d=b.length;if(d&gt;0)for(a=0;d&gt;a;a++)delete this.templateCaches[b[a]];else this.templateCaches={}}}),c.extend(f.TemplateCache.prototype,{load:function(a){if(this.compiledTemplate)return this.compiledTemplate;var b=this.loadTemplate(this.templateId,a);return this.compiledTemplate=this.compileTemplate(b,a),this.compiledTemplate},loadTemplate:function(a,c){var d=b.$(a);if(!d.length)throw new f.Error({name:\"NoTemplateError\",message:\'Could not find template: \"\'+a+\'\"\'});return d.html()},compileTemplate:function(a,b){return c.template(a,b)}}),f.Renderer={render:function(a,b){if(!a)throw new f.Error({name:\"TemplateNotFoundError\",message:\"Cannot render the template since its false, null or undefined.\"});var d=c.isFunction(a)?a:f.TemplateCache.get(a);return d(b)}},f.View=b.View.extend({isDestroyed:!1,supportsRenderLifecycle:!0,supportsDestroyLifecycle:!0,constructor:function(a){this.render=c.bind(this.render,this),a=f._getValue(a,this),this.options=c.extend({},c.result(this,\"options\"),a),this._behaviors=f.Behaviors(this),b.View.call(this,this.options),f.MonitorDOMRefresh(this)},getTemplate:function(){return this.getOption(\"template\")},serializeModel:function(a){return a.toJSON.apply(a,c.rest(arguments))},mixinTemplateHelpers:function(a){a=a||{};var b=this.getOption(\"templateHelpers\");return b=f._getValue(b,this),c.extend(a,b)},normalizeUIKeys:function(a){var b=c.result(this,\"_uiBindings\");return f.normalizeUIKeys(a,b||c.result(this,\"ui\"))},normalizeUIValues:function(a,b){var d=c.result(this,\"ui\"),e=c.result(this,\"_uiBindings\");return f.normalizeUIValues(a,e||d,b)},configureTriggers:function(){if(this.triggers){var a=this.normalizeUIKeys(c.result(this,\"triggers\"));return c.reduce(a,function(a,b,c){return a[c]=this._buildViewTrigger(b),a},{},this)}},delegateEvents:function(a){return this._delegateDOMEvents(a),this.bindEntityEvents(this.model,this.getOption(\"modelEvents\")),this.bindEntityEvents(this.collection,this.getOption(\"collectionEvents\")),c.each(this._behaviors,function(a){a.bindEntityEvents(this.model,a.getOption(\"modelEvents\")),a.bindEntityEvents(this.collection,a.getOption(\"collectionEvents\"))},this),this},_delegateDOMEvents:function(a){var d=f._getValue(a||this.events,this);d=this.normalizeUIKeys(d),c.isUndefined(a)&amp;&amp;(this.events=d);var e={},g=c.result(this,\"behaviorEvents\")||{},h=this.configureTriggers(),i=c.result(this,\"behaviorTriggers\")||{};c.extend(e,g,d,h,i),b.View.prototype.delegateEvents.call(this,e)},undelegateEvents:function(){return b.View.prototype.undelegateEvents.apply(this,arguments),this.unbindEntityEvents(this.model,this.getOption(\"modelEvents\")),this.unbindEntityEvents(this.collection,this.getOption(\"collectionEvents\")),c.each(this._behaviors,function(a){a.unbindEntityEvents(this.model,a.getOption(\"modelEvents\")),a.unbindEntityEvents(this.collection,a.getOption(\"collectionEvents\"))},this),this},_ensureViewIsIntact:function(){if(this.isDestroyed)throw new f.Error({name:\"ViewDestroyedError\",message:\'View (cid: \"\'+this.cid+\'\") has already been destroyed and cannot be used.\'})},destroy:function(){if(this.isDestroyed)return this;var a=c.toArray(arguments);return this.triggerMethod.apply(this,[\"before:destroy\"].concat(a)),this.isDestroyed=!0,this.triggerMethod.apply(this,[\"destroy\"].concat(a)),this.unbindUIElements(),this.isRendered=!1,this.remove(),c.invoke(this._behaviors,\"destroy\",a),this},bindUIElements:function(){this._bindUIElements(),c.invoke(this._behaviors,this._bindUIElements)},_bindUIElements:function(){if(this.ui){this._uiBindings||(this._uiBindings=this.ui);var a=c.result(this,\"_uiBindings\");this.ui={},c.each(a,function(a,b){this.ui[b]=this.$(a)},this)}},unbindUIElements:function(){this._unbindUIElements(),c.invoke(this._behaviors,this._unbindUIElements)},_unbindUIElements:function(){this.ui&amp;&amp;this._uiBindings&amp;&amp;(c.each(this.ui,function(a,b){delete this.ui[b]},this),this.ui=this._uiBindings,delete this._uiBindings)},_buildViewTrigger:function(a){var b=c.defaults({},a,{preventDefault:!0,stopPropagation:!0}),d=c.isObject(a)?b.event:a;return function(a){a&amp;&amp;(a.preventDefault&amp;&amp;b.preventDefault&amp;&amp;a.preventDefault(),a.stopPropagation&amp;&amp;b.stopPropagation&amp;&amp;a.stopPropagation());var c={view:this,model:this.model,collection:this.collection};this.triggerMethod(d,c)}},setElement:function(){var a=b.View.prototype.setElement.apply(this,arguments);return c.invoke(this._behaviors,\"proxyViewProperties\",this),a},triggerMethod:function(){var a=f._triggerMethod(this,arguments);return this._triggerEventOnBehaviors(arguments),this._triggerEventOnParentLayout(arguments[0],c.rest(arguments)),a},_triggerEventOnBehaviors:function(a){for(var b=f._triggerMethod,c=this._behaviors,d=0,e=c&amp;&amp;c.length;e&gt;d;d++)b(c[d],a)},_triggerEventOnParentLayout:function(a,b){var d=this._parentLayoutView();if(d){var e=f.getOption(d,\"childViewEventPrefix\"),g=e+\":\"+a,h=[this].concat(b);f._triggerMethod(d,g,h);var i=f.getOption(d,\"childEvents\");i=f._getValue(i,d);var j=d.normalizeMethods(i);j&amp;&amp;c.isFunction(j[a])&amp;&amp;j[a].apply(d,h)}},_getImmediateChildren:function(){return[]},_getNestedViews:function(){var a=this._getImmediateChildren();return a.length?c.reduce(a,function(a,b){return b._getNestedViews?a.concat(b._getNestedViews()):a},a):a},_parentLayoutView:function(){for(var a=this._parent;a;){if(a instanceof f.LayoutView)return a;a=a._parent}},normalizeMethods:f.normalizeMethods,mergeOptions:f.mergeOptions,getOption:f.proxyGetOption,bindEntityEvents:f.proxyBindEntityEvents,unbindEntityEvents:f.proxyUnbindEntityEvents}),f.ItemView=f.View.extend({constructor:function(){f.View.apply(this,arguments)},serializeData:function(){if(!this.model&amp;&amp;!this.collection)return{};var a=[this.model||this.collection];return arguments.length&amp;&amp;a.push.apply(a,arguments),this.model?this.serializeModel.apply(this,a):{items:this.serializeCollection.apply(this,a)}},serializeCollection:function(a){return a.toJSON.apply(a,c.rest(arguments))},render:function(){return this._ensureViewIsIntact(),this.triggerMethod(\"before:render\",this),this._renderTemplate(),this.isRendered=!0,this.bindUIElements(),this.triggerMethod(\"render\",this),this},_renderTemplate:function(){var a=this.getTemplate();if(a!==!1){if(!a)throw new f.Error({name:\"UndefinedTemplateError\",message:\"Cannot render the template since it is null or undefined.\"});var b=this.mixinTemplateHelpers(this.serializeData()),c=f.Renderer.render(a,b,this);return this.attachElContent(c),this}},attachElContent:function(a){return this.$el.html(a),this}}),f.CollectionView=f.View.extend({childViewEventPrefix:\"childview\",sort:!0,constructor:function(a){this.once(\"render\",this._initialEvents),this._initChildViewStorage(),f.View.apply(this,arguments),this.on({\"before:show\":this._onBeforeShowCalled,show:this._onShowCalled,\"before:attach\":this._onBeforeAttachCalled,attach:this._onAttachCalled}),this.initRenderBuffer()},initRenderBuffer:function(){this._bufferedChildren=[]},startBuffering:function(){this.initRenderBuffer(),this.isBuffering=!0},endBuffering:function(){var a,b=this._isShown&amp;&amp;f.isNodeAttached(this.el);this.isBuffering=!1,this._isShown&amp;&amp;this._triggerMethodMany(this._bufferedChildren,this,\"before:show\"),b&amp;&amp;this._triggerBeforeAttach&amp;&amp;(a=this._getNestedViews(),this._triggerMethodMany(a,this,\"before:attach\")),this.attachBuffer(this,this._createBuffer()),b&amp;&amp;this._triggerAttach&amp;&amp;(a=this._getNestedViews(),this._triggerMethodMany(a,this,\"attach\")),this._isShown&amp;&amp;this._triggerMethodMany(this._bufferedChildren,this,\"show\"),this.initRenderBuffer()},_triggerMethodMany:function(a,b,d){var e=c.drop(arguments,3);c.each(a,function(a){f.triggerMethodOn.apply(a,[a,d,a,b].concat(e))})},_initialEvents:function(){this.collection&amp;&amp;(this.listenTo(this.collection,\"add\",this._onCollectionAdd),this.listenTo(this.collection,\"remove\",this._onCollectionRemove),this.listenTo(this.collection,\"reset\",this.render),this.getOption(\"sort\")&amp;&amp;this.listenTo(this.collection,\"sort\",this._sortViews))},_onCollectionAdd:function(a,b,d){var e=void 0!==d.at&amp;&amp;(d.index||b.indexOf(a));if((this.getOption(\"filter\")||e===!1)&amp;&amp;(e=c.indexOf(this._filteredSortedModels(e),a)),this._shouldAddChild(a,e)){this.destroyEmptyView();var f=this.getChildView(a);this.addChild(a,f,e)}},_onCollectionRemove:function(a){var b=this.children.findByModel(a);this.removeChildView(b),this.checkEmpty()},_onBeforeShowCalled:function(){this._triggerBeforeAttach=this._triggerAttach=!1,this.children.each(function(a){f.triggerMethodOn(a,\"before:show\",a)})},_onShowCalled:function(){this.children.each(function(a){f.triggerMethodOn(a,\"show\",a)})},_onBeforeAttachCalled:function(){this._triggerBeforeAttach=!0},_onAttachCalled:function(){this._triggerAttach=!0},render:function(){return this._ensureViewIsIntact(),this.triggerMethod(\"before:render\",this),this._renderChildren(),this.isRendered=!0,this.triggerMethod(\"render\",this),this},reorder:function(){var a=this.children,b=this._filteredSortedModels(),d=c.some(b,function(b){return!a.findByModel(b)});if(d)this.render();else{var e=c.map(b,function(b,c){var d=a.findByModel(b);return d._index=c,d.el}),f=a.filter(function(a){return!c.contains(e,a.el)});this.triggerMethod(\"before:reorder\"),this._appendReorderedChildren(e),c.each(f,this.removeChildView,this),this.checkEmpty(),this.triggerMethod(\"reorder\")}},resortView:function(){f.getOption(this,\"reorderOnSort\")?this.reorder():this.render()},_sortViews:function(){var a=this._filteredSortedModels(),b=c.find(a,function(a,b){var c=this.children.findByModel(a);return!c||c._index!==b},this);b&amp;&amp;this.resortView()},_emptyViewIndex:-1,_appendReorderedChildren:function(a){this.$el.append(a)},_renderChildren:function(){this.destroyEmptyView(),this.destroyChildren({checkEmpty:!1}),this.isEmpty(this.collection)?this.showEmptyView():(this.triggerMethod(\"before:render:collection\",this),this.startBuffering(),this.showCollection(),this.endBuffering(),this.triggerMethod(\"render:collection\",this),this.children.isEmpty()&amp;&amp;this.getOption(\"filter\")&amp;&amp;this.showEmptyView())},showCollection:function(){var a,b=this._filteredSortedModels();c.each(b,function(b,c){a=this.getChildView(b),this.addChild(b,a,c)},this)},_filteredSortedModels:function(a){var b=this.getViewComparator(),d=this.collection.models;if(a=Math.min(Math.max(a,0),d.length-1),b){var e;a&amp;&amp;(e=d[a],d=d.slice(0,a).concat(d.slice(a+1))),d=this._sortModelsBy(d,b),e&amp;&amp;d.splice(a,0,e)}return this.getOption(\"filter\")&amp;&amp;(d=c.filter(d,function(a,b){return this._shouldAddChild(a,b)},this)),d},_sortModelsBy:function(a,b){return\"string\"==typeof b?c.sortBy(a,function(a){return a.get(b)},this):1===b.length?c.sortBy(a,b,this):a.sort(c.bind(b,this))},showEmptyView:function(){var a=this.getEmptyView();if(a&amp;&amp;!this._showingEmptyView){this.triggerMethod(\"before:render:empty\"),this._showingEmptyView=!0;var c=new b.Model;this.addEmptyView(c,a),this.triggerMethod(\"render:empty\")}},destroyEmptyView:function(){this._showingEmptyView&amp;&amp;(this.triggerMethod(\"before:remove:empty\"),this.destroyChildren(),delete this._showingEmptyView,this.triggerMethod(\"remove:empty\"))},getEmptyView:function(){return this.getOption(\"emptyView\")},addEmptyView:function(a,b){var d,e=this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.isNodeAttached(this.el),g=this.getOption(\"emptyViewOptions\")||this.getOption(\"childViewOptions\");c.isFunction(g)&amp;&amp;(g=g.call(this,a,this._emptyViewIndex));var h=this.buildChildView(a,b,g);h._parent=this,this.proxyChildEvents(h),h.once(\"render\",function(){this._isShown&amp;&amp;f.triggerMethodOn(h,\"before:show\",h),e&amp;&amp;this._triggerBeforeAttach&amp;&amp;(d=this._getViewAndNested(h),this._triggerMethodMany(d,this,\"before:attach\"))},this),this.children.add(h),this.renderChildView(h,this._emptyViewIndex),e&amp;&amp;this._triggerAttach&amp;&amp;(d=this._getViewAndNested(h),this._triggerMethodMany(d,this,\"attach\")),this._isShown&amp;&amp;f.triggerMethodOn(h,\"show\",h)},getChildView:function(a){var b=this.getOption(\"childView\");if(!b)throw new f.Error({name:\"NoChildViewError\",message:\'A \"childView\" must be specified\'});return b},addChild:function(a,b,c){var d=this.getOption(\"childViewOptions\");d=f._getValue(d,this,[a,c]);var e=this.buildChildView(a,b,d);return this._updateIndices(e,!0,c),this.triggerMethod(\"before:add:child\",e),this._addChildView(e,c),this.triggerMethod(\"add:child\",e),e._parent=this,e},_updateIndices:function(a,b,c){this.getOption(\"sort\")&amp;&amp;(b&amp;&amp;(a._index=c),this.children.each(function(c){c._index&gt;=a._index&amp;&amp;(c._index+=b?1:-1)}))},_addChildView:function(a,b){var c,d=this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.isNodeAttached(this.el);this.proxyChildEvents(a),a.once(\"render\",function(){this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.triggerMethodOn(a,\"before:show\",a),d&amp;&amp;this._triggerBeforeAttach&amp;&amp;(c=this._getViewAndNested(a),this._triggerMethodMany(c,this,\"before:attach\"))},this),this.children.add(a),this.renderChildView(a,b),d&amp;&amp;this._triggerAttach&amp;&amp;(c=this._getViewAndNested(a),this._triggerMethodMany(c,this,\"attach\")),this._isShown&amp;&amp;!this.isBuffering&amp;&amp;f.triggerMethodOn(a,\"show\",a)},renderChildView:function(a,b){return a.supportsRenderLifecycle||f.triggerMethodOn(a,\"before:render\",a),a.render(),a.supportsRenderLifecycle||f.triggerMethodOn(a,\"render\",a),this.attachHtml(this,a,b),a},buildChildView:function(a,b,d){var e=c.extend({model:a},d),g=new b(e);return f.MonitorDOMRefresh(g),g},removeChildView:function(a){return a?(this.triggerMethod(\"before:remove:child\",a),a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"before:destroy\",a),a.destroy?a.destroy():a.remove(),a.supportsDestroyLifecycle||f.triggerMethodOn(a,\"destroy\",a),delete a._parent,this.stopListening(a),this.children.remove(a),this.triggerMethod(\"remove:child\",a),this._updateIndices(a,!1),a):a},isEmpty:function(){return!this.collection||0===this.collection.length},checkEmpty:function(){this.isEmpty(this.collection)&amp;&amp;this.showEmptyView()},attachBuffer:function(a,b){a.$el.append(b)},_createBuffer:function(){var a=document.createDocumentFragment();return c.each(this._bufferedChildren,function(b){a.appendChild(b.el)}),a},attachHtml:function(a,b,c){a.isBuffering?a._bufferedChildren.splice(c,0,b):a._insertBefore(b,c)||a._insertAfter(b)},_insertBefore:function(a,b){var c,d=this.getOption(\"sort\")&amp;&amp;b&lt;this.children.length-1;return d&amp;&amp;(c=this.children.find(function(a){return a._index===b+1})),c?(c.$el.before(a.el),!0):!1},_insertAfter:function(a){this.$el.append(a.el)},_initChildViewStorage:function(){this.children=new b.ChildViewContainer},destroy:function(){return this.isDestroyed?this:(this.triggerMethod(&quot;before:destroy:collection&quot;),this.destroyChildren({checkEmpty:!1}),this.triggerMethod(&quot;destroy:collection&quot;),f.View.prototype.destroy.apply(this,arguments))},destroyChildren:function(a){var b=a||{},d=!0,e=this.children.map(c.identity);return c.isUndefined(b.checkEmpty)||(d=b.checkEmpty),this.children.each(this.removeChildView,this),d&amp;&amp;this.checkEmpty(),e},_shouldAddChild:function(a,b){var d=this.getOption(&quot;filter&quot;);return!c.isFunction(d)||d.call(this,a,b,this.collection)},proxyChildEvents:function(a){var b=this.getOption(&quot;childViewEventPrefix&quot;);this.listenTo(a,&quot;all&quot;,function(){var d=c.toArray(arguments),e=d[0],f=this.normalizeMethods(c.result(this,&quot;childEvents&quot;));\nd[0]=b+&quot;:&quot;+e,d.splice(1,0,a),&quot;undefined&quot;!=typeof f&amp;&amp;c.isFunction(f[e])&amp;&amp;f[e].apply(this,d.slice(1)),this.triggerMethod.apply(this,d)})},_getImmediateChildren:function(){return c.values(this.children._views)},_getViewAndNested:function(a){return[a].concat(c.result(a,&quot;_getNestedViews&quot;)||[])},getViewComparator:function(){return this.getOption(&quot;viewComparator&quot;)}}),f.CompositeView=f.CollectionView.extend({constructor:function(){f.CollectionView.apply(this,arguments)},_initialEvents:function(){this.collection&amp;&amp;(this.listenTo(this.collection,&quot;add&quot;,this._onCollectionAdd),this.listenTo(this.collection,&quot;remove&quot;,this._onCollectionRemove),this.listenTo(this.collection,&quot;reset&quot;,this._renderChildren),this.getOption(&quot;sort&quot;)&amp;&amp;this.listenTo(this.collection,&quot;sort&quot;,this._sortViews))},getChildView:function(a){var b=this.getOption(&quot;childView&quot;)||this.constructor;return b},serializeData:function(){var a={};return this.model&amp;&amp;(a=c.partial(this.serializeModel,this.model).apply(this,arguments)),a},render:function(){return this._ensureViewIsIntact(),this._isRendering=!0,this.resetChildViewContainer(),this.triggerMethod(&quot;before:render&quot;,this),this._renderTemplate(),this._renderChildren(),this._isRendering=!1,this.isRendered=!0,this.triggerMethod(&quot;render&quot;,this),this},_renderChildren:function(){(this.isRendered||this._isRendering)&amp;&amp;f.CollectionView.prototype._renderChildren.call(this)},_renderTemplate:function(){var a={};a=this.serializeData(),a=this.mixinTemplateHelpers(a),this.triggerMethod(&quot;before:render:template&quot;);var b=this.getTemplate(),c=f.Renderer.render(b,a,this);this.attachElContent(c),this.bindUIElements(),this.triggerMethod(&quot;render:template&quot;)},attachElContent:function(a){return this.$el.html(a),this},attachBuffer:function(a,b){var c=this.getChildViewContainer(a);c.append(b)},_insertAfter:function(a){var b=this.getChildViewContainer(this,a);b.append(a.el)},_appendReorderedChildren:function(a){var b=this.getChildViewContainer(this);b.append(a)},getChildViewContainer:function(a,b){if(a.$childViewContainer)return a.$childViewContainer;var c,d=f.getOption(a,&quot;childViewContainer&quot;);if(d){var e=f._getValue(d,a);if(c=&quot;@&quot;===e.charAt(0)&amp;&amp;a.ui?a.ui[e.substr(4)]:a.$(e),c.lengtha;a++)r=s[a],n[r]&amp;&amp;t(n,r,o,i)&amp;&amp;(u=!0);return u}function o(n){return l[n]||(l[n]=e.partial(a.log,n))}function i(n){return e.isFunction(n)?n:function(){return n}}e=\"default\"in e?e[\"default\"]:e,n=\"default\"in n?n[\"default\"]:n;var s={};s[\"typeof\"]=\"function\"==typeof Symbol&amp;&amp;\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&amp;&amp;\"function\"==typeof Symbol&amp;&amp;e.constructor===Symbol?\"symbol\":typeof e};var u=n.Radio,a=n.Radio={};a.VERSION=\"1.0.4\",a.noConflict=function(){return n.Radio=u,this},a.DEBUG=!1,a._debugText=function(e,n,t){return e+(t?\" on the \"+t+\" channel\":\"\")+\': \"\'+n+\'\"\'},a.debugLog=function(e,n,t){a.DEBUG&amp;&amp;console&amp;&amp;console.warn&amp;&amp;console.warn(a._debugText(e,n,t))};var c=/\\s+/;a._eventsApi=function(n,t,r,o){if(!r)return!1;var i={};if(\"object\"===(\"undefined\"==typeof r?\"undefined\":s[\"typeof\"](r))){for(var u in r){var a=n[t].apply(n,[u,r[u]].concat(o));c.test(u)?e.extend(i,a):i[u]=a}return i}if(c.test(r)){for(var l=r.split(c),f=0,h=l.length;h&gt;f;f++)i[l[f]]=n[t].apply(n,[l[f]].concat(o));return i}return!1},a._callHandler=function(e,n,t){var r=t[0],o=t[1],i=t[2];switch(t.length){case 0:return e.call(n);case 1:return e.call(n,r);case 2:return e.call(n,r,o);case 3:return e.call(n,r,o,i);default:return e.apply(n,t)}};var l={};e.extend(a,{log:function(n,t){if(\"undefined\"!=typeof console){var r=e.drop(arguments,2);console.log(\"[\"+n+\'] \"\'+t+\'\"\',r)}},tuneIn:function(e){var n=a.channel(e);return n._tunedIn=!0,n.on(\"all\",o(e)),this},tuneOut:function(e){var n=a.channel(e);return n._tunedIn=!1,n.off(\"all\",o(e)),delete l[e],this}}),a.Requests={request:function(n){var t=e.rest(arguments),r=a._eventsApi(this,\"request\",n,t);if(r)return r;var o=this.channelName,i=this._requests;if(o&amp;&amp;this._tunedIn&amp;&amp;a.log.apply(this,[o,n].concat(t)),i&amp;&amp;(i[n]||i[\"default\"])){var s=i[n]||i[\"default\"];return t=i[n]?t:arguments,a._callHandler(s.callback,s.context,t)}a.debugLog(\"An unhandled request was fired\",n,o)},reply:function(e,n,t){return a._eventsApi(this,\"reply\",e,[n,t])?this:(this._requests||(this._requests={}),this._requests[e]&amp;&amp;a.debugLog(\"A request was overwritten\",e,this.channelName),this._requests[e]={callback:i(n),context:t||this},this)},replyOnce:function(n,t,r){if(a._eventsApi(this,\"replyOnce\",n,[t,r]))return this;var o=this,s=e.once(function(){return o.stopReplying(n),i(t).apply(this,arguments)});return this.reply(n,s,r)},stopReplying:function(e,n,t){return a._eventsApi(this,\"stopReplying\",e)?this:(e||n||t?r(this._requests,e,n,t)||a.debugLog(\"Attempted to remove the unregistered request\",e,this.channelName):delete this._requests,this)}},a._channels={},a.channel=function(e){if(!e)throw new Error(\"You must provide a name for the channel.\");return a._channels[e]?a._channels[e]:a._channels[e]=new a.Channel(e)},a.Channel=function(e){this.channelName=e},e.extend(a.Channel.prototype,n.Events,a.Requests,{reset:function(){return this.off(),this.stopListening(),this.stopReplying(),this}});var f,h,d=[n.Events,a.Requests];return e.each(d,function(n){e.each(n,function(n,t){a[t]=function(n){return h=e.rest(arguments),f=this.channel(n),f[t].apply(f,h)}})}),a.reset=function(n){var t=n?[this._channels[n]]:this._channels;e.invoke(t,\"reset\")},a});','bec646849a32d84729e39becd1e8c8e5-scripts','','publish','closed','closed','','bec646849a32d84729e39becd1e8c8e5-scripts','','','2022-09-12 15:56:50','2022-09-12 13:56:50','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1216',0,'wphb_minify_group','',0),(1217,0,'2022-09-12 15:58:04','2022-09-12 13:58:04','/**handles:hello-theme-frontend,smush-lazy-load**/\r\n(()=&gt;{var e={690:e=&gt;{e.exports=function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")},e.exports.__esModule=!0,e.exports.default=e.exports},728:e=&gt;{function _defineProperties(e,t){for(var n=0;n{e.exports=function _interopRequireDefault(e){return e&amp;&amp;e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports}},t={};function __webpack_require__(n){var r=t[n];if(void 0!==r)return r.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,__webpack_require__),o.exports}(()=&gt;{\"use strict\";var e=__webpack_require__(836),t=e(__webpack_require__(690)),n=e(__webpack_require__(728)),r=function(){function elementorHelloThemeHandler(){(0,t.default)(this,elementorHelloThemeHandler),this.initSettings(),this.initElements(),this.bindEvents()}return(0,n.default)(elementorHelloThemeHandler,[{key:\"initSettings\",value:function initSettings(){this.settings={selectors:{header:\"header.site-header\",footer:\"footer.site-footer\",menuToggle:\".site-header .site-navigation-toggle\",menuToggleHolder:\".site-header .site-navigation-toggle-holder\",dropdownMenu:\".site-header .site-navigation-dropdown\"}}}},{key:\"initElements\",value:function initElements(){this.elements={$window:jQuery(window),$document:jQuery(document),$header:jQuery(this.settings.selectors.header),$footer:jQuery(this.settings.selectors.footer),$menuToggle:jQuery(this.settings.selectors.menuToggle),$menuToggleHolder:jQuery(this.settings.selectors.menuToggleHolder),$dropdownMenu:jQuery(this.settings.selectors.dropdownMenu)}}},{key:\"bindEvents\",value:function bindEvents(){var e=this;this.elements.$menuToggle.on(\"click\",(function(){return e.handleMenuToggle()})),this.elements.$dropdownMenu.on(\"click\",\".menu-item-has-children &gt; a\",this.handleMenuChildren)}},{key:\"closeMenuItems\",value:function closeMenuItems(){var e=this;this.elements.$menuToggleHolder.removeClass(\"elementor-active\"),this.elements.$window.off(\"resize\",(function(){return e.closeMenuItems()}))}},{key:\"handleMenuToggle\",value:function handleMenuToggle(){var e=this,t=!this.elements.$menuToggleHolder.hasClass(\"elementor-active\");this.elements.$menuToggle.attr(\"aria-expanded\",t),this.elements.$dropdownMenu.attr(\"aria-hidden\",!t),this.elements.$menuToggleHolder.toggleClass(\"elementor-active\",t),this.elements.$dropdownMenu.find(\".elementor-active\").removeClass(\"elementor-active\"),t?this.elements.$window.on(\"resize\",(function(){return e.closeMenuItems()})):this.elements.$window.off(\"resize\",(function(){return e.closeMenuItems()}))}},{key:\"handleMenuChildren\",value:function handleMenuChildren(e){var t=jQuery(e.currentTarget).parent(\"li\");t.hasClass(\"elementor-active\")?t.removeClass(\"elementor-active\"):t.addClass(\"elementor-active\")}}]),elementorHelloThemeHandler}();jQuery((function(){new r}))})()})();\r\n!function(){var e={90:function(e){!function(t,n){var a=function(e,t,n){\"use strict\";var a,i;if(function(){var t,n={lazyClass:\"lazyload\",loadedClass:\"lazyloaded\",loadingClass:\"lazyloading\",preloadClass:\"lazypreload\",errorClass:\"lazyerror\",autosizesClass:\"lazyautosizes\",fastLoadedClass:\"ls-is-cached\",iframeLoadMode:0,srcAttr:\"data-src\",srcsetAttr:\"data-srcset\",sizesAttr:\"data-sizes\",minSize:40,customMedia:{},init:!0,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:!0,ricTimeout:0,throttleDelay:125};for(t in i=e.lazySizesConfig||e.lazysizesConfig||{},n)t in i||(i[t]=n[t])}(),!t||!t.getElementsByClassName)return{init:function(){},cfg:i,noSupport:!0};var r=t.documentElement,o=e.HTMLPictureElement,s=\"addEventListener\",l=\"getAttribute\",c=e[s].bind(e),d=e.setTimeout,u=e.requestAnimationFrame||d,f=e.requestIdleCallback,m=/^picture$/i,v=[\"load\",\"error\",\"lazyincluded\",\"_lazyloaded\"],y={},h=Array.prototype.forEach,z=function(e,t){return y[t]||(y[t]=new RegExp(\"(\\\\s|^)\"+t+\"(\\\\s|$)\")),y[t].test(e[l](\"class\")||\"\")&amp;&amp;y[t]},p=function(e,t){z(e,t)||e.setAttribute(\"class\",(e[l](\"class\")||\"\").trim()+\" \"+t)},g=function(e,t){var n;(n=z(e,t))&amp;&amp;e.setAttribute(\"class\",(e[l](\"class\")||\"\").replace(n,\" \"))},C=function(e,t,n){var a=n?s:\"removeEventListener\";n&amp;&amp;C(e,t),v.forEach((function(n){e[a](n,t)}))},b=function(e,n,i,r,o){var s=t.createEvent(\"Event\");return i||(i={}),i.instance=a,s.initEvent(n,!r,!o),s.detail=i,e.dispatchEvent(s),s},A=function(t,n){var a;!o&amp;&amp;(a=e.picturefill||i.pf)?(n&amp;&amp;n.src&amp;&amp;!t[l](\"srcset\")&amp;&amp;t.setAttribute(\"srcset\",n.src),a({reevaluate:!0,elements:[t]})):n&amp;&amp;n.src&amp;&amp;(t.src=n.src)},E=function(e,t){return(getComputedStyle(e,null)||{})[t]},_=function(e,t,n){for(n=n||e.offsetWidth;n<i>49?function(){f(s,{timeout:o}),o!==i.ricTimeout&amp;&amp;(o=i.ricTimeout)}:M((function(){d(s)}),!0);return function(e){var i;(e=!0===e)&amp;&amp;(o=33),t||(t=!0,(i=r-(n.now()-a))&lt;0&amp;&amp;(i=0),e||i&lt;9?l():d(l,i))}},x=function(e){var t,a,i=99,r=function(){t=null,e()},o=function(){var e=n.now()-a;e&lt;i?d(o,i-e):(f||r)(r)};return function(){a=n.now(),t||(t=d(o,i))}},L=(K=/^img$/i,Q=/^iframe$/i,V=&quot;onscroll&quot;in e&amp;&amp;!/(gle|ing)bot/.test(navigator.userAgent),X=0,Y=0,Z=0,ee=-1,te=function(e){Z--,(!e||Z0)&amp;&amp;\"visible\"!=E(i,\"overflow\")&amp;&amp;(a=i.getBoundingClientRect(),o=U&gt;a.left&amp;&amp;j<a>a.top-1&amp;&amp;I&lt;a.bottom+1);return o},ie=function(){var e,n,o,s,c,d,u,f,m,v,y,h,z=a.elements;if((k=i.loadMode)&amp;&amp;Z&lt;8&amp;&amp;(e=z.length)){for(n=0,ee++;n&lt;e;n++)if(z[n]&amp;&amp;!z[n]._lazyRace)if(!V||a.prematureUnveil&amp;&amp;a.prematureUnveil(z[n]))fe(z[n]);else if((f=z[n][l](&quot;data-expand&quot;))&amp;&amp;(d=1*f)||(d=Y),v||(v=!i.expand||i.expand500&amp;&amp;r.clientWidth&gt;500?500:370:i.expand,a._defEx=v,y=v*i.expFactor,h=i.hFac,J=null,Y&lt;y&amp;&amp;Z2&amp;&amp;k&gt;2&amp;&amp;!t.hidden?(Y=y,ee=0):Y=k&gt;1&amp;&amp;ee&gt;1&amp;&amp;Z=u&amp;&amp;(I=o.top)=u*h&amp;&amp;(j=o.left)&lt;=$&amp;&amp;(G||U||j||I)&amp;&amp;(i.loadHidden||ne(z[n]))&amp;&amp;(P&amp;&amp;Z&lt;3&amp;&amp;!f&amp;&amp;(k&lt;3||ee9)break}else!c&amp;&amp;P&amp;&amp;!s&amp;&amp;Z&lt;4&amp;&amp;ee2&amp;&amp;(R[0]||i.preloadAfterLoad)&amp;&amp;(R[0]||!f&amp;&amp;(G||U||j||I||\"auto\"!=z[n][l](i.sizesAttr)))&amp;&amp;(s=R[0]||z[n]);s&amp;&amp;!c&amp;&amp;fe(s)}},re=N(ie),oe=function(e){var t=e.target;t._lazyCache?delete t._lazyCache:(te(e),p(t,i.loadedClass),g(t,i.loadingClass),C(t,le),b(t,\"lazyloaded\"))},se=M(oe),le=function(e){se({target:e.target})},ce=function(e,t){var n=e.getAttribute(\"data-load-mode\")||i.iframeLoadMode;0==n?e.contentWindow.location.replace(t):1==n&amp;&amp;(e.src=t)},de=function(e){var t,n=e[l](i.srcsetAttr);(t=i.customMedia[e[l](\"data-media\")||e[l](\"media\")])&amp;&amp;e.setAttribute(\"media\",t),n&amp;&amp;e.setAttribute(\"srcset\",n)},ue=M((function(e,t,n,a,r){var o,s,c,u,f,v;(f=b(e,\"lazybeforeunveil\",t)).defaultPrevented||(a&amp;&amp;(n?p(e,i.autosizesClass):e.setAttribute(\"sizes\",a)),s=e[l](i.srcsetAttr),o=e[l](i.srcAttr),r&amp;&amp;(u=(c=e.parentNode)&amp;&amp;m.test(c.nodeName||\"\")),v=t.firesLoad||\"src\"in e&amp;&amp;(s||o||u),f={target:e},p(e,i.loadingClass),v&amp;&amp;(clearTimeout(D),D=d(te,2500),C(e,le,!0)),u&amp;&amp;h.call(c.getElementsByTagName(\"source\"),de),s?e.setAttribute(\"srcset\",s):o&amp;&amp;!u&amp;&amp;(Q.test(e.nodeName)?ce(e,o):e.src=o),r&amp;&amp;(s||u)&amp;&amp;A(e,{src:o})),e._lazyRace&amp;&amp;delete e._lazyRace,g(e,i.lazyClass),w((function(){var t=e.complete&amp;&amp;e.naturalWidth&gt;1;v&amp;&amp;!t||(t&amp;&amp;p(e,i.fastLoadedClass),oe(f),e._lazyCache=!0,d((function(){\"_lazyCache\"in e&amp;&amp;delete e._lazyCache}),9)),\"lazy\"==e.loading&amp;&amp;Z--}),!0)})),fe=function(e){if(!e._lazyRace){var t,n=K.test(e.nodeName),a=n&amp;&amp;(e[l](i.sizesAttr)||e[l](\"sizes\")),r=\"auto\"==a;(!r&amp;&amp;P||!n||!e[l](\"src\")&amp;&amp;!e.srcset||e.complete||z(e,i.errorClass)||!z(e,i.lazyClass))&amp;&amp;(t=b(e,\"lazyunveilread\").detail,r&amp;&amp;W.updateElem(e,!0,e.offsetWidth),e._lazyRace=!0,Z++,ue(e,t,r,a,n))}},me=x((function(){i.loadMode=3,re()})),ve=function(){3==i.loadMode&amp;&amp;(i.loadMode=2),me()},ye=function(){P||(n.now()-H&lt;999?d(ye,999):(P=!0,i.loadMode=3,re(),c(&quot;scroll&quot;,ve,!0)))},{_:function(){H=n.now(),a.elements=t.getElementsByClassName(i.lazyClass),R=t.getElementsByClassName(i.lazyClass+&quot; &quot;+i.preloadClass),c(&quot;scroll&quot;,re,!0),c(&quot;resize&quot;,re,!0),c(&quot;pageshow&quot;,(function(e){if(e.persisted){var n=t.querySelectorAll(&quot;.&quot;+i.loadingClass);n.length&amp;&amp;n.forEach&amp;&amp;u((function(){n.forEach((function(e){e.complete&amp;&amp;fe(e)}))}))}})),e.MutationObserver?new MutationObserver(re).observe(r,{childList:!0,subtree:!0,attributes:!0}):(r[s](&quot;DOMNodeInserted&quot;,re,!0),r[s](&quot;DOMAttrModified&quot;,re,!0),setInterval(re,999)),c(&quot;hashchange&quot;,re,!0),[&quot;focus&quot;,&quot;mouseover&quot;,&quot;click&quot;,&quot;load&quot;,&quot;transitionend&quot;,&quot;animationend&quot;].forEach((function(e){t[s](e,re,!0)})),/d$|^c/.test(t.readyState)?ye():(c(&quot;load&quot;,ye),t[s](&quot;DOMContentLoaded&quot;,re),d(ye,2e4)),a.elements.length?(ie(),w._lsFlush()):re()},checkElems:re,unveil:fe,_aLSL:ve}),W=(T=M((function(e,t,n,a){var i,r,o;if(e._lazysizesWidth=a,a+=&quot;px&quot;,e.setAttribute(&quot;sizes&quot;,a),m.test(t.nodeName||&quot;&quot;))for(r=0,o=(i=t.getElementsByTagName(&quot;source&quot;)).length;r&lt;o;r++)i[r].setAttribute(&quot;sizes&quot;,a);n.detail.dataAttr||A(e,n.detail)})),F=function(e,t,n){var a,i=e.parentNode;i&amp;&amp;(n=_(e,i,n),(a=b(e,&quot;lazybeforesizes&quot;,{width:n,dataAttr:!!t})).defaultPrevented||(n=a.detail.width)&amp;&amp;n!==e._lazysizesWidth&amp;&amp;T(e,i,a,n))},O=x((function(){var e,t=B.length;if(t)for(e=0;e&lt;t;e++)F(B[e])})),{_:function(){B=t.getElementsByClassName(i.autosizesClass),c(&quot;resize&quot;,O)},checkElems:O,updateElem:F}),S=function(){!S.i&amp;&amp;t.getElementsByClassName&amp;&amp;(S.i=!0,W._(),L._())};var B,T,F,O;var R,P,D,k,H,$,q,I,j,U,G,J,K,Q,V,X,Y,Z,ee,te,ne,ae,ie,re,oe,se,le,ce,de,ue,fe,me,ve,ye;var he,ze,pe,ge,Ce,be,Ae;return d((function(){i.init&amp;&amp;S()})),a={cfg:i,autoSizer:W,loader:L,init:S,uP:A,aC:p,rC:g,hC:z,fire:b,gW:_,rAF:w}}(t,t.document,Date);t.lazySizes=a,e.exports&amp;&amp;(e.exports=a)}(&quot;undefined&quot;!=typeof window?window:{})}},t={};function n(a){var i=t[a];if(void 0!==i)return i.exports;var r=t[a]={exports:{}};return e[a](r,r.exports,n),r.exports}n.n=function(e){var t=e&amp;&amp;e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var a in t)n.o(t,a)&amp;&amp;!n.o(e,a)&amp;&amp;Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){&quot;use strict&quot;;var e=n(90);n.n(e)().init()}()}();\n//# sourceMappingURL=smush-lazy-load.min.js.map','5733c24558a668a96fc924ba234c4bff-scripts','','publish','closed','closed','','5733c24558a668a96fc924ba234c4bff-scripts','','','2022-09-12 15:58:04','2022-09-12 13:58:04','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1217',0,'wphb_minify_group','',0),(1218,0,'2022-09-12 15:58:44','2022-09-12 13:58:44','/**handles:hoverintent-js,admin-bar,underscore**/\r\n/*! This file is auto-generated */\n!function(e,t){if(\"function\"==typeof define&amp;&amp;define.amd)define(\"hoverintent\",[\"module\"],t);else if(\"undefined\"!=typeof exports)t(module);else{var n={exports:{}};t(n),e.hoverintent=n.exports}}(this,function(e){\"use strict\";var t=Object.assign||function(e){for(var t=1;t&lt;arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&amp;&amp;(e[o]=n[o])}return e};e.exports=function(e,n,o){function i(e,t){return y&amp;&amp;(y=clearTimeout(y)),b=0,p?void 0:o.call(e,t)}function r(e){m=e.clientX,d=e.clientY}function u(e,t){if(y&amp;&amp;(y=clearTimeout(y)),Math.abs(h-m)+Math.abs(E-d) .ab-item\").focus(),y(e,\"hover\"))}function f(e){var t;13!==e.which||w(e.target,\".ab-sub-wrapper\")||(t=w(e.target,\".menupop\"))&amp;&amp;(e.preventDefault(),(o(t,\"hover\")?y:b)(t,\"hover\"))}function p(e){var t;13===e.which&amp;&amp;(t=e.target.getAttribute(\"href\"),-1&lt;d.userAgent.toLowerCase().indexOf(&quot;applewebkit&quot;)&amp;&amp;t&amp;&amp;&quot;#&quot;===t.charAt(0)&amp;&amp;setTimeout(function(){var e=l.getElementById(t.replace(&quot;#&quot;,&quot;&quot;));e&amp;&amp;(e.setAttribute(&quot;tabIndex&quot;,&quot;0&quot;),e.focus())},100))}function h(e,t){w(t.target,&quot;.ab-sub-wrapper&quot;)||(t.preventDefault(),(t=w(t.target,&quot;.menupop&quot;))&amp;&amp;(o(t,&quot;hover&quot;)?y(t,&quot;hover&quot;):(E(e),b(t,&quot;hover&quot;))))}function v(e){var t,n=e.target.parentNode;if(t=n?n.querySelector(&quot;.shortlink-input&quot;):t)return e.preventDefault&amp;&amp;e.preventDefault(),e.returnValue=!1,b(n,&quot;selected&quot;),t.focus(),t.select(),!(t.onblur=function(){y(n,&quot;selected&quot;)})}function g(){if(&quot;sessionStorage&quot;in u)try{for(var e in sessionStorage)-1&lt;e.indexOf(&quot;wp-autosave-&quot;)&amp;&amp;sessionStorage.removeItem(e)}catch(e){}}function o(e,t){return e&amp;&amp;(e.classList&amp;&amp;e.classList.contains?e.classList.contains(t):e.className&amp;&amp;-1&lt;e.className.split(&quot; &quot;).indexOf(t))}function b(e,t){e&amp;&amp;(e.classList&amp;&amp;e.classList.add?e.classList.add(t):o(e,t)||(e.className&amp;&amp;(e.className+=&quot; &quot;),e.className+=t))}function y(e,t){var n,r;if(e&amp;&amp;o(e,t))if(e.classList&amp;&amp;e.classList.remove)e.classList.remove(t);else{for(n=&quot; &quot;+t+&quot; &quot;,r=&quot; &quot;+e.className+&quot; &quot;;-1&lt;r.indexOf(n);)r=r.replace(n,&quot;&quot;);e.className=r.replace(/^[\\s]+|[\\s]+$/g,&quot;&quot;)}}function E(e){if(e&amp;&amp;e.length)for(var t=0;t&lt;e.length;t++)y(e[t],&quot;hover&quot;)}function L(e){if(!e.target||&quot;wpadminbar&quot;===e.target.id||&quot;wp-admin-bar-top-secondary&quot;===e.target.id)try{u.scrollTo({top:-32,left:0,behavior:&quot;smooth&quot;})}catch(e){u.scrollTo(0,-32)}}function w(e,t){for(u.Element.prototype.matches||(u.Element.prototype.matches=u.Element.prototype.matchesSelector||u.Element.prototype.mozMatchesSelector||u.Element.prototype.msMatchesSelector||u.Element.prototype.oMatchesSelector||u.Element.prototype.webkitMatchesSelector||function(e){for(var t=(this.document||this.ownerDocument).querySelectorAll(e),n=t.length;0&lt;=--n&amp;&amp;t.item(n)!==this;);return-1&lt;n});e&amp;&amp;e!==l;e=e.parentNode)if(e.matches(t))return e;return null}l.addEventListener(&quot;DOMContentLoaded&quot;,function(){var n,e,t,r,o,a,s,i,c=l.getElementById(&quot;wpadminbar&quot;);if(c&amp;&amp;&quot;querySelectorAll&quot;in c){n=c.querySelectorAll(&quot;li.menupop&quot;),e=c.querySelectorAll(&quot;.ab-item&quot;),t=l.getElementById(&quot;wp-admin-bar-logout&quot;),r=l.getElementById(&quot;adminbarsearch&quot;),o=l.getElementById(&quot;wp-admin-bar-get-shortlink&quot;),a=c.querySelector(&quot;.screen-reader-shortcut&quot;),s=/Mobile\\/.+Safari/.test(d.userAgent)?&quot;touchstart&quot;:&quot;click&quot;,y(c,&quot;nojs&quot;),&quot;ontouchstart&quot;in u&amp;&amp;(l.body.addEventListener(s,function(e){w(e.target,&quot;li.menupop&quot;)||E(n)}),c.addEventListener(&quot;touchstart&quot;,function e(){for(var t=0;t&lt;n.length;t++)n[t].addEventListener(&quot;click&quot;,h.bind(null,n));c.removeEventListener(&quot;touchstart&quot;,e)})),c.addEventListener(&quot;click&quot;,L);for(i=0;i&lt;n.length;i++)u.hoverintent(n[i],b.bind(null,n[i],&quot;hover&quot;),y.bind(null,n[i],&quot;hover&quot;)).options({timeout:180}),n[i].addEventListener(&quot;keydown&quot;,f);for(i=0;i&lt;e.length;i++)e[i].addEventListener(&quot;keydown&quot;,m);r&amp;&amp;((s=l.getElementById(&quot;adminbar-search&quot;)).addEventListener(&quot;focus&quot;,function(){b(r,&quot;adminbar-focused&quot;)}),s.addEventListener(&quot;blur&quot;,function(){y(r,&quot;adminbar-focused&quot;)})),a&amp;&amp;a.addEventListener(&quot;keydown&quot;,p),o&amp;&amp;o.addEventListener(&quot;click&quot;,v),u.location.hash&amp;&amp;u.scrollBy(0,-32),t&amp;&amp;t.addEventListener(&quot;click&quot;,g)}})}(document,window,navigator);\r\n/*! This file is auto-generated */\n!function(n,r){var t,e;&quot;object&quot;==typeof exports&amp;&amp;&quot;undefined&quot;!=typeof module?module.exports=r():&quot;function&quot;==typeof define&amp;&amp;define.amd?define(&quot;underscore&quot;,r):(n=&quot;undefined&quot;!=typeof globalThis?globalThis:n||self,t=n._,(e=n._=r()).noConflict=function(){return n._=t,e})}(this,function(){var n=&quot;1.13.3&quot;,r=&quot;object&quot;==typeof self&amp;&amp;self.self===self&amp;&amp;self||&quot;object&quot;==typeof global&amp;&amp;global.global===global&amp;&amp;global||Function(&quot;return this&quot;)()||{},e=Array.prototype,F=Object.prototype,V=&quot;undefined&quot;!=typeof Symbol?Symbol.prototype:null,P=e.push,a=e.slice,s=F.toString,q=F.hasOwnProperty,t=&quot;undefined&quot;!=typeof ArrayBuffer,u=&quot;undefined&quot;!=typeof DataView,U=Array.isArray,W=Object.keys,z=Object.create,L=t&amp;&amp;ArrayBuffer.isView,$=isNaN,C=isFinite,K=!{toString:null}.propertyIsEnumerable(&quot;toString&quot;),J=[&quot;valueOf&quot;,&quot;isPrototypeOf&quot;,&quot;toString&quot;,&quot;propertyIsEnumerable&quot;,&quot;hasOwnProperty&quot;,&quot;toLocaleString&quot;],G=Math.pow(2,53)-1;function l(u,i){return i=null==i?u.length-1:+i,function(){for(var n=Math.max(arguments.length-i,0),r=Array(n),t=0;t&lt;n;t++)r[t]=arguments[t+i];switch(i){case 0:return u.call(this,r);case 1:return u.call(this,arguments[0],r);case 2:return u.call(this,arguments[0],arguments[1],r)}for(var e=Array(i+1),t=0;t&lt;i;t++)e[t]=arguments[t];return e[i]=r,u.apply(this,e)}}function i(n){var r=typeof n;return&quot;function&quot;==r||&quot;object&quot;==r&amp;&amp;!!n}function H(n){return void 0===n}function Q(n){return!0===n||!1===n||&quot;[object Boolean]&quot;===s.call(n)}function o(n){var r=&quot;[object &quot;+n+&quot;]&quot;;return function(n){return s.call(n)===r}}var X=o(&quot;String&quot;),Y=o(&quot;Number&quot;),Z=o(&quot;Date&quot;),nn=o(&quot;RegExp&quot;),rn=o(&quot;Error&quot;),tn=o(&quot;Symbol&quot;),en=o(&quot;ArrayBuffer&quot;),f=o(&quot;Function&quot;),r=r.document&amp;&amp;r.document.childNodes,p=f=&quot;function&quot;!=typeof/./&amp;&amp;&quot;object&quot;!=typeof Int8Array&amp;&amp;&quot;function&quot;!=typeof r?function(n){return&quot;function&quot;==typeof n||!1}:f,r=o(&quot;Object&quot;),un=u&amp;&amp;r(new DataView(new ArrayBuffer(8))),f=&quot;undefined&quot;!=typeof Map&amp;&amp;r(new Map),u=o(&quot;DataView&quot;);var h=un?function(n){return null!=n&amp;&amp;p(n.getInt8)&amp;&amp;en(n.buffer)}:u,v=U||o(&quot;Array&quot;);function y(n,r){return null!=n&amp;&amp;q.call(n,r)}var on=o(&quot;Arguments&quot;),fn=(!function(){on(arguments)||(on=function(n){return y(n,&quot;callee&quot;)})}(),on);function an(n){return Y(n)&amp;&amp;$(n)}function cn(n){return function(){return n}}function ln(r){return function(n){n=r(n);return&quot;number&quot;==typeof n&amp;&amp;0&lt;=n&amp;&amp;n&lt;=G}}function sn(r){return function(n){return null==n?void 0:n[r]}}var d=sn(&quot;byteLength&quot;),pn=ln(d),hn=/\\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\\]/;var vn=t?function(n){return L?L(n)&amp;&amp;!h(n):pn(n)&amp;&amp;hn.test(s.call(n))}:cn(!1),g=sn(&quot;length&quot;);function yn(n,r){r=function(r){for(var t={},n=r.length,e=0;e&lt;n;++e)t[r[e]]=!0;return{contains:function(n){return!0===t[n]},push:function(n){return t[n]=!0,r.push(n)}}}(r);var t=J.length,e=n.constructor,u=p(e)&amp;&amp;e.prototype||F,i=&quot;constructor&quot;;for(y(n,i)&amp;&amp;!r.contains(i)&amp;&amp;r.push(i);t--;)(i=J[t])in n&amp;&amp;n[i]!==u[i]&amp;&amp;!r.contains(i)&amp;&amp;r.push(i)}function b(n){if(!i(n))return[];if(W)return W(n);var r,t=[];for(r in n)y(n,r)&amp;&amp;t.push(r);return K&amp;&amp;yn(n,t),t}function dn(n,r){var t=b(r),e=t.length;if(null==n)return!e;for(var u=Object(n),i=0;i&lt;e;i++){var o=t[i];if(r[o]!==u[o]||!(o in u))return!1}return!0}function m(n){return n instanceof m?n:this instanceof m?void(this._wrapped=n):new m(n)}function gn(n){return new Uint8Array(n.buffer||n,n.byteOffset||0,d(n))}m.VERSION=n,m.prototype.valueOf=m.prototype.toJSON=m.prototype.value=function(){return this._wrapped},m.prototype.toString=function(){return String(this._wrapped)};var bn=&quot;[object DataView]&quot;;function mn(n,r,t,e){if(n===r)return 0!==n||1/n==1/r;if(null==n||null==r)return!1;if(n!=n)return r!=r;var u=typeof n;return(&quot;function&quot;==u||&quot;object&quot;==u||&quot;object&quot;==typeof r)&amp;&amp;function n(r,t,e,u){r instanceof m&amp;&amp;(r=r._wrapped);t instanceof m&amp;&amp;(t=t._wrapped);var i=s.call(r);if(i!==s.call(t))return!1;if(un&amp;&amp;&quot;[object Object]&quot;==i&amp;&amp;h(r)){if(!h(t))return!1;i=bn}switch(i){case&quot;[object RegExp]&quot;:case&quot;[object String]&quot;:return&quot;&quot;+r==&quot;&quot;+t;case&quot;[object Number]&quot;:return+r!=+r?+t!=+t:0==+r?1/+r==1/t:+r==+t;case&quot;[object Date]&quot;:case&quot;[object Boolean]&quot;:return+r==+t;case&quot;[object Symbol]&quot;:return V.valueOf.call(r)===V.valueOf.call(t);case&quot;[object ArrayBuffer]&quot;:case bn:return n(gn(r),gn(t),e,u)}i=&quot;[object Array]&quot;===i;if(!i&amp;&amp;vn(r)){var o=d(r);if(o!==d(t))return!1;if(r.buffer===t.buffer&amp;&amp;r.byteOffset===t.byteOffset)return!0;i=!0}if(!i){if(&quot;object&quot;!=typeof r||&quot;object&quot;!=typeof t)return!1;var o=r.constructor,f=t.constructor;if(o!==f&amp;&amp;!(p(o)&amp;&amp;o instanceof o&amp;&amp;p(f)&amp;&amp;f instanceof f)&amp;&amp;&quot;constructor&quot;in r&amp;&amp;&quot;constructor&quot;in t)return!1}e=e||[];u=u||[];var a=e.length;for(;a--;)if(e[a]===r)return u[a]===t;e.push(r);u.push(t);if(i){if((a=r.length)!==t.length)return!1;for(;a--;)if(!mn(r[a],t[a],e,u))return!1}else{var c,l=b(r);if(a=l.length,b(t).length!==a)return!1;for(;a--;)if(c=l[a],!y(t,c)||!mn(r[c],t[c],e,u))return!1}e.pop();u.pop();return!0}(n,r,t,e)}function c(n){if(!i(n))return[];var r,t=[];for(r in n)t.push(r);return K&amp;&amp;yn(n,t),t}function jn(e){var u=g(e);return function(n){if(null==n)return!1;var r=c(n);if(g(r))return!1;for(var t=0;t&lt;u;t++)if(!p(n[e[t]]))return!1;return e!==wn||!p(n[_n])}}var _n=&quot;forEach&quot;,r=[&quot;clear&quot;,&quot;delete&quot;],u=[&quot;get&quot;,&quot;has&quot;,&quot;set&quot;],U=r.concat(_n,u),wn=r.concat(u),t=[&quot;add&quot;].concat(r,_n,&quot;has&quot;),u=f?jn(U):o(&quot;Map&quot;),r=f?jn(wn):o(&quot;WeakMap&quot;),U=f?jn(t):o(&quot;Set&quot;),f=o(&quot;WeakSet&quot;);function j(n){for(var r=b(n),t=r.length,e=Array(t),u=0;u&lt;t;u++)e[u]=n[r[u]];return e}function An(n){for(var r={},t=b(n),e=0,u=t.length;e&lt;u;e++)r[n[t[e]]]=t[e];return r}function xn(n){var r,t=[];for(r in n)p(n[r])&amp;&amp;t.push(r);return t.sort()}function Sn(a,c){return function(n){var r=arguments.length;if(c&amp;&amp;(n=Object(n)),r&lt;2||null==n)return n;for(var t=1;t&lt;r;t++)for(var e=arguments[t],u=a(e),i=u.length,o=0;o&lt;i;o++){var f=u[o];c&amp;&amp;void 0!==n[f]||(n[f]=e[f])}return n}}var On=Sn(c),_=Sn(b),Mn=Sn(c,!0);function En(n){if(!i(n))return{};if(z)return z(n);var r=function(){},n=(r.prototype=n,new r);return r.prototype=null,n}function Bn(n){return v(n)?n:[n]}function w(n){return m.toPath(n)}function Nn(n,r){for(var t=r.length,e=0;e&lt;t;e++){if(null==n)return;n=n[r[e]]}return t?n:void 0}function In(n,r,t){n=Nn(n,w(r));return H(n)?t:n}function Tn(n){return n}function A(r){return r=_({},r),function(n){return dn(n,r)}}function kn(r){return r=w(r),function(n){return Nn(n,r)}}function x(u,i,n){if(void 0===i)return u;switch(null==n?3:n){case 1:return function(n){return u.call(i,n)};case 3:return function(n,r,t){return u.call(i,n,r,t)};case 4:return function(n,r,t,e){return u.call(i,n,r,t,e)}}return function(){return u.apply(i,arguments)}}function Dn(n,r,t){return null==n?Tn:p(n)?x(n,r,t):(i(n)&amp;&amp;!v(n)?A:kn)(n)}function Rn(n,r){return Dn(n,r,1/0)}function S(n,r,t){return m.iteratee!==Rn?m.iteratee(n,r):Dn(n,r,t)}function Fn(){}function Vn(n,r){return null==r&amp;&amp;(r=n,n=0),n+Math.floor(Math.random()*(r-n+1))}m.toPath=Bn,m.iteratee=Rn;var O=Date.now||function(){return(new Date).getTime()};function Pn(r){function t(n){return r[n]}var n=&quot;(?:&quot;+b(r).join(&quot;|&quot;)+&quot;)&quot;,e=RegExp(n),u=RegExp(n,&quot;g&quot;);return function(n){return e.test(n=null==n?&quot;&quot;:&quot;&quot;+n)?n.replace(u,t):n}}var t={&quot;&amp;&quot;:&quot;&amp;&quot;,&quot;\":\"&gt;\",\'\"\':\"&quot;\",\"\'\":\"&#x27;\",\"`\":\"&#x60;\"},qn=Pn(t),t=Pn(An(t)),Un=m.templateSettings={evaluate://g,interpolate://g,escape://g},Wn=/(.)^/,zn={\"\'\":\"\'\",\"\\\\\":\"\\\\\",\"\\r\":\"r\",\"\\n\":\"n\",\"\\u2028\":\"u2028\",\"\\u2029\":\"u2029\"},Ln=/\\\\|\'|\\r|\\n|\\u2028|\\u2029/g;function $n(n){return\"\\\\\"+zn[n]}var Cn=/^\\s*(\\w|\\$)+\\s*$/;var Kn=0;function Jn(n,r,t,e,u){if(!(e instanceof r))return n.apply(t,u);e=En(n.prototype),r=n.apply(e,u);return i(r)?r:e}var M=l(function(u,i){function o(){for(var n=0,r=i.length,t=Array(r),e=0;e&lt;r;e++)t[e]=i[e]===f?arguments[n++]:i[e];for(;n&lt;arguments.length;)t.push(arguments[n++]);return Jn(u,o,this,this,t)}var f=M.placeholder;return o}),Gn=(M.placeholder=m,l(function(r,t,e){if(!p(r))throw new TypeError(&quot;Bind must be called on a function&quot;);var u=l(function(n){return Jn(r,u,t,this,e.concat(n))});return u})),E=ln(g);function B(n,r,t,e){if(e=e||[],r||0===r){if(r&lt;=0)return e.concat(n)}else r=1/0;for(var u=e.length,i=0,o=g(n);i&lt;o;i++){var f=n[i];if(E(f)&amp;&amp;(v(f)||fn(f)))if(1&lt;r)B(f,r-1,t,e),u=e.length;else for(var a=0,c=f.length;a&lt;c;)e[u++]=f[a++];else t||(e[u++]=f)}return e}var Hn=l(function(n,r){var t=(r=B(r,!1,!1)).length;if(t&lt;1)throw new Error(&quot;bindAll must be passed function names&quot;);for(;t--;){var e=r[t];n[e]=Gn(n[e],n)}return n});var Qn=l(function(n,r,t){return setTimeout(function(){return n.apply(null,t)},r)}),Xn=M(Qn,m,1);function Yn(n){return function(){return!n.apply(this,arguments)}}function Zn(n,r){var t;return function(){return 0&lt;--n&amp;&amp;(t=r.apply(this,arguments)),n&lt;=1&amp;&amp;(r=null),t}}var nr=M(Zn,2);function rr(n,r,t){r=S(r,t);for(var e,u=b(n),i=0,o=u.length;i&lt;o;i++)if(r(n[e=u[i]],e,n))return e}function tr(i){return function(n,r,t){r=S(r,t);for(var e=g(n),u=0&lt;i?0:e-1;0&lt;=u&amp;&amp;u&lt;e;u+=i)if(r(n[u],u,n))return u;return-1}}var er=tr(1),ur=tr(-1);function ir(n,r,t,e){for(var u=(t=S(t,e,1))(r),i=0,o=g(n);i&lt;o;){var f=Math.floor((i+o)/2);t(n[f])&lt;u?i=f+1:o=f}return i}function or(i,o,f){return function(n,r,t){var e=0,u=g(n);if(&quot;number&quot;==typeof t)0&lt;i?e=0&lt;=t?t:Math.max(t+u,e):u=0&lt;=t?Math.min(t+1,u):t+u+1;else if(f&amp;&amp;t&amp;&amp;u)return n[t=f(n,r)]===r?t:-1;if(r!=r)return 0&lt;=(t=o(a.call(n,e,u),an))?t+e:-1;for(t=0&lt;i?e:u-1;0&lt;=t&amp;&amp;t&lt;u;t+=i)if(n[t]===r)return t;return-1}}var fr=or(1,er,ir),ar=or(-1,ur);function cr(n,r,t){r=(E(n)?er:rr)(n,r,t);if(void 0!==r&amp;&amp;-1!==r)return n[r]}function N(n,r,t){if(r=x(r,t),E(n))for(u=0,i=n.length;u&lt;i;u++)r(n[u],u,n);else for(var e=b(n),u=0,i=e.length;u&lt;i;u++)r(n[e[u]],e[u],n);return n}function I(n,r,t){r=S(r,t);for(var e=!E(n)&amp;&amp;b(n),u=(e||n).length,i=Array(u),o=0;o&lt;u;o++){var f=e?e[o]:o;i[o]=r(n[f],f,n)}return i}function lr(p){return function(n,r,t,e){var u=3&lt;=arguments.length,i=n,o=x(r,e,4),f=t,a=!E(i)&amp;&amp;b(i),c=(a||i).length,l=0&lt;p?0:c-1;for(u||(f=i[a?a[l]:l],l+=p);0&lt;=l&amp;&amp;l&lt;c;l+=p){var s=a?a[l]:l;f=o(f,i[s],s,i)}return f}}var sr=lr(1),pr=lr(-1);function T(n,e,r){var u=[];return e=S(e,r),N(n,function(n,r,t){e(n,r,t)&amp;&amp;u.push(n)}),u}function hr(n,r,t){r=S(r,t);for(var e=!E(n)&amp;&amp;b(n),u=(e||n).length,i=0;i&lt;u;i++){var o=e?e[i]:i;if(!r(n[o],o,n))return!1}return!0}function vr(n,r,t){r=S(r,t);for(var e=!E(n)&amp;&amp;b(n),u=(e||n).length,i=0;i&lt;u;i++){var o=e?e[i]:i;if(r(n[o],o,n))return!0}return!1}function k(n,r,t,e){return E(n)||(n=j(n)),0&lt;=fr(n,r,t=&quot;number&quot;==typeof t&amp;&amp;!e?t:0)}var yr=l(function(n,t,e){var u,i;return p(t)?i=t:(t=w(t),u=t.slice(0,-1),t=t[t.length-1]),I(n,function(n){var r=i;if(!r){if(null==(n=u&amp;&amp;u.length?Nn(n,u):n))return;r=n[t]}return null==r?r:r.apply(n,e)})});function dr(n,r){return I(n,kn(r))}function gr(n,e,r){var t,u,i=-1/0,o=-1/0;if(null==e||&quot;number&quot;==typeof e&amp;&amp;&quot;object&quot;!=typeof n[0]&amp;&amp;null!=n)for(var f=0,a=(n=E(n)?n:j(n)).length;f&lt;a;f++)null!=(t=n[f])&amp;&amp;i&lt;t&amp;&amp;(i=t);else e=S(e,r),N(n,function(n,r,t){u=e(n,r,t),(o&lt;u||u===-1/0&amp;&amp;i===-1/0)&amp;&amp;(i=n,o=u)});return i}var br=/[^\\ud800-\\udfff]|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff]/g;function mr(n){return n?v(n)?a.call(n):X(n)?n.match(br):E(n)?I(n,Tn):j(n):[]}function jr(n,r,t){if(null==r||t)return(n=E(n)?n:j(n))[Vn(n.length-1)];for(var e=mr(n),t=g(e),u=(r=Math.max(Math.min(r,t),0),t-1),i=0;i&lt;r;i++){var o=Vn(i,u),f=e[i];e[i]=e[o],e[o]=f}return e.slice(0,r)}function D(i,r){return function(t,e,n){var u=r?[[],[]]:{};return e=S(e,n),N(t,function(n,r){r=e(n,r,t);i(u,n,r)}),u}}var _r=D(function(n,r,t){y(n,t)?n[t].push(r):n[t]=[r]}),wr=D(function(n,r,t){n[t]=r}),Ar=D(function(n,r,t){y(n,t)?n[t]++:n[t]=1}),xr=D(function(n,r,t){n[t?0:1].push(r)},!0);function Sr(n,r,t){return r in t}var Or=l(function(n,r){var t={},e=r[0];if(null==n)return t;p(e)?(1&lt;r.length&amp;&amp;(e=x(e,r[1])),r=c(n)):(e=Sr,r=B(r,!1,!1),n=Object(n));for(var u=0,i=r.length;u&lt;i;u++){var o=r[u],f=n[o];e(f,o,n)&amp;&amp;(t[o]=f)}return t}),Mr=l(function(n,t){var r,e=t[0];return p(e)?(e=Yn(e),1&lt;t.length&amp;&amp;(r=t[1])):(t=I(B(t,!1,!1),String),e=function(n,r){return!k(t,r)}),Or(n,e,r)});function Er(n,r,t){return a.call(n,0,Math.max(0,n.length-(null==r||t?1:r)))}function Br(n,r,t){return null==n||n.length&lt;1?null==r||t?void 0:[]:null==r||t?n[0]:Er(n,n.length-r)}function R(n,r,t){return a.call(n,null==r||t?1:r)}var Nr=l(function(n,r){return r=B(r,!0,!0),T(n,function(n){return!k(r,n)})}),Ir=l(function(n,r){return Nr(n,r)});function Tr(n,r,t,e){Q(r)||(e=t,t=r,r=!1),null!=t&amp;&amp;(t=S(t,e));for(var u=[],i=[],o=0,f=g(n);o&lt;f;o++){var a=n[o],c=t?t(a,o,n):a;r&amp;&amp;!t?(o&amp;&amp;i===c||u.push(a),i=c):t?k(i,c)||(i.push(c),u.push(a)):k(u,a)||u.push(a)}return u}var kr=l(function(n){return Tr(B(n,!0,!0))});function Dr(n){for(var r=n&amp;&amp;gr(n,g).length||0,t=Array(r),e=0;e&lt;r;e++)t[e]=dr(n,e);return t}var Rr=l(Dr);function Fr(n,r){return n._chain?m(r).chain():r}function Vr(t){return N(xn(t),function(n){var r=m[n]=t[n];m.prototype[n]=function(){var n=[this._wrapped];return P.apply(n,arguments),Fr(this,r.apply(m,n))}}),m}N([&quot;pop&quot;,&quot;push&quot;,&quot;reverse&quot;,&quot;shift&quot;,&quot;sort&quot;,&quot;splice&quot;,&quot;unshift&quot;],function(r){var t=e[r];m.prototype[r]=function(){var n=this._wrapped;return null!=n&amp;&amp;(t.apply(n,arguments),&quot;shift&quot;!==r&amp;&amp;&quot;splice&quot;!==r||0!==n.length||delete n[0]),Fr(this,n)}}),N([&quot;concat&quot;,&quot;join&quot;,&quot;slice&quot;],function(n){var r=e[n];m.prototype[n]=function(){var n=this._wrapped;return Fr(this,n=null!=n?r.apply(n,arguments):n)}});n=Vr({__proto__:null,VERSION:n,restArguments:l,isObject:i,isNull:function(n){return null===n},isUndefined:H,isBoolean:Q,isElement:function(n){return!(!n||1!==n.nodeType)},isString:X,isNumber:Y,isDate:Z,isRegExp:nn,isError:rn,isSymbol:tn,isArrayBuffer:en,isDataView:h,isArray:v,isFunction:p,isArguments:fn,isFinite:function(n){return!tn(n)&amp;&amp;C(n)&amp;&amp;!isNaN(parseFloat(n))},isNaN:an,isTypedArray:vn,isEmpty:function(n){if(null==n)return!0;var r=g(n);return&quot;number&quot;==typeof r&amp;&amp;(v(n)||X(n)||fn(n))?0===r:0===g(b(n))},isMatch:dn,isEqual:function(n,r){return mn(n,r)},isMap:u,isWeakMap:r,isSet:U,isWeakSet:f,keys:b,allKeys:c,values:j,pairs:function(n){for(var r=b(n),t=r.length,e=Array(t),u=0;u&lt;t;u++)e[u]=[r[u],n[r[u]]];return e},invert:An,functions:xn,methods:xn,extend:On,extendOwn:_,assign:_,defaults:Mn,create:function(n,r){return n=En(n),r&amp;&amp;_(n,r),n},clone:function(n){return i(n)?v(n)?n.slice():On({},n):n},tap:function(n,r){return r(n),n},get:In,has:function(n,r){for(var t=(r=w(r)).length,e=0;e&lt;t;e++){var u=r[e];if(!y(n,u))return!1;n=n[u]}return!!t},mapObject:function(n,r,t){r=S(r,t);for(var e=b(n),u=e.length,i={},o=0;o&lt;u;o++){var f=e[o];i[f]=r(n[f],f,n)}return i},identity:Tn,constant:cn,noop:Fn,toPath:Bn,property:kn,propertyOf:function(r){return null==r?Fn:function(n){return In(r,n)}},matcher:A,matches:A,times:function(n,r,t){var e=Array(Math.max(0,n));r=x(r,t,1);for(var u=0;u&lt;n;u++)e[u]=r(u);return e},random:Vn,now:O,escape:qn,unescape:t,templateSettings:Un,template:function(i,n,r){n=Mn({},n=!n&amp;&amp;r?r:n,m.templateSettings);var t,r=RegExp([(n.escape||Wn).source,(n.interpolate||Wn).source,(n.evaluate||Wn).source].join(&quot;|&quot;)+&quot;|$&quot;,&quot;g&quot;),o=0,f=&quot;__p+=&#039;&quot;;if(i.replace(r,function(n,r,t,e,u){return f+=i.slice(o,u).replace(Ln,$n),o=u+n.length,r?f+=&quot;&#039;+\\n((__t=(&quot;+r+&quot;))==null?&#039;&#039;:_.escape(__t))+\\n&#039;&quot;:t?f+=&quot;&#039;+\\n((__t=(&quot;+t+&quot;))==null?&#039;&#039;:__t)+\\n&#039;&quot;:e&amp;&amp;(f+=&quot;&#039;;\\n&quot;+e+&quot;\\n__p+=&#039;&quot;),n}),f+=&quot;&#039;;\\n&quot;,r=n.variable){if(!Cn.test(r))throw new Error(&quot;variable is not a bare identifier: &quot;+r)}else f=&quot;with(obj||{}){\\n&quot;+f+&quot;}\\n&quot;,r=&quot;obj&quot;;f=&quot;var __t,__p=&#039;&#039;,__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,&#039;&#039;);};\\n&quot;+f+&quot;return __p;\\n&quot;;try{t=new Function(r,&quot;_&quot;,f)}catch(n){throw n.source=f,n}function e(n){return t.call(this,n,m)}return e.source=&quot;function(&quot;+r+&quot;){\\n&quot;+f+&quot;}&quot;,e},result:function(n,r,t){var e=(r=w(r)).length;if(!e)return p(t)?t.call(n):t;for(var u=0;u&lt;e;u++){var i=null==n?void 0:n[r[u]];void 0===i&amp;&amp;(i=t,u=e),n=p(i)?i.call(n):i}return n},uniqueId:function(n){var r=++Kn+&quot;&quot;;return n?n+r:r},chain:function(n){return(n=m(n))._chain=!0,n},iteratee:Rn,partial:M,bind:Gn,bindAll:Hn,memoize:function(e,u){function i(n){var r=i.cache,t=&quot;&quot;+(u?u.apply(this,arguments):n);return y(r,t)||(r[t]=e.apply(this,arguments)),r[t]}return i.cache={},i},delay:Qn,defer:Xn,throttle:function(t,e,u){function i(){l=!1===u.leading?0:O(),o=null,c=t.apply(f,a),o||(f=a=null)}function n(){var n=O(),r=(l||!1!==u.leading||(l=n),e-(n-l));return f=this,a=arguments,r&lt;=0||e&lt;r?(o&amp;&amp;(clearTimeout(o),o=null),l=n,c=t.apply(f,a),o||(f=a=null)):o||!1===u.trailing||(o=setTimeout(i,r)),c}var o,f,a,c,l=0;return u=u||{},n.cancel=function(){clearTimeout(o),l=0,o=f=a=null},n},debounce:function(r,t,e){function u(){var n=O()-o;n&lt;t?i=setTimeout(u,t-n):(i=null,e||(a=r.apply(c,f)),i||(f=c=null))}var i,o,f,a,c,n=l(function(n){return c=this,f=n,o=O(),i||(i=setTimeout(u,t),e&amp;&amp;(a=r.apply(c,f))),a});return n.cancel=function(){clearTimeout(i),i=f=c=null},n},wrap:function(n,r){return M(r,n)},negate:Yn,compose:function(){var t=arguments,e=t.length-1;return function(){for(var n=e,r=t[e].apply(this,arguments);n--;)r=t[n].call(this,r);return r}},after:function(n,r){return function(){if(--n&lt;1)return r.apply(this,arguments)}},before:Zn,once:nr,findKey:rr,findIndex:er,findLastIndex:ur,sortedIndex:ir,indexOf:fr,lastIndexOf:ar,find:cr,detect:cr,findWhere:function(n,r){return cr(n,A(r))},each:N,forEach:N,map:I,collect:I,reduce:sr,foldl:sr,inject:sr,reduceRight:pr,foldr:pr,filter:T,select:T,reject:function(n,r,t){return T(n,Yn(S(r)),t)},every:hr,all:hr,some:vr,any:vr,contains:k,includes:k,include:k,invoke:yr,pluck:dr,where:function(n,r){return T(n,A(r))},max:gr,min:function(n,e,r){var t,u,i=1/0,o=1/0;if(null==e||&quot;number&quot;==typeof e&amp;&amp;&quot;object&quot;!=typeof n[0]&amp;&amp;null!=n)for(var f=0,a=(n=E(n)?n:j(n)).length;f&lt;a;f++)null!=(t=n[f])&amp;&amp;t&lt;i&amp;&amp;(i=t);else e=S(e,r),N(n,function(n,r,t){((u=e(n,r,t))&lt;o||u===1/0&amp;&amp;i===1/0)&amp;&amp;(i=n,o=u)});return i},shuffle:function(n){return jr(n,1/0)},sample:jr,sortBy:function(n,e,r){var u=0;return e=S(e,r),dr(I(n,function(n,r,t){return{value:n,index:u++,criteria:e(n,r,t)}}).sort(function(n,r){var t=n.criteria,e=r.criteria;if(t!==e){if(e&lt;t||void 0===t)return 1;if(t&lt;e||void 0===e)return-1}return n.index-r.index}),&quot;value&quot;)},groupBy:_r,indexBy:wr,countBy:Ar,partition:xr,toArray:mr,size:function(n){return null==n?0:(E(n)?n:b(n)).length},pick:Or,omit:Mr,first:Br,head:Br,take:Br,initial:Er,last:function(n,r,t){return null==n||n.length&lt;1?null==r||t?void 0:[]:null==r||t?n[n.length-1]:R(n,Math.max(0,n.length-r))},rest:R,tail:R,drop:R,compact:function(n){return T(n,Boolean)},flatten:function(n,r){return B(n,r,!1)},without:Ir,uniq:Tr,unique:Tr,union:kr,intersection:function(n){for(var r=[],t=arguments.length,e=0,u=g(n);e&lt;u;e++){var i=n[e];if(!k(r,i)){for(var o=1;o&lt;t&amp;&amp;k(arguments[o],i);o++);o===t&amp;&amp;r.push(i)}}return r},difference:Nr,unzip:Dr,transpose:Dr,zip:Rr,object:function(n,r){for(var t={},e=0,u=g(n);e&lt;u;e++)r?t[n[e]]=r[e]:t[n[e][0]]=n[e][1];return t},range:function(n,r,t){null==r&amp;&amp;(r=n||0,n=0),t=t||(r&lt;n?-1:1);for(var e=Math.max(Math.ceil((r-n)/t),0),u=Array(e),i=0;i&lt;e;i++,n+=t)u[i]=n;return u},chunk:function(n,r){if(null==r||r&lt;1)return[];for(var t=[],e=0,u=n.length;e&lt;u;)t.push(a.call(n,e,e+=r));return t},mixin:Vr,default:m});return n._=n});','7268d10116d3b5e96a4dec91f7888ec2-scripts','','publish','closed','closed','','7268d10116d3b5e96a4dec91f7888ec2-scripts','','','2022-09-12 15:58:44','2022-09-12 13:58:44','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1218',0,'wphb_minify_group','',0),(1219,1,'2022-09-12 16:02:51','2022-09-12 14:02:51','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</em></p><p><em>Thursdays and Fridays 8h30 - 13h00</em></p><p>House calls available where necessary.</p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point, 76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p>We welcome Taariq Jacobs to the practice.</p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-09-12 16:02:51','2022-09-12 14:02:51','',69,'https://podiatrist.capetown/?p=1219',0,'revision','',0),(1220,1,'2022-09-12 16:02:54','2022-09-12 14:02:54','<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</em></p><p><em>Thursdays and Fridays 8h30 - 13h00</em></p><p>House calls available where necessary.</p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point, 76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p>We welcome Taariq Jacobs to the practice.</p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2021. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-09-12 16:02:54','2022-09-12 14:02:54','',69,'https://podiatrist.capetown/?p=1220',0,'revision','',0),(1221,1,'2022-09-12 16:02:57','2022-09-12 14:02:57','<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"768\" height=\"241\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<style>/*! elementor - v3.7.4 - 31-08-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Andy Blecher will keep your feet healthy and happy</h1>		\n															<img width=\"251\" height=\"300\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg 251w, https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg 566w\" sizes=\"(max-width: 251px) 100vw, 251px\" />															\n			<h2>Clear nail fungus infections and warts with Laser technology</h2>		\n		<p>Specialists report that fungal infection of the nails, or <em>onychomycosis</em>, affects a large portion of the world\'s population. The condition can lead to unsightly, brittle nails and even pain.</p><p>Current treatment options range from home remedies and over-the-counter topical solutions to prescription-based oral medications. Due to the limited, costly and mostly ineffective nature of these options, there is a huge demand for an effective and safe treatment that has no side effects and systemic complications.</p><h3>Summary of Neo Laser benefits:</h3><ul><li>Simple, quick and safe No downtime</li><li>No pain or discomfort Few treatment sessions</li><li>The most cost-effective solution.</li></ul>		\n															<img width=\"140\" height=\"102\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\" alt=\"Neo Laser logo\" loading=\"lazy\" />															\n		<p>Andy Blecher Podiatrist can help you to maintain your feet in a fit state to carry out the function they were designed for - which is bearing weight and walking.</p><p>Podiatry is the branch of medicine that\'s devoted to the effective treatment of disorders of the foot.</p><p>In Andy\'s practice, she diagnoses and treats a variety of foot conditions. <a href=\"https://www.podiatrist.capetown/diabetic-foot/\">Click here </a>for more information on her fields of interest and the professional care she can offer you.</p>		\n															<img width=\"325\" height=\"246\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\" alt=\"Neo V Laser\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg 325w, https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser-300x227.jpg 300w\" sizes=\"(max-width: 325px) 100vw, 325px\" />															\n		<p>The Neo Laser treatment is easy and safe to perform and results in the destruction of fungi in the nail while increasing the growth of clear healthy nails. The treatment involves passing a laser beam over the infected nails and surrounding skin. The treatment is repeated until enough energy has reached the nail bed and the desired temperature is reached that is effective enough to kill the fungi.</p><p>Most infections improve after a single 15-20 minute treatment. Immediately following treatment, no visual change in the nail will be detected, as it takes time for the clear nail to grow out. The number of treatments required depends on the severity of the nail fungus, ranging from 2 to 4 treatments.</p>		\n			<h3>Book your appointment</h3>		\n															<img width=\"80\" height=\"100\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" />															\n		<h2>021 797 6967</h2><h2>Plumstead</h2><p>2 Burnham Road</p><p><em>Mondays, Tuesdays and Wednesdays 8h30 - 17h00</em></p><p><em>Thursdays and Fridays 8h30 - 13h00</em></p><p>House calls available where necessary.</p><h2><strong>Sea Point</strong></h2><p>3rd Floor The Point, 76 Regent Road</p><p><em>Thursdays </em><strong> </strong></p><p>We welcome Taariq Jacobs to the practice.</p>		\n			<h4>General Enquiries</h4>		\n		<p>Andy Blecher Podiatrist will respond to email enquiries within 3-4 working days. For a more prompt response, or to make an appointment, please rather call her on:</p><h2>021 797 6967</h2>		\n			<a href=\"mailto:andyblecherpodiatrist@gmail.com\" role=\"button\">\n						Click to Email\n					</a>\n		<p><a href=\"https://podiatrist.capetown/contact-andy-blecher/\">Click here for maps</a></p>		\n															<img width=\"1621\" height=\"509\" src=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\" alt=\"Andy Blecher Podiatrist\" loading=\"lazy\" srcset=\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg 1621w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-300x94.jpg 300w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1024x322.jpg 1024w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg 768w, https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-1536x482.jpg 1536w\" sizes=\"(max-width: 1621px) 100vw, 1621px\" />															\n		<p>Copyright Andy Blecher Podiatrist © 2022. All rights reserved.</p>','Andy Blecher Podiatrist will keep your feet healthy and happy','','inherit','closed','closed','','69-revision-v1','','','2022-09-12 16:02:57','2022-09-12 14:02:57','',69,'https://podiatrist.capetown/?p=1221',0,'revision','',0),(1222,1,'2022-09-12 16:04:44','2022-09-12 14:04:44','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-09-12 16:04:44','2022-09-12 14:04:44','',9,'https://podiatrist.capetown/?p=1222',0,'revision','',0),(1223,1,'2022-09-12 16:06:31','2022-09-12 14:06:31','{\n    \"hello-elementor::nav_menu_locations[menu-2]\": {\n        \"value\": 0,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-09-12 14:06:31\"\n    }\n}','','','trash','closed','closed','','e5c528b2-4e4f-41d5-9b06-4775fbef2b61','','','2022-09-12 16:06:31','2022-09-12 14:06:31','',0,'https://podiatrist.capetown/2022/09/12/e5c528b2-4e4f-41d5-9b06-4775fbef2b61/',0,'customize_changeset','',0),(1224,1,'2022-09-12 16:08:24','2022-09-12 14:08:24','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-09-12 16:08:24','2022-09-12 14:08:24','',9,'https://podiatrist.capetown/?p=1224',0,'revision','',0),(1225,1,'2022-09-12 16:12:05','2022-09-12 14:12:05','{\n    \"hello-elementor::nav_menu_locations[menu-2]\": {\n        \"value\": 0,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-09-12 14:12:05\"\n    },\n    \"nav_menu[2]\": {\n        \"value\": {\n            \"name\": \"Menu 1\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": true\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-09-12 14:12:05\"\n    }\n}','','','trash','closed','closed','','71ac5a7d-cd74-49a4-8b6f-7d0278a26a82','','','2022-09-12 16:12:05','2022-09-12 14:12:05','',0,'https://podiatrist.capetown/2022/09/12/71ac5a7d-cd74-49a4-8b6f-7d0278a26a82/',0,'customize_changeset','',0),(1226,1,'2022-09-12 16:20:36','2022-09-12 14:20:36','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-09-12 16:20:36','2022-09-12 14:20:36','',9,'https://podiatrist.capetown/?p=1226',0,'revision','',0),(1227,1,'2022-09-12 16:22:48','2022-09-12 14:22:48','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-09-12 16:22:48','2022-09-12 14:22:48','',9,'https://podiatrist.capetown/?p=1227',0,'revision','',0),(1228,1,'2022-09-12 16:25:48','2022-09-12 14:25:48','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-09-12 16:25:48','2022-09-12 14:25:48','',9,'https://podiatrist.capetown/?p=1228',0,'revision','',0),(1229,1,'2022-09-12 16:30:56','2022-09-12 14:30:56','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-09-12 16:30:56','2022-09-12 14:30:56','',9,'https://podiatrist.capetown/?p=1229',0,'revision','',0),(1230,1,'2022-09-12 16:42:36','2022-09-12 14:42:36','','Default Kit','','inherit','closed','closed','','9-revision-v1','','','2022-09-12 16:42:36','2022-09-12 14:42:36','',9,'https://podiatrist.capetown/?p=1230',0,'revision','',0),(1231,0,'2022-09-12 18:27:48','2022-09-12 16:27:48','/**handles:elementor-post-311**/\r\n.elementor-311 .elementor-element.elementor-element-89b7571{text-align:left}.elementor-311 .elementor-element.elementor-element-89b7571 .elementor-heading-title{font-family:\"Averia Libre\",Sans-serif;font-size:50px;font-weight:400}:root{--page-title-display:none}@media(min-width:768px){.elementor-311 .elementor-element.elementor-element-97826a6{width:23.069%}.elementor-311 .elementor-element.elementor-element-8c52351{width:26.931%}}','66b96b1d4b7507ce93da3315128a19a6-styles','','publish','closed','closed','','66b96b1d4b7507ce93da3315128a19a6-styles','','','2022-09-12 18:27:48','2022-09-12 16:27:48','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1231',0,'wphb_minify_group','',0),(1232,0,'2022-09-12 21:18:49','2022-09-12 19:18:49','/**handles:elementor-post-390**/\r\n.elementor-390 .elementor-element.elementor-element-6d7744dc{width:auto;max-width:auto}.elementor-390 .elementor-element.elementor-element-e789b18 .elementor-heading-title{font-family:\"Averia Libre\",Sans-serif;font-size:50px;font-weight:400}.elementor-390 .elementor-element.elementor-element-e789b18&gt;.elementor-widget-container{margin:54px 0 0 0}.elementor-390 .elementor-element.elementor-element-92a890d&gt;.elementor-widget-container{margin:37px 37px 37px 37px}.elementor-390 .elementor-element.elementor-element-92a890d{width:auto;max-width:auto}.elementor-390 .elementor-element.elementor-element-69b9836&gt;.elementor-widget-container{margin:37px 37px 37px 37px}.elementor-390 .elementor-element.elementor-element-69b9836{width:auto;max-width:auto}.elementor-390 .elementor-element.elementor-element-5be6fab4{margin-top:200px;margin-bottom:0}.elementor-390 .elementor-element.elementor-element-3063bd06&gt;.elementor-element-populated{padding:0}.elementor-390 .elementor-element.elementor-element-3c3001a2&gt;.elementor-container{max-width:1760px;min-height:150px}.elementor-390 .elementor-element.elementor-element-3c3001a2{border-style:solid;border-width:1px 0 0 0;border-color:rgba(3,53,55,.2);transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;margin-top:0;margin-bottom:0}.elementor-390 .elementor-element.elementor-element-3c3001a2&gt;.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-bc-flex-widget .elementor-390 .elementor-element.elementor-element-6fd57134.elementor-column .elementor-widget-wrap{align-items:center}.elementor-390 .elementor-element.elementor-element-6fd57134.elementor-column.elementor-element[data-element_type=column]&gt;.elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center}.elementor-390 .elementor-element.elementor-element-1551d34d{text-align:left}.elementor-bc-flex-widget .elementor-390 .elementor-element.elementor-element-1f4feb11.elementor-column .elementor-widget-wrap{align-items:center}.elementor-390 .elementor-element.elementor-element-1f4feb11.elementor-column.elementor-element[data-element_type=column]&gt;.elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center}.elementor-390 .elementor-element.elementor-element-51ed636{text-align:center;color:var(--e-global-color-primary);font-family:Dosis,Sans-serif;font-size:20px;font-weight:200}:root{--page-title-display:none}@media(max-width:1024px){.elementor-390 .elementor-element.elementor-element-5be6fab4{margin-top:100px;margin-bottom:0}.elementor-390 .elementor-element.elementor-element-6fd57134&gt;.elementor-element-populated{padding:30px 0 20px 0}.elementor-390 .elementor-element.elementor-element-1551d34d{text-align:center}.elementor-390 .elementor-element.elementor-element-51ed636{text-align:center}}@media(max-width:767px){.elementor-390 .elementor-element.elementor-element-5be6fab4{margin-top:100px;margin-bottom:0}}@media(min-width:768px){.elementor-390 .elementor-element.elementor-element-6fd57134{width:25.608%}.elementor-390 .elementor-element.elementor-element-1f4feb11{width:74.392%}}@media(max-width:1024px) and (min-width:768px){.elementor-390 .elementor-element.elementor-element-6fd57134{width:100%}.elementor-390 .elementor-element.elementor-element-1f4feb11{width:100%}}','c1ed39134dfc6d2b958af7a171a4bbf9-styles','','publish','closed','closed','','c1ed39134dfc6d2b958af7a171a4bbf9-styles','','','2022-09-12 21:18:49','2022-09-12 19:18:49','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1232',0,'wphb_minify_group','',0),(1233,0,'2022-09-12 23:48:28','2022-09-12 21:48:28','/**handles:hello-theme-frontend,smush-lazy-load**/\r\n(()=&gt;{var e={690:e=&gt;{e.exports=function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")},e.exports.__esModule=!0,e.exports.default=e.exports},728:e=&gt;{function _defineProperties(e,t){for(var n=0;n{e.exports=function _interopRequireDefault(e){return e&amp;&amp;e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports}},t={};function __webpack_require__(n){var r=t[n];if(void 0!==r)return r.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,__webpack_require__),o.exports}(()=&gt;{\"use strict\";var e=__webpack_require__(836),t=e(__webpack_require__(690)),n=e(__webpack_require__(728)),r=function(){function elementorHelloThemeHandler(){(0,t.default)(this,elementorHelloThemeHandler),this.initSettings(),this.initElements(),this.bindEvents()}return(0,n.default)(elementorHelloThemeHandler,[{key:\"initSettings\",value:function initSettings(){this.settings={selectors:{header:\"header.site-header\",footer:\"footer.site-footer\",menuToggle:\".site-header .site-navigation-toggle\",menuToggleHolder:\".site-header .site-navigation-toggle-holder\",dropdownMenu:\".site-header .site-navigation-dropdown\"}}}},{key:\"initElements\",value:function initElements(){this.elements={$window:jQuery(window),$document:jQuery(document),$header:jQuery(this.settings.selectors.header),$footer:jQuery(this.settings.selectors.footer),$menuToggle:jQuery(this.settings.selectors.menuToggle),$menuToggleHolder:jQuery(this.settings.selectors.menuToggleHolder),$dropdownMenu:jQuery(this.settings.selectors.dropdownMenu)}}},{key:\"bindEvents\",value:function bindEvents(){var e=this;this.elements.$menuToggle.on(\"click\",(function(){return e.handleMenuToggle()})),this.elements.$dropdownMenu.on(\"click\",\".menu-item-has-children &gt; a\",this.handleMenuChildren)}},{key:\"closeMenuItems\",value:function closeMenuItems(){var e=this;this.elements.$menuToggleHolder.removeClass(\"elementor-active\"),this.elements.$window.off(\"resize\",(function(){return e.closeMenuItems()}))}},{key:\"handleMenuToggle\",value:function handleMenuToggle(){var e=this,t=!this.elements.$menuToggleHolder.hasClass(\"elementor-active\");this.elements.$menuToggle.attr(\"aria-expanded\",t),this.elements.$dropdownMenu.attr(\"aria-hidden\",!t),this.elements.$menuToggleHolder.toggleClass(\"elementor-active\",t),this.elements.$dropdownMenu.find(\".elementor-active\").removeClass(\"elementor-active\"),t?this.elements.$window.on(\"resize\",(function(){return e.closeMenuItems()})):this.elements.$window.off(\"resize\",(function(){return e.closeMenuItems()}))}},{key:\"handleMenuChildren\",value:function handleMenuChildren(e){var t=jQuery(e.currentTarget).parent(\"li\");t.hasClass(\"elementor-active\")?t.removeClass(\"elementor-active\"):t.addClass(\"elementor-active\")}}]),elementorHelloThemeHandler}();jQuery((function(){new r}))})()})();\r\n!function(){var e={90:function(e){!function(t,n){var a=function(e,t,n){\"use strict\";var a,i;if(function(){var t,n={lazyClass:\"lazyload\",loadedClass:\"lazyloaded\",loadingClass:\"lazyloading\",preloadClass:\"lazypreload\",errorClass:\"lazyerror\",autosizesClass:\"lazyautosizes\",fastLoadedClass:\"ls-is-cached\",iframeLoadMode:0,srcAttr:\"data-src\",srcsetAttr:\"data-srcset\",sizesAttr:\"data-sizes\",minSize:40,customMedia:{},init:!0,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:!0,ricTimeout:0,throttleDelay:125};for(t in i=e.lazySizesConfig||e.lazysizesConfig||{},n)t in i||(i[t]=n[t])}(),!t||!t.getElementsByClassName)return{init:function(){},cfg:i,noSupport:!0};var r=t.documentElement,o=e.HTMLPictureElement,s=\"addEventListener\",l=\"getAttribute\",c=e[s].bind(e),d=e.setTimeout,u=e.requestAnimationFrame||d,f=e.requestIdleCallback,m=/^picture$/i,v=[\"load\",\"error\",\"lazyincluded\",\"_lazyloaded\"],y={},h=Array.prototype.forEach,z=function(e,t){return y[t]||(y[t]=new RegExp(\"(\\\\s|^)\"+t+\"(\\\\s|$)\")),y[t].test(e[l](\"class\")||\"\")&amp;&amp;y[t]},p=function(e,t){z(e,t)||e.setAttribute(\"class\",(e[l](\"class\")||\"\").trim()+\" \"+t)},g=function(e,t){var n;(n=z(e,t))&amp;&amp;e.setAttribute(\"class\",(e[l](\"class\")||\"\").replace(n,\" \"))},C=function(e,t,n){var a=n?s:\"removeEventListener\";n&amp;&amp;C(e,t),v.forEach((function(n){e[a](n,t)}))},b=function(e,n,i,r,o){var s=t.createEvent(\"Event\");return i||(i={}),i.instance=a,s.initEvent(n,!r,!o),s.detail=i,e.dispatchEvent(s),s},A=function(t,n){var a;!o&amp;&amp;(a=e.picturefill||i.pf)?(n&amp;&amp;n.src&amp;&amp;!t[l](\"srcset\")&amp;&amp;t.setAttribute(\"srcset\",n.src),a({reevaluate:!0,elements:[t]})):n&amp;&amp;n.src&amp;&amp;(t.src=n.src)},E=function(e,t){return(getComputedStyle(e,null)||{})[t]},_=function(e,t,n){for(n=n||e.offsetWidth;n<i>49?function(){f(s,{timeout:o}),o!==i.ricTimeout&amp;&amp;(o=i.ricTimeout)}:M((function(){d(s)}),!0);return function(e){var i;(e=!0===e)&amp;&amp;(o=33),t||(t=!0,(i=r-(n.now()-a))&lt;0&amp;&amp;(i=0),e||i&lt;9?l():d(l,i))}},x=function(e){var t,a,i=99,r=function(){t=null,e()},o=function(){var e=n.now()-a;e&lt;i?d(o,i-e):(f||r)(r)};return function(){a=n.now(),t||(t=d(o,i))}},L=(K=/^img$/i,Q=/^iframe$/i,V=&quot;onscroll&quot;in e&amp;&amp;!/(gle|ing)bot/.test(navigator.userAgent),X=0,Y=0,Z=0,ee=-1,te=function(e){Z--,(!e||Z0)&amp;&amp;\"visible\"!=E(i,\"overflow\")&amp;&amp;(a=i.getBoundingClientRect(),o=U&gt;a.left&amp;&amp;j<a>a.top-1&amp;&amp;I&lt;a.bottom+1);return o},ie=function(){var e,n,o,s,c,d,u,f,m,v,y,h,z=a.elements;if((k=i.loadMode)&amp;&amp;Z&lt;8&amp;&amp;(e=z.length)){for(n=0,ee++;n&lt;e;n++)if(z[n]&amp;&amp;!z[n]._lazyRace)if(!V||a.prematureUnveil&amp;&amp;a.prematureUnveil(z[n]))fe(z[n]);else if((f=z[n][l](&quot;data-expand&quot;))&amp;&amp;(d=1*f)||(d=Y),v||(v=!i.expand||i.expand500&amp;&amp;r.clientWidth&gt;500?500:370:i.expand,a._defEx=v,y=v*i.expFactor,h=i.hFac,J=null,Y&lt;y&amp;&amp;Z2&amp;&amp;k&gt;2&amp;&amp;!t.hidden?(Y=y,ee=0):Y=k&gt;1&amp;&amp;ee&gt;1&amp;&amp;Z=u&amp;&amp;(I=o.top)=u*h&amp;&amp;(j=o.left)&lt;=$&amp;&amp;(G||U||j||I)&amp;&amp;(i.loadHidden||ne(z[n]))&amp;&amp;(P&amp;&amp;Z&lt;3&amp;&amp;!f&amp;&amp;(k&lt;3||ee9)break}else!c&amp;&amp;P&amp;&amp;!s&amp;&amp;Z&lt;4&amp;&amp;ee2&amp;&amp;(R[0]||i.preloadAfterLoad)&amp;&amp;(R[0]||!f&amp;&amp;(G||U||j||I||\"auto\"!=z[n][l](i.sizesAttr)))&amp;&amp;(s=R[0]||z[n]);s&amp;&amp;!c&amp;&amp;fe(s)}},re=N(ie),oe=function(e){var t=e.target;t._lazyCache?delete t._lazyCache:(te(e),p(t,i.loadedClass),g(t,i.loadingClass),C(t,le),b(t,\"lazyloaded\"))},se=M(oe),le=function(e){se({target:e.target})},ce=function(e,t){var n=e.getAttribute(\"data-load-mode\")||i.iframeLoadMode;0==n?e.contentWindow.location.replace(t):1==n&amp;&amp;(e.src=t)},de=function(e){var t,n=e[l](i.srcsetAttr);(t=i.customMedia[e[l](\"data-media\")||e[l](\"media\")])&amp;&amp;e.setAttribute(\"media\",t),n&amp;&amp;e.setAttribute(\"srcset\",n)},ue=M((function(e,t,n,a,r){var o,s,c,u,f,v;(f=b(e,\"lazybeforeunveil\",t)).defaultPrevented||(a&amp;&amp;(n?p(e,i.autosizesClass):e.setAttribute(\"sizes\",a)),s=e[l](i.srcsetAttr),o=e[l](i.srcAttr),r&amp;&amp;(u=(c=e.parentNode)&amp;&amp;m.test(c.nodeName||\"\")),v=t.firesLoad||\"src\"in e&amp;&amp;(s||o||u),f={target:e},p(e,i.loadingClass),v&amp;&amp;(clearTimeout(D),D=d(te,2500),C(e,le,!0)),u&amp;&amp;h.call(c.getElementsByTagName(\"source\"),de),s?e.setAttribute(\"srcset\",s):o&amp;&amp;!u&amp;&amp;(Q.test(e.nodeName)?ce(e,o):e.src=o),r&amp;&amp;(s||u)&amp;&amp;A(e,{src:o})),e._lazyRace&amp;&amp;delete e._lazyRace,g(e,i.lazyClass),w((function(){var t=e.complete&amp;&amp;e.naturalWidth&gt;1;v&amp;&amp;!t||(t&amp;&amp;p(e,i.fastLoadedClass),oe(f),e._lazyCache=!0,d((function(){\"_lazyCache\"in e&amp;&amp;delete e._lazyCache}),9)),\"lazy\"==e.loading&amp;&amp;Z--}),!0)})),fe=function(e){if(!e._lazyRace){var t,n=K.test(e.nodeName),a=n&amp;&amp;(e[l](i.sizesAttr)||e[l](\"sizes\")),r=\"auto\"==a;(!r&amp;&amp;P||!n||!e[l](\"src\")&amp;&amp;!e.srcset||e.complete||z(e,i.errorClass)||!z(e,i.lazyClass))&amp;&amp;(t=b(e,\"lazyunveilread\").detail,r&amp;&amp;W.updateElem(e,!0,e.offsetWidth),e._lazyRace=!0,Z++,ue(e,t,r,a,n))}},me=x((function(){i.loadMode=3,re()})),ve=function(){3==i.loadMode&amp;&amp;(i.loadMode=2),me()},ye=function(){P||(n.now()-H&lt;999?d(ye,999):(P=!0,i.loadMode=3,re(),c(&quot;scroll&quot;,ve,!0)))},{_:function(){H=n.now(),a.elements=t.getElementsByClassName(i.lazyClass),R=t.getElementsByClassName(i.lazyClass+&quot; &quot;+i.preloadClass),c(&quot;scroll&quot;,re,!0),c(&quot;resize&quot;,re,!0),c(&quot;pageshow&quot;,(function(e){if(e.persisted){var n=t.querySelectorAll(&quot;.&quot;+i.loadingClass);n.length&amp;&amp;n.forEach&amp;&amp;u((function(){n.forEach((function(e){e.complete&amp;&amp;fe(e)}))}))}})),e.MutationObserver?new MutationObserver(re).observe(r,{childList:!0,subtree:!0,attributes:!0}):(r[s](&quot;DOMNodeInserted&quot;,re,!0),r[s](&quot;DOMAttrModified&quot;,re,!0),setInterval(re,999)),c(&quot;hashchange&quot;,re,!0),[&quot;focus&quot;,&quot;mouseover&quot;,&quot;click&quot;,&quot;load&quot;,&quot;transitionend&quot;,&quot;animationend&quot;].forEach((function(e){t[s](e,re,!0)})),/d$|^c/.test(t.readyState)?ye():(c(&quot;load&quot;,ye),t[s](&quot;DOMContentLoaded&quot;,re),d(ye,2e4)),a.elements.length?(ie(),w._lsFlush()):re()},checkElems:re,unveil:fe,_aLSL:ve}),W=(T=M((function(e,t,n,a){var i,r,o;if(e._lazysizesWidth=a,a+=&quot;px&quot;,e.setAttribute(&quot;sizes&quot;,a),m.test(t.nodeName||&quot;&quot;))for(r=0,o=(i=t.getElementsByTagName(&quot;source&quot;)).length;r&lt;o;r++)i[r].setAttribute(&quot;sizes&quot;,a);n.detail.dataAttr||A(e,n.detail)})),F=function(e,t,n){var a,i=e.parentNode;i&amp;&amp;(n=_(e,i,n),(a=b(e,&quot;lazybeforesizes&quot;,{width:n,dataAttr:!!t})).defaultPrevented||(n=a.detail.width)&amp;&amp;n!==e._lazysizesWidth&amp;&amp;T(e,i,a,n))},O=x((function(){var e,t=B.length;if(t)for(e=0;e&lt;t;e++)F(B[e])})),{_:function(){B=t.getElementsByClassName(i.autosizesClass),c(&quot;resize&quot;,O)},checkElems:O,updateElem:F}),S=function(){!S.i&amp;&amp;t.getElementsByClassName&amp;&amp;(S.i=!0,W._(),L._())};var B,T,F,O;var R,P,D,k,H,$,q,I,j,U,G,J,K,Q,V,X,Y,Z,ee,te,ne,ae,ie,re,oe,se,le,ce,de,ue,fe,me,ve,ye;var he,ze,pe,ge,Ce,be,Ae;return d((function(){i.init&amp;&amp;S()})),a={cfg:i,autoSizer:W,loader:L,init:S,uP:A,aC:p,rC:g,hC:z,fire:b,gW:_,rAF:w}}(t,t.document,Date);t.lazySizes=a,e.exports&amp;&amp;(e.exports=a)}(&quot;undefined&quot;!=typeof window?window:{})}},t={};function n(a){var i=t[a];if(void 0!==i)return i.exports;var r=t[a]={exports:{}};return e[a](r,r.exports,n),r.exports}n.n=function(e){var t=e&amp;&amp;e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var a in t)n.o(t,a)&amp;&amp;!n.o(e,a)&amp;&amp;Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){&quot;use strict&quot;;var e=n(90);n.n(e)().init()}()}();\n//# sourceMappingURL=smush-lazy-load.min.js.map','51d17e06f92fc77a918132d0de29413f-scripts','','publish','closed','closed','','51d17e06f92fc77a918132d0de29413f-scripts','','','2022-09-12 23:48:28','2022-09-12 21:48:28','',0,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=1233',0,'wphb_minify_group','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_smartcrawl_redirects`
--

DROP TABLE IF EXISTS `wp_smartcrawl_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_smartcrawl_redirects` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL DEFAULT '',
  `source` varchar(200) NOT NULL DEFAULT '',
  `path` varchar(200) NOT NULL DEFAULT '',
  `destination` varchar(200) NOT NULL DEFAULT '',
  `type` smallint(6) NOT NULL DEFAULT 0,
  `options` varchar(500) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_smartcrawl_redirects`
--

LOCK TABLES `wp_smartcrawl_redirects` WRITE;
/*!40000 ALTER TABLE `wp_smartcrawl_redirects` DISABLE KEYS */;
INSERT INTO `wp_smartcrawl_redirects` VALUES (1,'','https://www.podiatristandyblecher.co.za','/www.podiatristandyblecher.co.za','https://podiatrist.capetown',301,'');
/*!40000 ALTER TABLE `wp_smartcrawl_redirects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_smush_dir_images`
--

DROP TABLE IF EXISTS `wp_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_smush_dir_images` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  `path_hash` char(32) DEFAULT NULL,
  `resize` varchar(55) DEFAULT NULL,
  `lossy` varchar(55) DEFAULT NULL,
  `error` varchar(55) DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_smush_dir_images`
--

LOCK TABLES `wp_smush_dir_images` WRITE;
/*!40000 ALTER TABLE `wp_smush_dir_images` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_smush_dir_images` 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_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 (426,2,0),(427,2,0),(428,2,0),(429,2,0),(430,2,0),(431,2,0),(432,2,0),(433,2,0),(434,2,0),(435,2,0),(480,3,0),(491,3,0),(1059,4,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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,10),(3,3,'elementor_library_type','',0,2),(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_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_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,'Menu 1','menu-1',0),(3,'section','section',0),(4,'hello-elementor','hello-elementor',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) 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=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','podct'),(2,1,'first_name','Adrian'),(3,1,'last_name','Fuller'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(17,1,'wp_dashboard_quick_press_last_post_id','1202'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"197.92.142.0\";}'),(19,1,'wp_elementor_connect_common_data','a:7:{s:9:\"client_id\";s:32:\"DP7rnY0eWRwKtmH2a4vUXhUQw6AZ60XH\";s:11:\"auth_secret\";s:32:\"CbxxLYvhVKXcWURZgS9kdO3w3ttNHPF6\";s:12:\"access_token\";s:32:\"eTZX16YftvZSpr929MoDe8runGLEMZNK\";s:19:\"access_token_secret\";s:32:\"wxh6c8FBl4x1ezOwRNLeI1MSmvH4r7rF\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"bonesfuller@gmail.com\";}s:19:\"data_share_opted_in\";b:1;}'),(20,1,'elementor_admin_notices','a:1:{s:21:\"elementor_dev_promote\";s:4:\"true\";}'),(21,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(22,1,'wp_user-settings-time','1622727470'),(24,1,'elementor_introduction','a:1:{s:18:\"yoast-introduction\";b:1;}'),(25,1,'_yoast_wpseo_profile_updated','1622968967'),(26,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:20:\"e-dashboard-overview\";s:4:\"side\";s:63:\"dashboard_site_health,dashboard_right_now,dashboard_quick_press\";s:7:\"column3\";s:43:\"wpseo-dashboard-overview,dashboard_activity\";s:7:\"column4\";s:17:\"dashboard_primary\";}'),(27,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(28,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(30,1,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:297:\"<p>Because of a change in your permalink structure, some of your SEO data needs to be reprocessed.</p><p>We estimate this will take less than a minute.</p><a class=\"button\" href=\"https://podiatrist.capetown/wp-admin/admin.php?page=wpseo_tools&start-indexation=true\">Start SEO data optimization</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"podct\";s:9:\"user_pass\";s:34:\"$P$BIC8T0V3632XYg3tCUF7mW/Ix.bqQF/\";s:13:\"user_nicename\";s:5:\"podct\";s:10:\"user_email\";s:26:\"adrian@fullerdigital.co.za\";s:8:\"user_url\";s:27:\"https://podiatrist.capetown\";s:15:\"user_registered\";s:19:\"2021-06-02 12:22:19\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"podct\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:63:{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:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(31,1,'wds_dismissed_messages','a:2:{s:16:\"yoast-seo-import\";b:1;s:21:\"wp-org-rating-request\";b:1;}'),(34,1,'session_tokens','a:4:{s:64:\"b35a0c052df0e74a1ac6cbf16667d3c9add123c654d8080828feef18365d99da\";a:4:{s:10:\"expiration\";i:1663163182;s:2:\"ip\";s:12:\"197.94.91.12\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1662990382;}s:64:\"40e72c33143aa819bb3b88bc88ed60bf5231546b055f5320d3df8a657e8ca2d0\";a:4:{s:10:\"expiration\";i:1663164973;s:2:\"ip\";s:12:\"197.94.91.12\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1662992173;}s:64:\"2ad86167b8299230134b7bb4eb7c3cb1dc1a63fdcfadec06b830e2bbc96a0384\";a:4:{s:10:\"expiration\";i:1663257926;s:2:\"ip\";s:13:\"197.92.142.45\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1663085126;}s:64:\"0256d053a3ec47bfcb4aa177cc68e62e50cbe7d8327c4f7f531cac955fe399af\";a:4:{s:10:\"expiration\";i:1663259218;s:2:\"ip\";s:13:\"197.92.142.45\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1663086418;}}'),(35,1,'nav_menu_recently_edited','2');
/*!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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'podct','$P$BIC8T0V3632XYg3tCUF7mW/Ix.bqQF/','podct','adrian@fullerdigital.co.za','https://podiatrist.capetown','2021-06-02 12:22:19','',0,'podct');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext DEFAULT NULL,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `breadcrumb_title` text DEFAULT NULL,
  `post_status` varchar(20) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT 0,
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext DEFAULT NULL,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT 0,
  `is_robots_noindex` tinyint(1) DEFAULT 0,
  `is_robots_nofollow` tinyint(1) DEFAULT 0,
  `is_robots_noarchive` tinyint(1) DEFAULT 0,
  `is_robots_noimageindex` tinyint(1) DEFAULT 0,
  `is_robots_nosnippet` tinyint(1) DEFAULT 0,
  `twitter_title` text DEFAULT NULL,
  `twitter_image` longtext DEFAULT NULL,
  `twitter_description` longtext DEFAULT NULL,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text DEFAULT NULL,
  `open_graph_title` text DEFAULT NULL,
  `open_graph_description` longtext DEFAULT NULL,
  `open_graph_image` longtext DEFAULT NULL,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text DEFAULT NULL,
  `open_graph_image_meta` mediumtext DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`)
) ENGINE=InnoDB AUTO_INCREMENT=175 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://podiatrist.capetown/author/podct/','41:d37a52a21349ad01a10ec34e37fb3385',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/8129ef68264947ec2d0de28b14cdc64e?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/8129ef68264947ec2d0de28b14cdc64e?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-06-04 14:17:43','2021-06-21 08:52:50',1,NULL,NULL,NULL,NULL,0,NULL),(2,'https://podiatrist.capetown/coming-soon/','40:7815a0c7b07a49904e31383aab9242c0',11,'post','page',1,0,NULL,NULL,'Coming soon','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,NULL,3,NULL,'2021-06-04 14:17:43','2021-06-15 12:46:41',1,NULL,NULL,NULL,NULL,0,NULL),(3,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg','77:89ca87cf250e769b878bddde3a73c212',16,'post','attachment',1,0,NULL,NULL,'Andy Blecher Podiatrist logo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',NULL,'16','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg','16','attachment-image','{\"width\":1621,\"height\":509,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\",\"size\":\"full\",\"id\":16,\"alt\":\"Andy Blecher Podiatrist logo\",\"pixels\":825089,\"type\":\"image/jpeg\"}',NULL,18,NULL,'2021-06-04 14:17:44','2021-06-14 11:51:07',1,NULL,NULL,NULL,NULL,0,NULL),(4,'https://podiatrist.capetown/','28:ab9864175a2aa24aee45dfe5574a09c2',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Plumstead and Sea Point practices','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,22,NULL,'2021-06-04 14:17:44','2021-06-21 10:53:24',1,NULL,NULL,NULL,NULL,0,NULL),(5,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-04 14:17:45','2021-06-04 12:17:45',1,NULL,NULL,NULL,NULL,0,NULL),(6,'https://podiatrist.capetown/','28:ab9864175a2aa24aee45dfe5574a09c2',69,'post','page',1,0,'%%title%% %%page%%','Andy Blecher podiatrist can help you to keep your feet in a fit state to carry out the function they were designed for.','Andy Blecher Podiatrist will keep your feet healthy and happy','publish',NULL,0,NULL,NULL,NULL,'Andy Blecher podiatrist',55,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,38,10,NULL,'2021-06-04 14:21:39','2021-06-15 12:59:54',1,NULL,NULL,NULL,NULL,0,4),(7,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg','82:c8abd3484f221ba7ad2e2fb8cb781c98',87,'post','attachment',1,69,NULL,NULL,'Andy Blecher Podiatrist','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg',NULL,'87','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg','87','attachment-image','{\"width\":80,\"height\":100,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg\",\"size\":\"full\",\"id\":87,\"alt\":\"Andy Blecher Podiatrist\",\"pixels\":8000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-06-04 14:21:40','2021-06-12 12:39:53',1,NULL,NULL,NULL,NULL,1,NULL),(8,'https://podiatrist.capetown/author/','35:308a1cf1ffeb89afc31f5b163287c49e',0,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-06-04 14:21:58','2021-06-21 08:53:28',1,NULL,NULL,NULL,NULL,0,NULL),(11,'https://podiatrist.capetown/?p=188','34:391abe88f81c61c8b20e4801ea0f4ae5',188,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-04 14:22:01','2021-06-04 12:22:02',1,NULL,NULL,NULL,NULL,0,NULL),(15,'https://podiatrist.capetown/registered-podiatrist/','50:e5abbfc0475da6cd08cb1d23cbcf3f07',193,'post','page',1,0,'Registered podiatrist Andy Blecher specialises in foot care for children','Andy Blecher is a fully qualified and registered podiatrist in private practice in both Plumstead and Sea Point, specialising in foot care.','Fully qualified and registered Podiatrist','publish',NULL,0,NULL,NULL,NULL,'registered podiatrist',62,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image','Andy Blecher is a fully qualified and registered podiatrist',NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-compressed.jpg','24','set-by-user','{\"width\":336,\"height\":401,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-compressed.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Happy-feet-compressed.jpg\",\"size\":\"full\",\"id\":\"24\",\"alt\":\"Happy Feet\",\"pixels\":134736,\"type\":\"image/jpeg\"}',37,28,NULL,'2021-06-04 14:25:16','2021-06-15 12:59:15',1,NULL,NULL,NULL,NULL,0,3),(34,'https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png','74:9bfc3f42d70544333512ec10c46d9365',227,'post','attachment',1,193,NULL,NULL,'Sweet Life logo','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png',NULL,'227','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png','227','attachment-image','{\"width\":210,\"height\":66,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Sweet-Life-logo.png\",\"size\":\"full\",\"id\":227,\"alt\":\"\",\"pixels\":13860,\"type\":\"image/png\"}',NULL,1,NULL,'2021-06-04 15:14:46','2021-06-12 12:39:53',1,NULL,NULL,NULL,NULL,1,NULL),(35,'https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png','68:20d266423714621030b7b3e57844221b',36,'post','attachment',1,0,NULL,NULL,'Podiatry Association logo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png',NULL,'36','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png','36','attachment-image','{\"width\":200,\"height\":183,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/pasa-logo.png\",\"size\":\"full\",\"id\":36,\"alt\":\"Podiatry Association logo\",\"pixels\":36600,\"type\":\"image/png\"}',NULL,1,NULL,'2021-06-04 15:16:47','2021-06-12 12:39:53',1,NULL,NULL,NULL,NULL,0,NULL),(38,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg','77:96da298be20e4656b2bc24a47ff0a562',25,'post','attachment',1,0,NULL,NULL,'Andy Blecher Podiatrist happy feet','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg',NULL,'25','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg','25','attachment-image','{\"width\":566,\"height\":676,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Happy-feet-cropped.jpg\",\"size\":\"full\",\"id\":25,\"alt\":\"Andy Blecher Podiatrist\",\"pixels\":382616,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-05 08:37:13','2021-06-11 08:03:58',1,NULL,NULL,NULL,NULL,0,NULL),(39,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg','69:1de2d3e72ddb71b2ac286123858892bd',141,'post','attachment',1,69,NULL,NULL,'Andy Blecher Podiatrist Neo V LaserNeo V Laser','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg',NULL,'141','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg','141','attachment-image','{\"width\":325,\"height\":246,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Neo-V-aser.jpg\",\"size\":\"full\",\"id\":141,\"alt\":\"Andy Blecher Podiatrist Neo V Laser\",\"pixels\":79950,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-05 08:37:13','2021-06-11 08:04:43',1,NULL,NULL,NULL,NULL,1,NULL),(40,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png','73:71d40543cef5c336bf06c24564c93ef4',148,'post','attachment',1,69,NULL,NULL,'Neo Laser logo','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png',NULL,'148','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png','148','attachment-image','{\"width\":140,\"height\":102,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Neo-Laser-logo.png\",\"size\":\"full\",\"id\":148,\"alt\":\"Neo Laser logo\",\"pixels\":14280,\"type\":\"image/png\"}',NULL,1,NULL,'2021-06-05 08:37:14','2021-06-05 06:51:58',1,NULL,NULL,NULL,NULL,1,NULL),(43,'https://podiatrist.capetown/diabetic-foot/','42:7a5bef5cec9f70f56f1585b71c02b5c7',271,'post','page',1,0,'Diabetic foot assessment and treatment - %%sitename%%','Diabetic foot assessment and treatment, including the gold standard treatment of diabetic foot ulcers by Total Contact Cast (TCC)','Fields of interest','publish',NULL,0,NULL,NULL,NULL,'diabetic foot',59,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image','Diabetic foot assessment and treatment','Diabetic foot assessment and treatment, including the gold standard treatment of diabetic foot ulcers by Total Contact Cast (TCC)','https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg','16','set-by-user','{\"width\":1621,\"height\":509,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg\",\"size\":\"full\",\"id\":\"16\",\"alt\":\"Andy Blecher Podiatrist logo\",\"pixels\":825089,\"type\":\"image/jpeg\"}',37,28,NULL,'2021-06-05 12:14:23','2021-06-15 12:59:15',1,NULL,NULL,NULL,NULL,0,3),(48,'https://podiatrist.capetown/wp-content/uploads/2021/06/DFWG-logo.jpg','68:fb5909c19b9fc16e290d1ebaf574fa8f',21,'post','attachment',1,0,NULL,NULL,'diabetic foot podiatrist','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/DFWG-logo.jpg',NULL,'21','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/DFWG-logo.jpg','21','attachment-image','{\"width\":234,\"height\":122,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/DFWG-logo.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/DFWG-logo.jpg\",\"size\":\"full\",\"id\":21,\"alt\":\"diabetic foot podiatrist\",\"pixels\":28548,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-05 12:46:26','2021-06-05 10:58:44',1,NULL,NULL,NULL,NULL,0,NULL),(49,'https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg','68:599a3ea0dbd2beef1add468636e63635',18,'post','attachment',1,0,NULL,NULL,'diabetic foot podiatrist','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg',NULL,'18','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg','18','attachment-image','{\"width\":871,\"height\":583,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/CAWCC-pic.jpg\",\"size\":\"full\",\"id\":18,\"alt\":\"diabetic foot podiatrist\",\"pixels\":507793,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-05 12:46:31','2021-06-05 10:59:22',1,NULL,NULL,NULL,NULL,0,NULL),(50,'https://podiatrist.capetown/medical-footwear/','45:d50d1ed729981a2e51bafbba1a82e38f',311,'post','page',1,0,'Full range of medical footwear and orthotics - Andy Blecher Podiatrist.','Andy Blecher offers a full range of medical footwear, health footwear and orthotics, all internationally respected brands.','Medical footwear from Andy Blecher','publish',NULL,0,NULL,NULL,NULL,'medical footwear',50,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg',NULL,NULL,'first-content-image','Andy Blecher offers a full range of medical footwear and orthotics.','Andy Blecher offers a full range of medical and health footwear and orthotics.','https://podiatrist.capetown/wp-content/uploads/2021/06/suzie-white.jpg','49','set-by-user','{\"width\":295,\"height\":213,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/suzie-white.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/suzie-white.jpg\",\"size\":\"full\",\"id\":\"49\",\"alt\":\"Suzie shoe white\",\"pixels\":62835,\"type\":\"image/jpeg\"}',0,32,NULL,'2021-06-08 07:35:52','2021-06-15 12:59:15',1,NULL,NULL,NULL,NULL,0,2),(52,'https://podiatrist.capetown/wp-content/uploads/2021/06/sunshine.jpg','67:10c0c51c737241fb11b53fb8b1b3e8b4',48,'post','attachment',1,0,NULL,NULL,'Dr Comfort Sunshine shoes','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/sunshine.jpg',NULL,'48','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/sunshine.jpg','48','attachment-image','{\"width\":600,\"height\":400,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/sunshine.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/sunshine.jpg\",\"size\":\"full\",\"id\":48,\"alt\":\"Dr Comfort Sunshine shoes\",\"pixels\":240000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 07:47:44','2021-06-08 09:16:38',1,NULL,NULL,NULL,NULL,0,NULL),(53,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg','85:2374492da428d535e3087d31803a0f5b',126,'post','attachment',1,69,NULL,NULL,'Revere Santa Monica Navy Snake','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg',NULL,'126','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg','126','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg\",\"size\":\"full\",\"id\":126,\"alt\":\"Revere Santa Monica navy\",\"pixels\":40000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-06-08 07:51:31','2021-06-08 10:08:03',1,NULL,NULL,NULL,NULL,0,NULL),(54,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg','84:c4500e57095cd04d53d785bbe163aa59',40,'post','attachment',1,0,NULL,NULL,'Vasyli Custom shoe insert','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg',NULL,'40','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg','40','attachment-image','{\"width\":170,\"height\":170,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/product_customs_medium_tn.jpg\",\"size\":\"full\",\"id\":40,\"alt\":\"Vasyli Custom shoe insert\",\"pixels\":28900,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-06-08 08:03:40','2021-06-08 11:07:50',1,NULL,NULL,NULL,NULL,0,NULL),(55,'https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png','74:8a1d6fdf6f3859704a5f5181da982b68',129,'post','attachment',1,69,NULL,NULL,'Vionic Ladies Islander','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png',NULL,'129','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png','129','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Ladies-Islander.png\",\"size\":\"full\",\"id\":129,\"alt\":\"Vionic Ladies Islander\",\"pixels\":40000,\"type\":\"image/png\"}',NULL,2,NULL,'2021-06-08 08:04:54','2021-06-08 10:30:46',1,NULL,NULL,NULL,NULL,0,NULL),(56,'https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg','72:a1c99e099807c9433963b27e5bf9575b',50,'post','attachment',1,0,NULL,NULL,'Dr Comfort wing chestnut shoe','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg',NULL,'50','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg','50','attachment-image','{\"width\":295,\"height\":213,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/wing-chestnut.jpg\",\"size\":\"full\",\"id\":50,\"alt\":\"Dr Comfort wing chestnut shoe\",\"pixels\":62835,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-06-08 08:06:25','2021-06-08 09:16:38',1,NULL,NULL,NULL,NULL,0,NULL),(63,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/','57:b64eb72f3bedf45606c7eb7ce7a02481',338,'post','page',1,0,NULL,'Prescription diabetic footwear can help you to prevent more serious foot health complications that can arise as a result of diabetes.','Dr Comfort diabetic footwear','publish',NULL,0,NULL,NULL,NULL,'Dr Comfort diabetic footwear',22,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,42,28,NULL,'2021-06-08 08:58:28','2021-06-15 10:59:54',1,NULL,NULL,NULL,NULL,0,2),(69,'https://podiatrist.capetown/wp-content/uploads/2021/06/Laura.jpg','64:5dc0e0f7e684264807a4fca70fc12b8b',29,'post','attachment',1,0,NULL,NULL,'Dr Comfort Laura shoes','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Laura.jpg',NULL,'29','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Laura.jpg','29','attachment-image','{\"width\":475,\"height\":311,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Laura.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Laura.jpg\",\"size\":\"full\",\"id\":29,\"alt\":\"Dr Comfort Laura shoes\",\"pixels\":147725,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:10:28','2021-06-08 09:16:38',1,NULL,NULL,NULL,NULL,0,NULL),(70,'https://podiatrist.capetown/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg','78:893881ceb1e0ed3a59c06f1f32eaf5eb',19,'post','attachment',1,0,NULL,NULL,'Dr Comfort Podiatrist classic black shoe','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg',NULL,'19','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg','19','attachment-image','{\"width\":295,\"height\":213,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg\",\"size\":\"full\",\"id\":19,\"alt\":\"Dr Comfort Podiatrist classic black shoe\",\"pixels\":62835,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:11:39','2021-06-08 09:16:38',1,NULL,NULL,NULL,NULL,0,NULL),(73,'https://podiatrist.capetown/revere-comfort-footwear/','52:7e69a2bee08f3be2a39ac43b65178b79',362,'post','page',1,0,'Revere comfort footwear provides all-day support for your tired aching feet','REVERE comfort sandals provide all-day comfort and support by enhancing foot health for those with heel pain or tired aching feet.','Revere comfort footwear','publish',NULL,0,NULL,NULL,NULL,'revere comfort footwear',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image','Revere sandals provide all-day comfort and support for your feet',NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,47,28,NULL,'2021-06-08 09:36:52','2021-06-15 12:59:15',1,NULL,NULL,NULL,NULL,0,2),(74,'https://podiatrist.capetown/wp-content/uploads/2021/06/Siena_Black_3_4.jpg','74:eafa4c100b806dfb48e39852cf625b62',136,'post','attachment',1,69,NULL,NULL,'Revere Siena_Black_3_4','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Siena_Black_3_4.jpg',NULL,'136','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Siena_Black_3_4.jpg','136','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Siena_Black_3_4.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Siena_Black_3_4.jpg\",\"size\":\"full\",\"id\":136,\"alt\":\"Revere Siena_Black_3_4\",\"pixels\":40000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:48:29','2021-06-08 10:08:03',1,NULL,NULL,NULL,NULL,0,NULL),(75,'https://podiatrist.capetown/wp-content/uploads/2021/06/REVERE-charlotte.png','75:89333367768e215be79ed8d434d901dc',135,'post','attachment',1,69,NULL,NULL,'REVERE charlotte','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/REVERE-charlotte.png',NULL,'135','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/REVERE-charlotte.png','135','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/REVERE-charlotte.png\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/REVERE-charlotte.png\",\"size\":\"full\",\"id\":135,\"alt\":\"REVERE charlotte\",\"pixels\":40000,\"type\":\"image/png\"}',NULL,1,NULL,'2021-06-08 09:49:16','2021-06-08 10:08:04',1,NULL,NULL,NULL,NULL,0,NULL),(76,'https://podiatrist.capetown/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg','74:0eef3516bfc7f6d43b59a2d445dab45a',123,'post','attachment',1,69,NULL,NULL,'Revere Genoa_Black_3_4','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg',NULL,'123','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg','123','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg\",\"size\":\"full\",\"id\":123,\"alt\":\"Revere Genoa_Black_3_4\",\"pixels\":40000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:49:42','2021-06-08 10:08:04',1,NULL,NULL,NULL,NULL,0,NULL),(77,'https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Bali.jpg','67:523bfcadf764a8ab2bbdf3c0f94f4a99',133,'post','attachment',1,69,NULL,NULL,'Revere Bali','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Bali.jpg',NULL,'133','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Bali.jpg','133','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Bali.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/REV-Bali.jpg\",\"size\":\"full\",\"id\":133,\"alt\":\"Revere Bali\",\"pixels\":40000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:50:20','2021-06-08 10:08:05',1,NULL,NULL,NULL,NULL,0,NULL),(78,'https://podiatrist.capetown/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg','80:50351656592116f9365733c21b2e7c0c',132,'post','attachment',1,69,NULL,NULL,'Revere Olympia_Gold Wash_3_4','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg',NULL,'132','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg','132','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg\",\"size\":\"full\",\"id\":132,\"alt\":\"Revere Olympia_Gold Wash_3_4\",\"pixels\":40000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:50:53','2021-06-08 10:08:05',1,NULL,NULL,NULL,NULL,0,NULL),(79,'https://podiatrist.capetown/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg','79:0406d03037c6a23e5a5ef6cc659b9814',130,'post','attachment',1,69,NULL,NULL,'Revere Malibu_Champagne_3_4','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg',NULL,'130','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg','130','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg\",\"size\":\"full\",\"id\":130,\"alt\":\"Revere Malibu_Champagne_3_4\",\"pixels\":40000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:51:39','2021-06-08 10:08:06',1,NULL,NULL,NULL,NULL,0,NULL),(80,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg','83:b85cb1b52d3b8f552d4749a3ce256b9c',125,'post','attachment',1,69,NULL,NULL,'Revere HD Miami Natural Snake 2','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg',NULL,'125','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg','125','attachment-image','{\"width\":200,\"height\":200,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg\",\"size\":\"full\",\"id\":125,\"alt\":\"Revere HD Miami Natural Snake 2\",\"pixels\":40000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 09:52:18','2021-06-08 10:08:07',1,NULL,NULL,NULL,NULL,0,NULL),(83,'https://podiatrist.capetown/ladies-orthotic-sandals/','52:b55f9d77386ce420fc781cb9e5f18bea',372,'post','page',1,0,'Vionic ladies orthotic sandals help you to reduce common foot pains','Vionic ladies orthotic sandal breakthrough technology helps to reduce common foot pains associated with over-pronation and plantar fasciitis.','Vionic ladies orthotic sandals','publish',NULL,0,NULL,NULL,NULL,'vionic ladies orthotic sandals',60,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,2,32,NULL,'2021-06-08 10:15:31','2021-06-15 12:59:15',1,NULL,NULL,NULL,NULL,0,2),(84,'https://podiatrist.capetown/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg','79:f701248607c38aa074aaa1e5d6e52af3',122,'post','attachment',1,69,NULL,NULL,'Vionic Bella Toepost Sandal','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg',NULL,'122','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg','122','attachment-image','{\"width\":1200,\"height\":690,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg\",\"size\":\"full\",\"id\":122,\"alt\":\"Vionic Bella Toepost Sandal\",\"pixels\":828000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 10:25:50','2021-06-08 10:30:46',1,NULL,NULL,NULL,NULL,0,NULL),(90,'https://podiatrist.capetown/vasyli-medical-orthotics/','53:9934dd93f075b6ba84e00b05d7e17cfb',390,'post','page',1,0,'Vasyli medical orthotics are the latest generation - %%sitename%%','Vasyli are passionate about what they do. Over 25 years of development brings you the very latest generation heat custom orthotic solutions.','Vasyli medical orthotics','publish',NULL,0,NULL,NULL,NULL,'vasyli medical orthotics',51,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,37,28,NULL,'2021-06-08 10:58:09','2021-06-15 12:59:15',1,NULL,NULL,NULL,NULL,0,2),(91,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg','79:be44d14bffbddab358f5b35c529f599d',39,'post','attachment',1,0,NULL,NULL,'Armstrong shoe insert','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg',NULL,'39','attachment-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg','39','attachment-image','{\"width\":170,\"height\":170,\"url\":\"https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg\",\"path\":\"/home/podct/public_html/wp-content/uploads/2021/06/product_armstrong_tn.jpg\",\"size\":\"full\",\"id\":39,\"alt\":\"Armstrong shoe insert\",\"pixels\":28900,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-06-08 11:07:50','2021-06-08 11:07:50',1,NULL,NULL,NULL,NULL,0,NULL),(93,'https://podiatrist.capetown/contact-andy-blecher/','49:5c417016a1d44327754d6b303e402243',395,'post','page',1,0,'Contact %%sitename%%',NULL,'Contact Andy Blecher','publish',NULL,0,NULL,NULL,NULL,'contact andy blecher',47,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,37,29,NULL,'2021-06-08 15:06:24','2021-06-15 12:59:15',1,NULL,NULL,NULL,NULL,0,2),(98,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-10 04:21:12','2021-06-10 02:21:12',1,NULL,NULL,NULL,NULL,0,NULL),(99,'https://podiatrist.capetown/interesting-podiatry-articles/','58:fdbfecfcbca9cfdf16588b00d011f67a',417,'post','page',1,0,'Interesting podiatry articles - Andy Blecher Podiatrist','Thought-provoking articles on laser fungal treatment and the handling of diabetic conditions.','Interesting podiatry articles','publish',NULL,0,NULL,NULL,NULL,'podiatry articles',44,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',NULL,'first-content-image',NULL,40,28,NULL,'2021-06-10 10:38:56','2021-06-15 12:59:16',1,NULL,NULL,NULL,NULL,0,2),(101,'https://podiatrist.capetown/?p=425','34:088e9ae284005a99101ab4bd26aaf9a5',425,'post','nav_menu_item',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-11 09:25:39','2021-06-11 07:25:39',1,NULL,NULL,NULL,NULL,0,NULL),(102,'https://podiatrist.capetown/2021/06/11/contact-andy/','52:e8bec665da938b4be7491e50c3c70f5e',426,'post','nav_menu_item',1,0,NULL,NULL,'Contact Andy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:41','2021-06-11 07:31:37',1,NULL,NULL,NULL,NULL,0,NULL),(103,'https://podiatrist.capetown/2021/06/11/427/','43:45735686693bf5d6867ddfc9caab43fd',427,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:44','2021-06-11 07:31:30',1,NULL,NULL,NULL,NULL,0,NULL),(104,'https://podiatrist.capetown/2021/06/11/fields-of-interest/','58:3066b7b2f3aeeddc723f622f7a938cab',428,'post','nav_menu_item',1,0,NULL,NULL,'Fields of Interest','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:46','2021-06-11 07:31:25',1,NULL,NULL,NULL,NULL,0,NULL),(105,'https://podiatrist.capetown/2021/06/11/about-andy/','50:c502476134f2d90c0026da9b305f9da3',429,'post','nav_menu_item',1,0,NULL,NULL,'About Andy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:47','2021-06-11 07:31:24',1,NULL,NULL,NULL,NULL,0,NULL),(106,'https://podiatrist.capetown/2021/06/11/interesting-articles/','60:906f9045b540c811c6c1f63718090122',430,'post','nav_menu_item',1,0,NULL,NULL,'Interesting articles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:48','2021-06-11 07:31:26',1,NULL,NULL,NULL,NULL,0,NULL),(107,'https://podiatrist.capetown/2021/06/11/home/','44:7d1b59eebcbec34335a14818b679341a',431,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:50','2021-06-11 07:31:22',1,NULL,NULL,NULL,NULL,0,NULL),(108,'https://podiatrist.capetown/2021/06/11/432/','43:2227a6c30892cec0aa71d1ae7e640241',432,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:52','2021-06-11 07:31:36',1,NULL,NULL,NULL,NULL,0,NULL),(109,'https://podiatrist.capetown/2021/06/11/medical-footwear/','56:3c25c6d1e89c110d5b8866e24d9af38d',433,'post','nav_menu_item',1,0,NULL,NULL,'Medical footwear','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:52','2021-06-11 07:31:27',1,NULL,NULL,NULL,NULL,0,NULL),(110,'https://podiatrist.capetown/2021/06/11/434/','43:96f5c928d21ac6339847f25ec6e0ae8b',434,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:54','2021-06-11 07:31:32',1,NULL,NULL,NULL,NULL,0,NULL),(111,'https://podiatrist.capetown/2021/06/11/435/','43:37bc637a0ba6a766836e58b603ed4fb7',435,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-11 09:25:56','2021-06-11 07:31:33',1,NULL,NULL,NULL,NULL,0,NULL),(125,'https://podiatrist.capetown/wp-content/uploads/2021/06/iTour-Logo-Footer.png','76:5915254d5fb954ce6decb7acfb3da92e',487,'post','attachment',1,0,NULL,NULL,'iTour-Logo-Footer.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://podiatrist.capetown/wp-content/uploads/2021/06/iTour-Logo-Footer.png',NULL,'487','attachment-image',NULL,NULL,NULL,'487','attachment-image',NULL,NULL,NULL,NULL,'2021-06-12 12:14:30','2021-06-12 10:14:30',1,NULL,NULL,NULL,NULL,0,NULL),(134,'https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf','109:535f6aa8401b4dcb48191e35595adcd4',547,'post','attachment',1,0,NULL,NULL,'Constantiaberg Hospital Diabetic education forum','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2021-06-13 18:42:33','2021-06-13 19:11:24',1,NULL,NULL,NULL,NULL,0,NULL),(135,'https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf','79:0cdcaf31674cc221cf5a8a3eb64b1417',548,'post','attachment',1,0,NULL,NULL,'Total Contact Cast','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2021-06-13 18:42:39','2021-06-13 19:11:24',1,NULL,NULL,NULL,NULL,0,NULL),(136,'https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf','82:aa9bbf0d9882096d6cf242307a778989',549,'post','attachment',1,0,NULL,NULL,'Diabetes and the foot','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2021-06-13 18:42:41','2021-06-13 19:11:24',1,NULL,NULL,NULL,NULL,0,NULL),(137,'https://podiatrist.capetown/wp-content/uploads/2021/06/Laser-treatment-for-nail-fungus-1.pdf','92:f9331834c3f3e46523279ffc254f5e8a',550,'post','attachment',1,0,NULL,NULL,'Laser treatment for nail fungus','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2021-06-13 18:42:44','2021-06-13 19:11:24',1,NULL,NULL,NULL,NULL,0,NULL),(140,'https://podiatrist.capetown/?p=561','34:a918ff927e3091f2e7555221eeddb5e1',561,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-13 19:17:27','2021-06-13 17:17:27',1,NULL,NULL,NULL,NULL,0,NULL),(151,'https://podiatrist.capetown/?elementor_snippet=google-meta-tag','62:66dbb7295697bc586c120017040b5652',613,'post','elementor_snippet',1,0,NULL,NULL,'Google Meta Tag','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-14 11:58:04','2021-06-14 09:58:09',1,NULL,NULL,NULL,NULL,0,NULL),(162,NULL,NULL,638,'post',NULL,NULL,NULL,NULL,NULL,NULL,'unindexed',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-06-21 10:52:17','2021-06-21 08:52:17',1,NULL,NULL,NULL,NULL,0,NULL),(163,'https://podiatrist.capetown/author/','35:308a1cf1ffeb89afc31f5b163287c49e',NULL,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-06-21 10:52:17','2021-06-21 08:52:17',1,NULL,NULL,NULL,NULL,0,NULL),(171,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=646','62:eccfa443e52ee0b202499ee3853e0d28',646,'post','wphb_minify_group',0,0,NULL,NULL,'3546edd2de00905ab185891f61276f70-styles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-21 10:53:20','2021-06-21 08:53:21',1,NULL,NULL,NULL,NULL,0,NULL),(172,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=647','62:46a83e6d9fb5b42be1c12dbac7f7e347',647,'post','wphb_minify_group',0,0,NULL,NULL,'988837da4dccea165c80f8e5bf934a02-scripts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-06-21 10:53:23','2021-06-21 08:53:24',1,NULL,NULL,NULL,NULL,0,NULL),(173,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=648','62:e61848f03f6362ba19a51bca55af4dca',648,'post','wphb_minify_group',0,0,NULL,NULL,'d8417bd145bb1a2743adc4d247995e99-scripts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-21 10:53:26','2021-06-21 08:53:26',1,NULL,NULL,NULL,NULL,0,NULL),(174,'https://podiatrist.capetown/?post_type=wphb_minify_group&p=649','62:b01a0b43a875ba146050aca98c60923d',649,'post','wphb_minify_group',0,0,NULL,NULL,'90d383da512d4e53a784ab83ae99177e-scripts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-06-21 10:53:28','2021-06-21 08:53:29',1,NULL,NULL,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (1,0,0,1),(2,0,0,1),(3,0,0,1),(4,0,0,1),(6,0,0,1),(7,6,1,1),(11,0,0,1),(15,0,0,1),(19,0,0,1),(34,15,1,1),(35,0,0,1),(38,0,0,1),(39,6,1,1),(40,6,1,1),(43,0,0,1),(44,0,0,1),(48,0,0,1),(49,0,0,1),(50,0,0,1),(52,0,0,1),(53,6,1,1),(54,0,0,1),(55,6,1,1),(56,0,0,1),(63,0,0,1),(67,0,0,1),(68,0,0,1),(69,0,0,1),(70,0,0,1),(73,0,0,1),(74,6,1,1),(75,6,1,1),(76,6,1,1),(77,6,1,1),(78,6,1,1),(79,6,1,1),(80,6,1,1),(83,0,0,1),(84,6,1,1),(90,0,0,1),(91,0,0,1),(93,0,0,1),(96,0,0,1),(98,0,0,1),(99,0,0,1),(101,0,0,1),(102,0,0,1),(103,0,0,1),(104,0,0,1),(105,0,0,1),(106,0,0,1),(107,0,0,1),(108,0,0,1),(109,0,0,1),(110,0,0,1),(111,0,0,1),(125,0,0,1),(134,0,0,1),(135,0,0,1),(136,0,0,1),(137,0,0,1),(140,0,0,1),(151,0,0,1),(168,0,0,1),(170,0,0,1),(171,0,0,1),(172,0,0,1),(173,0,0,1),(174,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `wp_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

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

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=5839 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (611,'https://www.podiatristandyblecher.co.za/medical-footwear/dr-comfort-shoes/',311,NULL,'external',50,NULL,NULL,NULL,NULL,NULL,NULL),(612,'https://www.podiatristandyblecher.co.za/medical-footwear/revere-comfort-shoes/',311,NULL,'external',50,NULL,NULL,NULL,NULL,NULL,NULL),(613,'https://www.podiatristandyblecher.co.za/medical-footwear/vasyli-orthotics/',311,NULL,'external',50,NULL,NULL,NULL,NULL,NULL,NULL),(614,'https://www.podiatristandyblecher.co.za/medical-footwear/vionic-sandals/',311,NULL,'external',50,NULL,NULL,NULL,NULL,NULL,NULL),(615,'https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg',311,50,'image-in',50,56,213,295,35862,NULL,NULL),(616,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg',311,126,'image-in',50,53,200,200,19575,NULL,NULL),(617,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg',311,40,'image-in',50,54,170,170,5807,NULL,NULL),(618,'https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png',311,129,'image-in',50,55,200,200,19958,NULL,NULL),(1863,'https://podiatrist.capetown/registered-podiatrist/',69,193,'internal',6,15,NULL,NULL,NULL,NULL,NULL),(1864,'https://podiatrist.capetown/diabetic-foot/',69,271,'internal',6,43,NULL,NULL,NULL,NULL,NULL),(1865,'https://podiatrist.capetown/interesting-podiatric-articles/',69,417,'internal',6,99,NULL,NULL,NULL,NULL,NULL),(1866,'https://podiatrist.capetown/medical-footwear/',69,311,'internal',6,50,NULL,NULL,NULL,NULL,NULL),(1867,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',69,338,'internal',6,63,NULL,NULL,NULL,NULL,NULL),(1868,'https://podiatrist.capetown/revere-comfort-sandals/',69,362,'internal',6,73,NULL,NULL,NULL,NULL,NULL),(1869,'https://podiatrist.capetown/vasyli-medical-orthotics/',69,390,'internal',6,90,NULL,NULL,NULL,NULL,NULL),(1870,'https://podiatrist.capetown/ladies-orthotic-sandals/',69,372,'internal',6,83,NULL,NULL,NULL,NULL,NULL),(1871,'https://podiatrist.capetown/contact-andy-blecher/',69,395,'internal',6,93,NULL,NULL,NULL,NULL,NULL),(1872,'https://podiatrist.capetown/registered-podiatrist/',69,193,'internal',6,15,NULL,NULL,NULL,NULL,NULL),(1873,'https://podiatrist.capetown/diabetic-foot/',69,271,'internal',6,43,NULL,NULL,NULL,NULL,NULL),(1874,'https://podiatrist.capetown/interesting-podiatric-articles/',69,417,'internal',6,99,NULL,NULL,NULL,NULL,NULL),(1875,'https://podiatrist.capetown/medical-footwear/',69,311,'internal',6,50,NULL,NULL,NULL,NULL,NULL),(1876,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',69,338,'internal',6,63,NULL,NULL,NULL,NULL,NULL),(1877,'https://podiatrist.capetown/revere-comfort-sandals/',69,362,'internal',6,73,NULL,NULL,NULL,NULL,NULL),(1878,'https://podiatrist.capetown/vasyli-medical-orthotics/',69,390,'internal',6,90,NULL,NULL,NULL,NULL,NULL),(1879,'https://podiatrist.capetown/ladies-orthotic-sandals/',69,372,'internal',6,83,NULL,NULL,NULL,NULL,NULL),(1880,'https://podiatrist.capetown/contact-andy-blecher/',69,395,'internal',6,93,NULL,NULL,NULL,NULL,NULL),(1881,'https://www.podiatrist.capetown/diabetic-foot/',69,NULL,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(1882,'https://podiatrist.capetown/contact-andy-blecher/',69,395,'internal',6,93,NULL,NULL,NULL,NULL,NULL),(1883,'mailto:andyblecherpodiatrist@gmail.com',69,NULL,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(1884,'https://podiatrist.capetown',69,11,'internal',6,2,NULL,NULL,NULL,NULL,NULL),(1885,'https://podiatrist.capetown/registered-podiatrist/',69,193,'internal',6,15,NULL,NULL,NULL,NULL,NULL),(1886,'https://podiatrist.capetown/diabetic-foot/',69,271,'internal',6,43,NULL,NULL,NULL,NULL,NULL),(1887,'https://podiatrist.capetown/interesting-podiatric-articles/',69,417,'internal',6,99,NULL,NULL,NULL,NULL,NULL),(1888,'https://podiatrist.capetown/medical-footwear/',69,311,'internal',6,50,NULL,NULL,NULL,NULL,NULL),(1889,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',69,338,'internal',6,63,NULL,NULL,NULL,NULL,NULL),(1890,'https://podiatrist.capetown/revere-comfort-sandals/',69,362,'internal',6,73,NULL,NULL,NULL,NULL,NULL),(1891,'https://podiatrist.capetown/vasyli-medical-orthotics/',69,390,'internal',6,90,NULL,NULL,NULL,NULL,NULL),(1892,'https://podiatrist.capetown/ladies-orthotic-sandals/',69,372,'internal',6,83,NULL,NULL,NULL,NULL,NULL),(1893,'https://podiatrist.capetown/contact-andy-blecher/',69,395,'internal',6,93,NULL,NULL,NULL,NULL,NULL),(1894,'https://podiatrist.capetown/registered-podiatrist/',69,193,'internal',6,15,NULL,NULL,NULL,NULL,NULL),(1895,'https://podiatrist.capetown/diabetic-foot/',69,271,'internal',6,43,NULL,NULL,NULL,NULL,NULL),(1896,'https://podiatrist.capetown/interesting-podiatric-articles/',69,417,'internal',6,99,NULL,NULL,NULL,NULL,NULL),(1897,'https://podiatrist.capetown/medical-footwear/',69,311,'internal',6,50,NULL,NULL,NULL,NULL,NULL),(1898,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',69,338,'internal',6,63,NULL,NULL,NULL,NULL,NULL),(1899,'https://podiatrist.capetown/revere-comfort-sandals/',69,362,'internal',6,73,NULL,NULL,NULL,NULL,NULL),(1900,'https://podiatrist.capetown/vasyli-medical-orthotics/',69,390,'internal',6,90,NULL,NULL,NULL,NULL,NULL),(1901,'https://podiatrist.capetown/ladies-orthotic-sandals/',69,372,'internal',6,83,NULL,NULL,NULL,NULL,NULL),(1902,'https://podiatrist.capetown/contact-andy-blecher/',69,395,'internal',6,93,NULL,NULL,NULL,NULL,NULL),(1903,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',69,16,'image-in',6,3,509,1621,202049,NULL,NULL),(1904,'https://podiatrist.capetown/wp-content/uploads/2021/06/Happy-feet-cropped-251x300.jpg',69,25,'image-in',6,38,676,566,227940,NULL,NULL),(1905,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-Laser-logo.png',69,148,'image-in',6,40,102,140,3269,NULL,NULL),(1906,'https://podiatrist.capetown/wp-content/uploads/2021/06/Neo-V-aser.jpg',69,141,'image-in',6,39,246,325,18944,NULL,NULL),(1907,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg',69,87,'image-in',6,7,100,80,4102,NULL,NULL),(1908,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',69,16,'image-in',6,3,509,1621,202049,NULL,NULL),(2189,'https://podiatrist.capetown/andy-blecher-podiatrist/',395,69,'internal',93,6,NULL,NULL,NULL,NULL,NULL),(2190,'https://podiatrist.capetown/registered-podiatrist/',395,193,'internal',93,15,NULL,NULL,NULL,NULL,NULL),(2191,'https://podiatrist.capetown/diabetic-foot/',395,271,'internal',93,43,NULL,NULL,NULL,NULL,NULL),(2192,'https://podiatrist.capetown/interesting-podiatric-articles/',395,417,'internal',93,99,NULL,NULL,NULL,NULL,NULL),(2193,'https://podiatrist.capetown/medical-footwear/',395,311,'internal',93,50,NULL,NULL,NULL,NULL,NULL),(2194,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',395,338,'internal',93,63,NULL,NULL,NULL,NULL,NULL),(2195,'https://podiatrist.capetown/revere-comfort-sandals/',395,362,'internal',93,73,NULL,NULL,NULL,NULL,NULL),(2196,'https://podiatrist.capetown/vasyli-medical-orthotics/',395,390,'internal',93,90,NULL,NULL,NULL,NULL,NULL),(2197,'https://podiatrist.capetown/ladies-orthotic-sandals/',395,372,'internal',93,83,NULL,NULL,NULL,NULL,NULL),(2198,'https://podiatrist.capetown/andy-blecher-podiatrist/',395,69,'internal',93,6,NULL,NULL,NULL,NULL,NULL),(2199,'https://podiatrist.capetown/registered-podiatrist/',395,193,'internal',93,15,NULL,NULL,NULL,NULL,NULL),(2200,'https://podiatrist.capetown/diabetic-foot/',395,271,'internal',93,43,NULL,NULL,NULL,NULL,NULL),(2201,'https://podiatrist.capetown/interesting-podiatric-articles/',395,417,'internal',93,99,NULL,NULL,NULL,NULL,NULL),(2202,'https://podiatrist.capetown/medical-footwear/',395,311,'internal',93,50,NULL,NULL,NULL,NULL,NULL),(2203,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',395,338,'internal',93,63,NULL,NULL,NULL,NULL,NULL),(2204,'https://podiatrist.capetown/revere-comfort-sandals/',395,362,'internal',93,73,NULL,NULL,NULL,NULL,NULL),(2205,'https://podiatrist.capetown/vasyli-medical-orthotics/',395,390,'internal',93,90,NULL,NULL,NULL,NULL,NULL),(2206,'https://podiatrist.capetown/ladies-orthotic-sandals/',395,372,'internal',93,83,NULL,NULL,NULL,NULL,NULL),(2207,'mailto:andy.blecher705@gmail.com',395,NULL,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(2208,'https://podiatrist.capetown',395,11,'internal',93,2,NULL,NULL,NULL,NULL,NULL),(2209,'https://podiatrist.capetown/andy-blecher-podiatrist/',395,69,'internal',93,6,NULL,NULL,NULL,NULL,NULL),(2210,'https://podiatrist.capetown/registered-podiatrist/',395,193,'internal',93,15,NULL,NULL,NULL,NULL,NULL),(2211,'https://podiatrist.capetown/diabetic-foot/',395,271,'internal',93,43,NULL,NULL,NULL,NULL,NULL),(2212,'https://podiatrist.capetown/interesting-podiatric-articles/',395,417,'internal',93,99,NULL,NULL,NULL,NULL,NULL),(2213,'https://podiatrist.capetown/medical-footwear/',395,311,'internal',93,50,NULL,NULL,NULL,NULL,NULL),(2214,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',395,338,'internal',93,63,NULL,NULL,NULL,NULL,NULL),(2215,'https://podiatrist.capetown/revere-comfort-sandals/',395,362,'internal',93,73,NULL,NULL,NULL,NULL,NULL),(2216,'https://podiatrist.capetown/vasyli-medical-orthotics/',395,390,'internal',93,90,NULL,NULL,NULL,NULL,NULL),(2217,'https://podiatrist.capetown/ladies-orthotic-sandals/',395,372,'internal',93,83,NULL,NULL,NULL,NULL,NULL),(2218,'https://podiatrist.capetown/andy-blecher-podiatrist/',395,69,'internal',93,6,NULL,NULL,NULL,NULL,NULL),(2219,'https://podiatrist.capetown/registered-podiatrist/',395,193,'internal',93,15,NULL,NULL,NULL,NULL,NULL),(2220,'https://podiatrist.capetown/diabetic-foot/',395,271,'internal',93,43,NULL,NULL,NULL,NULL,NULL),(2221,'https://podiatrist.capetown/interesting-podiatric-articles/',395,417,'internal',93,99,NULL,NULL,NULL,NULL,NULL),(2222,'https://podiatrist.capetown/medical-footwear/',395,311,'internal',93,50,NULL,NULL,NULL,NULL,NULL),(2223,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',395,338,'internal',93,63,NULL,NULL,NULL,NULL,NULL),(2224,'https://podiatrist.capetown/revere-comfort-sandals/',395,362,'internal',93,73,NULL,NULL,NULL,NULL,NULL),(2225,'https://podiatrist.capetown/vasyli-medical-orthotics/',395,390,'internal',93,90,NULL,NULL,NULL,NULL,NULL),(2226,'https://podiatrist.capetown/ladies-orthotic-sandals/',395,372,'internal',93,83,NULL,NULL,NULL,NULL,NULL),(2227,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',395,16,'image-in',93,3,509,1621,202049,NULL,NULL),(2228,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',395,16,'image-in',93,3,509,1621,202049,NULL,NULL),(2666,'https://podiatrist.capetown/andy-blecher-podiatrist/',193,69,'internal',15,6,NULL,NULL,NULL,NULL,NULL),(2667,'https://podiatrist.capetown/diabetic-foot/',193,271,'internal',15,43,NULL,NULL,NULL,NULL,NULL),(2668,'https://podiatrist.capetown/interesting-podiatric-articles/',193,417,'internal',15,99,NULL,NULL,NULL,NULL,NULL),(2669,'https://podiatrist.capetown/medical-footwear/',193,311,'internal',15,50,NULL,NULL,NULL,NULL,NULL),(2670,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',193,338,'internal',15,63,NULL,NULL,NULL,NULL,NULL),(2671,'https://podiatrist.capetown/revere-comfort-sandals/',193,362,'internal',15,73,NULL,NULL,NULL,NULL,NULL),(2672,'https://podiatrist.capetown/vasyli-medical-orthotics/',193,390,'internal',15,90,NULL,NULL,NULL,NULL,NULL),(2673,'https://podiatrist.capetown/ladies-orthotic-sandals/',193,372,'internal',15,83,NULL,NULL,NULL,NULL,NULL),(2674,'https://podiatrist.capetown/contact-andy-blecher/',193,395,'internal',15,93,NULL,NULL,NULL,NULL,NULL),(2675,'https://podiatrist.capetown/andy-blecher-podiatrist/',193,69,'internal',15,6,NULL,NULL,NULL,NULL,NULL),(2676,'https://podiatrist.capetown/diabetic-foot/',193,271,'internal',15,43,NULL,NULL,NULL,NULL,NULL),(2677,'https://podiatrist.capetown/interesting-podiatric-articles/',193,417,'internal',15,99,NULL,NULL,NULL,NULL,NULL),(2678,'https://podiatrist.capetown/medical-footwear/',193,311,'internal',15,50,NULL,NULL,NULL,NULL,NULL),(2679,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',193,338,'internal',15,63,NULL,NULL,NULL,NULL,NULL),(2680,'https://podiatrist.capetown/revere-comfort-sandals/',193,362,'internal',15,73,NULL,NULL,NULL,NULL,NULL),(2681,'https://podiatrist.capetown/vasyli-medical-orthotics/',193,390,'internal',15,90,NULL,NULL,NULL,NULL,NULL),(2682,'https://podiatrist.capetown/ladies-orthotic-sandals/',193,372,'internal',15,83,NULL,NULL,NULL,NULL,NULL),(2683,'https://podiatrist.capetown/contact-andy-blecher/',193,395,'internal',15,93,NULL,NULL,NULL,NULL,NULL),(2684,'http://www.podiatrist.co.za/',193,NULL,'external',15,NULL,NULL,NULL,NULL,NULL,NULL),(2685,'http://www.hpcsa.co.za/',193,NULL,'external',15,NULL,NULL,NULL,NULL,NULL,NULL),(2686,'https://sweetlife.org.za/',193,NULL,'external',15,NULL,NULL,NULL,NULL,NULL,NULL),(2687,'https://podiatrist.capetown',193,11,'internal',15,2,NULL,NULL,NULL,NULL,NULL),(2688,'https://podiatrist.capetown/andy-blecher-podiatrist/',193,69,'internal',15,6,NULL,NULL,NULL,NULL,NULL),(2689,'https://podiatrist.capetown/diabetic-foot/',193,271,'internal',15,43,NULL,NULL,NULL,NULL,NULL),(2690,'https://podiatrist.capetown/interesting-podiatric-articles/',193,417,'internal',15,99,NULL,NULL,NULL,NULL,NULL),(2691,'https://podiatrist.capetown/medical-footwear/',193,311,'internal',15,50,NULL,NULL,NULL,NULL,NULL),(2692,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',193,338,'internal',15,63,NULL,NULL,NULL,NULL,NULL),(2693,'https://podiatrist.capetown/revere-comfort-sandals/',193,362,'internal',15,73,NULL,NULL,NULL,NULL,NULL),(2694,'https://podiatrist.capetown/vasyli-medical-orthotics/',193,390,'internal',15,90,NULL,NULL,NULL,NULL,NULL),(2695,'https://podiatrist.capetown/ladies-orthotic-sandals/',193,372,'internal',15,83,NULL,NULL,NULL,NULL,NULL),(2696,'https://podiatrist.capetown/contact-andy-blecher/',193,395,'internal',15,93,NULL,NULL,NULL,NULL,NULL),(2697,'https://podiatrist.capetown/andy-blecher-podiatrist/',193,69,'internal',15,6,NULL,NULL,NULL,NULL,NULL),(2698,'https://podiatrist.capetown/diabetic-foot/',193,271,'internal',15,43,NULL,NULL,NULL,NULL,NULL),(2699,'https://podiatrist.capetown/interesting-podiatric-articles/',193,417,'internal',15,99,NULL,NULL,NULL,NULL,NULL),(2700,'https://podiatrist.capetown/medical-footwear/',193,311,'internal',15,50,NULL,NULL,NULL,NULL,NULL),(2701,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',193,338,'internal',15,63,NULL,NULL,NULL,NULL,NULL),(2702,'https://podiatrist.capetown/revere-comfort-sandals/',193,362,'internal',15,73,NULL,NULL,NULL,NULL,NULL),(2703,'https://podiatrist.capetown/vasyli-medical-orthotics/',193,390,'internal',15,90,NULL,NULL,NULL,NULL,NULL),(2704,'https://podiatrist.capetown/ladies-orthotic-sandals/',193,372,'internal',15,83,NULL,NULL,NULL,NULL,NULL),(2705,'https://podiatrist.capetown/contact-andy-blecher/',193,395,'internal',15,93,NULL,NULL,NULL,NULL,NULL),(2706,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',193,16,'image-in',15,3,509,1621,202049,NULL,NULL),(2707,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-Blecher-podiatrist.jpg',193,87,'image-in',15,7,100,80,4102,NULL,NULL),(2708,'https://podiatrist.capetown/wp-content/uploads/2021/06/pasa-logo.png',193,36,'image-in',15,35,183,200,30395,NULL,NULL),(2709,'https://podiatrist.capetown/wp-content/uploads/2021/06/Sweet-Life-logo.png',193,227,'image-in',15,34,66,210,11058,NULL,NULL),(2710,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',193,16,'image-in',15,3,509,1621,202049,NULL,NULL),(3778,'https://podiatrist.capetown/',271,NULL,'internal',43,4,NULL,NULL,NULL,NULL,NULL),(3779,'https://podiatrist.capetown/registered-podiatrist/',271,193,'internal',43,15,NULL,NULL,NULL,NULL,NULL),(3780,'https://podiatrist.capetown/interesting-podiatry-articles/',271,417,'internal',43,99,NULL,NULL,NULL,NULL,NULL),(3781,'https://podiatrist.capetown/medical-footwear/',271,311,'internal',43,50,NULL,NULL,NULL,NULL,NULL),(3782,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',271,338,'internal',43,63,NULL,NULL,NULL,NULL,NULL),(3783,'https://podiatrist.capetown/revere-comfort-sandals/',271,362,'internal',43,73,NULL,NULL,NULL,NULL,NULL),(3784,'https://podiatrist.capetown/vasyli-medical-orthotics/',271,390,'internal',43,90,NULL,NULL,NULL,NULL,NULL),(3785,'https://podiatrist.capetown/ladies-orthotic-sandals/',271,372,'internal',43,83,NULL,NULL,NULL,NULL,NULL),(3786,'https://podiatrist.capetown/contact-andy-blecher/',271,395,'internal',43,93,NULL,NULL,NULL,NULL,NULL),(3787,'https://podiatrist.capetown/',271,NULL,'internal',43,4,NULL,NULL,NULL,NULL,NULL),(3788,'https://podiatrist.capetown/registered-podiatrist/',271,193,'internal',43,15,NULL,NULL,NULL,NULL,NULL),(3789,'https://podiatrist.capetown/interesting-podiatry-articles/',271,417,'internal',43,99,NULL,NULL,NULL,NULL,NULL),(3790,'https://podiatrist.capetown/medical-footwear/',271,311,'internal',43,50,NULL,NULL,NULL,NULL,NULL),(3791,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',271,338,'internal',43,63,NULL,NULL,NULL,NULL,NULL),(3792,'https://podiatrist.capetown/revere-comfort-sandals/',271,362,'internal',43,73,NULL,NULL,NULL,NULL,NULL),(3793,'https://podiatrist.capetown/vasyli-medical-orthotics/',271,390,'internal',43,90,NULL,NULL,NULL,NULL,NULL),(3794,'https://podiatrist.capetown/ladies-orthotic-sandals/',271,372,'internal',43,83,NULL,NULL,NULL,NULL,NULL),(3795,'https://podiatrist.capetown/contact-andy-blecher/',271,395,'internal',43,93,NULL,NULL,NULL,NULL,NULL),(3796,'https://podiatrist.capetown/interesting-articles/',271,NULL,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(3797,'https://wound.capetown',271,NULL,'external',43,NULL,NULL,NULL,NULL,NULL,NULL),(3798,'https://podiatrist.capetown/',271,NULL,'internal',43,4,NULL,NULL,NULL,NULL,NULL),(3799,'https://podiatrist.capetown/registered-podiatrist/',271,193,'internal',43,15,NULL,NULL,NULL,NULL,NULL),(3800,'https://podiatrist.capetown/interesting-podiatry-articles/',271,417,'internal',43,99,NULL,NULL,NULL,NULL,NULL),(3801,'https://podiatrist.capetown/medical-footwear/',271,311,'internal',43,50,NULL,NULL,NULL,NULL,NULL),(3802,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',271,338,'internal',43,63,NULL,NULL,NULL,NULL,NULL),(3803,'https://podiatrist.capetown/revere-comfort-sandals/',271,362,'internal',43,73,NULL,NULL,NULL,NULL,NULL),(3804,'https://podiatrist.capetown/vasyli-medical-orthotics/',271,390,'internal',43,90,NULL,NULL,NULL,NULL,NULL),(3805,'https://podiatrist.capetown/ladies-orthotic-sandals/',271,372,'internal',43,83,NULL,NULL,NULL,NULL,NULL),(3806,'https://podiatrist.capetown/contact-andy-blecher/',271,395,'internal',43,93,NULL,NULL,NULL,NULL,NULL),(3807,'https://podiatrist.capetown/',271,NULL,'internal',43,4,NULL,NULL,NULL,NULL,NULL),(3808,'https://podiatrist.capetown/registered-podiatrist/',271,193,'internal',43,15,NULL,NULL,NULL,NULL,NULL),(3809,'https://podiatrist.capetown/interesting-podiatry-articles/',271,417,'internal',43,99,NULL,NULL,NULL,NULL,NULL),(3810,'https://podiatrist.capetown/medical-footwear/',271,311,'internal',43,50,NULL,NULL,NULL,NULL,NULL),(3811,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',271,338,'internal',43,63,NULL,NULL,NULL,NULL,NULL),(3812,'https://podiatrist.capetown/revere-comfort-sandals/',271,362,'internal',43,73,NULL,NULL,NULL,NULL,NULL),(3813,'https://podiatrist.capetown/vasyli-medical-orthotics/',271,390,'internal',43,90,NULL,NULL,NULL,NULL,NULL),(3814,'https://podiatrist.capetown/ladies-orthotic-sandals/',271,372,'internal',43,83,NULL,NULL,NULL,NULL,NULL),(3815,'https://podiatrist.capetown/contact-andy-blecher/',271,395,'internal',43,93,NULL,NULL,NULL,NULL,NULL),(3816,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',271,16,'image-in',43,3,509,1621,202049,NULL,NULL),(3817,'https://podiatrist.capetown/wp-content/uploads/2021/06/DFWG-logo.jpg',271,21,'image-in',43,48,122,234,27022,NULL,NULL),(3818,'https://podiatrist.capetown/wp-content/uploads/2021/06/CAWCC-pic.jpg',271,18,'image-in',43,49,583,871,64084,NULL,NULL),(3819,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',271,16,'image-in',43,3,509,1621,202049,NULL,NULL),(4499,'https://podiatrist.capetown/',417,NULL,'internal',99,4,NULL,NULL,NULL,NULL,NULL),(4500,'https://podiatrist.capetown/registered-podiatrist/',417,193,'internal',99,15,NULL,NULL,NULL,NULL,NULL),(4501,'https://podiatrist.capetown/diabetic-foot/',417,271,'internal',99,43,NULL,NULL,NULL,NULL,NULL),(4502,'https://podiatrist.capetown/medical-footwear/',417,311,'internal',99,50,NULL,NULL,NULL,NULL,NULL),(4503,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',417,338,'internal',99,63,NULL,NULL,NULL,NULL,NULL),(4504,'https://podiatrist.capetown/revere-comfort-sandals/',417,362,'internal',99,73,NULL,NULL,NULL,NULL,NULL),(4505,'https://podiatrist.capetown/vasyli-medical-orthotics/',417,390,'internal',99,90,NULL,NULL,NULL,NULL,NULL),(4506,'https://podiatrist.capetown/ladies-orthotic-sandals/',417,372,'internal',99,83,NULL,NULL,NULL,NULL,NULL),(4507,'https://podiatrist.capetown/contact-andy-blecher/',417,395,'internal',99,93,NULL,NULL,NULL,NULL,NULL),(4508,'https://podiatrist.capetown/',417,NULL,'internal',99,4,NULL,NULL,NULL,NULL,NULL),(4509,'https://podiatrist.capetown/registered-podiatrist/',417,193,'internal',99,15,NULL,NULL,NULL,NULL,NULL),(4510,'https://podiatrist.capetown/diabetic-foot/',417,271,'internal',99,43,NULL,NULL,NULL,NULL,NULL),(4511,'https://podiatrist.capetown/medical-footwear/',417,311,'internal',99,50,NULL,NULL,NULL,NULL,NULL),(4512,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',417,338,'internal',99,63,NULL,NULL,NULL,NULL,NULL),(4513,'https://podiatrist.capetown/revere-comfort-sandals/',417,362,'internal',99,73,NULL,NULL,NULL,NULL,NULL),(4514,'https://podiatrist.capetown/vasyli-medical-orthotics/',417,390,'internal',99,90,NULL,NULL,NULL,NULL,NULL),(4515,'https://podiatrist.capetown/ladies-orthotic-sandals/',417,372,'internal',99,83,NULL,NULL,NULL,NULL,NULL),(4516,'https://podiatrist.capetown/contact-andy-blecher/',417,395,'internal',99,93,NULL,NULL,NULL,NULL,NULL),(4517,'https://podiatrist.capetown/wp-content/uploads/2021/06/Laser-treatment-for-nail-fungus.pdf',417,NULL,'internal',99,NULL,NULL,NULL,NULL,NULL,NULL),(4518,'https://podiatrist.capetown/wp-content/uploads/2021/06/Diabetes-and-the-foot-1.pdf',417,549,'internal',99,136,NULL,NULL,NULL,NULL,NULL),(4519,'https://podiatrist.capetown/wp-content/uploads/2021/06/Total-Contact-Cast-1.pdf',417,548,'internal',99,135,NULL,NULL,NULL,NULL,NULL),(4520,'https://podiatrist.capetown/wp-content/uploads/2021/06/Constantiaberg-Hospital-Diabetic-education-forum-1.pdf',417,547,'internal',99,134,NULL,NULL,NULL,NULL,NULL),(4521,'https://podiatrist.capetown/',417,NULL,'internal',99,4,NULL,NULL,NULL,NULL,NULL),(4522,'https://podiatrist.capetown/registered-podiatrist/',417,193,'internal',99,15,NULL,NULL,NULL,NULL,NULL),(4523,'https://podiatrist.capetown/diabetic-foot/',417,271,'internal',99,43,NULL,NULL,NULL,NULL,NULL),(4524,'https://podiatrist.capetown/medical-footwear/',417,311,'internal',99,50,NULL,NULL,NULL,NULL,NULL),(4525,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',417,338,'internal',99,63,NULL,NULL,NULL,NULL,NULL),(4526,'https://podiatrist.capetown/revere-comfort-sandals/',417,362,'internal',99,73,NULL,NULL,NULL,NULL,NULL),(4527,'https://podiatrist.capetown/vasyli-medical-orthotics/',417,390,'internal',99,90,NULL,NULL,NULL,NULL,NULL),(4528,'https://podiatrist.capetown/ladies-orthotic-sandals/',417,372,'internal',99,83,NULL,NULL,NULL,NULL,NULL),(4529,'https://podiatrist.capetown/contact-andy-blecher/',417,395,'internal',99,93,NULL,NULL,NULL,NULL,NULL),(4530,'https://podiatrist.capetown/',417,NULL,'internal',99,4,NULL,NULL,NULL,NULL,NULL),(4531,'https://podiatrist.capetown/registered-podiatrist/',417,193,'internal',99,15,NULL,NULL,NULL,NULL,NULL),(4532,'https://podiatrist.capetown/diabetic-foot/',417,271,'internal',99,43,NULL,NULL,NULL,NULL,NULL),(4533,'https://podiatrist.capetown/medical-footwear/',417,311,'internal',99,50,NULL,NULL,NULL,NULL,NULL),(4534,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',417,338,'internal',99,63,NULL,NULL,NULL,NULL,NULL),(4535,'https://podiatrist.capetown/revere-comfort-sandals/',417,362,'internal',99,73,NULL,NULL,NULL,NULL,NULL),(4536,'https://podiatrist.capetown/vasyli-medical-orthotics/',417,390,'internal',99,90,NULL,NULL,NULL,NULL,NULL),(4537,'https://podiatrist.capetown/ladies-orthotic-sandals/',417,372,'internal',99,83,NULL,NULL,NULL,NULL,NULL),(4538,'https://podiatrist.capetown/contact-andy-blecher/',417,395,'internal',99,93,NULL,NULL,NULL,NULL,NULL),(4539,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',417,16,'image-in',99,3,509,1621,202049,NULL,NULL),(4540,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',417,16,'image-in',99,3,509,1621,202049,NULL,NULL),(4837,'https://podiatrist.capetown/wp-content/uploads/2021/06/Ladies-Islander.png',372,129,'internal',83,55,NULL,NULL,NULL,NULL,NULL),(4838,'https://podiatrist.capetown/wp-content/uploads/2021/06/Bella-Toepost-Sandal.jpg',372,122,'internal',83,84,NULL,NULL,NULL,NULL,NULL),(4839,'https://www.blmed.co.za/',372,NULL,'external',83,NULL,NULL,NULL,NULL,NULL,NULL),(4840,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',372,16,'image-in',83,3,509,1621,202049,NULL,NULL),(4841,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',372,16,'image-in',83,3,509,1621,202049,NULL,NULL),(5105,'https://podiatrist.capetown/',362,NULL,'internal',73,4,NULL,NULL,NULL,NULL,NULL),(5106,'https://podiatrist.capetown/registered-podiatrist/',362,193,'internal',73,15,NULL,NULL,NULL,NULL,NULL),(5107,'https://podiatrist.capetown/diabetic-foot/',362,271,'internal',73,43,NULL,NULL,NULL,NULL,NULL),(5108,'https://podiatrist.capetown/interesting-podiatry-articles/',362,417,'internal',73,99,NULL,NULL,NULL,NULL,NULL),(5109,'https://podiatrist.capetown/medical-footwear/',362,311,'internal',73,50,NULL,NULL,NULL,NULL,NULL),(5110,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',362,338,'internal',73,63,NULL,NULL,NULL,NULL,NULL),(5111,'https://podiatrist.capetown/vasyli-medical-orthotics/',362,390,'internal',73,90,NULL,NULL,NULL,NULL,NULL),(5112,'https://podiatrist.capetown/ladies-orthotic-sandals/',362,372,'internal',73,83,NULL,NULL,NULL,NULL,NULL),(5113,'https://podiatrist.capetown/contact-andy-blecher/',362,395,'internal',73,93,NULL,NULL,NULL,NULL,NULL),(5114,'https://podiatrist.capetown/',362,NULL,'internal',73,4,NULL,NULL,NULL,NULL,NULL),(5115,'https://podiatrist.capetown/registered-podiatrist/',362,193,'internal',73,15,NULL,NULL,NULL,NULL,NULL),(5116,'https://podiatrist.capetown/diabetic-foot/',362,271,'internal',73,43,NULL,NULL,NULL,NULL,NULL),(5117,'https://podiatrist.capetown/interesting-podiatry-articles/',362,417,'internal',73,99,NULL,NULL,NULL,NULL,NULL),(5118,'https://podiatrist.capetown/medical-footwear/',362,311,'internal',73,50,NULL,NULL,NULL,NULL,NULL),(5119,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',362,338,'internal',73,63,NULL,NULL,NULL,NULL,NULL),(5120,'https://podiatrist.capetown/vasyli-medical-orthotics/',362,390,'internal',73,90,NULL,NULL,NULL,NULL,NULL),(5121,'https://podiatrist.capetown/ladies-orthotic-sandals/',362,372,'internal',73,83,NULL,NULL,NULL,NULL,NULL),(5122,'https://podiatrist.capetown/contact-andy-blecher/',362,395,'internal',73,93,NULL,NULL,NULL,NULL,NULL),(5123,'https://podiatrist.capetown/wp-content/uploads/2021/06/Siena_Black_3_4.jpg',362,136,'internal',73,74,NULL,NULL,NULL,NULL,NULL),(5124,'https://podiatrist.capetown/wp-content/uploads/2021/06/REVERE-charlotte.png',362,135,'internal',73,75,NULL,NULL,NULL,NULL,NULL),(5125,'https://podiatrist.capetown/wp-content/uploads/2021/06/Genoa_Black_3_4.jpg',362,123,'internal',73,76,NULL,NULL,NULL,NULL,NULL),(5126,'https://podiatrist.capetown/wp-content/uploads/2021/06/REV-Bali.jpg',362,133,'internal',73,77,NULL,NULL,NULL,NULL,NULL),(5127,'https://podiatrist.capetown/wp-content/uploads/2021/06/Olympia_Gold-Wash_3_4.jpg',362,132,'internal',73,78,NULL,NULL,NULL,NULL,NULL),(5128,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Santa-Monica-Navy-Snake.jpg',362,126,'internal',73,53,NULL,NULL,NULL,NULL,NULL),(5129,'https://podiatrist.capetown/wp-content/uploads/2021/06/Malibu_Champagne_3_4.jpg',362,130,'internal',73,79,NULL,NULL,NULL,NULL,NULL),(5130,'https://podiatrist.capetown/wp-content/uploads/2021/06/HD-Miami-Natural-Snake-2.jpg',362,125,'internal',73,80,NULL,NULL,NULL,NULL,NULL),(5131,'https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_venice_pearl_patent_3.jpg',362,NULL,'internal',73,NULL,NULL,NULL,NULL,NULL,NULL),(5132,'https://podiatrist.capetown/wp-content/uploads/2021/06/revere_3-4_monaco_white_snake_4.jpg',362,NULL,'internal',73,NULL,NULL,NULL,NULL,NULL,NULL),(5133,'https://podiatrist.capetown',362,69,'internal',73,6,NULL,NULL,NULL,NULL,NULL),(5134,'https://podiatrist.capetown/',362,NULL,'internal',73,4,NULL,NULL,NULL,NULL,NULL),(5135,'https://podiatrist.capetown/registered-podiatrist/',362,193,'internal',73,15,NULL,NULL,NULL,NULL,NULL),(5136,'https://podiatrist.capetown/diabetic-foot/',362,271,'internal',73,43,NULL,NULL,NULL,NULL,NULL),(5137,'https://podiatrist.capetown/interesting-podiatry-articles/',362,417,'internal',73,99,NULL,NULL,NULL,NULL,NULL),(5138,'https://podiatrist.capetown/medical-footwear/',362,311,'internal',73,50,NULL,NULL,NULL,NULL,NULL),(5139,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',362,338,'internal',73,63,NULL,NULL,NULL,NULL,NULL),(5140,'https://podiatrist.capetown/vasyli-medical-orthotics/',362,390,'internal',73,90,NULL,NULL,NULL,NULL,NULL),(5141,'https://podiatrist.capetown/ladies-orthotic-sandals/',362,372,'internal',73,83,NULL,NULL,NULL,NULL,NULL),(5142,'https://podiatrist.capetown/contact-andy-blecher/',362,395,'internal',73,93,NULL,NULL,NULL,NULL,NULL),(5143,'https://podiatrist.capetown/',362,NULL,'internal',73,4,NULL,NULL,NULL,NULL,NULL),(5144,'https://podiatrist.capetown/registered-podiatrist/',362,193,'internal',73,15,NULL,NULL,NULL,NULL,NULL),(5145,'https://podiatrist.capetown/diabetic-foot/',362,271,'internal',73,43,NULL,NULL,NULL,NULL,NULL),(5146,'https://podiatrist.capetown/interesting-podiatry-articles/',362,417,'internal',73,99,NULL,NULL,NULL,NULL,NULL),(5147,'https://podiatrist.capetown/medical-footwear/',362,311,'internal',73,50,NULL,NULL,NULL,NULL,NULL),(5148,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',362,338,'internal',73,63,NULL,NULL,NULL,NULL,NULL),(5149,'https://podiatrist.capetown/vasyli-medical-orthotics/',362,390,'internal',73,90,NULL,NULL,NULL,NULL,NULL),(5150,'https://podiatrist.capetown/ladies-orthotic-sandals/',362,372,'internal',73,83,NULL,NULL,NULL,NULL,NULL),(5151,'https://podiatrist.capetown/contact-andy-blecher/',362,395,'internal',73,93,NULL,NULL,NULL,NULL,NULL),(5152,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',362,16,'image-in',73,3,509,1621,202049,NULL,NULL),(5153,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',362,16,'image-in',73,3,509,1621,202049,NULL,NULL),(5201,'https://podiatrist.capetown/',390,NULL,'internal',90,4,NULL,NULL,NULL,NULL,NULL),(5202,'https://podiatrist.capetown/registered-podiatrist/',390,193,'internal',90,15,NULL,NULL,NULL,NULL,NULL),(5203,'https://podiatrist.capetown/diabetic-foot/',390,271,'internal',90,43,NULL,NULL,NULL,NULL,NULL),(5204,'https://podiatrist.capetown/interesting-podiatry-articles/',390,417,'internal',90,99,NULL,NULL,NULL,NULL,NULL),(5205,'https://podiatrist.capetown/medical-footwear/',390,311,'internal',90,50,NULL,NULL,NULL,NULL,NULL),(5206,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',390,338,'internal',90,63,NULL,NULL,NULL,NULL,NULL),(5207,'https://podiatrist.capetown/revere-comfort-footwear/',390,362,'internal',90,73,NULL,NULL,NULL,NULL,NULL),(5208,'https://podiatrist.capetown/ladies-orthotic-sandals/',390,372,'internal',90,83,NULL,NULL,NULL,NULL,NULL),(5209,'https://podiatrist.capetown/contact-andy-blecher/',390,395,'internal',90,93,NULL,NULL,NULL,NULL,NULL),(5210,'https://podiatrist.capetown/',390,NULL,'internal',90,4,NULL,NULL,NULL,NULL,NULL),(5211,'https://podiatrist.capetown/registered-podiatrist/',390,193,'internal',90,15,NULL,NULL,NULL,NULL,NULL),(5212,'https://podiatrist.capetown/diabetic-foot/',390,271,'internal',90,43,NULL,NULL,NULL,NULL,NULL),(5213,'https://podiatrist.capetown/interesting-podiatry-articles/',390,417,'internal',90,99,NULL,NULL,NULL,NULL,NULL),(5214,'https://podiatrist.capetown/medical-footwear/',390,311,'internal',90,50,NULL,NULL,NULL,NULL,NULL),(5215,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',390,338,'internal',90,63,NULL,NULL,NULL,NULL,NULL),(5216,'https://podiatrist.capetown/revere-comfort-footwear/',390,362,'internal',90,73,NULL,NULL,NULL,NULL,NULL),(5217,'https://podiatrist.capetown/ladies-orthotic-sandals/',390,372,'internal',90,83,NULL,NULL,NULL,NULL,NULL),(5218,'https://podiatrist.capetown/contact-andy-blecher/',390,395,'internal',90,93,NULL,NULL,NULL,NULL,NULL),(5219,'http://www.blmed.co.za/',390,NULL,'external',90,NULL,NULL,NULL,NULL,NULL,NULL),(5220,'https://podiatrist.capetown',390,69,'internal',90,6,NULL,NULL,NULL,NULL,NULL),(5221,'https://podiatrist.capetown/',390,NULL,'internal',90,4,NULL,NULL,NULL,NULL,NULL),(5222,'https://podiatrist.capetown/registered-podiatrist/',390,193,'internal',90,15,NULL,NULL,NULL,NULL,NULL),(5223,'https://podiatrist.capetown/diabetic-foot/',390,271,'internal',90,43,NULL,NULL,NULL,NULL,NULL),(5224,'https://podiatrist.capetown/interesting-podiatry-articles/',390,417,'internal',90,99,NULL,NULL,NULL,NULL,NULL),(5225,'https://podiatrist.capetown/medical-footwear/',390,311,'internal',90,50,NULL,NULL,NULL,NULL,NULL),(5226,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',390,338,'internal',90,63,NULL,NULL,NULL,NULL,NULL),(5227,'https://podiatrist.capetown/revere-comfort-footwear/',390,362,'internal',90,73,NULL,NULL,NULL,NULL,NULL),(5228,'https://podiatrist.capetown/ladies-orthotic-sandals/',390,372,'internal',90,83,NULL,NULL,NULL,NULL,NULL),(5229,'https://podiatrist.capetown/contact-andy-blecher/',390,395,'internal',90,93,NULL,NULL,NULL,NULL,NULL),(5230,'https://podiatrist.capetown/',390,NULL,'internal',90,4,NULL,NULL,NULL,NULL,NULL),(5231,'https://podiatrist.capetown/registered-podiatrist/',390,193,'internal',90,15,NULL,NULL,NULL,NULL,NULL),(5232,'https://podiatrist.capetown/diabetic-foot/',390,271,'internal',90,43,NULL,NULL,NULL,NULL,NULL),(5233,'https://podiatrist.capetown/interesting-podiatry-articles/',390,417,'internal',90,99,NULL,NULL,NULL,NULL,NULL),(5234,'https://podiatrist.capetown/medical-footwear/',390,311,'internal',90,50,NULL,NULL,NULL,NULL,NULL),(5235,'https://podiatrist.capetown/dr-comfort-diabetic-footwear/',390,338,'internal',90,63,NULL,NULL,NULL,NULL,NULL),(5236,'https://podiatrist.capetown/revere-comfort-footwear/',390,362,'internal',90,73,NULL,NULL,NULL,NULL,NULL),(5237,'https://podiatrist.capetown/ladies-orthotic-sandals/',390,372,'internal',90,83,NULL,NULL,NULL,NULL,NULL),(5238,'https://podiatrist.capetown/contact-andy-blecher/',390,395,'internal',90,93,NULL,NULL,NULL,NULL,NULL),(5239,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',390,16,'image-in',90,3,509,1621,202049,NULL,NULL),(5240,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_customs_medium_tn.jpg',390,40,'image-in',90,54,170,170,5807,NULL,NULL),(5241,'https://podiatrist.capetown/wp-content/uploads/2021/06/product_armstrong_tn.jpg',390,39,'image-in',90,91,170,170,4431,NULL,NULL),(5242,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',390,16,'image-in',90,3,509,1621,202049,NULL,NULL),(5791,'https://podiatrist.capetown/',338,NULL,'internal',63,4,NULL,NULL,NULL,NULL,NULL),(5792,'https://podiatrist.capetown/registered-podiatrist/',338,193,'internal',63,15,NULL,NULL,NULL,NULL,NULL),(5793,'https://podiatrist.capetown/diabetic-foot/',338,271,'internal',63,43,NULL,NULL,NULL,NULL,NULL),(5794,'https://podiatrist.capetown/interesting-podiatry-articles/',338,417,'internal',63,99,NULL,NULL,NULL,NULL,NULL),(5795,'https://podiatrist.capetown/medical-footwear/',338,311,'internal',63,50,NULL,NULL,NULL,NULL,NULL),(5796,'https://podiatrist.capetown/revere-comfort-footwear/',338,362,'internal',63,73,NULL,NULL,NULL,NULL,NULL),(5797,'https://podiatrist.capetown/vasyli-medical-orthotics/',338,390,'internal',63,90,NULL,NULL,NULL,NULL,NULL),(5798,'https://podiatrist.capetown/ladies-orthotic-sandals/',338,372,'internal',63,83,NULL,NULL,NULL,NULL,NULL),(5799,'https://podiatrist.capetown/contact-andy-blecher/',338,395,'internal',63,93,NULL,NULL,NULL,NULL,NULL),(5800,'https://podiatrist.capetown/',338,NULL,'internal',63,4,NULL,NULL,NULL,NULL,NULL),(5801,'https://podiatrist.capetown/registered-podiatrist/',338,193,'internal',63,15,NULL,NULL,NULL,NULL,NULL),(5802,'https://podiatrist.capetown/diabetic-foot/',338,271,'internal',63,43,NULL,NULL,NULL,NULL,NULL),(5803,'https://podiatrist.capetown/interesting-podiatry-articles/',338,417,'internal',63,99,NULL,NULL,NULL,NULL,NULL),(5804,'https://podiatrist.capetown/medical-footwear/',338,311,'internal',63,50,NULL,NULL,NULL,NULL,NULL),(5805,'https://podiatrist.capetown/revere-comfort-footwear/',338,362,'internal',63,73,NULL,NULL,NULL,NULL,NULL),(5806,'https://podiatrist.capetown/vasyli-medical-orthotics/',338,390,'internal',63,90,NULL,NULL,NULL,NULL,NULL),(5807,'https://podiatrist.capetown/ladies-orthotic-sandals/',338,372,'internal',63,83,NULL,NULL,NULL,NULL,NULL),(5808,'https://podiatrist.capetown/contact-andy-blecher/',338,395,'internal',63,93,NULL,NULL,NULL,NULL,NULL),(5809,'https://podiatrist.capetown/wp-content/uploads/2021/06/sunshine.jpg',338,48,'internal',63,52,NULL,NULL,NULL,NULL,NULL),(5810,'https://podiatrist.capetown/wp-content/uploads/2021/06/Laura.jpg',338,29,'internal',63,69,NULL,NULL,NULL,NULL,NULL),(5811,'https://podiatrist.capetown/wp-content/uploads/2021/06/wing-chestnut.jpg',338,50,'internal',63,56,NULL,NULL,NULL,NULL,NULL),(5812,'https://podiatrist.capetown/wp-content/uploads/2021/06/suzie-white.jpg',338,NULL,'internal',63,NULL,NULL,NULL,NULL,NULL,NULL),(5813,'https://podiatrist.capetown/wp-content/uploads/2021/06/Stallion.jpg',338,NULL,'internal',63,NULL,NULL,NULL,NULL,NULL,NULL),(5814,'https://podiatrist.capetown/wp-content/uploads/2021/06/Classic-Black-3_4-1.jpg',338,19,'internal',63,70,NULL,NULL,NULL,NULL,NULL),(5815,'https://podiatrist.capetown/',338,NULL,'internal',63,4,NULL,NULL,NULL,NULL,NULL),(5816,'https://podiatrist.capetown/registered-podiatrist/',338,193,'internal',63,15,NULL,NULL,NULL,NULL,NULL),(5817,'https://podiatrist.capetown/diabetic-foot/',338,271,'internal',63,43,NULL,NULL,NULL,NULL,NULL),(5818,'https://podiatrist.capetown/interesting-podiatry-articles/',338,417,'internal',63,99,NULL,NULL,NULL,NULL,NULL),(5819,'https://podiatrist.capetown/medical-footwear/',338,311,'internal',63,50,NULL,NULL,NULL,NULL,NULL),(5820,'https://podiatrist.capetown/revere-comfort-footwear/',338,362,'internal',63,73,NULL,NULL,NULL,NULL,NULL),(5821,'https://podiatrist.capetown/vasyli-medical-orthotics/',338,390,'internal',63,90,NULL,NULL,NULL,NULL,NULL),(5822,'https://podiatrist.capetown/ladies-orthotic-sandals/',338,372,'internal',63,83,NULL,NULL,NULL,NULL,NULL),(5823,'https://podiatrist.capetown/contact-andy-blecher/',338,395,'internal',63,93,NULL,NULL,NULL,NULL,NULL),(5824,'https://podiatrist.capetown/',338,NULL,'internal',63,4,NULL,NULL,NULL,NULL,NULL),(5825,'https://podiatrist.capetown/registered-podiatrist/',338,193,'internal',63,15,NULL,NULL,NULL,NULL,NULL),(5826,'https://podiatrist.capetown/diabetic-foot/',338,271,'internal',63,43,NULL,NULL,NULL,NULL,NULL),(5827,'https://podiatrist.capetown/interesting-podiatry-articles/',338,417,'internal',63,99,NULL,NULL,NULL,NULL,NULL),(5828,'https://podiatrist.capetown/medical-footwear/',338,311,'internal',63,50,NULL,NULL,NULL,NULL,NULL),(5829,'https://podiatrist.capetown/revere-comfort-footwear/',338,362,'internal',63,73,NULL,NULL,NULL,NULL,NULL),(5830,'https://podiatrist.capetown/vasyli-medical-orthotics/',338,390,'internal',63,90,NULL,NULL,NULL,NULL,NULL),(5831,'https://podiatrist.capetown/ladies-orthotic-sandals/',338,372,'internal',63,83,NULL,NULL,NULL,NULL,NULL),(5832,'https://podiatrist.capetown/contact-andy-blecher/',338,395,'internal',63,93,NULL,NULL,NULL,NULL,NULL),(5833,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019-768x241.jpg',338,16,'image-in',63,3,509,1621,202049,NULL,NULL),(5834,'https://podiatrist.capetown/wp-content/uploads/2021/06/Andy-new-logo-2019.jpg',338,16,'image-in',63,3,509,1621,202049,NULL,NULL),(5837,'',647,NULL,'internal',172,4,NULL,NULL,NULL,NULL,NULL),(5838,'#',647,NULL,'internal',172,4,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2023-01-05 22:10:33