Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: designsflow_live -- ------------------------------------------------------ -- Server version 10.6.22-MariaDB /*!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 `designsflow_commentmeta` -- DROP TABLE IF EXISTS `designsflow_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_commentmeta` -- LOCK TABLES `designsflow_commentmeta` WRITE; /*!40000 ALTER TABLE `designsflow_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `designsflow_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designsflow_comments` -- DROP TABLE IF EXISTS `designsflow_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_comments` -- LOCK TABLES `designsflow_comments` WRITE; /*!40000 ALTER TABLE `designsflow_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `designsflow_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designsflow_e_events` -- DROP TABLE IF EXISTS `designsflow_e_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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 AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_e_events` -- LOCK TABLES `designsflow_e_events` WRITE; /*!40000 ALTER TABLE `designsflow_e_events` DISABLE KEYS */; INSERT INTO `designsflow_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2025-01-22T12:49:47.130+05:00\"}','2025-01-22 12:49:47'),(2,'{\"event\":\"close modal\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\"}\",\"ts\":\"2025-01-22T12:49:48.924+05:00\"}','2025-01-22 12:49:48'); /*!40000 ALTER TABLE `designsflow_e_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designsflow_e_submissions` -- DROP TABLE IF EXISTS `designsflow_e_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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 AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_e_submissions` -- LOCK TABLES `designsflow_e_submissions` WRITE; /*!40000 ALTER TABLE `designsflow_e_submissions` DISABLE KEYS */; INSERT INTO `designsflow_e_submissions` VALUES (1,'submission','2be385d4-010e-4bee-aacd-b385de926e3b',4,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'106.219.165.182','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-24 10:52:33','2025-01-24 10:52:34','2025-01-24 10:52:33','2025-01-24 10:52:34'),(2,'submission','702e4a50-8e95-477f-b0fb-ddc891466fbe',11,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'185.36.81.55','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-25 19:04:59','2025-01-25 19:04:59','2025-01-25 19:04:59','2025-01-25 19:04:59'),(3,'submission','bad645e1-6330-4b56-a551-94322790f8b6',17,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'45.134.20.119','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-25 21:22:46','2025-01-25 21:22:46','2025-01-25 21:22:46','2025-01-25 21:22:46'),(4,'submission','a3c0c654-ae5f-43c8-84b0-0c963b17ac81',23,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'185.36.81.55','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:114.0) Gecko/20100101 Firefox/114.0',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-26 19:18:11','2025-01-26 19:18:11','2025-01-26 19:18:11','2025-01-26 19:18:11'),(5,'submission','4efa15e3-484a-451c-aadf-5f79482769ab',29,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'103.211.18.186','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-31 14:20:43','2025-01-31 14:20:43','2025-01-31 14:20:43','2025-01-31 14:20:43'),(6,'submission','aeba1ec9-e4f6-44d9-8b77-df93c5627945',35,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'103.211.18.186','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-31 17:54:11','2025-01-31 17:54:11','2025-01-31 17:54:11','2025-01-31 17:54:11'),(7,'submission','4e454c38-fdd4-42ce-a3a2-302a9b19388d',41,109,'','Contact Us','5b0549f7','New Form',0,0,'185.147.125.23','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Avast/131.0.0.0',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-31 19:12:47','2025-01-31 19:12:47','2025-01-31 19:12:47','2025-01-31 19:12:47'),(8,'submission','624b74f2-6daa-48e4-863c-1be1fa69f849',47,109,'','Contact Us','5b0549f7','New Form',0,0,'92.255.85.164','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-02 14:42:16','2025-02-02 14:42:17','2025-02-02 14:42:16','2025-02-02 14:42:17'),(9,'submission','e14c5462-fee9-4ae0-8d04-a9e0dd8833ec',53,109,'','Contact Us','5b0549f7','New Form',0,0,'92.255.57.39','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-04 09:56:21','2025-02-04 09:56:21','2025-02-04 09:56:21','2025-02-04 09:56:21'),(10,'submission','cb4acfcf-d841-4798-a97c-e0b0a05b4864',59,109,'','Contact Us','5b0549f7','New Form',0,0,'185.147.125.23','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Avast/131.0.0.0',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-05 22:58:02','2025-02-05 22:58:02','2025-02-05 22:58:02','2025-02-05 22:58:02'),(11,'submission','66b1e518-54d8-40a0-8d97-25aab539bd04',65,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'171.241.161.151','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-05 23:54:27','2025-02-05 23:54:27','2025-02-05 23:54:27','2025-02-05 23:54:27'),(12,'submission','c5493ce0-35a5-47c9-a138-64f8f7afb9cb',71,109,'','Contact Us','5b0549f7','New Form',0,0,'92.255.85.164','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 CCleaner/130.0.0.0',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-07 06:01:33','2025-02-07 06:01:34','2025-02-07 06:01:33','2025-02-07 06:01:34'),(13,'submission','953a9581-2d48-438e-88e8-58ed4a84eaa6',77,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'167.172.20.109','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-12 12:32:21','2025-02-12 12:32:21','2025-02-12 12:32:21','2025-02-12 12:32:21'),(14,'submission','51a902d2-06f5-44d9-bbd6-7736f6fa9548',83,109,'','Contact Us','5b0549f7','New Form',0,0,'185.147.125.18','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-22 13:05:16','2025-02-22 13:05:16','2025-02-22 13:05:16','2025-02-22 13:05:16'),(15,'submission','9c2dc5bf-a3b0-4807-aa85-4a496bef000f',89,109,'','Contact Us','5b0549f7','New Form',0,0,'185.147.125.18','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-03-04 10:27:09','2025-03-04 10:27:09','2025-03-04 10:27:09','2025-03-04 10:27:09'),(16,'submission','bfa38ae1-9b7d-4a65-ac7b-f42754ff04db',95,109,'','Contact Us','5b0549f7','New Form',0,0,'185.7.214.130','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-03-05 21:55:21','2025-03-05 21:55:22','2025-03-05 21:55:21','2025-03-05 21:55:22'),(17,'submission','a994e61e-ce6f-45b4-b51e-9ac1ed30234c',101,109,'','Contact Us','5b0549f7','New Form',0,0,'181.214.218.192','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-04-01 11:30:27','2025-04-01 11:30:27','2025-04-01 11:30:27','2025-04-01 11:30:27'),(18,'submission','0c4558dd-f5bc-407f-9e61-07e8e2f6b3b5',107,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'165.231.165.99','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-04-20 18:51:30','2025-04-20 18:51:30','2025-04-20 18:51:30','2025-04-20 18:51:30'),(19,'submission','3184127c-589e-4c90-aed7-ab2e2fac676d',113,109,'https://designsflow.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'196.245.184.120','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-04-25 12:06:31','2025-04-25 12:06:31','2025-04-25 12:06:31','2025-04-25 12:06:31'); /*!40000 ALTER TABLE `designsflow_e_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designsflow_e_submissions_actions_log` -- DROP TABLE IF EXISTS `designsflow_e_submissions_actions_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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 AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_e_submissions_actions_log` -- LOCK TABLES `designsflow_e_submissions_actions_log` WRITE; /*!40000 ALTER TABLE `designsflow_e_submissions_actions_log` DISABLE KEYS */; INSERT INTO `designsflow_e_submissions_actions_log` VALUES (1,1,'email','Email','success',NULL,'2025-01-24 10:52:34','2025-01-24 10:52:34','2025-01-24 10:52:34','2025-01-24 10:52:34'),(2,2,'email','Email','success',NULL,'2025-01-25 19:04:59','2025-01-25 19:04:59','2025-01-25 19:04:59','2025-01-25 19:04:59'),(3,3,'email','Email','success',NULL,'2025-01-25 21:22:46','2025-01-25 21:22:46','2025-01-25 21:22:46','2025-01-25 21:22:46'),(4,4,'email','Email','success',NULL,'2025-01-26 19:18:11','2025-01-26 19:18:11','2025-01-26 19:18:11','2025-01-26 19:18:11'),(5,5,'email','Email','success',NULL,'2025-01-31 14:20:43','2025-01-31 14:20:43','2025-01-31 14:20:43','2025-01-31 14:20:43'),(6,6,'email','Email','success',NULL,'2025-01-31 17:54:11','2025-01-31 17:54:11','2025-01-31 17:54:11','2025-01-31 17:54:11'),(7,7,'email','Email','success',NULL,'2025-01-31 19:12:47','2025-01-31 19:12:47','2025-01-31 19:12:47','2025-01-31 19:12:47'),(8,8,'email','Email','success',NULL,'2025-02-02 14:42:17','2025-02-02 14:42:17','2025-02-02 14:42:17','2025-02-02 14:42:17'),(9,9,'email','Email','success',NULL,'2025-02-04 09:56:21','2025-02-04 09:56:21','2025-02-04 09:56:21','2025-02-04 09:56:21'),(10,10,'email','Email','success',NULL,'2025-02-05 22:58:02','2025-02-05 22:58:02','2025-02-05 22:58:02','2025-02-05 22:58:02'),(11,11,'email','Email','success',NULL,'2025-02-05 23:54:27','2025-02-05 23:54:27','2025-02-05 23:54:27','2025-02-05 23:54:27'),(12,12,'email','Email','success',NULL,'2025-02-07 06:01:34','2025-02-07 06:01:34','2025-02-07 06:01:34','2025-02-07 06:01:34'),(13,13,'email','Email','success',NULL,'2025-02-12 12:32:21','2025-02-12 12:32:21','2025-02-12 12:32:21','2025-02-12 12:32:21'),(14,14,'email','Email','success',NULL,'2025-02-22 13:05:16','2025-02-22 13:05:16','2025-02-22 13:05:16','2025-02-22 13:05:16'),(15,15,'email','Email','success',NULL,'2025-03-04 10:27:09','2025-03-04 10:27:09','2025-03-04 10:27:09','2025-03-04 10:27:09'),(16,16,'email','Email','success',NULL,'2025-03-05 21:55:22','2025-03-05 21:55:22','2025-03-05 21:55:22','2025-03-05 21:55:22'),(17,17,'email','Email','success',NULL,'2025-04-01 11:30:27','2025-04-01 11:30:27','2025-04-01 11:30:27','2025-04-01 11:30:27'),(18,18,'email','Email','success',NULL,'2025-04-20 18:51:30','2025-04-20 18:51:30','2025-04-20 18:51:30','2025-04-20 18:51:30'),(19,19,'email','Email','success',NULL,'2025-04-25 12:06:31','2025-04-25 12:06:31','2025-04-25 12:06:31','2025-04-25 12:06:31'); /*!40000 ALTER TABLE `designsflow_e_submissions_actions_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designsflow_e_submissions_values` -- DROP TABLE IF EXISTS `designsflow_e_submissions_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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 AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_e_submissions_values` -- LOCK TABLES `designsflow_e_submissions_values` WRITE; /*!40000 ALTER TABLE `designsflow_e_submissions_values` DISABLE KEYS */; INSERT INTO `designsflow_e_submissions_values` VALUES (1,1,'name','Brianna Belton'),(2,1,'field_70d8667','Becreative Business'),(3,1,'field_57c2051','2132620124'),(4,1,'email','briannawebsolution@gmail.com'),(5,1,'field_5aa0e4f','Re: Improve your website traffic and SEO'),(6,1,'field_746556e','Re: Improve your website traffic and SEO'),(7,1,'message','Hello team, \r\n\r\nYour website has great potential, and with some refined SEO and digital marketing strategies, we could enhance its organic search rankings and online reach.\r\n\r\nOur main focus will be to help generate more sales & online traffic.\r\n\r\nWe will improve your website’s position on Google and get more traffic.\r\n\r\nCall Request -\r\n I\'d love to schedule a quick call to go over the details. When would be a convenient time for you?\r\n\r\nThank you,\r\nBrianna Belton\r\n\r\n\r\n\r\ndesigngenious.live'),(8,2,'name','Search Engine Index'),(9,2,'field_70d8667','Michale Hain'),(10,2,'field_57c2051','3836115386'),(11,2,'email','submissions@searchindex.site'),(12,2,'field_746556e','Add designgenious.live to Google Search Index!'),(13,2,'message','Hello,\r\n\r\nfor your website do be displayed in searches your domain needs to be indexed in the Google Search Index.\r\n\r\nTo add your domain to Google Search Index now, please visit \r\n\r\nhttps://SearchRegister.org/'),(14,3,'name','Niklas Kirkby'),(15,3,'field_70d8667','Niklas Kirkby'),(16,3,'field_57c2051','7089828037'),(17,3,'email','niklas.kirkby@googlemail.com'),(18,3,'field_746556e','To the designgenious.live Administrator.'),(19,3,'message','Need a way to get millions of people to check out your video economically? Get Info http://kqpy9m.contactblastingworks.my'),(20,4,'name','Search Engine Index'),(21,4,'field_70d8667','Doug Granados'),(22,4,'field_57c2051','7831265477'),(23,4,'email','submissions@searchindex.site'),(24,4,'field_746556e','Add designgenious.live to Google Search Index!'),(25,4,'message','Hello,\r\n\r\nfor your website do be displayed in searches your domain needs to be indexed in the Google Search Index.\r\n\r\nTo add your domain to Google Search Index now, please visit \r\n\r\nhttps://SearchRegister.org/'),(26,5,'name','Angela Brown'),(27,5,'field_70d8667','Digital Marketing Agency'),(28,5,'field_57c2051','1234567898'),(29,5,'email','angela.websolution9@gmail.com'),(30,5,'field_746556e','Question about your website'),(31,5,'message','Dear Customer, \r\n\r\nI am Angela, your website domain support assistant, and I need to discuss an urgent matter regarding your website design and promotion. Addressing this promptly will help ensure everything runs smoothly and optimally.\r\n\r\nKindly share your best Phone Number and a suitable time to connect. \r\nLooking forward to assisting you! \r\n\r\nThanks \r\nAngela'),(32,6,'name','Angela Brown'),(33,6,'field_70d8667','Digital Marketing Agency'),(34,6,'field_57c2051','1234567898'),(35,6,'email','angela.websolution9@gmail.com'),(36,6,'field_746556e','Question about your website'),(37,6,'message','Dear Customer, \r\n\r\nI am Angela, your website domain support assistant, and I need to discuss an urgent matter regarding your website design and promotion. Addressing this promptly will help ensure everything runs smoothly and optimally.\r\n\r\nKindly share your best Phone Number and a suitable time to connect. \r\nLooking forward to assisting you! \r\n\r\nThanks \r\nAngela'),(38,7,'name','Robertrog'),(39,7,'field_70d8667','Google'),(40,7,'field_57c2051','85353282673'),(41,7,'email','ixutikob077@gmail.com'),(42,7,'field_746556e','Aloha write about your the price'),(43,7,'message','Hæ, ég vildi vita verð þitt.'),(44,8,'name','Tedrog'),(45,8,'field_70d8667','Nokia'),(46,8,'field_57c2051','82696369682'),(47,8,'email','moqagides18@gmail.com'),(48,8,'field_746556e','Hallo, write about your the price'),(49,8,'message','Γεια σου, ήθελα να μάθω την τιμή σας.'),(50,9,'name','Georgerog'),(51,9,'field_70d8667','Wallmart'),(52,9,'field_57c2051','82376615921'),(53,9,'email','ibucezevuda439@gmail.com'),(54,9,'field_746556e','Hi, i am writing about the prices'),(55,9,'message','Здравейте, исках да знам цената ви.'),(56,10,'name','Robertrog'),(57,10,'field_70d8667','Apple'),(58,10,'field_57c2051','86565398546'),(59,10,'email','ixutikob077@gmail.com'),(60,10,'field_746556e','Aloha, wrote about the price'),(61,10,'message','Sveiki, aš norėjau sužinoti jūsų kainą.'),(62,11,'name','Sharyl Agar'),(63,11,'field_70d8667','Sharyl Agar'),(64,11,'field_57c2051','4821655'),(65,11,'email','sharyl@leadboost.click'),(66,11,'field_746556e','For designsflow.live'),(67,11,'message','Hi,\r\n\r\nWell done on acquiring designsflow.live! It\'s always exciting to start a new online journey.\r\n\r\nFollowing our program to support new domain owners, I\'m reaching out with a practical resource for designsflow.live.\r\n\r\nI\'m talking about our the Google Maps Lead Collector - a Chrome extension that helps you find local businesses in your area. \r\n\r\nI\'ve made a quick video that illustrates how it works:\r\nhttps://www.youtube.com/watch?time_continue=20&v=1Dd7i4vNgu0\r\n\r\nThis no-cost tool enables you to:\r\n\r\nQuickly download targeted business leads\r\nLocate potential clients in particular niches\r\nOptimize your prospecting\r\nBegin building your business immediately\r\nYou\'ll get 50 leads per search with no restrictions on the number of searches!\r\nGet your free copy from the video description.\r\n\r\nhttps://www.youtube.com/watch?time_continue=20&v=1Dd7i4vNgu0\r\n\r\nWishing you success with designsflow.live! Please reach out with any queries.\r\n\r\nAll the best, \r\nSharyl Agar \r\nOnline Marketing Expert'),(68,12,'name','Tedrog'),(69,12,'field_70d8667','Nokia'),(70,12,'field_57c2051','87119567861'),(71,12,'email','moqagides18@gmail.com'),(72,12,'field_746556e','Hallo i am writing about your the price for reseller'),(73,12,'message','Ողջույն, ես ուզում էի իմանալ ձեր գինը.'),(74,13,'name','Lieselotte Serna'),(75,13,'field_70d8667','Lieselotte Serna'),(76,13,'field_57c2051','745102882'),(77,13,'email','lieselotte.serna@yahoo.com'),(78,13,'field_746556e','Let\'s Help You Monetize Your Website with Premium Ads'),(79,13,'message',''),(80,14,'name','Miarog'),(81,14,'field_70d8667','AliExpress'),(82,14,'field_57c2051','88758449172'),(83,14,'email','ebojajuje04@gmail.com'),(84,14,'field_746556e','Hi i am write about the prices'),(85,14,'message','Ndewo, achọrọ m ịmara ọnụahịa gị.'),(86,15,'name','Oliviarog'),(87,15,'field_70d8667','Google'),(88,15,'field_57c2051','83985341618'),(89,15,'email','ebojajuje04@gmail.com'),(90,15,'field_746556e','Aloha, i am writing about prices'),(91,15,'message','Zdravo, htio sam znati vašu cijenu.'),(92,16,'name','Johnrog'),(93,16,'field_70d8667','Apple'),(94,16,'field_57c2051','85838664527'),(95,16,'email','yawiviseya67@gmail.com'),(96,16,'field_746556e','Hallo i wrote about your price'),(97,16,'message','Salam, qiymətinizi bilmək istədim.'),(98,17,'name','Raymondmog'),(99,17,'field_70d8667','Apple'),(100,17,'field_57c2051','86384919367'),(101,17,'email','raymondinjult@gmail.com'),(102,17,'field_746556e','A one-of-a-kind new way of advertising.'),(103,17,'message','Hello! designsflow.live \r\n \r\nExpand your business legally and efficiently with automated outreach. \r\nThis method adheres to legal data privacy standards, ensuring legitimate and transparent outreach. \r\nMessages submitted through Contact Forms are treated as significant, so they rarely end up in spam. \r\nGet a free sample and see the benefits for yourself. \r\nWe offer you the chance to send out up to 50,000 messages to your audience. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis letter is automatically generated. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nWhatsApp - +375259112693 \r\nWhatsApp https://wa.me/+375259112693 \r\nWe only use chat for communication.'),(104,18,'name','Jessica Langdon'),(105,18,'field_70d8667',''),(106,18,'field_57c2051','3412179528'),(107,18,'email','jessicalangdon01@gmail.com'),(108,18,'field_746556e','Youtube Promotion: Grow your subscribers by 700 each month'),(109,18,'message','Hi there,\r\n\r\nWe run a YouTube growth service, which increases your number of subscribers both safely and practically.\r\n\r\n- We guarantee to gain you 700-1500+ subscribers per month.\r\n- People subscribe because they are interested in your channel/videos, increasing likes, comments and interaction.\r\n- All actions are made manually by our team. We do not use any \'bots\'.\r\n\r\nThe price is just $60 (USD) per month, and we can start immediately.\r\n\r\nIf you have any questions, let me know, and we can discuss further.\r\n\r\nKind Regards,\r\nJess'),(110,19,'name','Joanna Riggs'),(111,19,'field_70d8667',''),(112,19,'field_57c2051','89424729'),(113,19,'email','joannariggs30@gmail.com'),(114,19,'field_746556e','Explainer Video for your website?'),(115,19,'message','Hi,\r\n\r\nI just visited designsflow.live and wondered if you\'d ever thought about having an engaging video to explain what you do, or to be used on social media as a promotional tool?\r\n\r\nOur videos cost just $195 USD for a 30 second video ($239 USD for 60 seconds) and include a full script, voice-over and video.\r\n\r\nI can show you some previous videos we\'ve done if you want me to send some over. Let me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna'); /*!40000 ALTER TABLE `designsflow_e_submissions_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designsflow_links` -- DROP TABLE IF EXISTS `designsflow_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_links` -- LOCK TABLES `designsflow_links` WRITE; /*!40000 ALTER TABLE `designsflow_links` DISABLE KEYS */; /*!40000 ALTER TABLE `designsflow_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designsflow_options` -- DROP TABLE IF EXISTS `designsflow_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designsflow_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=17308 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designsflow_options` -- LOCK TABLES `designsflow_options` WRITE; /*!40000 ALTER TABLE `designsflow_options` DISABLE KEYS */; INSERT INTO `designsflow_options` VALUES (1,'cron','a:12:{i:1750285065;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:1750310251;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:1750310265;a:1:{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:1750312100;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:1750348479;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750349214;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:1750353451;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750355300;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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:1750395136;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750777815;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1750873767;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),(2,'siteurl','https://designsflow.live','on'),(3,'home','https://designsflow.live','on'),(4,'blogname','Designs Flow','on'),(5,'blogdescription','','on'),(6,'users_can_register','0','on'),(7,'admin_email','designsfunnel@gmail.com','on'),(8,'start_of_week','1','on'),(9,'use_balanceTags','0','on'),(10,'use_smilies','1','on'),(11,'require_name_email','1','on'),(12,'comments_notify','1','on'),(13,'posts_per_rss','10','on'),(14,'rss_use_excerpt','0','on'),(15,'mailserver_url','mail.example.com','on'),(16,'mailserver_login','login@example.com','on'),(17,'mailserver_pass','','on'),(18,'mailserver_port','110','on'),(19,'default_category','1','on'),(20,'default_comment_status','open','on'),(21,'default_ping_status','open','on'),(22,'default_pingback_flag','1','on'),(23,'posts_per_page','10','on'),(24,'date_format','F j, Y','on'),(25,'time_format','g:i a','on'),(26,'links_updated_date_format','F j, Y g:i a','on'),(27,'comment_moderation','0','on'),(28,'moderation_notify','1','on'),(29,'permalink_structure','/%postname%/','on'),(30,'rewrite_rules','a:156:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s: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:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:57:\"package-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?package-category=$matches[1]&feed=$matches[2]\";s:52:\"package-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?package-category=$matches[1]&feed=$matches[2]\";s:33:\"package-category/([^/]+)/embed/?$\";s:49:\"index.php?package-category=$matches[1]&embed=true\";s:45:\"package-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?package-category=$matches[1]&paged=$matches[2]\";s:27:\"package-category/([^/]+)/?$\";s:38:\"index.php?package-category=$matches[1]\";s:33:\"package/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"package/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"package/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"package/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"package/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"package/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"package/(.+?)/embed/?$\";s:40:\"index.php?package=$matches[1]&embed=true\";s:26:\"package/(.+?)/trackback/?$\";s:34:\"index.php?package=$matches[1]&tb=1\";s:34:\"package/(.+?)/page/?([0-9]{1,})/?$\";s:47:\"index.php?package=$matches[1]&paged=$matches[2]\";s:41:\"package/(.+?)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?package=$matches[1]&cpage=$matches[2]\";s:30:\"package/(.+?)(?:/([0-9]+))?/?$\";s:46:\"index.php?package=$matches[1]&page=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=10&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','on'),(31,'hack_file','0','on'),(32,'blog_charset','UTF-8','on'),(33,'moderation_keys','','off'),(34,'active_plugins','a:8:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:31:\"elementor-pro/elementor-pro.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:37:\"elementskit-lite/elementskit-lite.php\";i:5;s:35:\"envato-elements/envato-elements.php\";i:6;s:73:\"skyboot-custom-icons-for-elementor/skyboot-custom-icons-for-elementor.php\";i:7;s:27:\"wp-rollback/wp-rollback.php\";}','on'),(35,'category_base','','on'),(36,'ping_sites','http://rpc.pingomatic.com/','on'),(37,'comment_max_links','2','on'),(38,'gmt_offset','0','on'),(39,'default_email_category','1','on'),(40,'recently_edited','a:3:{i:0;s:77:\"/home/designsflow/public_html/wp-content/themes/design-ggenious/functions.php\";i:1;s:73:\"/home/designsflow/public_html/wp-content/themes/design-ggenious/style.css\";i:3;s:0:\"\";}','off'),(41,'template','hello-elementor','on'),(42,'stylesheet','design-ggenious','on'),(43,'comment_registration','0','on'),(44,'html_type','text/html','on'),(45,'use_trackback','0','on'),(46,'default_role','subscriber','on'),(47,'db_version','58975','on'),(48,'uploads_use_yearmonth_folders','1','on'),(49,'upload_path','','on'),(50,'blog_public','0','on'),(51,'default_link_category','2','on'),(52,'show_on_front','page','on'),(53,'tag_base','','on'),(54,'show_avatars','1','on'),(55,'avatar_rating','G','on'),(56,'upload_url_path','','on'),(57,'thumbnail_size_w','150','on'),(58,'thumbnail_size_h','150','on'),(59,'thumbnail_crop','1','on'),(60,'medium_size_w','300','on'),(61,'medium_size_h','300','on'),(62,'avatar_default','mystery','on'),(63,'large_size_w','1024','on'),(64,'large_size_h','1024','on'),(65,'image_default_link_type','none','on'),(66,'image_default_size','','on'),(67,'image_default_align','','on'),(68,'close_comments_for_old_posts','0','on'),(69,'close_comments_days_old','14','on'),(70,'thread_comments','1','on'),(71,'thread_comments_depth','5','on'),(72,'page_comments','0','on'),(73,'comments_per_page','50','on'),(74,'default_comments_page','newest','on'),(75,'comment_order','asc','on'),(76,'sticky_posts','a:0:{}','on'),(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(80,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','off'),(81,'timezone_string','','on'),(82,'page_for_posts','0','on'),(83,'page_on_front','10','on'),(84,'default_post_format','0','on'),(85,'link_manager_enabled','0','on'),(86,'finished_splitting_shared_terms','1','on'),(87,'site_icon','606','on'),(88,'medium_large_size_w','768','on'),(89,'medium_large_size_h','0','on'),(90,'wp_page_for_privacy_policy','3','on'),(91,'show_comments_cookies_opt_in','1','on'),(92,'admin_email_lifespan','1753118251','on'),(93,'disallowed_keys','','off'),(94,'comment_previously_approved','1','on'),(95,'auto_plugin_theme_update_emails','a:0:{}','off'),(96,'auto_update_core_dev','enabled','on'),(97,'auto_update_core_minor','enabled','on'),(98,'auto_update_core_major','enabled','on'),(99,'wp_force_deactivated_plugins','a:0:{}','on'),(100,'wp_attachment_pages_enabled','0','on'),(101,'initial_db_version','58975','on'),(102,'designsflow_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','on'),(103,'fresh_site','0','off'),(104,'user_count','1','off'),(105,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','auto'),(106,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','auto'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(121,'recovery_keys','a:0:{}','off'),(122,'theme_mods_twentytwentyfive','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1737568131;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'),(145,'can_compress_scripts','0','on'),(153,'current_theme','Design Ggenious','auto'),(154,'theme_mods_twentytwentyfour','a:5:{i:0;b:0;s:19:\"wp_classic_sidebars\";a:0:{}s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1737568171;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','off'),(155,'theme_switched','','auto'),(160,'recently_activated','a:2:{s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1738077038;s:45:\"generate-child-theme/generate-child-theme.php\";i:1737568236;}','off'),(165,'finished_updating_comment_type','1','auto'),(172,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1737568229;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','off'),(173,'hello_theme_version','3.3.0','auto'),(176,'elementor_connect_site_key','3f5a55cc2018863db1e9e7c6edc4dd7f','auto'),(177,'_hello-elementor_notifications','a:2:{s:7:\"timeout\";i:1745625990;s:5:\"value\";s:6499:\"[{\"id\":\"hello-theme-3.3.0\",\"title\":\"3.3.0 - 2025-01-21\",\"description\":\"\\n