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: designgenious_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 `designgenious_commentmeta` -- DROP TABLE IF EXISTS `designgenious_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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 `designgenious_commentmeta` -- LOCK TABLES `designgenious_commentmeta` WRITE; /*!40000 ALTER TABLE `designgenious_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `designgenious_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designgenious_comments` -- DROP TABLE IF EXISTS `designgenious_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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 `designgenious_comments` -- LOCK TABLES `designgenious_comments` WRITE; /*!40000 ALTER TABLE `designgenious_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `designgenious_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designgenious_e_events` -- DROP TABLE IF EXISTS `designgenious_e_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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 `designgenious_e_events` -- LOCK TABLES `designgenious_e_events` WRITE; /*!40000 ALTER TABLE `designgenious_e_events` DISABLE KEYS */; INSERT INTO `designgenious_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 `designgenious_e_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designgenious_e_submissions` -- DROP TABLE IF EXISTS `designgenious_e_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designgenious_e_submissions` -- LOCK TABLES `designgenious_e_submissions` WRITE; /*!40000 ALTER TABLE `designgenious_e_submissions` DISABLE KEYS */; INSERT INTO `designgenious_e_submissions` VALUES (1,'submission','2be385d4-010e-4bee-aacd-b385de926e3b',4,109,'https://designgenious.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://designgenious.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://designgenious.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://designgenious.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','fade22a2-b4b1-4d8d-abbf-7c3724946c67',29,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-01-29 12:12:06','2025-01-29 12:12:06','2025-01-29 12:12:06','2025-01-29 12:12:06'),(6,'submission','d786d3d6-a10c-476d-9b73-57c857e1fd56',35,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/130.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-01-30 18:05:43','2025-01-30 18:05:43','2025-01-30 18:05:43','2025-01-30 18:05:43'),(7,'submission','e67a2103-dcea-46d5-a99f-0791ddc5e4bd',41,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',1,'{\"edit_post_id\":\"109\"}','2025-02-04 19:16:56','2025-02-07 16:23:28','2025-02-04 19:16:56','2025-02-07 16:23:28'),(8,'submission','ffe54457-7c28-482b-ae4f-150292deb06c',47,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/130.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-04 22:13:57','2025-02-04 22:13:57','2025-02-04 22:13:57','2025-02-04 22:13:57'),(9,'submission','a9808f5f-f4cb-49e4-a15f-b92561ca1267',53,109,'https://designgenious.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'45.131.95.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-05 02:17:33','2025-02-05 02:17:33','2025-02-05 02:17:33','2025-02-05 02:17:33'),(10,'submission','27a96b78-1c43-4125-b381-a869854c755f',59,109,'https://designgenious.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'167.172.20.109','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-11 15:00:07','2025-02-11 15:00:07','2025-02-11 15:00:07','2025-02-11 15:00:07'),(11,'submission','5acc344e-1de2-470f-802a-e731724f31c0',65,109,'https://designgenious.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'185.48.55.223','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-02-20 11:55:37','2025-02-20 11:55:37','2025-02-20 11:55:37','2025-02-20 11:55:37'),(12,'submission','3026dc0f-8e44-478a-88fa-cab46daba399',71,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/131.0.0.0 Safari/537.36 Avast/131.0.0.0',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-02-22 13:04:55','2025-02-22 13:04:55','2025-02-22 13:04:55','2025-02-22 13:04:55'),(13,'submission','8a0c372a-8f98-49cb-9fd4-1a57983f1018',77,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:41','2025-03-04 10:27:41','2025-03-04 10:27:41','2025-03-04 10:27:41'),(14,'submission','9b9afe8e-5268-4869-8176-d46553cff35e',83,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/130.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-03-26 21:34:53','2025-03-26 21:34:53','2025-03-26 21:34:53','2025-03-26 21:34:53'),(15,'submission','636187fd-4961-441d-b0b3-64f5398c345b',89,109,'https://designgenious.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'107.175.81.176','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-04-23 13:35:49','2025-04-23 13:35:49','2025-04-23 13:35:49','2025-04-23 13:35:49'),(16,'submission','69a2b422-98c3-48d0-92e9-9f615d5e1cbb',95,109,'https://designgenious.live/contact-us/','Contact Us','5b0549f7','New Form',0,0,'198.240.91.28','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',1,1,'new',0,'{\"edit_post_id\":\"109\"}','2025-04-25 05:05:28','2025-04-25 05:05:28','2025-04-25 05:05:28','2025-04-25 05:05:28'); /*!40000 ALTER TABLE `designgenious_e_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designgenious_e_submissions_actions_log` -- DROP TABLE IF EXISTS `designgenious_e_submissions_actions_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designgenious_e_submissions_actions_log` -- LOCK TABLES `designgenious_e_submissions_actions_log` WRITE; /*!40000 ALTER TABLE `designgenious_e_submissions_actions_log` DISABLE KEYS */; INSERT INTO `designgenious_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-29 12:12:06','2025-01-29 12:12:06','2025-01-29 12:12:06','2025-01-29 12:12:06'),(6,6,'email','Email','success',NULL,'2025-01-30 18:05:43','2025-01-30 18:05:43','2025-01-30 18:05:43','2025-01-30 18:05:43'),(7,7,'email','Email','success',NULL,'2025-02-04 19:16:56','2025-02-04 19:16:56','2025-02-04 19:16:56','2025-02-04 19:16:56'),(8,8,'email','Email','success',NULL,'2025-02-04 22:13:57','2025-02-04 22:13:57','2025-02-04 22:13:57','2025-02-04 22:13:57'),(9,9,'email','Email','success',NULL,'2025-02-05 02:17:33','2025-02-05 02:17:33','2025-02-05 02:17:33','2025-02-05 02:17:33'),(10,10,'email','Email','success',NULL,'2025-02-11 15:00:07','2025-02-11 15:00:07','2025-02-11 15:00:07','2025-02-11 15:00:07'),(11,11,'email','Email','success',NULL,'2025-02-20 11:55:37','2025-02-20 11:55:37','2025-02-20 11:55:37','2025-02-20 11:55:37'),(12,12,'email','Email','success',NULL,'2025-02-22 13:04:55','2025-02-22 13:04:55','2025-02-22 13:04:55','2025-02-22 13:04:55'),(13,13,'email','Email','success',NULL,'2025-03-04 10:27:41','2025-03-04 10:27:41','2025-03-04 10:27:41','2025-03-04 10:27:41'),(14,14,'email','Email','success',NULL,'2025-03-26 21:34:53','2025-03-26 21:34:53','2025-03-26 21:34:53','2025-03-26 21:34:53'),(15,15,'email','Email','success',NULL,'2025-04-23 13:35:49','2025-04-23 13:35:49','2025-04-23 13:35:49','2025-04-23 13:35:49'),(16,16,'email','Email','success',NULL,'2025-04-25 05:05:28','2025-04-25 05:05:28','2025-04-25 05:05:28','2025-04-25 05:05:28'); /*!40000 ALTER TABLE `designgenious_e_submissions_actions_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designgenious_e_submissions_values` -- DROP TABLE IF EXISTS `designgenious_e_submissions_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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=98 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designgenious_e_submissions_values` -- LOCK TABLES `designgenious_e_submissions_values` WRITE; /*!40000 ALTER TABLE `designgenious_e_submissions_values` DISABLE KEYS */; INSERT INTO `designgenious_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','JohnacadE'),(27,5,'field_70d8667','Apple'),(28,5,'field_57c2051','83887492754'),(29,5,'email','anepivepaz038@gmail.com'),(30,5,'field_746556e','Hello write about your price'),(31,5,'message','Здравейте, исках да знам цената ви.'),(32,6,'name','RobertacadE'),(33,6,'field_70d8667','FBI'),(34,6,'field_57c2051','85893618524'),(35,6,'email','ixutikob077@gmail.com'),(36,6,'field_746556e','Hello, i writing about your price'),(37,6,'message','Hola, volia saber el seu preu.'),(38,7,'name','TedacadE'),(39,7,'field_70d8667','Wallmart'),(40,7,'field_57c2051','89862846383'),(41,7,'email','moqagides18@gmail.com'),(42,7,'field_746556e','Hello, i am writing about your the price'),(43,7,'message','Salut, ech wollt Äre Präis wëssen.'),(44,8,'name','RobertacadE'),(45,8,'field_70d8667','Apple'),(46,8,'field_57c2051','82962224396'),(47,8,'email','ixutikob077@gmail.com'),(48,8,'field_746556e','Hello, i writing about your prices'),(49,8,'message','Salut, ech wollt Äre Präis wëssen.'),(50,9,'name','Brianna Belton'),(51,9,'field_70d8667','Sebastian Rumsey'),(52,9,'field_57c2051','1201201200'),(53,9,'email','briannabelton.freeai@gmail.com'),(54,9,'field_746556e','5 Minutes to Your Custom AI Growth Strategy'),(55,9,'message','Hello,\r\n\r\nWant to see exactly how AI could benefit your business?\r\n\r\nhttps://freeaireports.com/ - provides free, custom analysis based on real industry data.\r\n\r\n5-minute assessment, instant results, practical insights - completely free and tailored to your business.\r\n\r\nTo know more reply \"Yes\"\r\n\r\nBest Wishes\r\nBrianna Belton | Sr. AI consultant\r\n\r\n\r\nReply STOP to opt out.\r\n\r\n\r\n\r\nYour Website - designgenious.live'),(56,10,'name','Mikki McLeay'),(57,10,'field_70d8667','Mikki McLeay'),(58,10,'field_57c2051','291314354'),(59,10,'email','mcleay.mikki@hotmail.com'),(60,10,'field_746556e','Let\'s Help You Monetize Your Website with Premium Ads'),(61,10,'message',''),(62,11,'name','Lucy Gordon'),(63,11,'field_70d8667','Carmon Delprat'),(64,11,'field_57c2051','1201201200'),(65,11,'email','lucygordon.mkt@gmail.com'),(66,11,'field_746556e','Re: SEO Assistance'),(67,11,'message','Hello designgenious.live,\r\n\r\nDo you want to increase your website traffic and attract more potential clients?\r\n\r\nLet me know if you\'re interested in learning more about what we offer.\r\n\r\nWell wishes,\r\nLucy Gordon | Digital Marketing Manager\r\n\r\n\r\n\r\nNote: - If you’re not Interested in our Services, send us \"opt-out\"'),(68,12,'name','MiaacadE'),(69,12,'field_70d8667','Apple'),(70,12,'field_57c2051','88688367816'),(71,12,'email','ebojajuje04@gmail.com'),(72,12,'field_746556e','Hallo, writing about your the price'),(73,12,'message','Hi, roeddwn i eisiau gwybod eich pris.'),(74,13,'name','OliviaacadE'),(75,13,'field_70d8667','Apple'),(76,13,'field_57c2051','84867486436'),(77,13,'email','ebojajuje04@gmail.com'),(78,13,'field_746556e','Hallo i am wrote about your the price'),(79,13,'message','Hi, kam dashur të di çmimin tuaj'),(80,14,'name','RaymondSip'),(81,14,'field_70d8667','Google'),(82,14,'field_57c2051','87891237351'),(83,14,'email','raymondJuillaCam@gmail.com'),(84,14,'field_746556e','A remarkable new method of advertising.'),(85,14,'message','Good afternoon! designgenious.live \r\n \r\nReach new clients lawfully and efficiently with direct proposal submissions. \r\nThis guarantees a secure and lawful approach, making it a safe and effective way to reach potential clients. \r\nContact Form messages are treated as significant, so they rarely end up in spam. \r\nStart using our service today—no hidden fees! \r\nOur service lets you deliver up to 50,000 messages to potential clients. \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.'),(86,15,'name','Joanna Riggs'),(87,15,'field_70d8667',''),(88,15,'field_57c2051','213344820'),(89,15,'email','joannariggs30@gmail.com'),(90,15,'field_746556e','Video Promotion for your website'),(91,15,'message','Hi,\r\n\r\nI just visited designgenious.live and wondered if you\'ve ever considered an impactful video to advertise your business? Our videos can generate impressive results on both your website and across social media.\r\n\r\nOur prices start from just $195.\r\n\r\nLet me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna'),(92,16,'name','Jessica Langdon'),(93,16,'field_70d8667',''),(94,16,'field_57c2051','7739942216'),(95,16,'email','jessicalangdon01@gmail.com'),(96,16,'field_746556e','Youtube Promotion: Grow your subscribers by 700 each month'),(97,16,'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- Channel Creation: If you haven\'t started your YouTube journey yet, we can create a professional channel for you as part of your initial order.\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'); /*!40000 ALTER TABLE `designgenious_e_submissions_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designgenious_links` -- DROP TABLE IF EXISTS `designgenious_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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 `designgenious_links` -- LOCK TABLES `designgenious_links` WRITE; /*!40000 ALTER TABLE `designgenious_links` DISABLE KEYS */; /*!40000 ALTER TABLE `designgenious_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `designgenious_options` -- DROP TABLE IF EXISTS `designgenious_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `designgenious_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=16765 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `designgenious_options` -- LOCK TABLES `designgenious_options` WRITE; /*!40000 ALTER TABLE `designgenious_options` DISABLE KEYS */; INSERT INTO `designgenious_options` VALUES (1,'cron','a:12:{i:1750277865;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:1750395112;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://designgenious.live','on'),(3,'home','https://designgenious.live','on'),(4,'blogname','Design Genious','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:7:{i:2;s:34:\"advanced-custom-fields-pro/acf.php\";i:3;s:31:\"elementor-pro/elementor-pro.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:37:\"elementskit-lite/elementskit-lite.php\";i:6;s:35:\"envato-elements/envato-elements.php\";i:7;s:73:\"skyboot-custom-icons-for-elementor/skyboot-custom-icons-for-elementor.php\";i:8;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:75:\"/home/designgenious/public_html/wp-content/themes/design-ggenious/style.css\";i:2;s:79:\"/home/designgenious/public_html/wp-content/themes/design-ggenious/functions.php\";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:0:{}','on'),(78,'widget_text','a:0:{}','on'),(79,'widget_rss','a:0:{}','on'),(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','89','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,'designgenious_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:1740150570;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1740150556;}','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:1747889422;s:5:\"value\";s:7090:\"[{\"id\":\"hello-theme-3.4.2\",\"title\":\"3.4.2 - 2025-05-19\",\"description\":\"\\n