-- MySQL dump 10.13  Distrib 8.0.33, for macos13 (x86_64)
--
-- Host: 127.0.0.1    Database: resido_2
-- ------------------------------------------------------
-- Server version	8.0.23

/*!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 */;
/*!50503 SET NAMES utf8 */;
/*!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 `activations`
--

DROP TABLE IF EXISTS `activations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `activations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `code` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `completed` tinyint(1) NOT NULL DEFAULT '0',
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `activations_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `activations`
--

LOCK TABLES `activations` WRITE;
/*!40000 ALTER TABLE `activations` DISABLE KEYS */;
INSERT INTO `activations` VALUES (1,1,'sSTxvcXFYlWSACCX7KCOTPgl0ocxMLnW',1,'2023-07-02 03:21:31','2023-07-02 03:21:31','2023-07-02 03:21:31'),(2,2,'GpHKOW1o7TgT9G90KUpACNDcSYjDOOH9',1,'2023-07-02 03:21:31','2023-07-02 03:21:31','2023-07-02 03:21:31'),(3,1,'zYJpie1wpz4CUMMQivaQJ5TwgtWXK8qe',1,'2023-07-02 03:25:06','2023-07-02 03:25:06','2023-07-02 03:25:06'),(4,2,'CzJLCkHuzA7QWwfbEhQGKp9C8JIMcE1c',1,'2023-07-02 03:25:06','2023-07-02 03:25:06','2023-07-02 03:25:06'),(5,1,'dOz8fsELn3fpAlzwf2oNBJyUjk4T3b4E',1,'2023-07-02 04:36:27','2023-07-02 04:36:27','2023-07-02 04:36:27'),(6,2,'El23GHISsWAL5pS2Eo4WeaCbAL7yN5r7',1,'2023-07-02 04:36:27','2023-07-02 04:36:27','2023-07-02 04:36:27'),(7,1,'6Yrw37zNEcdGttPgWs61UodueacuY1Oj',1,'2023-07-02 04:43:07','2023-07-02 04:43:07','2023-07-02 04:43:07'),(8,2,'wFmSOQET6Tdyhtui1i25aAnuXoDNp9sO',1,'2023-07-02 04:43:07','2023-07-02 04:43:07','2023-07-02 04:43:07'),(9,1,'sRQ6Tpza80ga8paWaYMlzrzQlt0T3EXC',1,'2023-07-02 04:53:02','2023-07-02 04:53:02','2023-07-02 04:53:02'),(10,2,'W1RhAwERBmxgQY0AKfWBsbJlc6SqVRc1',1,'2023-07-02 04:53:02','2023-07-02 04:53:02','2023-07-02 04:53:02'),(11,1,'TON7Gu8XgQSKq5s85GurutRNfTvQyWmL',1,'2023-07-02 05:01:50','2023-07-02 05:01:50','2023-07-02 05:01:50'),(12,2,'K6wwMv82f2EIl40rbsqBnT7jNsEcshOH',1,'2023-07-02 05:01:50','2023-07-02 05:01:50','2023-07-02 05:01:50');
/*!40000 ALTER TABLE `activations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_notifications`
--

DROP TABLE IF EXISTS `admin_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_notifications` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `permission` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_notifications`
--

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

--
-- Table structure for table `audit_histories`
--

DROP TABLE IF EXISTS `audit_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_histories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `request` text COLLATE utf8mb4_unicode_ci,
  `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_user` bigint unsigned NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `reference_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `audit_histories_user_id_index` (`user_id`),
  KEY `audit_histories_module_index` (`module`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `audit_histories`
--

LOCK TABLES `audit_histories` WRITE;
/*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */;
INSERT INTO `audit_histories` VALUES (1,1,'block','{\"name\":\"Download App\",\"alias\":\"download-app\",\"description\":null,\"content\":\"<div class=\\\"raw-html-embed\\\">\\r\\n                                        \\r\\n   <section class=\\\"bg-light\\\">\\r\\n  <div class=\\\"container\\\">\\r\\n    <div class=\\\"row align-items-center\\\">\\r\\n      <div class=\\\"col-lg-7 col-md-12 col-sm-12 content-column\\\">\\r\\n        <div class=\\\"content_block_2\\\">\\r\\n          <div class=\\\"content-box\\\">\\r\\n            <div class=\\\"sec-title light\\\">\\r\\n              <p class=\\\"text-blue\\\">Download apps<\\/p>\\r\\n\\r\\n              <h2>Download App Free App For Android And IPhone<\\/h2>\\r\\n            <\\/div>\\r\\n\\r\\n            <div class=\\\"text\\\"><p><\\/p><\\/div>\\r\\n\\r\\n            <div class=\\\"btn-box clearfix mt-5\\\">\\r\\n                <a href=\\\"#\\\" class=\\\"download-btn play-store\\\">\\r\\n                    <i class=\\\"fab fa-google-play\\\"><\\/i>\\r\\n                    <span>Download on<\\/span>\\r\\n                    <h3>Google Play<\\/h3>\\r\\n                <\\/a>\\r\\n                <a href=\\\"#\\\" class=\\\"download-btn app-store\\\">\\r\\n                    <i class=\\\"fab fa-apple\\\"><\\/i>\\r\\n                    <span>Download on<\\/span>\\r\\n                    <h3>App Store<\\/h3>\\r\\n                <\\/a>\\r\\n            <\\/div>\\r\\n          <\\/div>\\r\\n        <\\/div>\\r\\n      <\\/div>\\r\\n\\r\\n      <div class=\\\"col-lg-5 col-md-12 col-sm-12 image-column\\\">\\r\\n        <div class=\\\"image-box\\\">\\r\\n          <figure class=\\\"image\\\">\\r\\n            <img src=\\\"\\/storage\\/banners\\/app.png\\\" alt=\\\"image\\\" class=\\\"img-fluid\\\">\\r\\n          <\\/figure>\\r\\n        <\\/div>\\r\\n      <\\/div>\\r\\n    <\\/div>\\r\\n  <\\/div>\\r\\n<\\/section>\\r\\n\\r\\n                                    \\r\\n<\\/div>\",\"submit\":\"apply\",\"status\":\"published\"}','updated','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','172.22.0.1',1,2,'Download App','primary','2023-07-02 04:59:38','2023-07-02 04:59:38'),(2,1,'block','{\"name\":\"Download App\",\"alias\":\"download-app\",\"description\":null,\"content\":\"<div class=\\\"raw-html-embed\\\">\\r\\n                                            \\r\\n       \\r\\n    <section class=\\\"bg-light\\\">\\r\\n          \\r\\n        <div class=\\\"container\\\">\\r\\n                \\r\\n            <div class=\\\"row align-items-center\\\">\\r\\n                      \\r\\n                <div class=\\\"col-lg-7 col-md-12 col-sm-12 content-column\\\">\\r\\n                            \\r\\n                    <div class=\\\"content_block_2\\\">\\r\\n                                  \\r\\n                        <div class=\\\"content-box\\\">\\r\\n                                        \\r\\n                            <div class=\\\"sec-title light\\\">\\r\\n                                              \\r\\n                                <p class=\\\"text-blue\\\">\\r\\n                                    Download apps\\r\\n                                <\\/p>\\r\\n                                \\t\\r\\n                                \\t\\r\\n                                              \\r\\n                                <h2>\\r\\n                                    Download App Free App For Android And IPhone\\r\\n                                <\\/h2>\\r\\n                                            \\r\\n                            <\\/div>\\r\\n                            \\t\\r\\n                            \\t\\r\\n                                        \\r\\n                            <div class=\\\"text\\\">\\r\\n                                <p>\\r\\n                                <\\/p>\\r\\n                                \\t\\r\\n                                \\t\\r\\n                            <\\/div>\\r\\n                            \\t\\r\\n                            \\t\\r\\n                                        \\r\\n                            <div class=\\\"btn-box clearfix mt-5\\\">\\r\\n                                                <a href=\\\"#\\\" class=\\\"download-btn play-store\\\">\\r\\n                                                    <i class=\\\"fab fa-google-play\\\"><\\/i>\\r\\n                                                    <span>Download on<\\/span>\\r\\n                                \\t\\r\\n                                \\t\\r\\n                                                    <\\/a>\\r\\n                                <a href=\\\"#\\\" class=\\\"download-btn play-store\\\">\\r\\n                                                <\\/a>\\r\\n                                                <a href=\\\"#\\\" class=\\\"download-btn app-store\\\">\\r\\n                                                    <i class=\\\"fab fa-apple\\\"><\\/i>\\r\\n                                                    <span>Download on<\\/span>\\r\\n                                \\t\\r\\n                                \\t\\r\\n                                                    <\\/a>\\r\\n                                <a href=\\\"#\\\" class=\\\"download-btn app-store\\\">\\r\\n                                                <\\/a>\\r\\n                                            \\r\\n                            <\\/div>\\r\\n                            \\t\\r\\n                            \\t\\r\\n                                      \\r\\n                        <\\/div>\\r\\n                        \\t\\r\\n                        \\t\\r\\n                                \\r\\n                    <\\/div>\\r\\n                    \\t\\r\\n                    \\t\\r\\n                          \\r\\n                <\\/div>\\r\\n                \\t\\r\\n                \\t\\r\\n                      \\r\\n                <div class=\\\"col-lg-5 col-md-12 col-sm-12 image-column\\\">\\r\\n                            \\r\\n                    <div class=\\\"image-box\\\">\\r\\n                                  \\r\\n                        <figure class=\\\"image\\\">\\r\\n                                        <img src=\\\"\\/storage\\/banners\\/app.png\\\" alt=\\\"image\\\" class=\\\"img-fluid\\\">\\r\\n                                      \\r\\n                        <\\/figure>\\r\\n                                \\r\\n                    <\\/div>\\r\\n                    \\t\\r\\n                    \\t\\r\\n                          \\r\\n                <\\/div>\\r\\n                \\t\\r\\n                \\t\\r\\n                    \\r\\n            <\\/div>\\r\\n            \\t\\r\\n            \\t\\r\\n              \\r\\n        <\\/div>\\r\\n        \\t\\r\\n        \\t\\r\\n    <\\/section>\\r\\n                                        \\r\\n<\\/div>\",\"submit\":\"apply\",\"status\":\"published\"}','updated','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','172.22.0.1',1,2,'Download App','primary','2023-07-02 05:00:51','2023-07-02 05:00:51');
/*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blocks`
--

DROP TABLE IF EXISTS `blocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blocks` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `alias` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `user_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `blocks_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blocks`
--

LOCK TABLES `blocks` WRITE;
/*!40000 ALTER TABLE `blocks` DISABLE KEYS */;
INSERT INTO `blocks` VALUES (1,'Sign up','sign-up','','\n                                <div class=\"raw-html-embed\">\n                                    <section class=\"theme-bg call-to-act-wrap\">\n                                        <div class=\"container\">\n                                            <div class=\"row\">\n                                                <div class=\"col-lg-12\">\n\n                                                    <div class=\"call-to-act\">\n                                                        <div class=\"call-to-act-head\">\n                                                            <h3>Want to Become a Real Estate Agent?</h3>\n                                                            <span>We\'ll help you to grow your career and growth.</span>\n                                                        </div>\n                                                        <a href=\"/register\" class=\"btn btn-call-to-act\">Sign Up Today</a>\n                                                    </div>\n\n                                                </div>\n                                            </div>\n                                        </div>\n                                    </section>\n                                </div>\n                ','published',NULL,'2023-07-02 05:01:51','2023-07-02 05:01:51'),(2,'Download App','download-app','','\n                                <div class=\"raw-html-embed\">\n                                    <section class=\"bg-light\">\n                                        <div class=\"container\">\n                                            <div class=\"row align-items-center\">\n                                                <div class=\"col-lg-7 col-md-12 col-sm-12 content-column\">\n                                                    <div class=\"content_block_2\">\n                                                        <div class=\"content-box\">\n                                                        <div class=\"sec-title light\">\n                                                            <p class=\"text-blue\">Download apps</p>\n                                                            <h2>Download App Free App For Android And IPhone</h2>\n                                                        </div>\n                                                        <div class=\"text\"><p></p></div>\n                                                        <div class=\"btn-box clearfix mt-5\">\n                                                            <a href=\"#\" class=\"download-btn play-store\">\n                                                                <i class=\"fab fa-google-play\"></i>\n                                                                <span>Download on</span>\n                                                                </a><h3><a href=\"#\" class=\"download-btn play-store\">Google Play</a></h3><a href=\"#\" class=\"download-btn play-store\">\n                                                            </a>\n                                                            <a href=\"#\" class=\"download-btn app-store\">\n                                                                <i class=\"fab fa-apple\"></i>\n                                                                <span>Download on</span>\n                                                                </a><h3><a href=\"#\" class=\"download-btn app-store\">App Store</a></h3><a href=\"#\" class=\"download-btn app-store\">\n                                                            </a>\n                                                        </div>\n                                                        </div>\n                                                    </div>\n                                                </div>\n                                                <div class=\"col-lg-5 col-md-12 col-sm-12 image-column\">\n                                                    <div class=\"image-box\">\n                                                        <figure class=\"image\">\n                                                        <img src=\"/storage/banners/app.png\" alt=\"image\" class=\"img-fluid\">\n                                                        </figure>\n                                                    </div>\n                                                </div>\n                                            </div>\n                                        </div>\n                                    </section>\n                                </div>\n                ','published',NULL,'2023-07-02 05:01:51','2023-07-02 05:01:51'),(3,'Download App Footer','download-app-footer','','\n                                <div class=\"raw-html-embed\">\n                                    <div class=\"footer-widget\">\n                                        <h4 class=\"widget-title\">Download Apps</h4>\n                                        <a href=\"#\" class=\"other-store-link\">\n                                            </a><div class=\"other-store-app\"><a href=\"#\" class=\"other-store-link\">\n                                                </a><div class=\"os-app-icon\"><a href=\"#\" class=\"other-store-link\">\n                                                    <i class=\"lni-playstore theme-cl\"></i>\n                                                </a></div><a href=\"#\" class=\"other-store-link\">\n                                                </a><div class=\"os-app-caps\"><a href=\"#\" class=\"other-store-link\">\n                                                    Google Play\n                                                    <span>Get It Now</span>\n                                                </a></div><a href=\"#\" class=\"other-store-link\">\n                                            </a></div><a href=\"#\" class=\"other-store-link\">\n                                        </a>\n                                        <a href=\"#\" class=\"other-store-link\">\n                                            </a><div class=\"other-store-app\"><a href=\"#\" class=\"other-store-link\">\n                                                </a><div class=\"os-app-icon\"><a href=\"#\" class=\"other-store-link\">\n                                                    <i class=\"lni-apple theme-cl\"></i>\n                                                </a></div><a href=\"#\" class=\"other-store-link\">\n                                                </a><div class=\"os-app-caps\"><a href=\"#\" class=\"other-store-link\">\n                                                    App Store\n                                                    <span>Now it Available</span>\n                                                </a></div><a href=\"#\" class=\"other-store-link\">\n                                            </a></div><a href=\"#\" class=\"other-store-link\">\n                                        </a>\n                                    </div>\n                                </div>\n                ','published',NULL,'2023-07-02 05:01:51','2023-07-02 05:01:51'),(4,'How It Works?','how-it-works','','\n                                    <div class=\"raw-html-embed\">\n                                        <section>\n                                            <div class=\"container\">\n\n                                                <div class=\"row justify-content-center\">\n                                                    <div class=\"col-lg-7 col-md-10 text-center\">\n                                                        <div class=\"sec-heading center\">\n                                                            <h2>How It Works?</h2>\n                                                            <p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"row\">\n                                                    <div class=\"col-lg-4 col-md-4\">\n                                                        <div class=\"middle-icon-features-item\">\n                                                            <div class=\"icon-features-wrap\"><div class=\"middle-icon-large-features-box f-light-success\"><i class=\"ti-receipt text-success\"></i></div></div>\n                                                            <div class=\"middle-icon-features-content\">\n                                                                <h4>Evaluate Property</h4>\n                                                                <p>There are many variations of passages of Lorem Ipsum available, but the majority have Ipsum available.</p>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n\n                                                    <div class=\"col-lg-4 col-md-4\">\n                                                        <div class=\"middle-icon-features-item\">\n                                                            <div class=\"icon-features-wrap\"><div class=\"middle-icon-large-features-box f-light-warning\"><i class=\"ti-user text-warning\"></i></div></div>\n                                                            <div class=\"middle-icon-features-content\">\n                                                                <h4>Meet Your Agent</h4>\n                                                                <p>There are many variations of passages of Lorem Ipsum available, but the majority have Ipsum available.</p>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n\n                                                    <div class=\"col-lg-4 col-md-4\">\n                                                        <div class=\"middle-icon-features-item remove\">\n                                                            <div class=\"icon-features-wrap\"><div class=\"middle-icon-large-features-box f-light-blue\"><i class=\"ti-shield text-blue\"></i></div></div>\n                                                            <div class=\"middle-icon-features-content\">\n                                                                <h4>Close The Deal</h4>\n                                                                <p>There are many variations of passages of Lorem Ipsum available, but the majority have Ipsum available.</p>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                            </div>\n                                        </section>\n                                    </div>','published',NULL,'2023-07-02 05:01:51','2023-07-02 05:01:51'),(5,'Achievement','achievement','','\n                                    <div class=\"raw-html-embed\">\n                                        <section>\n                                            <div class=\"container\">\n\n                                                <div class=\"row justify-content-center\">\n                                                    <div class=\"col-lg-7 col-md-10 text-center\">\n                                                        <div class=\"sec-heading center mb-4\">\n                                                            <h2>Achievement</h2>\n                                                            <p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"row\">\n                                                    <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                        <div class=\"achievement-wrap\">\n                                                            <div class=\"achievement-content\">\n                                                                <h4>20500+</h4>\n                                                                <p>Completed Property</p>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n\n                                                    <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                        <div class=\"achievement-wrap\">\n                                                            <div class=\"achievement-content\">\n                                                                <h4>7600+</h4>\n                                                                <p>Property Sales</p>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n\n                                                    <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                        <div class=\"achievement-wrap\">\n                                                            <div class=\"achievement-content\">\n                                                                <h4>12300+</h4>\n                                                                <p>Apartment Rent</p>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n\n                                                    <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                        <div class=\"achievement-wrap\">\n                                                            <div class=\"achievement-content\">\n                                                                <h4>15200+</h4>\n                                                                <p>Happy Clients</p>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n\n                                                </div>\n\n                                            </div>\n                                        </section>\n                                        <div class=\"clearfix\"></div>\n                                    </div>','published',NULL,'2023-07-02 05:01:51','2023-07-02 05:01:51'),(6,'Our Story','our-story','','\n                                    <div class=\"raw-html-embed\">\n                                        <section>\n                                            <div class=\"container\">\n                                                <div class=\"row align-items-center\">\n\n                                                    <div class=\"col-lg-6 col-md-6\">\n                                                        <img src=\"/storage/block/sb.png\" class=\"img-fluid\" alt=\"\">\n                                                    </div>\n\n                                                    <div class=\"col-lg-6 col-md-6\">\n                                                        <div class=\"story-wrap explore-content\">\n\n                                                            <h2>Our Story</h2>\n                                                            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n                                                            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.</p>\n\n                                                        </div>\n                                                    </div>\n                                                </div>\n                                            </div>\n                                        </section>\n                                    </div>\n                ','published',NULL,'2023-07-02 05:01:51','2023-07-02 05:01:51'),(7,'Our mission','our-mission','','\n                            <div class=\"raw-html-embed\">\n                                <section>\n                                    <div class=\"container\">\n\n                                        <div class=\"row\">\n                                            <div class=\"col-lg-12 col-md-12\">\n                                                <div class=\"sec-heading center\">\n                                                    <h2>Our Mission &amp; Work Process</h2>\n                                                    <p>Professional &amp; Dedicated Team</p>\n                                                </div>\n                                            </div>\n                                        </div>\n\n                                        <div class=\"row align-items-center\">\n\n                                            <div class=\"col-lg-6 col-md-6\">\n\n                                                <div class=\"icon-mi-left\">\n                                                    <i class=\"ti-lock theme-cl\"></i>\n                                                    <div class=\"icon-mi-left-content\">\n                                                        <h4>Fully Secure &amp; 24x7 Dedicated Support</h4>\n                                                        <p>If you are an individual client, or just a business startup looking for good backlinks for your website.</p>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"icon-mi-left\">\n                                                    <i class=\"ti-twitter theme-cl\"></i>\n                                                    <div class=\"icon-mi-left-content\">\n                                                        <h4>Manage your Social &amp; Busness Account Carefully</h4>\n                                                        <p>If you are an individual client, or just a business startup looking for good backlinks for your website.</p>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"icon-mi-left\">\n                                                    <i class=\"ti-layers theme-cl\"></i>\n                                                    <div class=\"icon-mi-left-content\">\n                                                        <h4>We are Very Hard Worker and loving</h4>\n                                                        <p>If you are an individual client, or just a business startup looking for good backlinks for your website.</p>\n                                                    </div>\n                                                </div>\n\n                                            </div>\n\n                                            <div class=\"col-lg-6 col-md-6\">\n                                                <img src=\"/storage/block/vec-2.png\" class=\"img-fluid\" alt=\"\">\n                                            </div>\n\n                                        </div>\n                                    </div>\n                                </section>\n                            </div>\n                ','published',NULL,'2023-07-02 05:01:51','2023-07-02 05:01:51');
/*!40000 ALTER TABLE `blocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blocks_translations`
--

DROP TABLE IF EXISTS `blocks_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blocks_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `blocks_id` bigint unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`blocks_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blocks_translations`
--

LOCK TABLES `blocks_translations` WRITE;
/*!40000 ALTER TABLE `blocks_translations` DISABLE KEYS */;
INSERT INTO `blocks_translations` VALUES ('vi',1,'Sign up','','\n                                <div class=\"raw-html-embed\">\n                                    <section class=\"theme-bg call-to-act-wrap\">\n                                        <div class=\"container\">\n                                            <div class=\"row\">\n                                                <div class=\"col-lg-12\">\n\n                                                    <div class=\"call-to-act\">\n                                                        <div class=\"call-to-act-head\">\n                                                            <h3>Want to Become a Real Estate Agent?</h3>\n                                                            <span>We\'ll help you to grow your career and growth.</span>\n                                                        </div>\n                                                        <a href=\"/register\" class=\"btn btn-call-to-act\">Sign Up Today</a>\n                                                    </div>\n\n                                                </div>\n                                            </div>\n                                        </div>\n                                    </section>\n                                </div>\n                '),('vi',2,'Download App','','\n                                    <div class=\"raw-html-embed\">\n                                        <section class=\"bg-light\">\n                                            <div class=\"container\">\n                                                <div class=\"row align-items-center\">\n                                                    <div class=\"col-lg-7 col-md-12 col-sm-12 content-column\">\n                                                        <div class=\"content_block_2\">\n                                                            <div class=\"content-box\">\n                                                            <div class=\"sec-title light\">\n                                                                <p class=\"text-blue\">Download apps</p>\n                                                                <h2>Download App Free App For Android And IPhone</h2>\n                                                            </div>\n                                                            <div class=\"text\"><p></p></div>\n                                                            <div class=\"btn-box clearfix mt-5\">\n                                                                <a href=\"#\" class=\"download-btn play-store\">\n                                                                    <i class=\"fab fa-google-play\"></i>\n                                                                    <span>Download on</span>\n                                                                    <h3>Google Play</h3>\n                                                                </a>\n                                                                <a href=\"#\" class=\"download-btn app-store\">\n                                                                    <i class=\"fab fa-apple\"></i>\n                                                                    <span>Download on</span>\n                                                                    <h3>App Store</h3>\n                                                                </a>\n                                                            </div>\n                                                            </div>\n                                                        </div>\n                                                    </div>\n                                                    <div class=\"col-lg-5 col-md-12 col-sm-12 image-column\">\n                                                        <div class=\"image-box\">\n                                                            <figure class=\"image\">\n                                                            <img\n                                                                src=\"/storage/banners/app.png\"\n                                                                alt=\"image\"\n                                                                class=\"img-fluid\"\n                                                            />\n                                                            </figure>\n                                                        </div>\n                                                    </div>\n                                                </div>\n                                            </div>\n                                        </section>\n                                    </div>\n\n                '),('vi',3,'Download App Footer','','\n                                    <div class=\"raw-html-embed\">\n                                        <div class=\"footer-widget\">\n                                            <h4 class=\"widget-title\">Download Apps</h4>\n                                            <a href=\"#\" class=\"other-store-link\">\n                                                <div class=\"other-store-app\">\n                                                    <div class=\"os-app-icon\">\n                                                        <i class=\"lni-playstore theme-cl\"></i>\n                                                    </div>\n                                                    <div class=\"os-app-caps\">\n                                                        Google Play\n                                                        <span>Get It Now</span>\n                                                    </div>\n                                                </div>\n                                            </a>\n                                            <a href=\"#\" class=\"other-store-link\">\n                                                <div class=\"other-store-app\">\n                                                    <div class=\"os-app-icon\">\n                                                        <i class=\"lni-apple theme-cl\"></i>\n                                                    </div>\n                                                    <div class=\"os-app-caps\">\n                                                        App Store\n                                                        <span>Now it Available</span>\n                                                    </div>\n                                                </div>\n                                            </a>\n                                        </div>\n                                    </div>\n                '),('vi',4,'How It Works?','','\n                                <div class=\"raw-html-embed\">\n                                    <section>\n                                        <div class=\"container\">\n\n                                            <div class=\"row justify-content-center\">\n                                                <div class=\"col-lg-7 col-md-10 text-center\">\n                                                    <div class=\"sec-heading center\">\n                                                        <h2>How It Works?</h2>\n                                                        <p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores</p>\n                                                    </div>\n                                                </div>\n                                            </div>\n\n                                            <div class=\"row\">\n                                                <div class=\"col-lg-4 col-md-4\">\n                                                    <div class=\"middle-icon-features-item\">\n                                                        <div class=\"icon-features-wrap\"><div class=\"middle-icon-large-features-box f-light-success\"><i class=\"ti-receipt text-success\"></i></div></div>\n                                                        <div class=\"middle-icon-features-content\">\n                                                            <h4>Evaluate Property</h4>\n                                                            <p>There are many variations of passages of Lorem Ipsum available, but the majority have Ipsum available.</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"col-lg-4 col-md-4\">\n                                                    <div class=\"middle-icon-features-item\">\n                                                        <div class=\"icon-features-wrap\"><div class=\"middle-icon-large-features-box f-light-warning\"><i class=\"ti-user text-warning\"></i></div></div>\n                                                        <div class=\"middle-icon-features-content\">\n                                                            <h4>Meet Your Agent</h4>\n                                                            <p>There are many variations of passages of Lorem Ipsum available, but the majority have Ipsum available.</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"col-lg-4 col-md-4\">\n                                                    <div class=\"middle-icon-features-item remove\">\n                                                        <div class=\"icon-features-wrap\"><div class=\"middle-icon-large-features-box f-light-blue\"><i class=\"ti-shield text-blue\"></i></div></div>\n                                                        <div class=\"middle-icon-features-content\">\n                                                            <h4>Close The Deal</h4>\n                                                            <p>There are many variations of passages of Lorem Ipsum available, but the majority have Ipsum available.</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n                                            </div>\n\n                                        </div>\n                                    </section>\n                                </div>'),('vi',5,'Achievement','','\n                                <div class=\"raw-html-embed\">\n                                    <section>\n                                        <div class=\"container\">\n\n                                            <div class=\"row justify-content-center\">\n                                                <div class=\"col-lg-7 col-md-10 text-center\">\n                                                    <div class=\"sec-heading center mb-4\">\n                                                        <h2>Achievement</h2>\n                                                        <p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores</p>\n                                                    </div>\n                                                </div>\n                                            </div>\n\n                                            <div class=\"row\">\n                                                <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                    <div class=\"achievement-wrap\">\n                                                        <div class=\"achievement-content\">\n                                                            <h4>20500+</h4>\n                                                            <p>Completed Property</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                    <div class=\"achievement-wrap\">\n                                                        <div class=\"achievement-content\">\n                                                            <h4>7600+</h4>\n                                                            <p>Property Sales</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                    <div class=\"achievement-wrap\">\n                                                        <div class=\"achievement-content\">\n                                                            <h4>12300+</h4>\n                                                            <p>Apartment Rent</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                                <div class=\"col-lg-3 col-md-3 col-sm-6\">\n                                                    <div class=\"achievement-wrap\">\n                                                        <div class=\"achievement-content\">\n                                                            <h4>15200+</h4>\n                                                            <p>Happy Clients</p>\n                                                        </div>\n                                                    </div>\n                                                </div>\n\n                                            </div>\n\n                                        </div>\n                                    </section>\n                                    <div class=\"clearfix\"></div>\n                                </div>'),('vi',6,'Our Story','','\n                                <div class=\"raw-html-embed\">\n                                    <section>\n                                        <div class=\"container\">\n                                            <div class=\"row align-items-center\">\n\n                                                <div class=\"col-lg-6 col-md-6\">\n                                                    <img src=\"/storage/block/sb.png\" class=\"img-fluid\" alt=\"\">\n                                                </div>\n\n                                                <div class=\"col-lg-6 col-md-6\">\n                                                    <div class=\"story-wrap explore-content\">\n\n                                                        <h2>Our Story</h2>\n                                                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n                                                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.</p>\n\n                                                    </div>\n                                                </div>\n                                            </div>\n                                        </div>\n                                    </section>\n                                </div>\n                '),('vi',7,'Our Story','','\n                                <div class=\"raw-html-embed\">\n                                    <section>\n                                        <div class=\"container\">\n                                            <div class=\"row align-items-center\">\n\n                                                <div class=\"col-lg-6 col-md-6\">\n                                                    <img src=\"/storage/block/sb.png\" class=\"img-fluid\" alt=\"\">\n                                                </div>\n\n                                                <div class=\"col-lg-6 col-md-6\">\n                                                    <div class=\"story-wrap explore-content\">\n\n                                                        <h2>Our Story</h2>\n                                                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n                                                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.</p>\n\n                                                    </div>\n                                                </div>\n                                            </div>\n                                        </div>\n                                    </section>\n                                </div>\n                '),('vi',8,'Our mission','','\n                            <div class=\"raw-html-embed\">\n                                <section>\n                                    <div class=\"container\">\n                                        <div class=\"row\">\n                                            <div class=\"col-lg-12 col-md-12\">\n                                                <div class=\"sec-heading center\">\n                                                    <h2>Our Mission &amp; Work Process</h2>\n                                                    <p>Professional &amp; Dedicated Team</p>\n                                                </div>\n                                            </div>\n                                        </div>\n                                        <div class=\"row align-items-center\">\n                                            <div class=\"col-lg-6 col-md-6\">\n                                                <div class=\"icon-mi-left\">\n                                                    <i class=\"ti-lock theme-cl\"></i>\n                                                    <div class=\"icon-mi-left-content\">\n                                                        <h4>Fully Secure &amp; 24x7 Dedicated Support</h4>\n                                                        <p>If you are an individual client, or just a business startup looking for good backlinks for your website.</p>\n                                                    </div>\n                                                </div>\n                                                <div class=\"icon-mi-left\">\n                                                    <i class=\"ti-twitter theme-cl\"></i>\n                                                    <div class=\"icon-mi-left-content\">\n                                                        <h4>Manage your Social &amp; Busness Account Carefully</h4>\n                                                        <p>If you are an individual client, or just a business startup looking for good backlinks for your website.</p>\n                                                    </div>\n                                                </div>\n                                                <div class=\"icon-mi-left\">\n                                                    <i class=\"ti-layers theme-cl\"></i>\n                                                    <div class=\"icon-mi-left-content\">\n                                                        <h4>We are Very Hard Worker and loving</h4>\n                                                        <p>If you are an individual client, or just a business startup looking for good backlinks for your website.</p>\n                                                    </div>\n                                                </div>\n                                            </div>\n                                            <div class=\"col-lg-6 col-md-6\">\n                                                <img src=\"/storage/block/vec-2.png\" class=\"img-fluid\" alt=\"\">\n                                            </div>\n                                        </div>\n                                    </div>\n                                </section>\n                            </div>\n                ');
/*!40000 ALTER TABLE `blocks_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_id` bigint unsigned NOT NULL DEFAULT '0',
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` bigint unsigned NOT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent_id` (`parent_id`),
  KEY `status` (`status`),
  KEY `created_at` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Latest news',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2023-07-02 05:02:15','2023-07-02 05:02:15'),(2,'House architecture',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2023-07-02 05:02:15','2023-07-02 05:02:15'),(3,'House design',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2023-07-02 05:02:15','2023-07-02 05:02:15'),(4,'Building materials',0,NULL,'published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2023-07-02 05:02:15','2023-07-02 05:02:15');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories_translations`
--

DROP TABLE IF EXISTS `categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `categories_id` bigint unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories_translations`
--

LOCK TABLES `categories_translations` WRITE;
/*!40000 ALTER TABLE `categories_translations` DISABLE KEYS */;
INSERT INTO `categories_translations` VALUES ('vi',1,'Tin tức mới nhất',NULL),('vi',2,'Kiến trúc nhà',NULL),('vi',3,'Thiết kế nhà',NULL),('vi',4,'Vật liệu xây dựng',NULL);
/*!40000 ALTER TABLE `categories_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cities`
--

DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `state_id` int unsigned DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `cities_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=904 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities`
--

LOCK TABLES `cities` WRITE;
/*!40000 ALTER TABLE `cities` DISABLE KEYS */;
INSERT INTO `cities` VALUES (1,'Newark',35,1,NULL,0,1,'published','2023-07-02 05:01:41','2023-07-02 05:01:41','newark'),(2,'Peoria',17,1,NULL,0,1,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','peoria'),(3,'O\'Fallon',30,1,NULL,0,1,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','ofallon'),(4,'Hampton',55,1,NULL,0,1,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','hampton'),(5,'Lakewood',7,1,NULL,0,1,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','lakewood'),(6,'Mesa',4,1,NULL,0,1,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','mesa'),(7,'Bryan',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','bryan'),(8,'Garland',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','garland'),(9,'Springfield',17,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','springfield'),(10,'Flint',27,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','flint'),(11,'Tacoma',56,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','tacoma'),(12,'Waterbury',8,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','waterbury'),(13,'Eagan',28,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','eagan'),(14,'Fort Smith',5,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','fort-smith'),(15,'Carmichael',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','carmichael'),(16,'Daly City',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','daly-city'),(17,'Murrieta',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','murrieta'),(18,'Brentwood',37,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','brentwood'),(19,'Quincy',26,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','quincy'),(20,'Boulder',7,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','boulder'),(21,'Evanston',17,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','evanston'),(22,'Dothan',1,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','dothan'),(23,'Antioch',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','antioch'),(24,'Madison',58,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','madison'),(25,'Victorville',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','victorville'),(26,'Billings',31,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','billings'),(27,'Sandy Springs',13,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','sandy-springs'),(28,'Iowa City',19,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','iowa-city'),(29,'Largo',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','largo'),(30,'Shreveport',22,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','shreveport'),(31,'Kalamazoo',27,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','kalamazoo'),(32,'Round Rock',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','round-rock'),(33,'Richmond',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','richmond'),(34,'Columbia',30,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','columbia'),(35,'Sandy',52,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','sandy'),(36,'Hoover',1,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','hoover'),(37,'Fullerton',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','fullerton'),(38,'Rapid City',49,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','rapid-city'),(39,'Newport Beach',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','newport-beach'),(40,'Columbus',13,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','columbus'),(41,'Palm Coast',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','palm-coast'),(42,'Albany',13,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','albany'),(43,'Jurupa Valley',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','jurupa-valley'),(44,'Providence',47,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','providence'),(45,'Decatur',17,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','decatur'),(46,'Scranton',45,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','scranton'),(47,'Anaheim',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','anaheim'),(48,'Rochester',37,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','rochester'),(49,'Buffalo',37,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','buffalo'),(50,'Santa Ana',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','santa-ana'),(51,'Sunnyvale',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','sunnyvale'),(52,'Augusta-Richmond County consolidated government',13,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','augusta-richmond-county-consolidated-government'),(53,'Milwaukee',58,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','milwaukee'),(54,'Conroe',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','conroe'),(55,'Savannah',13,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','savannah'),(56,'German',25,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','german'),(57,'Costa Mesa',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','costa-mesa'),(58,'New Haven',8,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','new-haven'),(59,'Westland',27,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','westland'),(60,'Waldorf',25,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','waldorf'),(61,'Cedar Rapids',19,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','cedar-rapids'),(62,'Troy',27,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','troy'),(63,'Kirkland',56,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','kirkland'),(64,'Santa Barbara',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','santa-barbara'),(65,'Lake Forest',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','lake-forest'),(66,'Chino',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','chino'),(67,'Tucson',4,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','tucson'),(68,'Boise',16,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','boise'),(69,'Joliet',17,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','joliet'),(70,'Metairie',22,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','metairie'),(71,'Moreno Valley',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','moreno-valley'),(72,'Elizabeth',35,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','elizabeth'),(73,'Wyoming',27,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','wyoming'),(74,'Norman',42,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','norman'),(75,'Frisco',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','frisco'),(76,'Waterloo',19,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','waterloo'),(77,'Oakland',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','oakland'),(78,'Jonesboro',5,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','jonesboro'),(79,'Mission',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','mission'),(80,'Midland',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','midland'),(81,'Lansing',27,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','lansing'),(82,'Springdale',5,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','springdale'),(83,'Bay',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','bay'),(84,'Apple Valley',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','apple-valley'),(85,'Brockton',26,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','brockton'),(86,'Poinciana',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','poinciana'),(87,'Davis',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','davis'),(88,'Saint Louis',30,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','saint-louis'),(89,'Lehigh Acres',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','lehigh-acres'),(90,'Henderson',33,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','henderson'),(91,'Los Angeles',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','los-angeles'),(92,'Boca Raton',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','boca-raton'),(93,'Union City',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','union-city'),(94,'Lakeland',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','lakeland'),(95,'Mount Pleasant',48,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','mount-pleasant'),(96,'Des Moines',19,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','des-moines'),(97,'Asheville',38,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','asheville'),(98,'West Palm Beach',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','west-palm-beach'),(99,'Bayonne',35,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','bayonne'),(100,'Coral Springs',12,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','coral-springs'),(101,'Atlanta',13,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','atlanta'),(102,'Redlands',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','redlands'),(103,'Toms River',35,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','toms-river'),(104,'Palmdale',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','palmdale'),(105,'Youngs',41,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','youngs'),(106,'Frederick',25,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','frederick'),(107,'Fargo',39,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','fargo'),(108,'Cedar Park',51,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','cedar-park'),(109,'Fort Collins',7,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','fort-collins'),(110,'Portsmouth',55,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','portsmouth'),(111,'Fremont',6,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:42','fremont'),(112,'Bloomington',17,1,NULL,0,0,'published','2023-07-02 05:01:42','2023-07-02 05:01:43','bloomington'),(113,'Woodbury',28,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','woodbury'),(114,'Camden',35,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','camden'),(115,'Gresham',43,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','gresham'),(116,'Lorain',41,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lorain'),(117,'South San Francisco',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','south-san-francisco'),(118,'Manchester',34,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','manchester'),(119,'Longview',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','longview'),(120,'Richardson',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','richardson'),(121,'Yonkers',37,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','yonkers'),(122,'Pharr',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','pharr'),(123,'Redding',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','redding'),(124,'Fontana',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','fontana'),(125,'Fort Lauderdale',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','fort-lauderdale'),(126,'Fort Wayne',18,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','fort-wayne'),(127,'Lancaster',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lancaster'),(128,'Flower Mound',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','flower-mound'),(129,'Aurora',7,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','aurora'),(130,'Jacksonville',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','jacksonville'),(131,'Carlsbad',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','carlsbad'),(132,'Grand Prairie',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','grand-prairie'),(133,'Evansville',18,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','evansville'),(134,'Saint Cloud',28,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','saint-cloud'),(135,'Weston',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','weston'),(136,'Greensboro',38,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','greensboro'),(137,'Vallejo',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','vallejo'),(138,'Bellflower',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','bellflower'),(139,'Kenner',22,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','kenner'),(140,'Albuquerque',36,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','albuquerque'),(141,'Town \'n\' Country',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','town-n-country'),(142,'Cary',38,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','cary'),(143,'Loveland',7,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','loveland'),(144,'Menifee',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','menifee'),(145,'Mobile',1,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','mobile'),(146,'Orem',52,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','orem'),(147,'Baltimore',25,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','baltimore'),(148,'Brownsville',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','brownsville'),(149,'Riverview',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','riverview'),(150,'Lafayette',18,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lafayette'),(151,'Duluth',28,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','duluth'),(152,'Everett',56,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','everett'),(153,'Southfield',27,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','southfield'),(154,'Pawtucket',47,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','pawtucket'),(155,'Reno',33,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','reno'),(156,'Layton',52,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','layton'),(157,'Lewisville',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lewisville'),(158,'Guaynabo',46,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','guaynabo'),(159,'Livermore',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','livermore'),(160,'Memphis',50,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','memphis'),(161,'Lee\'s Summit',30,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lees-summit'),(162,'Norwalk',8,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','norwalk'),(163,'San Antonio',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','san-antonio'),(164,'Hemet',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','hemet'),(165,'Abilene',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','abilene'),(166,'Bolingbrook',17,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','bolingbrook'),(167,'Roswell',13,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','roswell'),(168,'Huntsville',1,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','huntsville'),(169,'Livonia',27,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','livonia'),(170,'Fort Worth',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','fort-worth'),(171,'Tracy',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','tracy'),(172,'Nashville',50,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','nashville'),(173,'Independence',30,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','independence'),(174,'Colorado Springs',7,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','colorado-springs'),(175,'Camarillo',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','camarillo'),(176,'Kendall',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','kendall'),(177,'Parma',41,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','parma'),(178,'Shawnee',20,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','shawnee'),(179,'Bk',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','bk'),(180,'San Tan Valley',4,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','san-tan-valley'),(181,'Alafaya',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','alafaya'),(182,'Saint Paul',28,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','saint-paul'),(183,'Boston',26,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','boston'),(184,'Dearborn',27,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','dearborn'),(185,'Lawrence',26,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lawrence'),(186,'Nampa',16,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','nampa'),(187,'Vista',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','vista'),(188,'Palm Bay',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','palm-bay'),(189,'Lawton',42,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lawton'),(190,'Reading',45,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','reading'),(191,'New Britain',8,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','new-britain'),(192,'Waukesha',58,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','waukesha'),(193,'The Woodlands',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','the-woodlands'),(194,'Lubbock',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','lubbock'),(195,'North Las Vegas',33,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','north-las-vegas'),(196,'Baton Rouge',22,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','baton-rouge'),(197,'Chicago',17,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','chicago'),(198,'Garden Grove',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','garden-grove'),(199,'South Jordan',52,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','south-jordan'),(200,'Cape Coral',12,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','cape-coral'),(201,'Chesapeake',55,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','chesapeake'),(202,'Westminster',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','westminster'),(203,'Irvine',6,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','irvine'),(204,'Arlington',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','arlington'),(205,'Johns Creek',13,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','johns-creek'),(206,'Edmond',42,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','edmond'),(207,'Bend',43,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','bend'),(208,'Las Vegas',33,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','las-vegas'),(209,'Carrollton',51,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','carrollton'),(210,'Cleveland',41,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','cleveland'),(211,'West Valley City',52,1,NULL,0,0,'published','2023-07-02 05:01:43','2023-07-02 05:01:43','west-valley-city'),(212,'Grand Rapids',27,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','grand-rapids'),(213,'Federal Way',56,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','federal-way'),(214,'Saint Petersburg',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','saint-petersburg'),(215,'Turlock',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','turlock'),(216,'Riverside',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','riverside'),(217,'Berkeley',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','berkeley'),(218,'Santa Fe',36,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','santa-fe'),(219,'Chino Hills',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','chino-hills'),(220,'Schaumburg',17,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','schaumburg'),(221,'Clovis',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','clovis'),(222,'Torrance',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','torrance'),(223,'McKinney',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','mckinney'),(224,'Roanoke',55,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','roanoke'),(225,'Corona',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','corona'),(226,'Fairfield',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','fairfield'),(227,'Downey',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','downey'),(228,'Macon',13,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','macon'),(229,'Athens-Clarke County unified government',13,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','athens-clarke-county-unified-government'),(230,'Temecula',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','temecula'),(231,'Concord',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','concord'),(232,'Corpus Christi',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','corpus-christi'),(233,'Rancho Cordova',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','rancho-cordova'),(234,'Tampa',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','tampa'),(235,'Fayetteville',5,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','fayetteville'),(236,'Montgomery',1,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','montgomery'),(237,'Kansas City',30,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','kansas-city'),(238,'College Station',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','college-station'),(239,'Green Bay',58,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','green-bay'),(240,'Bossier City',22,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','bossier-city'),(241,'Merced',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','merced'),(242,'Warner Robins',13,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','warner-robins'),(243,'San Leandro',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','san-leandro'),(244,'Plano',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','plano'),(245,'Lynchburg',55,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','lynchburg'),(246,'Vacaville',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','vacaville'),(247,'Laredo',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','laredo'),(248,'El Cajon',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','el-cajon'),(249,'Cicero',17,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','cicero'),(250,'Rio Rancho',36,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','rio-rancho'),(251,'Marysville',56,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','marysville'),(252,'Alhambra',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','alhambra'),(253,'Carson',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','carson'),(254,'Citrus Heights',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','citrus-heights'),(255,'North Little Rock',5,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','north-little-rock'),(256,'Atascocita',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','atascocita'),(257,'Erie',45,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','erie'),(258,'Fresno',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','fresno'),(259,'High Point',38,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','high-point'),(260,'Pearland',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','pearland'),(261,'Denton',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','denton'),(262,'San Bernardino',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','san-bernardino'),(263,'Mesquite',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','mesquite'),(264,'Sioux Falls',49,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','sioux-falls'),(265,'Charleston',48,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','charleston'),(266,'Redwood City',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','redwood-city'),(267,'Paradise',33,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','paradise'),(268,'Upland',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','upland'),(269,'Paterson',35,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','paterson'),(270,'Pasco',56,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','pasco'),(271,'Schenectady',37,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','schenectady'),(272,'Worcester',26,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','worcester'),(273,'Pembroke Pines',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','pembroke-pines'),(274,'West Covina',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','west-covina'),(275,'Raleigh',38,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','raleigh'),(276,'Compton',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','compton'),(277,'Amarillo',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','amarillo'),(278,'Glendale',4,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','glendale'),(279,'Broken Arrow',42,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','broken-arrow'),(280,'Hartford',8,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','hartford'),(281,'Warwick',47,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','warwick'),(282,'Charlotte',38,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','charlotte'),(283,'Jersey City',35,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','jersey-city'),(284,'Long Beach',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','long-beach'),(285,'Spokane Valley',56,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','spokane-valley'),(286,'Mayagüez',46,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','mayaguez'),(287,'San Diego',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','san-diego'),(288,'Chandler',4,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','chandler'),(289,'Pine Hills',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','pine-hills'),(290,'Tulsa',42,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','tulsa'),(291,'Hawthorne',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','hawthorne'),(292,'Portland',43,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','portland'),(293,'Sunrise Manor',33,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','sunrise-manor'),(294,'Longmont',7,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','longmont'),(295,'Arden-Arcade',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','arden-arcade'),(296,'Anchorage',2,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','anchorage'),(297,'Missoula',31,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','missoula'),(298,'Newton',26,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','newton'),(299,'Cincinnati',41,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','cincinnati'),(300,'Santa Rosa',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','santa-rosa'),(301,'Centennial',7,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','centennial'),(302,'New Braunfels',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','new-braunfels'),(303,'Elk Grove',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','elk-grove'),(304,'Norfolk',55,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','norfolk'),(305,'Pompano Beach',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','pompano-beach'),(306,'Redondo Beach',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','redondo-beach'),(307,'Jackson',29,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','jackson'),(308,'Casas Adobes',4,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','casas-adobes'),(309,'Gilbert',4,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','gilbert'),(310,'Santa Clara',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','santa-clara'),(311,'Maple Grove',28,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','maple-grove'),(312,'Davie',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','davie'),(313,'Victoria',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','victoria'),(314,'Ames',19,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','ames'),(315,'Trenton',35,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','trenton'),(316,'Sunrise',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','sunrise'),(317,'Odessa',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','odessa'),(318,'Olathe',20,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','olathe'),(319,'Urban Honolulu',15,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','urban-honolulu'),(320,'Davenport',19,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','davenport'),(321,'San Juan',46,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','san-juan'),(322,'Milpitas',6,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','milpitas'),(323,'McAllen',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','mcallen'),(324,'Missouri City',51,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:44','missouri-city'),(325,'Kissimmee',12,1,NULL,0,0,'published','2023-07-02 05:01:44','2023-07-02 05:01:45','kissimmee'),(326,'Hammond',18,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','hammond'),(327,'Elgin',17,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','elgin'),(328,'Passaic',35,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','passaic'),(329,'East Orange',35,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','east-orange'),(330,'Houston',51,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','houston'),(331,'Alameda',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','alameda'),(332,'Arlington Heights',17,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','arlington-heights'),(333,'Waco',51,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','waco'),(334,'Oklahoma City',42,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','oklahoma-city'),(335,'South Gate',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','south-gate'),(336,'Appleton',58,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','appleton'),(337,'San Ramon',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','san-ramon'),(338,'Ellicott City',25,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','ellicott-city'),(339,'Durham',38,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','durham'),(340,'League City',51,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','league-city'),(341,'Killeen',51,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','killeen'),(342,'Arvada',7,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','arvada'),(343,'Folsom',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','folsom'),(344,'Clearwater',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','clearwater'),(345,'Cranston',47,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','cranston'),(346,'Beaumont',51,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','beaumont'),(347,'Avondale',4,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','avondale'),(348,'Eau Claire',58,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','eau-claire'),(349,'Beaverton',43,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','beaverton'),(350,'Virginia Beach',55,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','virginia-beach'),(351,'Stamford',8,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','stamford'),(352,'Bellevue',56,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','bellevue'),(353,'Hollywood',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','hollywood'),(354,'Saint Joseph',30,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','saint-joseph'),(355,'Thornton',7,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','thornton'),(356,'Toledo',41,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','toledo'),(357,'Akron',41,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','akron'),(358,'Gaithersburg',25,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','gaithersburg'),(359,'Roseville',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','roseville'),(360,'Pittsburgh',45,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','pittsburgh'),(361,'Sparks',33,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','sparks'),(362,'Brooklyn Park',28,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','brooklyn-park'),(363,'Rock Hill',48,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','rock-hill'),(364,'San Buenaventura',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','san-buenaventura'),(365,'Lynn',26,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','lynn'),(366,'Port Saint Lucie',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','port-saint-lucie'),(367,'Washington',10,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','washington'),(368,'Tustin',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','tustin'),(369,'Lynwood',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','lynwood'),(370,'Lexington-Fayette  county',21,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','lexington-fayette-county'),(371,'Las Cruces',36,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','las-cruces'),(372,'North Charleston',48,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','north-charleston'),(373,'Miramar',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','miramar'),(374,'Miami Gardens',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','miami-gardens'),(375,'Rochester Hills',27,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','rochester-hills'),(376,'Indio',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','indio'),(377,'Racine',58,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','racine'),(378,'Boynton Beach',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','boynton-beach'),(379,'Alexandria',55,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','alexandria'),(380,'San Francisco',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','san-francisco'),(381,'Cheektowaga',37,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','cheektowaga'),(382,'Deerfield Beach',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','deerfield-beach'),(383,'Miami',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','miami'),(384,'Medford',43,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','medford'),(385,'Ogden',52,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','ogden'),(386,'San Clemente',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','san-clemente'),(387,'Orange',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','orange'),(388,'Bridgeport',8,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','bridgeport'),(389,'Pleasanton',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','pleasanton'),(390,'Lake Charles',22,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','lake-charles'),(391,'Thousand Oaks',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','thousand-oaks'),(392,'Chico',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','chico'),(393,'Goodyear',4,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','goodyear'),(394,'Kent',56,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','kent'),(395,'Plantation',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','plantation'),(396,'Gary',18,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','gary'),(397,'Sugar Land',51,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','sugar-land'),(398,'Silver Spring',25,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','silver-spring'),(399,'El Paso',51,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','el-paso'),(400,'Winston-Salem',38,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','winston-salem'),(401,'Lincoln',32,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','lincoln'),(402,'Renton',56,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','renton'),(403,'Gainesville',12,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','gainesville'),(404,'Sacramento',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','sacramento'),(405,'Simi Valley',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','simi-valley'),(406,'Wilmington',9,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','wilmington'),(407,'Wichita',20,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','wichita'),(408,'Allen',45,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','allen'),(409,'Danbury',8,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','danbury'),(410,'Provo',52,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','provo'),(411,'San Marcos',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','san-marcos'),(412,'Escondido',6,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','escondido'),(413,'Caguas',46,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','caguas'),(414,'Spokane',56,1,NULL,0,0,'published','2023-07-02 05:01:45','2023-07-02 05:01:45','spokane'),(415,'Auburn',56,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','auburn'),(416,'Surprise',4,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','surprise'),(417,'Louisville/Jefferson County metro government',21,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','louisvillejefferson-county-metro-government'),(418,'Spring Valley',33,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','spring-valley'),(419,'Yakima',56,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','yakima'),(420,'Clifton',35,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','clifton'),(421,'Farmington Hills',27,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','farmington-hills'),(422,'Napa',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','napa'),(423,'Irving',51,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','irving'),(424,'Chula Vista',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','chula-vista'),(425,'Salinas',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','salinas'),(426,'Pasadena',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','pasadena'),(427,'Newport News',55,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','newport-news'),(428,'Miami Beach',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','miami-beach'),(429,'Tempe',4,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','tempe'),(430,'Sterling Heights',27,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','sterling-heights'),(431,'Hialeah',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','hialeah'),(432,'Gulfport',29,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','gulfport'),(433,'Tuscaloosa',1,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','tuscaloosa'),(434,'Plymouth',28,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','plymouth'),(435,'Bakersfield',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','bakersfield'),(436,'Mount Vernon',37,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','mount-vernon'),(437,'Fishers',18,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','fishers'),(438,'Santa Maria',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','santa-maria'),(439,'The Villages',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','the-villages'),(440,'Oxnard',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','oxnard'),(441,'Gastonia',38,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','gastonia'),(442,'Deltona',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','deltona'),(443,'Greenville',38,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','greenville'),(444,'Salt Lake City',52,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','salt-lake-city'),(445,'Homestead',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','homestead'),(446,'Waukegan',17,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','waukegan'),(447,'Topeka',20,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','topeka'),(448,'Clarksville',50,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','clarksville'),(449,'Franklin',50,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','franklin'),(450,'Little Rock',5,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','little-rock'),(451,'Tallahassee',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','tallahassee'),(452,'Cambridge',26,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','cambridge'),(453,'Skokie',17,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','skokie'),(454,'New York',37,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','new-york'),(455,'Modesto',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','modesto'),(456,'Dallas',51,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','dallas'),(457,'Baldwin Park',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','baldwin-park'),(458,'Hesperia',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','hesperia'),(459,'East Los Angeles',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','east-los-angeles'),(460,'Whittier',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','whittier'),(461,'Lauderhill',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','lauderhill'),(462,'Huntington Beach',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','huntington-beach'),(463,'Carmel',18,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','carmel'),(464,'Bellingham',56,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','bellingham'),(465,'Delray Beach',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','delray-beach'),(466,'Seattle',56,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','seattle'),(467,'Suffolk',55,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','suffolk'),(468,'Omaha',32,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','omaha'),(469,'Champaign',17,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','champaign'),(470,'Vancouver',56,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','vancouver'),(471,'Meridian',16,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','meridian'),(472,'Saint Charles',30,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','saint-charles'),(473,'Inglewood',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','inglewood'),(474,'Harlingen',51,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','harlingen'),(475,'Austin',51,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','austin'),(476,'San Jose',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','san-jose'),(477,'Melbourne',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','melbourne'),(478,'Tyler',51,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','tyler'),(479,'Greeley',7,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','greeley'),(480,'West Jordan',52,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','west-jordan'),(481,'Perris',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','perris'),(482,'Johnson City',50,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','johnson-city'),(483,'New Orleans',22,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','new-orleans'),(484,'Chattanooga',50,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','chattanooga'),(485,'San Angelo',51,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','san-angelo'),(486,'Syracuse',37,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','syracuse'),(487,'Ann Arbor',27,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','ann-arbor'),(488,'Visalia',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','visalia'),(489,'Naperville',17,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','naperville'),(490,'Scottsdale',4,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','scottsdale'),(491,'Lowell',26,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','lowell'),(492,'Mission Viejo',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','mission-viejo'),(493,'New Rochelle',37,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','new-rochelle'),(494,'Manteca',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','manteca'),(495,'Florence-Graham',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','florence-graham'),(496,'Brandon',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','brandon'),(497,'North Richland Hills',51,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','north-richland-hills'),(498,'Murfreesboro',50,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','murfreesboro'),(499,'Enterprise',33,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','enterprise'),(500,'Nashua',34,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','nashua'),(501,'Rialto',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','rialto'),(502,'Rockford',17,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','rockford'),(503,'San Mateo',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','san-mateo'),(504,'Pueblo',7,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','pueblo'),(505,'Spring Hill',12,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','spring-hill'),(506,'Mountain View',6,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','mountain-view'),(507,'Phoenix',4,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','phoenix'),(508,'Dale City',55,1,NULL,0,0,'published','2023-07-02 05:01:46','2023-07-02 05:01:46','dale-city'),(509,'Santa Clarita',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','santa-clarita'),(510,'Hillsboro',43,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','hillsboro'),(511,'Buena Park',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','buena-park'),(512,'Oshkosh',58,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','oshkosh'),(513,'Pittsburg',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','pittsburg'),(514,'Oceanside',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','oceanside'),(515,'Highlands Ranch',7,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','highlands-ranch'),(516,'Sioux City',19,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','sioux-city'),(517,'Detroit',27,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','detroit'),(518,'Rancho Cucamonga',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','rancho-cucamonga'),(519,'Somerville',26,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','somerville'),(520,'Framingham',26,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','framingham'),(521,'New Bedford',26,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','new-bedford'),(522,'Philadelphia',45,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','philadelphia'),(523,'Eugene',43,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','eugene'),(524,'Kenosha',58,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','kenosha'),(525,'Bismarck',39,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','bismarck'),(526,'Yorba Linda',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','yorba-linda'),(527,'Carolina',46,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','carolina'),(528,'Knoxville',50,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','knoxville'),(529,'Hayward',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','hayward'),(530,'Flagstaff',4,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','flagstaff'),(531,'Wichita Falls',51,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','wichita-falls'),(532,'Minneapolis',28,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','minneapolis'),(533,'Canton',41,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','canton'),(534,'Glen Burnie',25,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','glen-burnie'),(535,'Laguna Niguel',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','laguna-niguel'),(536,'Bethlehem',45,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','bethlehem'),(537,'Palo Alto',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','palo-alto'),(538,'Saint George',52,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','saint-george'),(539,'Yuba City',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','yuba-city'),(540,'El Monte',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','el-monte'),(541,'Orlando',12,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','orlando'),(542,'Stockton',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','stockton'),(543,'Yuma',4,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','yuma'),(544,'Indianapolis',18,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','indianapolis'),(545,'Edinburg',51,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','edinburg'),(546,'Warren',27,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','warren'),(547,'Ontario',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','ontario'),(548,'Kennewick',56,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','kennewick'),(549,'Birmingham',1,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','birmingham'),(550,'Rockville',25,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','rockville'),(551,'Muncie',18,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','muncie'),(552,'Overland Park',20,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','overland-park'),(553,'Centreville',55,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','centreville'),(554,'Santa Monica',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','santa-monica'),(555,'Dayton',41,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','dayton'),(556,'Salem',43,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','salem'),(557,'Ponce',46,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','ponce'),(558,'Pomona',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','pomona'),(559,'Fall River',26,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','fall-river'),(560,'Palatine',17,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','palatine'),(561,'Bayamón',46,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','bayamon'),(562,'South Bend',18,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','south-bend'),(563,'Temple',51,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','temple'),(564,'Denver',7,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','denver'),(565,'Broomfield',7,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','broomfield'),(566,'Walnut Creek',6,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','walnut-creek'),(567,'Fort Myers',12,1,NULL,0,0,'published','2023-07-02 05:01:47','2023-07-02 05:01:47','fort-myers'),(568,'Airdrie',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','airdrie'),(569,'Grande Prairie',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','grande-prairie'),(570,'Red Deer',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','red-deer'),(571,'Beaumont',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','beaumont-alberta'),(572,'Hanna',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','hanna'),(573,'St. Albert',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','st-albert'),(574,'Bonnyville',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','bonnyville'),(575,'Hinton',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','hinton'),(576,'Spruce Grove',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','spruce-grove'),(577,'Brazeau',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','brazeau'),(578,'Irricana',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','irricana'),(579,'Strathcona County',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','strathcona-county'),(580,'Breton',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','breton'),(581,'Lacombe',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','lacombe'),(582,'Strathmore',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','strathmore'),(583,'Calgary',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','calgary'),(584,'Leduc',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','leduc'),(585,'Sylvan Lake',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','sylvan-lake'),(586,'Camrose',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','camrose'),(587,'Lethbridge',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','lethbridge'),(588,'Swan Hills',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','swan-hills'),(589,'Canmore',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','canmore'),(590,'McLennan',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','mclennan'),(591,'Taber',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','taber'),(592,'Didzbury',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','didzbury'),(593,'Medicine Hat',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','medicine-hat'),(594,'Turner Valley',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','turner-valley'),(595,'Drayton Valley',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','drayton-valley'),(596,'Olds',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','olds'),(597,'Vermillion',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','vermillion'),(598,'Edmonton',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','edmonton'),(599,'Onoway',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','onoway'),(600,'Wood Buffalo',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','wood-buffalo'),(601,'Ft. Saskatchewan',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','ft-saskatchewan'),(602,'Provost',60,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','provost'),(603,'Burnaby',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','burnaby'),(604,'Lumby',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','lumby'),(605,'City of Port Moody',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','city-of-port-moody'),(606,'Cache Creek',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','cache-creek'),(607,'Maple Ridge',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','maple-ridge'),(608,'Prince George',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','prince-george'),(609,'Castlegar',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','castlegar'),(610,'Merritt',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','merritt'),(611,'Prince Rupert',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','prince-rupert'),(612,'Chemainus',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','chemainus'),(613,'Mission',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','mission-british-columbia'),(614,'Richmond',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','richmond-british-columbia'),(615,'Chilliwack',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','chilliwack'),(616,'Nanaimo',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','nanaimo'),(617,'Saanich',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','saanich'),(618,'Clearwater',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','clearwater-british-columbia'),(619,'Nelson',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','nelson'),(620,'Sooke',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','sooke'),(621,'Colwood',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','colwood'),(622,'New Westminster',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','new-westminster'),(623,'Sparwood',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','sparwood'),(624,'Coquitlam',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','coquitlam'),(625,'North Cowichan',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','north-cowichan'),(626,'Surrey',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','surrey'),(627,'Cranbrook',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','cranbrook'),(628,'North Vancouver',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','north-vancouver'),(629,'Terrace',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','terrace'),(630,'Dawson Creek',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','dawson-creek'),(631,'North Vancouver',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','north-vancouver-british-columbia'),(632,'Tumbler',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','tumbler'),(633,'Delta',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','delta'),(634,'Osoyoos',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','osoyoos'),(635,'Vancouver',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','vancouver-british-columbia'),(636,'Fernie',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','fernie'),(637,'Parksville',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','parksville'),(638,'Vancouver',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','vancouver-1'),(639,'Invermere',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','invermere'),(640,'Peace River',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','peace-river'),(641,'Vernon',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','vernon'),(642,'Kamloops',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48','kamloops'),(643,'Penticton',61,2,NULL,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:49','penticton'),(644,'Victoria',61,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','victoria-british-columbia'),(645,'Kaslo',61,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','kaslo'),(646,'Port Alberni',61,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','port-alberni'),(647,'Whistler',61,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','whistler'),(648,'Langley',61,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','langley'),(649,'Port Hardy',61,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','port-hardy'),(650,'Birtle',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','birtle'),(651,'Flin Flon',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','flin-flon'),(652,'Swan River',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','swan-river'),(653,'Brandon',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','brandon-manitoba'),(654,'Snow Lake',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','snow-lake'),(655,'The Pas',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','the-pas'),(656,'Cranberry Portage',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cranberry-portage'),(657,'Steinbach',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','steinbach'),(658,'Thompson',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','thompson'),(659,'Dauphin',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','dauphin'),(660,'Stonewall',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','stonewall'),(661,'Winnipeg',62,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','winnipeg'),(662,'Cap-Pele',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cap-pele'),(663,'Miramichi',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','miramichi'),(664,'Saint John',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','saint-john'),(665,'Fredericton',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','fredericton'),(666,'Moncton',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','moncton'),(667,'Saint Stephen',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','saint-stephen'),(668,'Grand Bay-Westfield',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','grand-bay-westfield'),(669,'Oromocto',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','oromocto'),(670,'Shippagan',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','shippagan'),(671,'Grand Falls',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','grand-falls'),(672,'Port Elgin',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','port-elgin'),(673,'Sussex',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','sussex'),(674,'Memramcook',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','memramcook'),(675,'Sackville',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','sackville'),(676,'Tracadie-Sheila',63,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','tracadie-sheila'),(677,'Town of Hay River',65,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','town-of-hay-river'),(678,'Town of Inuvik',65,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','town-of-inuvik'),(679,'Yellowknife',65,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','yellowknife'),(680,'Amherst',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','amherst'),(681,'Hants County',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','hants-county'),(682,'Pictou',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','pictou'),(683,'Annapolis',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','annapolis'),(684,'Inverness County',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','inverness-county'),(685,'Pictou County',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','pictou-county'),(686,'Argyle',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','argyle'),(687,'Kentville',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','kentville'),(688,'Queens',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','queens'),(689,'Baddeck',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','baddeck'),(690,'County of Kings',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','county-of-kings'),(691,'Richmond',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','richmond-nova-scotia'),(692,'Bridgewater',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','bridgewater'),(693,'Lunenburg',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','lunenburg'),(694,'Shelburne',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','shelburne'),(695,'Cape Breton',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cape-breton'),(696,'Lunenburg County',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','lunenburg-county'),(697,'Stellarton',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','stellarton'),(698,'Chester',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','chester'),(699,'Mahone Bay',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','mahone-bay'),(700,'Truro',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','truro'),(701,'Cumberland County',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cumberland-county'),(702,'New Glasgow',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','new-glasgow'),(703,'Windsor',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','windsor'),(704,'East Hants',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','east-hants'),(705,'New Minas',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','new-minas'),(706,'Yarmouth',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','yarmouth'),(707,'Halifax',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','halifax'),(708,'Parrsboro',66,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','parrsboro'),(709,'Ajax',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','ajax'),(710,'Halton',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','halton'),(711,'Peterborough',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','peterborough'),(712,'Atikokan',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','atikokan'),(713,'Halton Hills',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','halton-hills'),(714,'Pickering',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','pickering'),(715,'Barrie',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','barrie'),(716,'Hamilton',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','hamilton'),(717,'Port Bruce',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','port-bruce'),(718,'Belleville',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','belleville'),(719,'Hamilton-Wentworth',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','hamilton-wentworth'),(720,'Port Burwell',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','port-burwell'),(721,'Blandford-Blenheim',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','blandford-blenheim'),(722,'Hearst',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','hearst'),(723,'Port Colborne',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','port-colborne'),(724,'Blind River',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','blind-river'),(725,'Huntsville',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','huntsville-ontario'),(726,'Port Hope',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','port-hope'),(727,'Brampton',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','brampton'),(728,'Ingersoll',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','ingersoll'),(729,'Prince Edward',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','prince-edward'),(730,'Brant',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','brant'),(731,'James',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','james'),(732,'Quinte West',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','quinte-west'),(733,'Brantford',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','brantford'),(734,'Kanata',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','kanata'),(735,'Renfrew',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','renfrew'),(736,'Brock',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','brock'),(737,'Kincardine',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','kincardine'),(738,'Richmond Hill',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','richmond-hill'),(739,'Brockville',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','brockville'),(740,'King',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','king'),(741,'Sarnia',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','sarnia'),(742,'Burlington',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','burlington'),(743,'Kingston',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','kingston'),(744,'Sault Ste. Marie',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','sault-ste-marie'),(745,'Caledon',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','caledon'),(746,'Kirkland Lake',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','kirkland-lake'),(747,'Scarborough',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','scarborough'),(748,'Cambridge',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cambridge-ontario'),(749,'Kitchener',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','kitchener'),(750,'Scugog',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','scugog'),(751,'Chatham-Kent',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','chatham-kent'),(752,'Larder Lake',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','larder-lake'),(753,'Souix Lookout CoC Sioux Lookout',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','souix-lookout-coc-sioux-lookout'),(754,'Chesterville',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','chesterville'),(755,'Leamington',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','leamington'),(756,'Smiths Falls',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','smiths-falls'),(757,'Clarington',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','clarington'),(758,'Lennox-Addington',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','lennox-addington'),(759,'South-West Oxford',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','south-west-oxford'),(760,'Cobourg',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cobourg'),(761,'Lincoln',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','lincoln-ontario'),(762,'St. Catharines',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','st-catharines'),(763,'Cochrane',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cochrane'),(764,'Lindsay',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','lindsay'),(765,'St. Thomas',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','st-thomas'),(766,'Collingwood',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','collingwood'),(767,'London',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','london'),(768,'Stoney Creek',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','stoney-creek'),(769,'Cornwall',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cornwall'),(770,'Loyalist Township',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','loyalist-township'),(771,'Stratford',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','stratford'),(772,'Cumberland',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','cumberland'),(773,'Markham',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','markham'),(774,'Sudbury',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','sudbury'),(775,'Deep River',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','deep-river'),(776,'Metro Toronto',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','metro-toronto'),(777,'Temagami',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','temagami'),(778,'Dundas',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','dundas'),(779,'Merrickville',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','merrickville'),(780,'Thorold',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','thorold'),(781,'Durham',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','durham-ontario'),(782,'Milton',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','milton'),(783,'Thunder Bay',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','thunder-bay'),(784,'Dymond',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','dymond'),(785,'Nepean',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','nepean'),(786,'Tillsonburg',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','tillsonburg'),(787,'Ear Falls',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','ear-falls'),(788,'Newmarket',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','newmarket'),(789,'Timmins',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','timmins'),(790,'East Gwillimbury',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','east-gwillimbury'),(791,'Niagara',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','niagara'),(792,'Toronto',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','toronto'),(793,'East Zorra-Tavistock',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','east-zorra-tavistock'),(794,'Niagara Falls',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','niagara-falls'),(795,'Uxbridge',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','uxbridge'),(796,'Elgin',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','elgin-ontario'),(797,'Niagara-on-the-Lake',68,2,NULL,0,0,'published','2023-07-02 05:01:49','2023-07-02 05:01:49','niagara-on-the-lake'),(798,'Vaughan',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','vaughan'),(799,'Elliot Lake',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','elliot-lake'),(800,'North Bay',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','north-bay'),(801,'Wainfleet',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','wainfleet'),(802,'Flamborough',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','flamborough'),(803,'North Dorchester',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','north-dorchester'),(804,'Wasaga Beach',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','wasaga-beach'),(805,'Fort Erie',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','fort-erie'),(806,'North Dumfries',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','north-dumfries'),(807,'Waterloo',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','waterloo-ontario'),(808,'Fort Frances',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','fort-frances'),(809,'North York',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','north-york'),(810,'Waterloo',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','waterloo-1'),(811,'Gananoque',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','gananoque'),(812,'Norwich',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','norwich'),(813,'Welland',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','welland'),(814,'Georgina',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','georgina'),(815,'Oakville',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','oakville'),(816,'Wellesley',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','wellesley'),(817,'Glanbrook',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','glanbrook'),(818,'Orangeville',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','orangeville'),(819,'West Carleton',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','west-carleton'),(820,'Gloucester',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','gloucester'),(821,'Orillia',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','orillia'),(822,'West Lincoln',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','west-lincoln'),(823,'Goulbourn',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','goulbourn'),(824,'Osgoode',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','osgoode'),(825,'Whitby',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','whitby'),(826,'Gravenhurst',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','gravenhurst'),(827,'Oshawa',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','oshawa'),(828,'Wilmot',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','wilmot'),(829,'Grimsby',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','grimsby'),(830,'Ottawa',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','ottawa'),(831,'Windsor',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','windsor-ontario'),(832,'Guelph',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','guelph'),(833,'Ottawa-Carleton',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','ottawa-carleton'),(834,'Woolwich',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','woolwich'),(835,'Haldimand-Norfork',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','haldimand-norfork'),(836,'Owen Sound',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','owen-sound'),(837,'York',68,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','york'),(838,'Alberton',69,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','alberton'),(839,'Montague',69,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','montague'),(840,'Stratford',69,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','stratford-prince-edward-island'),(841,'Charlottetown',69,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','charlottetown'),(842,'Souris',69,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','souris'),(843,'Summerside',69,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','summerside'),(844,'Cornwall',69,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','cornwall-prince-edward-island'),(845,'Alma',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','alma'),(846,'Fleurimont',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','fleurimont'),(847,'Longueuil',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','longueuil'),(848,'Amos',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','amos'),(849,'Gaspe',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','gaspe'),(850,'Marieville',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','marieville'),(851,'Anjou',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','anjou'),(852,'Gatineau',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','gatineau'),(853,'Mount Royal',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','mount-royal'),(854,'Aylmer',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','aylmer'),(855,'Hull',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','hull'),(856,'Montreal',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','montreal'),(857,'Beauport',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','beauport'),(858,'Joliette',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','joliette'),(859,'Montreal Region',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','montreal-region'),(860,'Bromptonville',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','bromptonville'),(861,'Jonquiere',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','jonquiere'),(862,'Montreal-Est',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','montreal-est'),(863,'Brosssard',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','brosssard'),(864,'Lachine',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','lachine'),(865,'Quebec',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','quebec'),(866,'Chateauguay',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','chateauguay'),(867,'Lasalle',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','lasalle'),(868,'Saint-Leonard',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','saint-leonard'),(869,'Chicoutimi',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','chicoutimi'),(870,'Laurentides',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','laurentides'),(871,'Sherbrooke',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','sherbrooke'),(872,'Coaticook',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','coaticook'),(873,'LaSalle',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','lasalle-quebec'),(874,'Sorel',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','sorel'),(875,'Coaticook',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','coaticook-quebec'),(876,'Laval',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','laval'),(877,'Thetford Mines',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','thetford-mines'),(878,'Dorval',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','dorval'),(879,'Lennoxville',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','lennoxville'),(880,'Victoriaville',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','victoriaville'),(881,'Drummondville',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','drummondville'),(882,'Levis',70,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','levis'),(883,'Avonlea',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','avonlea'),(884,'Melfort',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','melfort'),(885,'Swift Current',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','swift-current'),(886,'Colonsay',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','colonsay'),(887,'Nipawin',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','nipawin'),(888,'Tisdale',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','tisdale'),(889,'Craik',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','craik'),(890,'Prince Albert',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','prince-albert'),(891,'Unity',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','unity'),(892,'Creighton',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','creighton'),(893,'Regina',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','regina'),(894,'Weyburn',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','weyburn'),(895,'Eastend',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','eastend'),(896,'Saskatoon',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','saskatoon'),(897,'Wynyard',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','wynyard'),(898,'Esterhazy',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','esterhazy'),(899,'Shell Lake',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','shell-lake'),(900,'Yorkton',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','yorkton'),(901,'Gravelbourg',71,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','gravelbourg'),(902,'Carcross',72,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','carcross'),(903,'Whitehorse',72,2,NULL,0,0,'published','2023-07-02 05:01:50','2023-07-02 05:01:50','whitehorse');
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cities_backup`
--

DROP TABLE IF EXISTS `cities_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities_backup` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `state_id` int unsigned DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities_backup`
--

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

--
-- Table structure for table `cities_translations`
--

DROP TABLE IF EXISTS `cities_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `cities_id` int NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`cities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities_translations`
--

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

--
-- Table structure for table `contact_replies`
--

DROP TABLE IF EXISTS `contact_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_replies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_replies`
--

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

--
-- Table structure for table `contacts`
--

DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contacts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contacts`
--

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

--
-- Table structure for table `countries`
--

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nationality` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dial_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries`
--

LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (1,'United States of America','Americans',0,1,'published','2023-07-02 05:01:41','2023-07-02 05:01:41',NULL,NULL),(2,'Canada','Canada',1,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48',NULL,NULL);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `countries_backup`
--

DROP TABLE IF EXISTS `countries_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries_backup` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nationality` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries_backup`
--

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

--
-- Table structure for table `countries_translations`
--

DROP TABLE IF EXISTS `countries_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `countries_id` int NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`countries_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries_translations`
--

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

--
-- Table structure for table `dashboard_widget_settings`
--

DROP TABLE IF EXISTS `dashboard_widget_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widget_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `settings` text COLLATE utf8mb4_unicode_ci,
  `user_id` bigint unsigned NOT NULL,
  `widget_id` bigint unsigned NOT NULL,
  `order` tinyint unsigned NOT NULL DEFAULT '0',
  `status` tinyint unsigned NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `dashboard_widget_settings_user_id_index` (`user_id`),
  KEY `dashboard_widget_settings_widget_id_index` (`widget_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dashboard_widget_settings`
--

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

--
-- Table structure for table `dashboard_widgets`
--

DROP TABLE IF EXISTS `dashboard_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widgets` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dashboard_widgets`
--

LOCK TABLES `dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */;
INSERT INTO `dashboard_widgets` VALUES (1,'widget_total_1','2023-07-02 03:23:53','2023-07-02 03:23:53'),(2,'widget_total_2','2023-07-02 03:23:53','2023-07-02 03:23:53'),(3,'widget_total_themes','2023-07-02 03:23:53','2023-07-02 03:23:53'),(4,'widget_total_3','2023-07-02 03:23:53','2023-07-02 03:23:53'),(5,'widget_total_4','2023-07-02 03:23:53','2023-07-02 03:23:53'),(6,'widget_total_users','2023-07-02 03:23:53','2023-07-02 03:23:53'),(7,'widget_total_pages','2023-07-02 03:23:53','2023-07-02 03:23:53'),(8,'widget_total_plugins','2023-07-02 03:23:53','2023-07-02 03:23:53'),(9,'widget_analytics_general','2023-07-02 03:23:53','2023-07-02 03:23:53'),(10,'widget_analytics_page','2023-07-02 03:23:53','2023-07-02 03:23:53'),(11,'widget_analytics_browser','2023-07-02 03:23:53','2023-07-02 03:23:53'),(12,'widget_analytics_referrer','2023-07-02 03:23:53','2023-07-02 03:23:53'),(13,'widget_posts_recent','2023-07-02 03:23:53','2023-07-02 03:23:53'),(14,'widget_audit_logs','2023-07-02 03:23:53','2023-07-02 03:23:53');
/*!40000 ALTER TABLE `dashboard_widgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `failed_jobs`
--

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_jobs`
--

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

--
-- Table structure for table `jobs`
--

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint unsigned NOT NULL,
  `reserved_at` int unsigned DEFAULT NULL,
  `available_at` int unsigned NOT NULL,
  `created_at` int unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

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

--
-- Table structure for table `language_meta`
--

DROP TABLE IF EXISTS `language_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `language_meta` (
  `lang_meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `lang_meta_code` text COLLATE utf8mb4_unicode_ci,
  `lang_meta_origin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`lang_meta_id`),
  KEY `language_meta_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `language_meta`
--

LOCK TABLES `language_meta` WRITE;
/*!40000 ALTER TABLE `language_meta` DISABLE KEYS */;
INSERT INTO `language_meta` VALUES (1,'en_US','1ba02bb4ddeb13724f2fa59596b6226c',1,'Botble\\Menu\\Models\\MenuLocation'),(2,'en_US','91e88b32ce4512499b10044f6c81fff4',1,'Botble\\Menu\\Models\\Menu'),(3,'en_US','a92d942b239085a691276edeac75d381',2,'Botble\\Menu\\Models\\Menu'),(4,'en_US','83c0a518f1b7c3757ffb97a706459a88',3,'Botble\\Menu\\Models\\Menu'),(5,'en_US','766fb5c6d2d28f998f56a6997f2eefff',4,'Botble\\Menu\\Models\\Menu'),(6,'vi','f7bf370c57177bbc769e85f8e1e1a17e',2,'Botble\\Menu\\Models\\MenuLocation'),(7,'vi','91e88b32ce4512499b10044f6c81fff4',5,'Botble\\Menu\\Models\\Menu'),(8,'vi','a92d942b239085a691276edeac75d381',6,'Botble\\Menu\\Models\\Menu'),(9,'vi','83c0a518f1b7c3757ffb97a706459a88',7,'Botble\\Menu\\Models\\Menu'),(10,'vi','766fb5c6d2d28f998f56a6997f2eefff',8,'Botble\\Menu\\Models\\Menu');
/*!40000 ALTER TABLE `language_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `language_meta_backup`
--

DROP TABLE IF EXISTS `language_meta_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `language_meta_backup` (
  `lang_meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `lang_meta_code` text COLLATE utf8mb4_unicode_ci,
  `lang_meta_origin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`lang_meta_id`),
  KEY `language_meta_reference_id_index` (`reference_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `language_meta_backup`
--

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

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `languages` (
  `lang_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `lang_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lang_flag` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lang_is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `lang_order` int NOT NULL DEFAULT '0',
  `lang_is_rtl` tinyint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`lang_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `languages`
--

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (1,'English','en','en_US','us',1,0,0);
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_files`
--

DROP TABLE IF EXISTS `media_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_files` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `alt` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `folder_id` bigint unsigned NOT NULL DEFAULT '0',
  `mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `size` int NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `media_files_user_id_index` (`user_id`),
  KEY `media_files_index` (`folder_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_files`
--

LOCK TABLES `media_files` WRITE;
/*!40000 ALTER TABLE `media_files` DISABLE KEYS */;
INSERT INTO `media_files` VALUES (596,0,'c-1','c-1',51,'image/png',138074,'cities/c-1.png','[]','2023-07-02 05:01:39','2023-07-02 05:01:39',NULL),(597,0,'c-2','c-2',51,'image/png',157272,'cities/c-2.png','[]','2023-07-02 05:01:39','2023-07-02 05:01:39',NULL),(598,0,'c-3','c-3',51,'image/png',137387,'cities/c-3.png','[]','2023-07-02 05:01:40','2023-07-02 05:01:40',NULL),(599,0,'c-4','c-4',51,'image/png',145476,'cities/c-4.png','[]','2023-07-02 05:01:40','2023-07-02 05:01:40',NULL),(600,0,'c-5','c-5',51,'image/png',134127,'cities/c-5.png','[]','2023-07-02 05:01:40','2023-07-02 05:01:40',NULL),(601,0,'c-6','c-6',51,'image/png',148207,'cities/c-6.png','[]','2023-07-02 05:01:41','2023-07-02 05:01:41',NULL),(602,0,'sb','sb',52,'image/png',102140,'block/sb.png','[]','2023-07-02 05:01:51','2023-07-02 05:01:51',NULL),(603,0,'vec-2','vec-2',52,'image/png',227757,'block/vec-2.png','[]','2023-07-02 05:01:51','2023-07-02 05:01:51',NULL),(604,0,'app','app',53,'image/png',159623,'banners/app.png','[]','2023-07-02 05:01:51','2023-07-02 05:01:51',NULL),(605,0,'banner-1','banner-1',53,'image/jpeg',271728,'banners/banner-1.jpg','[]','2023-07-02 05:01:52','2023-07-02 05:01:52',NULL),(606,0,'banner-2','banner-2',53,'image/jpeg',201045,'banners/banner-2.jpg','[]','2023-07-02 05:01:53','2023-07-02 05:01:53',NULL),(607,0,'banner-3','banner-3',53,'image/jpeg',329351,'banners/banner-3.jpg','[]','2023-07-02 05:01:54','2023-07-02 05:01:54',NULL),(608,0,'banner-4','banner-4',53,'image/png',264428,'banners/banner-4.png','[]','2023-07-02 05:01:55','2023-07-02 05:01:55',NULL),(609,0,'banner-5','banner-5',53,'image/png',402790,'banners/banner-5.png','[]','2023-07-02 05:01:55','2023-07-02 05:01:55',NULL),(610,0,'banner-6','banner-6',53,'image/png',236548,'banners/banner-6.png','[]','2023-07-02 05:01:56','2023-07-02 05:01:56',NULL),(611,0,'banner-svg','banner-svg',53,'image/jpeg',38459,'banners/banner-svg.jpg','[]','2023-07-02 05:01:57','2023-07-02 05:01:57',NULL),(612,0,'banner','banner',53,'video/mp4',9886072,'banners/banner.mp4','[]','2023-07-02 05:01:58','2023-07-02 05:01:58',NULL),(613,0,'banner-7','banner-7',53,'image/svg+xml',20027,'banners/banner-7.svg','[]','2023-07-02 05:01:58','2023-07-02 05:01:58',NULL),(614,0,'home-2','home-2',53,'image/png',33319,'banners/home-2.png','[]','2023-07-02 05:01:58','2023-07-02 05:01:58',NULL),(615,0,'new-banner','new-banner',53,'image/jpeg',350945,'banners/new-banner.jpg','[]','2023-07-02 05:01:58','2023-07-02 05:01:58',NULL),(616,0,'favicon','favicon',54,'image/png',3178,'general/favicon.png','[]','2023-07-02 05:02:01','2023-07-02 05:02:01',NULL),(617,0,'img-loading','img-loading',54,'image/jpeg',786,'general/img-loading.jpg','[]','2023-07-02 05:02:01','2023-07-02 05:02:01',NULL),(618,0,'logo-light','logo-light',54,'image/png',10875,'general/logo-light.png','[]','2023-07-02 05:02:01','2023-07-02 05:02:01',NULL),(619,0,'logo','logo',54,'image/png',11350,'general/logo.png','[]','2023-07-02 05:02:01','2023-07-02 05:02:01',NULL),(620,0,'screenshot','screenshot',54,'image/png',165692,'general/screenshot.png','[]','2023-07-02 05:02:01','2023-07-02 05:02:01',NULL),(621,0,'1','1',55,'image/jpeg',136733,'news/1.jpg','[]','2023-07-02 05:02:02','2023-07-02 05:02:02',NULL),(622,0,'10','10',55,'image/jpeg',107306,'news/10.jpg','[]','2023-07-02 05:02:03','2023-07-02 05:02:03',NULL),(623,0,'11','11',55,'image/jpeg',158705,'news/11.jpg','[]','2023-07-02 05:02:03','2023-07-02 05:02:03',NULL),(624,0,'12','12',55,'image/jpeg',169224,'news/12.jpg','[]','2023-07-02 05:02:04','2023-07-02 05:02:04',NULL),(625,0,'13','13',55,'image/jpeg',209836,'news/13.jpg','[]','2023-07-02 05:02:05','2023-07-02 05:02:05',NULL),(626,0,'14','14',55,'image/jpeg',244640,'news/14.jpg','[]','2023-07-02 05:02:05','2023-07-02 05:02:05',NULL),(627,0,'15','15',55,'image/jpeg',215801,'news/15.jpg','[]','2023-07-02 05:02:06','2023-07-02 05:02:06',NULL),(628,0,'16','16',55,'image/jpeg',127110,'news/16.jpg','[]','2023-07-02 05:02:06','2023-07-02 05:02:06',NULL),(629,0,'17','17',55,'image/jpeg',178736,'news/17.jpg','[]','2023-07-02 05:02:07','2023-07-02 05:02:07',NULL),(630,0,'18','18',55,'image/jpeg',127500,'news/18.jpg','[]','2023-07-02 05:02:07','2023-07-02 05:02:07',NULL),(631,0,'19','19',55,'image/jpeg',148213,'news/19.jpg','[]','2023-07-02 05:02:08','2023-07-02 05:02:08',NULL),(632,0,'2','2',55,'image/jpeg',140241,'news/2.jpg','[]','2023-07-02 05:02:08','2023-07-02 05:02:08',NULL),(633,0,'20','20',55,'image/jpeg',123100,'news/20.jpg','[]','2023-07-02 05:02:09','2023-07-02 05:02:09',NULL),(634,0,'21','21',55,'image/jpeg',108630,'news/21.jpg','[]','2023-07-02 05:02:09','2023-07-02 05:02:09',NULL),(635,0,'22','22',55,'image/jpeg',120108,'news/22.jpg','[]','2023-07-02 05:02:10','2023-07-02 05:02:10',NULL),(636,0,'23','23',55,'image/jpeg',98530,'news/23.jpg','[]','2023-07-02 05:02:10','2023-07-02 05:02:10',NULL),(637,0,'24','24',55,'image/jpeg',134237,'news/24.jpg','[]','2023-07-02 05:02:11','2023-07-02 05:02:11',NULL),(638,0,'25','25',55,'image/jpeg',124532,'news/25.jpg','[]','2023-07-02 05:02:11','2023-07-02 05:02:11',NULL),(639,0,'26','26',55,'image/jpeg',134643,'news/26.jpg','[]','2023-07-02 05:02:11','2023-07-02 05:02:11',NULL),(640,0,'27','27',55,'image/jpeg',165965,'news/27.jpg','[]','2023-07-02 05:02:12','2023-07-02 05:02:12',NULL),(641,0,'3','3',55,'image/jpeg',199060,'news/3.jpg','[]','2023-07-02 05:02:12','2023-07-02 05:02:12',NULL),(642,0,'4','4',55,'image/jpeg',158031,'news/4.jpg','[]','2023-07-02 05:02:13','2023-07-02 05:02:13',NULL),(643,0,'5','5',55,'image/jpeg',135774,'news/5.jpg','[]','2023-07-02 05:02:13','2023-07-02 05:02:13',NULL),(644,0,'6','6',55,'image/jpeg',100187,'news/6.jpg','[]','2023-07-02 05:02:13','2023-07-02 05:02:13',NULL),(645,0,'7','7',55,'image/jpeg',206113,'news/7.jpg','[]','2023-07-02 05:02:14','2023-07-02 05:02:14',NULL),(646,0,'8','8',55,'image/jpeg',184904,'news/8.jpg','[]','2023-07-02 05:02:14','2023-07-02 05:02:14',NULL),(647,0,'9','9',55,'image/jpeg',150106,'news/9.jpg','[]','2023-07-02 05:02:14','2023-07-02 05:02:14',NULL),(648,0,'1','1',56,'image/jpeg',39008,'accounts/1.jpg','[]','2023-07-02 05:02:15','2023-07-02 05:02:15',NULL),(649,0,'10','10',56,'image/jpeg',27814,'accounts/10.jpg','[]','2023-07-02 05:02:16','2023-07-02 05:02:16',NULL),(650,0,'2','2',56,'image/jpeg',56376,'accounts/2.jpg','[]','2023-07-02 05:02:16','2023-07-02 05:02:16',NULL),(651,0,'3','3',56,'image/jpeg',62502,'accounts/3.jpg','[]','2023-07-02 05:02:16','2023-07-02 05:02:16',NULL),(652,0,'4','4',56,'image/jpeg',36259,'accounts/4.jpg','[]','2023-07-02 05:02:16','2023-07-02 05:02:16',NULL),(653,0,'5','5',56,'image/jpeg',64833,'accounts/5.jpg','[]','2023-07-02 05:02:17','2023-07-02 05:02:17',NULL),(654,0,'6','6',56,'image/jpeg',57568,'accounts/6.jpg','[]','2023-07-02 05:02:17','2023-07-02 05:02:17',NULL),(655,0,'7','7',56,'image/jpeg',88003,'accounts/7.jpg','[]','2023-07-02 05:02:17','2023-07-02 05:02:17',NULL),(656,0,'8','8',56,'image/jpeg',28009,'accounts/8.jpg','[]','2023-07-02 05:02:18','2023-07-02 05:02:18',NULL),(657,0,'9','9',56,'image/jpeg',49079,'accounts/9.jpg','[]','2023-07-02 05:02:18','2023-07-02 05:02:18',NULL),(658,0,'p-1','p-1',57,'image/jpeg',136733,'properties/p-1.jpg','[]','2023-07-02 05:02:20','2023-07-02 05:02:20',NULL),(659,0,'p-10','p-10',57,'image/jpeg',107306,'properties/p-10.jpg','[]','2023-07-02 05:02:20','2023-07-02 05:02:20',NULL),(660,0,'p-11','p-11',57,'image/jpeg',158705,'properties/p-11.jpg','[]','2023-07-02 05:02:20','2023-07-02 05:02:20',NULL),(661,0,'p-12','p-12',57,'image/jpeg',169224,'properties/p-12.jpg','[]','2023-07-02 05:02:21','2023-07-02 05:02:21',NULL),(662,0,'p-13','p-13',57,'image/jpeg',209836,'properties/p-13.jpg','[]','2023-07-02 05:02:21','2023-07-02 05:02:21',NULL),(663,0,'p-14','p-14',57,'image/jpeg',244640,'properties/p-14.jpg','[]','2023-07-02 05:02:21','2023-07-02 05:02:21',NULL),(664,0,'p-15','p-15',57,'image/jpeg',215801,'properties/p-15.jpg','[]','2023-07-02 05:02:22','2023-07-02 05:02:22',NULL),(665,0,'p-16','p-16',57,'image/jpeg',127110,'properties/p-16.jpg','[]','2023-07-02 05:02:22','2023-07-02 05:02:22',NULL),(666,0,'p-17','p-17',57,'image/jpeg',178736,'properties/p-17.jpg','[]','2023-07-02 05:02:23','2023-07-02 05:02:23',NULL),(667,0,'p-18','p-18',57,'image/jpeg',127500,'properties/p-18.jpg','[]','2023-07-02 05:02:23','2023-07-02 05:02:23',NULL),(668,0,'p-19','p-19',57,'image/jpeg',148213,'properties/p-19.jpg','[]','2023-07-02 05:02:23','2023-07-02 05:02:23',NULL),(669,0,'p-2','p-2',57,'image/jpeg',140241,'properties/p-2.jpg','[]','2023-07-02 05:02:24','2023-07-02 05:02:24',NULL),(670,0,'p-20','p-20',57,'image/jpeg',123100,'properties/p-20.jpg','[]','2023-07-02 05:02:24','2023-07-02 05:02:24',NULL),(671,0,'p-21','p-21',57,'image/jpeg',108630,'properties/p-21.jpg','[]','2023-07-02 05:02:25','2023-07-02 05:02:25',NULL),(672,0,'p-22','p-22',57,'image/jpeg',120108,'properties/p-22.jpg','[]','2023-07-02 05:02:25','2023-07-02 05:02:25',NULL),(673,0,'p-23','p-23',57,'image/jpeg',98530,'properties/p-23.jpg','[]','2023-07-02 05:02:25','2023-07-02 05:02:25',NULL),(674,0,'p-24','p-24',57,'image/jpeg',134237,'properties/p-24.jpg','[]','2023-07-02 05:02:26','2023-07-02 05:02:26',NULL),(675,0,'p-25','p-25',57,'image/jpeg',124532,'properties/p-25.jpg','[]','2023-07-02 05:02:26','2023-07-02 05:02:26',NULL),(676,0,'p-26','p-26',57,'image/jpeg',134643,'properties/p-26.jpg','[]','2023-07-02 05:02:26','2023-07-02 05:02:26',NULL),(677,0,'p-27','p-27',57,'image/jpeg',165965,'properties/p-27.jpg','[]','2023-07-02 05:02:27','2023-07-02 05:02:27',NULL),(678,0,'p-3','p-3',57,'image/jpeg',199060,'properties/p-3.jpg','[]','2023-07-02 05:02:27','2023-07-02 05:02:27',NULL),(679,0,'p-4','p-4',57,'image/jpeg',158031,'properties/p-4.jpg','[]','2023-07-02 05:02:28','2023-07-02 05:02:28',NULL),(680,0,'p-5','p-5',57,'image/jpeg',135774,'properties/p-5.jpg','[]','2023-07-02 05:02:28','2023-07-02 05:02:28',NULL),(681,0,'p-6','p-6',57,'image/jpeg',100187,'properties/p-6.jpg','[]','2023-07-02 05:02:28','2023-07-02 05:02:28',NULL),(682,0,'p-7','p-7',57,'image/jpeg',206113,'properties/p-7.jpg','[]','2023-07-02 05:02:29','2023-07-02 05:02:29',NULL),(683,0,'p-8','p-8',57,'image/jpeg',184904,'properties/p-8.jpg','[]','2023-07-02 05:02:29','2023-07-02 05:02:29',NULL),(684,0,'p-9','p-9',57,'image/jpeg',150106,'properties/p-9.jpg','[]','2023-07-02 05:02:30','2023-07-02 05:02:30',NULL),(685,0,'1','1',58,'image/jpeg',62502,'testimonials/1.jpg','[]','2023-07-02 05:02:33','2023-07-02 05:02:33',NULL),(686,0,'2','2',58,'image/jpeg',36259,'testimonials/2.jpg','[]','2023-07-02 05:02:34','2023-07-02 05:02:34',NULL),(687,0,'3','3',58,'image/jpeg',64833,'testimonials/3.jpg','[]','2023-07-02 05:02:34','2023-07-02 05:02:34',NULL),(688,0,'4','4',58,'image/jpeg',57568,'testimonials/4.jpg','[]','2023-07-02 05:02:34','2023-07-02 05:02:34',NULL),(689,0,'5','5',58,'image/jpeg',28009,'testimonials/5.jpg','[]','2023-07-02 05:02:34','2023-07-02 05:02:34',NULL),(690,0,'investor-1','investor-1',59,'image/jpeg',694060,'investors/investor-1.jpg','[]','2023-07-02 05:02:35','2023-07-02 05:02:35',NULL),(691,0,'investor-2','investor-2',59,'image/jpeg',937274,'investors/investor-2.jpg','[]','2023-07-02 05:02:38','2023-07-02 05:02:38',NULL),(692,0,'investor-3','investor-3',59,'image/jpeg',710188,'investors/investor-3.jpg','[]','2023-07-02 05:02:40','2023-07-02 05:02:40',NULL),(693,0,'investor-4','investor-4',59,'image/jpeg',1128285,'investors/investor-4.jpg','[]','2023-07-02 05:02:43','2023-07-02 05:02:43',NULL),(694,0,'investor-5','investor-5',59,'image/jpeg',930482,'investors/investor-5.jpg','[]','2023-07-02 05:02:46','2023-07-02 05:02:46',NULL),(695,0,'1','1',60,'image/jpeg',1612416,'projects/1.jpg','[]','2023-07-02 05:02:48','2023-07-02 05:02:48',NULL),(696,0,'10','10',60,'image/jpeg',989084,'projects/10.jpg','[]','2023-07-02 05:02:49','2023-07-02 05:02:49',NULL),(697,0,'11','11',60,'image/jpeg',760250,'projects/11.jpg','[]','2023-07-02 05:02:50','2023-07-02 05:02:50',NULL),(698,0,'12','12',60,'image/jpeg',860197,'projects/12.jpg','[]','2023-07-02 05:02:51','2023-07-02 05:02:51',NULL),(699,0,'13','13',60,'image/jpeg',622657,'projects/13.jpg','[]','2023-07-02 05:02:52','2023-07-02 05:02:52',NULL),(700,0,'14','14',60,'image/jpeg',532664,'projects/14.jpg','[]','2023-07-02 05:02:53','2023-07-02 05:02:53',NULL),(701,0,'15','15',60,'image/jpeg',347684,'projects/15.jpg','[]','2023-07-02 05:02:53','2023-07-02 05:02:53',NULL),(702,0,'16','16',60,'image/jpeg',324154,'projects/16.jpg','[]','2023-07-02 05:02:54','2023-07-02 05:02:54',NULL),(703,0,'17','17',60,'image/jpeg',1057476,'projects/17.jpg','[]','2023-07-02 05:02:54','2023-07-02 05:02:54',NULL),(704,0,'18','18',60,'image/jpeg',344542,'projects/18.jpg','[]','2023-07-02 05:02:55','2023-07-02 05:02:55',NULL),(705,0,'19','19',60,'image/jpeg',457851,'projects/19.jpg','[]','2023-07-02 05:02:55','2023-07-02 05:02:55',NULL),(706,0,'2','2',60,'image/jpeg',636473,'projects/2.jpg','[]','2023-07-02 05:02:56','2023-07-02 05:02:56',NULL),(707,0,'20','20',60,'image/jpeg',305992,'projects/20.jpg','[]','2023-07-02 05:02:56','2023-07-02 05:02:56',NULL),(708,0,'3','3',60,'image/jpeg',1165975,'projects/3.jpg','[]','2023-07-02 05:02:57','2023-07-02 05:02:57',NULL),(709,0,'4','4',60,'image/jpeg',654739,'projects/4.jpg','[]','2023-07-02 05:02:57','2023-07-02 05:02:57',NULL),(710,0,'5','5',60,'image/jpeg',768009,'projects/5.jpg','[]','2023-07-02 05:02:58','2023-07-02 05:02:58',NULL),(711,0,'6','6',60,'image/jpeg',814927,'projects/6.jpg','[]','2023-07-02 05:02:59','2023-07-02 05:02:59',NULL),(712,0,'7','7',60,'image/jpeg',981106,'projects/7.jpg','[]','2023-07-02 05:03:00','2023-07-02 05:03:00',NULL),(713,0,'8','8',60,'image/jpeg',552319,'projects/8.jpg','[]','2023-07-02 05:03:01','2023-07-02 05:03:01',NULL),(714,0,'9','9',60,'image/jpeg',930649,'projects/9.jpg','[]','2023-07-02 05:03:01','2023-07-02 05:03:01',NULL);
/*!40000 ALTER TABLE `media_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_folders`
--

DROP TABLE IF EXISTS `media_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_folders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent_id` bigint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `media_folders_user_id_index` (`user_id`),
  KEY `media_folders_index` (`parent_id`,`user_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_folders`
--

LOCK TABLES `media_folders` WRITE;
/*!40000 ALTER TABLE `media_folders` DISABLE KEYS */;
INSERT INTO `media_folders` VALUES (51,0,'cities','cities',0,'2023-07-02 05:01:39','2023-07-02 05:01:39',NULL),(52,0,'block','block',0,'2023-07-02 05:01:51','2023-07-02 05:01:51',NULL),(53,0,'banners','banners',0,'2023-07-02 05:01:51','2023-07-02 05:01:51',NULL),(54,0,'general','general',0,'2023-07-02 05:02:01','2023-07-02 05:02:01',NULL),(55,0,'news','news',0,'2023-07-02 05:02:02','2023-07-02 05:02:02',NULL),(56,0,'accounts','accounts',0,'2023-07-02 05:02:15','2023-07-02 05:02:15',NULL),(57,0,'properties','properties',0,'2023-07-02 05:02:20','2023-07-02 05:02:20',NULL),(58,0,'testimonials','testimonials',0,'2023-07-02 05:02:33','2023-07-02 05:02:33',NULL),(59,0,'investors','investors',0,'2023-07-02 05:02:35','2023-07-02 05:02:35',NULL),(60,0,'projects','projects',0,'2023-07-02 05:02:48','2023-07-02 05:02:48',NULL);
/*!40000 ALTER TABLE `media_folders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_settings`
--

DROP TABLE IF EXISTS `media_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `media_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci,
  `media_id` bigint unsigned DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_settings`
--

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

--
-- Table structure for table `menu_locations`
--

DROP TABLE IF EXISTS `menu_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_locations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` bigint unsigned NOT NULL,
  `location` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_locations`
--

LOCK TABLES `menu_locations` WRITE;
/*!40000 ALTER TABLE `menu_locations` DISABLE KEYS */;
INSERT INTO `menu_locations` VALUES (1,1,'main-menu','2023-07-02 05:02:00','2023-07-02 05:02:00'),(2,5,'main-menu','2023-07-02 05:02:00','2023-07-02 05:02:00');
/*!40000 ALTER TABLE `menu_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menu_nodes`
--

DROP TABLE IF EXISTS `menu_nodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_nodes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_id` bigint unsigned NOT NULL,
  `parent_id` bigint unsigned NOT NULL DEFAULT '0',
  `reference_id` bigint unsigned DEFAULT NULL,
  `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `icon_font` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `position` tinyint unsigned NOT NULL DEFAULT '0',
  `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `css_class` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `target` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self',
  `has_child` tinyint unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_nodes_menu_id_index` (`menu_id`),
  KEY `menu_nodes_parent_id_index` (`parent_id`),
  KEY `reference_id` (`reference_id`),
  KEY `reference_type` (`reference_type`)
) ENGINE=InnoDB AUTO_INCREMENT=109 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_nodes`
--

LOCK TABLES `menu_nodes` WRITE;
/*!40000 ALTER TABLE `menu_nodes` DISABLE KEYS */;
INSERT INTO `menu_nodes` VALUES (1,1,0,NULL,NULL,'/',NULL,0,'Home',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(2,1,1,NULL,NULL,'/',NULL,0,'Home layout 1',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(3,1,1,2,'Botble\\Page\\Models\\Page','/home-layout-2',NULL,0,'Home layout 2',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(4,1,1,3,'Botble\\Page\\Models\\Page','/home-layout-3',NULL,0,'Home layout 3',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(5,1,1,4,'Botble\\Page\\Models\\Page','/home-layout-4',NULL,0,'Home layout 4',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(6,1,1,5,'Botble\\Page\\Models\\Page','/home-layout-5',NULL,0,'Home layout 5',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(7,1,1,6,'Botble\\Page\\Models\\Page','/home-layout-6',NULL,0,'Home layout 6',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(8,1,1,7,'Botble\\Page\\Models\\Page','/home-layout-7',NULL,0,'Home layout 7',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(9,1,1,8,'Botble\\Page\\Models\\Page','/home-layout-8',NULL,0,'Home layout 8',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(10,1,1,9,'Botble\\Page\\Models\\Page','/home-layout-9',NULL,0,'Home layout 9',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(11,1,1,10,'Botble\\Page\\Models\\Page','/map-home-layout',NULL,0,'Map home layout',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(12,1,0,NULL,NULL,'/properties',NULL,0,'Listings',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(13,1,12,NULL,NULL,'/properties?layout=sidebar',NULL,0,'List Layout',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(14,1,13,NULL,NULL,'/properties?layout=sidebar',NULL,0,'With Sidebar',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(15,1,13,NULL,NULL,'/properties?layout=map',NULL,0,'With Map',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(16,1,13,NULL,NULL,'/properties?layout=full',NULL,0,'Full width',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(17,1,12,NULL,NULL,'/properties?layout=grid_sidebar',NULL,0,'Grid Layout',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(18,1,17,NULL,NULL,'/properties?layout=grid_sidebar',NULL,0,'With Sidebar',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(19,1,17,NULL,NULL,'/properties?layout=grid_map',NULL,0,'With Map',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(20,1,17,NULL,NULL,'/properties?layout=grid_full',NULL,0,'Full width',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(21,1,12,NULL,NULL,'/properties?layout=half_map',NULL,0,'Half Map Search',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(22,1,0,NULL,NULL,'/projects',NULL,0,'Projects',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(23,1,0,NULL,NULL,'/',NULL,0,'Features',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(24,1,23,NULL,NULL,'/',NULL,0,'Single Property',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(25,1,24,1,'Botble\\RealEstate\\Models\\Property','/properties/6007-applegate-lane',NULL,0,'Single Property 1',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(26,1,24,2,'Botble\\RealEstate\\Models\\Property','/properties/2721-lindsay-avenue',NULL,0,'Single Property 2',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(27,1,24,3,'Botble\\RealEstate\\Models\\Property','/properties/2203-7th-street-road',NULL,0,'Single Property 3',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(28,1,23,NULL,NULL,'/',NULL,0,'Agents',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(29,1,28,NULL,NULL,'/agents',NULL,0,'Agents List',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(30,1,28,NULL,NULL,'/agents/thesky9',NULL,0,'Agents Detail Page',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(31,1,23,NULL,NULL,'/',NULL,0,'My Account',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(32,1,31,NULL,NULL,'/account/dashboard',NULL,0,'User Dashboard',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(33,1,31,NULL,NULL,'/account/properties',NULL,0,'Properties',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(34,1,31,NULL,NULL,'/account/settings',NULL,0,'My Profile',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(35,1,31,NULL,NULL,'/account/packages',NULL,0,'Packages',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(36,1,31,NULL,NULL,'/account/security',NULL,0,'Change Password',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(37,1,23,NULL,NULL,'/account/properties/create',NULL,0,'Submit Property',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(38,1,0,NULL,NULL,'/',NULL,0,'Pages',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(39,1,38,12,'Botble\\Page\\Models\\Page','/news',NULL,0,'Blogs Page',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(40,1,38,1,'Botble\\Blog\\Models\\Post','/news/why-people-choose-listio-for-own-properties',NULL,0,'Blog Detail',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(41,1,38,NULL,NULL,'/home#pricing-section',NULL,0,'Pricing',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(42,1,38,39,'Botble\\Page\\Models\\Page','/error-page',NULL,0,'Error Page',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(43,1,38,14,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Contact',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(44,1,0,NULL,NULL,'/register',NULL,0,'Sign Up',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(45,2,0,13,'Botble\\Page\\Models\\Page','/about-us',NULL,0,'About us',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(46,2,0,14,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Contact us',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(47,2,0,15,'Botble\\Page\\Models\\Page','/terms-conditions',NULL,0,'Terms & Conditions',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(48,3,0,NULL,NULL,'/properties',NULL,0,'All properties',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(49,3,0,NULL,NULL,'/properties?type=sale',NULL,0,'Houses for sale',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(50,3,0,NULL,NULL,'/properties?type=rent',NULL,0,'Houses for rent',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(51,4,0,NULL,NULL,'/news',NULL,0,'Latest news',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(52,4,0,NULL,NULL,'/house-architecture',NULL,0,'House architecture',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(53,4,0,NULL,NULL,'/house-design',NULL,0,'House design',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(54,4,0,NULL,NULL,'/building-materials',NULL,0,'Building materials',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(55,5,0,1,'Botble\\Page\\Models\\Page','/',NULL,0,'Trang chủ',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(56,5,55,1,'Botble\\Page\\Models\\Page','/',NULL,0,'Trang chủ 1',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(57,5,55,2,'Botble\\Page\\Models\\Page','/home-layout-2',NULL,0,'Trang chủ 2',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(58,5,55,3,'Botble\\Page\\Models\\Page','/home-layout-3',NULL,0,'Trang chủ 3',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(59,5,55,4,'Botble\\Page\\Models\\Page','/home-layout-4',NULL,0,'Trang chủ 4',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(60,5,55,5,'Botble\\Page\\Models\\Page','/home-layout-5',NULL,0,'Trang chủ 5',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(61,5,55,6,'Botble\\Page\\Models\\Page','/home-layout-6',NULL,0,'Trang chủ 6',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(62,5,55,7,'Botble\\Page\\Models\\Page','/home-layout-7',NULL,0,'Trang chủ 7',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(63,5,55,8,'Botble\\Page\\Models\\Page','/home-layout-8',NULL,0,'Trang chủ 8',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(64,5,55,9,'Botble\\Page\\Models\\Page','/home-layout-9',NULL,0,'Trang chủ 9',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(65,5,55,10,'Botble\\Page\\Models\\Page','/map-home-layout',NULL,0,'Trang chủ bản đồ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(66,5,0,NULL,NULL,'/properties?layout=sidebar',NULL,0,'Danh sách',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(67,5,66,NULL,NULL,'/properties?layout=sidebar',NULL,0,'Dạng list',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(68,5,67,NULL,NULL,'/properties?layout=sidebar',NULL,0,'Có thanh bên',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(69,5,67,NULL,NULL,'/properties?layout=full',NULL,0,'Chiều rộng đầy đủ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(70,5,67,NULL,NULL,'/properties?layout=map',NULL,0,'Có Bản Đồ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(71,5,66,NULL,NULL,'/properties?layout=grid_sidebar',NULL,0,'Dạng cột',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(72,5,71,NULL,NULL,'/properties?layout=grid_sidebar',NULL,0,'Có thanh bên',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(73,5,71,NULL,NULL,'/properties?layout=grid_map',NULL,0,'Có Map',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(74,5,71,NULL,NULL,'/properties?layout=grid_full',NULL,0,'Chiều rộng đầy đủ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(75,5,66,NULL,NULL,'/properties?layout=half_map',NULL,0,'Có 1/2 bản đồ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(76,5,0,NULL,NULL,'/projects',NULL,0,'Dự án',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(77,5,0,NULL,NULL,NULL,NULL,0,'Tính năng',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(78,5,77,21,'Botble\\RealEstate\\Models\\Property',NULL,NULL,0,'Chi tiết bất động sản',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(79,5,78,21,'Botble\\RealEstate\\Models\\Property',NULL,NULL,0,'Chi tiết bất động sản 1',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(80,5,78,22,'Botble\\RealEstate\\Models\\Property',NULL,NULL,0,'Chi tiết bất động sản 2',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(81,5,78,23,'Botble\\RealEstate\\Models\\Property',NULL,NULL,0,'Chi tiết bất động sản 3',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(82,5,77,NULL,NULL,'#',NULL,0,'Đại lý và người đại lý',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(83,5,82,NULL,NULL,'/agents',NULL,0,'Danh sách đại lý',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(84,5,82,NULL,NULL,'/agents/thesky9',NULL,0,'Chi tiết địa lý',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(85,5,77,NULL,NULL,'#',NULL,0,'Tài khoản',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(86,5,85,NULL,NULL,'/account/dashboard',NULL,0,'My Dashboard',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(87,5,85,NULL,NULL,'/account/properties',NULL,0,'Properties',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(88,5,85,NULL,NULL,'/account/settings',NULL,0,'My Profile',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(89,5,85,NULL,NULL,'/account/packages',NULL,0,'Packages',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(90,5,85,NULL,NULL,'/account/security',NULL,0,'Đổi mật khẩu',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(91,5,77,NULL,NULL,'/account/properties/create',NULL,0,'Đăng bất động sản',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(92,5,0,NULL,NULL,'/',NULL,0,'Trang',NULL,'_self',1,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(93,5,92,28,'Botble\\Page\\Models\\Page',NULL,NULL,0,'Trang blog',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(94,5,92,20,'Botble\\Blog\\Models\\Post',NULL,NULL,0,'Bài viết chi tiết',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(95,5,92,NULL,NULL,'/home#pricing-section',NULL,0,'Bảng giá',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(96,5,92,NULL,NULL,'/error-page',NULL,0,'Page lỗi',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(97,5,92,30,'Botble\\Page\\Models\\Page',NULL,NULL,0,'Liên hệ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(98,5,0,NULL,NULL,'/register',NULL,0,'Đăng ký',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(99,6,0,9,'Botble\\Page\\Models\\Page','/home-layout-9',NULL,0,'Về chúng tôi',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(100,6,0,10,'Botble\\Page\\Models\\Page','/map-home-layout',NULL,0,'Liên hệ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(101,6,0,11,'Botble\\Page\\Models\\Page','/properties',NULL,0,'Điều khoản và quy định',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(102,7,0,NULL,NULL,'/properties',NULL,0,'Nhà - Căn hộ',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(103,7,0,NULL,NULL,'/properties?type=sale',NULL,0,'Nhà bán',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(104,7,0,NULL,NULL,'/properties?type=rent',NULL,0,'Nhà cho thuê',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(105,8,0,2,'Botble\\Page\\Models\\Page','/home-layout-2',NULL,0,'Tin tức mới nhất',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:01'),(106,8,0,NULL,NULL,'/kien-truc-nha',NULL,0,'Kiến trúc nhà',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(107,8,0,NULL,NULL,'/thiet-ke-nha',NULL,0,'Thiết kế nhà',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00'),(108,8,0,NULL,NULL,'/vat-lieu-xay-dung',NULL,0,'Vật liệu xây dựng',NULL,'_self',0,'2023-07-02 05:02:00','2023-07-02 05:02:00');
/*!40000 ALTER TABLE `menu_nodes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menus`
--

DROP TABLE IF EXISTS `menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menus` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `menus_slug_unique` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menus`
--

LOCK TABLES `menus` WRITE;
/*!40000 ALTER TABLE `menus` DISABLE KEYS */;
INSERT INTO `menus` VALUES (1,'Main menu','main-menu','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(2,'About','about','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(3,'More information','more-information','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(4,'News','news','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(5,'Menu chính','menu-chinh','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(6,'Về chúng tôi','ve-chung-toi','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(7,'Thông tin thêm','thong-tin-them','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(8,'Tin tức','tin-tuc','published','2023-07-02 05:02:00','2023-07-02 05:02:00');
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `meta_boxes`
--

DROP TABLE IF EXISTS `meta_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `meta_boxes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` text COLLATE utf8mb4_unicode_ci,
  `reference_id` bigint unsigned NOT NULL,
  `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_boxes_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=742 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meta_boxes`
--

LOCK TABLES `meta_boxes` WRITE;
/*!40000 ALTER TABLE `meta_boxes` DISABLE KEYS */;
INSERT INTO `meta_boxes` VALUES (1,'image','[\"cities\\/c-1.png\"]',1,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(2,'image','[\"cities\\/c-2.png\"]',2,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(3,'image','[\"cities\\/c-3.png\"]',3,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(4,'image','[\"cities\\/c-4.png\"]',4,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(5,'image','[\"cities\\/c-5.png\"]',5,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(6,'image','[\"cities\\/c-6.png\"]',6,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(7,'image','[\"cities\\/c-7.png\"]',7,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(8,'image','[\"cities\\/c-8.png\"]',8,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(9,'image','[\"cities\\/c-9.png\"]',9,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(10,'image','[\"cities\\/c-10.png\"]',10,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(11,'image','[\"cities\\/c-11.png\"]',11,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(12,'image','[\"cities\\/c-12.png\"]',12,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(13,'image','[\"cities\\/c-13.png\"]',13,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(14,'image','[\"cities\\/c-14.png\"]',14,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(15,'image','[\"cities\\/c-15.png\"]',15,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(16,'image','[\"cities\\/c-16.png\"]',16,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(17,'image','[\"cities\\/c-18.png\"]',17,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(18,'image','[\"cities\\/c-19.png\"]',18,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(19,'image','[\"cities\\/c-20.png\"]',19,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(20,'image','[\"cities\\/c-21.png\"]',20,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(21,'image','[\"cities\\/c-23.png\"]',21,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(22,'image','[\"cities\\/c-24.png\"]',22,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(23,'image','[\"cities\\/c-25.png\"]',23,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(24,'image','[\"cities\\/c-26.png\"]',24,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(25,'image','[\"cities\\/c-27.png\"]',25,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(26,'image','[\"cities\\/c-28.png\"]',26,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(27,'image','[\"cities\\/c-29.png\"]',27,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(28,'image','[\"cities\\/c-30.png\"]',28,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(29,'image','[\"cities\\/c-31.png\"]',29,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(30,'image','[\"cities\\/c-32.png\"]',30,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(31,'image','[\"cities\\/c-33.png\"]',31,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(32,'image','[\"cities\\/c-34.png\"]',32,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(33,'image','[\"cities\\/c-35.png\"]',33,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(34,'image','[\"cities\\/c-36.png\"]',34,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(35,'image','[\"cities\\/c-37.png\"]',35,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(36,'image','[\"cities\\/c-38.png\"]',36,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(37,'image','[\"cities\\/c-39.png\"]',37,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(38,'image','[\"cities\\/c-41.png\"]',38,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(39,'image','[\"cities\\/c-42.png\"]',39,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(40,'image','[\"cities\\/c-43.png\"]',40,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(41,'image','[\"cities\\/c-44.png\"]',41,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(42,'image','[\"cities\\/c-45.png\"]',42,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(43,'image','[\"cities\\/c-46.png\"]',43,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(44,'image','[\"cities\\/c-47.png\"]',44,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(45,'image','[\"cities\\/c-48.png\"]',45,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(46,'image','[\"cities\\/c-49.png\"]',46,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(47,'image','[\"cities\\/c-50.png\"]',47,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(48,'image','[\"cities\\/c-51.png\"]',48,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(49,'image','[\"cities\\/c-52.png\"]',49,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(50,'image','[\"cities\\/c-54.png\"]',50,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(51,'image','[\"cities\\/c-55.png\"]',51,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(52,'image','[\"cities\\/c-56.png\"]',52,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(53,'image','[\"cities\\/c-57.png\"]',53,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(54,'image','[\"cities\\/c-58.png\"]',54,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(55,'image','[\"cities\\/c-59.png\"]',55,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(56,'image','[\"cities\\/c-60.png\"]',56,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(57,'image','[\"cities\\/c-61.png\"]',57,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(58,'image','[\"cities\\/c-62.png\"]',58,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(59,'image','[\"cities\\/c-63.png\"]',59,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(60,'image','[\"cities\\/c-64.png\"]',60,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(61,'image','[\"cities\\/c-65.png\"]',61,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(62,'image','[\"cities\\/c-66.png\"]',62,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(63,'image','[\"cities\\/c-67.png\"]',63,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(64,'image','[\"cities\\/c-68.png\"]',64,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(65,'image','[\"cities\\/c-69.png\"]',65,'Botble\\Location\\Models\\City','2023-07-02 03:21:19','2023-07-02 03:21:19'),(66,'image','[\"cities\\/c-70.png\"]',66,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(67,'image','[\"cities\\/c-71.png\"]',67,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(68,'image','[\"cities\\/c-72.png\"]',68,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(69,'image','[\"cities\\/c-73.png\"]',69,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(70,'image','[\"cities\\/c-74.png\"]',70,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(71,'image','[\"cities\\/c-75.png\"]',71,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(72,'image','[\"cities\\/c-76.png\"]',72,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(73,'image','[\"cities\\/c-77.png\"]',73,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(74,'image','[\"cities\\/c-78.png\"]',74,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(75,'image','[\"cities\\/c-79.png\"]',75,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(76,'image','[\"cities\\/c-80.png\"]',76,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(77,'image','[\"cities\\/c-81.png\"]',77,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(78,'image','[\"cities\\/c-82.png\"]',78,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(79,'image','[\"cities\\/c-84.png\"]',79,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(80,'image','[\"cities\\/c-85.png\"]',80,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(81,'image','[\"cities\\/c-86.png\"]',81,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(82,'image','[\"cities\\/c-87.png\"]',82,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(83,'image','[\"cities\\/c-88.png\"]',83,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(84,'image','[\"cities\\/c-89.png\"]',84,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(85,'image','[\"cities\\/c-90.png\"]',85,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(86,'image','[\"cities\\/c-91.png\"]',86,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(87,'image','[\"cities\\/c-92.png\"]',87,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(88,'image','[\"cities\\/c-95.png\"]',88,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(89,'image','[\"cities\\/c-96.png\"]',89,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(90,'image','[\"cities\\/c-97.png\"]',90,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(91,'image','[\"cities\\/c-98.png\"]',91,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(92,'image','[\"cities\\/c-100.png\"]',92,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(93,'image','[\"cities\\/c-102.png\"]',93,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(94,'image','[\"cities\\/c-103.png\"]',94,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(95,'image','[\"cities\\/c-105.png\"]',95,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(96,'image','[\"cities\\/c-106.png\"]',96,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(97,'image','[\"cities\\/c-111.png\"]',97,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(98,'image','[\"cities\\/c-112.png\"]',98,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(99,'image','[\"cities\\/c-113.png\"]',99,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(100,'image','[\"cities\\/c-115.png\"]',100,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(101,'image','[\"cities\\/c-116.png\"]',101,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(102,'image','[\"cities\\/c-117.png\"]',102,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(103,'image','[\"cities\\/c-118.png\"]',103,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(104,'image','[\"cities\\/c-119.png\"]',104,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(105,'image','[\"cities\\/c-120.png\"]',105,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(106,'image','[\"cities\\/c-121.png\"]',106,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(107,'image','[\"cities\\/c-122.png\"]',107,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(108,'image','[\"cities\\/c-123.png\"]',108,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(109,'image','[\"cities\\/c-124.png\"]',109,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(110,'image','[\"cities\\/c-125.png\"]',110,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(111,'image','[\"cities\\/c-126.png\"]',111,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(112,'image','[\"cities\\/c-127.png\"]',112,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(113,'image','[\"cities\\/c-128.png\"]',113,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(114,'image','[\"cities\\/c-130.png\"]',114,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(115,'image','[\"cities\\/c-132.png\"]',115,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(116,'image','[\"cities\\/c-133.png\"]',116,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(117,'image','[\"cities\\/c-137.png\"]',117,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(118,'image','[\"cities\\/c-138.png\"]',118,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(119,'image','[\"cities\\/c-139.png\"]',119,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(120,'image','[\"cities\\/c-140.png\"]',120,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(121,'image','[\"cities\\/c-142.png\"]',121,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(122,'image','[\"cities\\/c-144.png\"]',122,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(123,'image','[\"cities\\/c-145.png\"]',123,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(124,'image','[\"cities\\/c-147.png\"]',124,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(125,'image','[\"cities\\/c-148.png\"]',125,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(126,'image','[\"cities\\/c-149.png\"]',126,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(127,'image','[\"cities\\/c-151.png\"]',127,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(128,'image','[\"cities\\/c-153.png\"]',128,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(129,'image','[\"cities\\/c-154.png\"]',129,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(130,'image','[\"cities\\/c-155.png\"]',130,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(131,'image','[\"cities\\/c-157.png\"]',131,'Botble\\Location\\Models\\City','2023-07-02 03:21:20','2023-07-02 03:21:20'),(132,'image','[\"cities\\/c-158.png\"]',132,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(133,'image','[\"cities\\/c-159.png\"]',133,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(134,'image','[\"cities\\/c-160.png\"]',134,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(135,'image','[\"cities\\/c-161.png\"]',135,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(136,'image','[\"cities\\/c-162.png\"]',136,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(137,'image','[\"cities\\/c-163.png\"]',137,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(138,'image','[\"cities\\/c-164.png\"]',138,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(139,'image','[\"cities\\/c-165.png\"]',139,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(140,'image','[\"cities\\/c-166.png\"]',140,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(141,'image','[\"cities\\/c-167.png\"]',141,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(142,'image','[\"cities\\/c-168.png\"]',142,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(143,'image','[\"cities\\/c-169.png\"]',143,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(144,'image','[\"cities\\/c-170.png\"]',144,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(145,'image','[\"cities\\/c-171.png\"]',145,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(146,'image','[\"cities\\/c-172.png\"]',146,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(147,'image','[\"cities\\/c-173.png\"]',147,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(148,'image','[\"cities\\/c-174.png\"]',148,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(149,'image','[\"cities\\/c-175.png\"]',149,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(150,'image','[\"cities\\/c-176.png\"]',150,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(151,'image','[\"cities\\/c-177.png\"]',151,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(152,'image','[\"cities\\/c-179.png\"]',152,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(153,'image','[\"cities\\/c-180.png\"]',153,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(154,'image','[\"cities\\/c-183.png\"]',154,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(155,'image','[\"cities\\/c-184.png\"]',155,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(156,'image','[\"cities\\/c-185.png\"]',156,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(157,'image','[\"cities\\/c-186.png\"]',157,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(158,'image','[\"cities\\/c-187.png\"]',158,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(159,'image','[\"cities\\/c-188.png\"]',159,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(160,'image','[\"cities\\/c-190.png\"]',160,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(161,'image','[\"cities\\/c-191.png\"]',161,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(162,'image','[\"cities\\/c-193.png\"]',162,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(163,'image','[\"cities\\/c-194.png\"]',163,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(164,'image','[\"cities\\/c-195.png\"]',164,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(165,'image','[\"cities\\/c-196.png\"]',165,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(166,'image','[\"cities\\/c-197.png\"]',166,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(167,'image','[\"cities\\/c-198.png\"]',167,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(168,'image','[\"cities\\/c-199.png\"]',168,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(169,'image','[\"cities\\/c-200.png\"]',169,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(170,'image','[\"cities\\/c-201.png\"]',170,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(171,'image','[\"cities\\/c-202.png\"]',171,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(172,'image','[\"cities\\/c-203.png\"]',172,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(173,'image','[\"cities\\/c-205.png\"]',173,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(174,'image','[\"cities\\/c-206.png\"]',174,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(175,'image','[\"cities\\/c-207.png\"]',175,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(176,'image','[\"cities\\/c-208.png\"]',176,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(177,'image','[\"cities\\/c-209.png\"]',177,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(178,'image','[\"cities\\/c-210.png\"]',178,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(179,'image','[\"cities\\/c-211.png\"]',179,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(180,'image','[\"cities\\/c-213.png\"]',180,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(181,'image','[\"cities\\/c-214.png\"]',181,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(182,'image','[\"cities\\/c-215.png\"]',182,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(183,'image','[\"cities\\/c-216.png\"]',183,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(184,'image','[\"cities\\/c-217.png\"]',184,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(185,'image','[\"cities\\/c-218.png\"]',185,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(186,'image','[\"cities\\/c-219.png\"]',186,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(187,'image','[\"cities\\/c-220.png\"]',187,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(188,'image','[\"cities\\/c-222.png\"]',188,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(189,'image','[\"cities\\/c-224.png\"]',189,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(190,'image','[\"cities\\/c-225.png\"]',190,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(191,'image','[\"cities\\/c-226.png\"]',191,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(192,'image','[\"cities\\/c-228.png\"]',192,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(193,'image','[\"cities\\/c-229.png\"]',193,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(194,'image','[\"cities\\/c-230.png\"]',194,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(195,'image','[\"cities\\/c-231.png\"]',195,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(196,'image','[\"cities\\/c-232.png\"]',196,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(197,'image','[\"cities\\/c-233.png\"]',197,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(198,'image','[\"cities\\/c-234.png\"]',198,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(199,'image','[\"cities\\/c-236.png\"]',199,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(200,'image','[\"cities\\/c-237.png\"]',200,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(201,'image','[\"cities\\/c-238.png\"]',201,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(202,'image','[\"cities\\/c-242.png\"]',202,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(203,'image','[\"cities\\/c-243.png\"]',203,'Botble\\Location\\Models\\City','2023-07-02 03:21:21','2023-07-02 03:21:21'),(204,'image','[\"cities\\/c-244.png\"]',204,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(205,'image','[\"cities\\/c-245.png\"]',205,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(206,'image','[\"cities\\/c-246.png\"]',206,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(207,'image','[\"cities\\/c-247.png\"]',207,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(208,'image','[\"cities\\/c-248.png\"]',208,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(209,'image','[\"cities\\/c-251.png\"]',209,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(210,'image','[\"cities\\/c-252.png\"]',210,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(211,'image','[\"cities\\/c-254.png\"]',211,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(212,'image','[\"cities\\/c-255.png\"]',212,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(213,'image','[\"cities\\/c-256.png\"]',213,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(214,'image','[\"cities\\/c-257.png\"]',214,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(215,'image','[\"cities\\/c-258.png\"]',215,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(216,'image','[\"cities\\/c-259.png\"]',216,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(217,'image','[\"cities\\/c-261.png\"]',217,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(218,'image','[\"cities\\/c-262.png\"]',218,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(219,'image','[\"cities\\/c-266.png\"]',219,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(220,'image','[\"cities\\/c-267.png\"]',220,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(221,'image','[\"cities\\/c-269.png\"]',221,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(222,'image','[\"cities\\/c-270.png\"]',222,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(223,'image','[\"cities\\/c-272.png\"]',223,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(224,'image','[\"cities\\/c-273.png\"]',224,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(225,'image','[\"cities\\/c-274.png\"]',225,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(226,'image','[\"cities\\/c-275.png\"]',226,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(227,'image','[\"cities\\/c-277.png\"]',227,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(228,'image','[\"cities\\/c-278.png\"]',228,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(229,'image','[\"cities\\/c-280.png\"]',229,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(230,'image','[\"cities\\/c-282.png\"]',230,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(231,'image','[\"cities\\/c-283.png\"]',231,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(232,'image','[\"cities\\/c-285.png\"]',232,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(233,'image','[\"cities\\/c-286.png\"]',233,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(234,'image','[\"cities\\/c-288.png\"]',234,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(235,'image','[\"cities\\/c-289.png\"]',235,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(236,'image','[\"cities\\/c-291.png\"]',236,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(237,'image','[\"cities\\/c-292.png\"]',237,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(238,'image','[\"cities\\/c-294.png\"]',238,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(239,'image','[\"cities\\/c-296.png\"]',239,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(240,'image','[\"cities\\/c-297.png\"]',240,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(241,'image','[\"cities\\/c-298.png\"]',241,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(242,'image','[\"cities\\/c-300.png\"]',242,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(243,'image','[\"cities\\/c-302.png\"]',243,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(244,'image','[\"cities\\/c-303.png\"]',244,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(245,'image','[\"cities\\/c-304.png\"]',245,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(246,'image','[\"cities\\/c-307.png\"]',246,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(247,'image','[\"cities\\/c-310.png\"]',247,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(248,'image','[\"cities\\/c-312.png\"]',248,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(249,'image','[\"cities\\/c-315.png\"]',249,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(250,'image','[\"cities\\/c-316.png\"]',250,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(251,'image','[\"cities\\/c-320.png\"]',251,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(252,'image','[\"cities\\/c-324.png\"]',252,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(253,'image','[\"cities\\/c-325.png\"]',253,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(254,'image','[\"cities\\/c-327.png\"]',254,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(255,'image','[\"cities\\/c-329.png\"]',255,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(256,'image','[\"cities\\/c-330.png\"]',256,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(257,'image','[\"cities\\/c-331.png\"]',257,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(258,'image','[\"cities\\/c-332.png\"]',258,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(259,'image','[\"cities\\/c-334.png\"]',259,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(260,'image','[\"cities\\/c-335.png\"]',260,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(261,'image','[\"cities\\/c-337.png\"]',261,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(262,'image','[\"cities\\/c-339.png\"]',262,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(263,'image','[\"cities\\/c-340.png\"]',263,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(264,'image','[\"cities\\/c-341.png\"]',264,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(265,'image','[\"cities\\/c-342.png\"]',265,'Botble\\Location\\Models\\City','2023-07-02 03:21:22','2023-07-02 03:21:22'),(266,'image','[\"cities\\/c-343.png\"]',266,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(267,'image','[\"cities\\/c-344.png\"]',267,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(268,'image','[\"cities\\/c-345.png\"]',268,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(269,'image','[\"cities\\/c-346.png\"]',269,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(270,'image','[\"cities\\/c-347.png\"]',270,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(271,'image','[\"cities\\/c-350.png\"]',271,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(272,'image','[\"cities\\/c-351.png\"]',272,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(273,'image','[\"cities\\/c-353.png\"]',273,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(274,'image','[\"cities\\/c-354.png\"]',274,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(275,'image','[\"cities\\/c-357.png\"]',275,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(276,'image','[\"cities\\/c-358.png\"]',276,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(277,'image','[\"cities\\/c-360.png\"]',277,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(278,'image','[\"cities\\/c-362.png\"]',278,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(279,'image','[\"cities\\/c-364.png\"]',279,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(280,'image','[\"cities\\/c-367.png\"]',280,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(281,'image','[\"cities\\/c-369.png\"]',281,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(282,'image','[\"cities\\/c-370.png\"]',282,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(283,'image','[\"cities\\/c-371.png\"]',283,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(284,'image','[\"cities\\/c-373.png\"]',284,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(285,'image','[\"cities\\/c-376.png\"]',285,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(286,'image','[\"cities\\/c-377.png\"]',286,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(287,'image','[\"cities\\/c-378.png\"]',287,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(288,'image','[\"cities\\/c-381.png\"]',288,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(289,'image','[\"cities\\/c-382.png\"]',289,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(290,'image','[\"cities\\/c-383.png\"]',290,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(291,'image','[\"cities\\/c-384.png\"]',291,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(292,'image','[\"cities\\/c-385.png\"]',292,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(293,'image','[\"cities\\/c-390.png\"]',293,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(294,'image','[\"cities\\/c-391.png\"]',294,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(295,'image','[\"cities\\/c-393.png\"]',295,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(296,'image','[\"cities\\/c-395.png\"]',296,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(297,'image','[\"cities\\/c-396.png\"]',297,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(298,'image','[\"cities\\/c-399.png\"]',298,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(299,'image','[\"cities\\/c-401.png\"]',299,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(300,'image','[\"cities\\/c-403.png\"]',300,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(301,'image','[\"cities\\/c-405.png\"]',301,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(302,'image','[\"cities\\/c-407.png\"]',302,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(303,'image','[\"cities\\/c-408.png\"]',303,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(304,'image','[\"cities\\/c-409.png\"]',304,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(305,'image','[\"cities\\/c-410.png\"]',305,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(306,'image','[\"cities\\/c-411.png\"]',306,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(307,'image','[\"cities\\/c-412.png\"]',307,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(308,'image','[\"cities\\/c-414.png\"]',308,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(309,'image','[\"cities\\/c-415.png\"]',309,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(310,'image','[\"cities\\/c-419.png\"]',310,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(311,'image','[\"cities\\/c-421.png\"]',311,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(312,'image','[\"cities\\/c-423.png\"]',312,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(313,'image','[\"cities\\/c-425.png\"]',313,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(314,'image','[\"cities\\/c-428.png\"]',314,'Botble\\Location\\Models\\City','2023-07-02 03:21:23','2023-07-02 03:21:23'),(315,'image','[\"cities\\/c-429.png\"]',315,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(316,'image','[\"cities\\/c-431.png\"]',316,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(317,'image','[\"cities\\/c-432.png\"]',317,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(318,'image','[\"cities\\/c-433.png\"]',318,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(319,'image','[\"cities\\/c-435.png\"]',319,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(320,'image','[\"cities\\/c-438.png\"]',320,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(321,'image','[\"cities\\/c-441.png\"]',321,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(322,'image','[\"cities\\/c-444.png\"]',322,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(323,'image','[\"cities\\/c-447.png\"]',323,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(324,'image','[\"cities\\/c-448.png\"]',324,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(325,'image','[\"cities\\/c-450.png\"]',325,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(326,'image','[\"cities\\/c-452.png\"]',326,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(327,'image','[\"cities\\/c-453.png\"]',327,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(328,'image','[\"cities\\/c-455.png\"]',328,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(329,'image','[\"cities\\/c-457.png\"]',329,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(330,'image','[\"cities\\/c-458.png\"]',330,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(331,'image','[\"cities\\/c-459.png\"]',331,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(332,'image','[\"cities\\/c-462.png\"]',332,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(333,'image','[\"cities\\/c-463.png\"]',333,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(334,'image','[\"cities\\/c-464.png\"]',334,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(335,'image','[\"cities\\/c-467.png\"]',335,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(336,'image','[\"cities\\/c-468.png\"]',336,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(337,'image','[\"cities\\/c-470.png\"]',337,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(338,'image','[\"cities\\/c-473.png\"]',338,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(339,'image','[\"cities\\/c-479.png\"]',339,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(340,'image','[\"cities\\/c-480.png\"]',340,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(341,'image','[\"cities\\/c-481.png\"]',341,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(342,'image','[\"cities\\/c-482.png\"]',342,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(343,'image','[\"cities\\/c-484.png\"]',343,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(344,'image','[\"cities\\/c-490.png\"]',344,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(345,'image','[\"cities\\/c-491.png\"]',345,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(346,'image','[\"cities\\/c-493.png\"]',346,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(347,'image','[\"cities\\/c-495.png\"]',347,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(348,'image','[\"cities\\/c-504.png\"]',348,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(349,'image','[\"cities\\/c-507.png\"]',349,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(350,'image','[\"cities\\/c-508.png\"]',350,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(351,'image','[\"cities\\/c-509.png\"]',351,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(352,'image','[\"cities\\/c-513.png\"]',352,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(353,'image','[\"cities\\/c-516.png\"]',353,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(354,'image','[\"cities\\/c-519.png\"]',354,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(355,'image','[\"cities\\/c-520.png\"]',355,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(356,'image','[\"cities\\/c-523.png\"]',356,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(357,'image','[\"cities\\/c-526.png\"]',357,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(358,'image','[\"cities\\/c-527.png\"]',358,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(359,'image','[\"cities\\/c-529.png\"]',359,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(360,'image','[\"cities\\/c-533.png\"]',360,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(361,'image','[\"cities\\/c-534.png\"]',361,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(362,'image','[\"cities\\/c-535.png\"]',362,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(363,'image','[\"cities\\/c-536.png\"]',363,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(364,'image','[\"cities\\/c-537.png\"]',364,'Botble\\Location\\Models\\City','2023-07-02 03:21:24','2023-07-02 03:21:24'),(365,'image','[\"cities\\/c-538.png\"]',365,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(366,'image','[\"cities\\/c-542.png\"]',366,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(367,'image','[\"cities\\/c-543.png\"]',367,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(368,'image','[\"cities\\/c-546.png\"]',368,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(369,'image','[\"cities\\/c-548.png\"]',369,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(370,'image','[\"cities\\/c-549.png\"]',370,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(371,'image','[\"cities\\/c-550.png\"]',371,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(372,'image','[\"cities\\/c-551.png\"]',372,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(373,'image','[\"cities\\/c-552.png\"]',373,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(374,'image','[\"cities\\/c-560.png\"]',374,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(375,'image','[\"cities\\/c-561.png\"]',375,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(376,'image','[\"cities\\/c-562.png\"]',376,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(377,'image','[\"cities\\/c-564.png\"]',377,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(378,'image','[\"cities\\/c-565.png\"]',378,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(379,'image','[\"cities\\/c-566.png\"]',379,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(380,'image','[\"cities\\/c-569.png\"]',380,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(381,'image','[\"cities\\/c-572.png\"]',381,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(382,'image','[\"cities\\/c-577.png\"]',382,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(383,'image','[\"cities\\/c-578.png\"]',383,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(384,'image','[\"cities\\/c-580.png\"]',384,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(385,'image','[\"cities\\/c-584.png\"]',385,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(386,'image','[\"cities\\/c-589.png\"]',386,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(387,'image','[\"cities\\/c-590.png\"]',387,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(388,'image','[\"cities\\/c-591.png\"]',388,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(389,'image','[\"cities\\/c-592.png\"]',389,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(390,'image','[\"cities\\/c-594.png\"]',390,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(391,'image','[\"cities\\/c-595.png\"]',391,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(392,'image','[\"cities\\/c-607.png\"]',392,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(393,'image','[\"cities\\/c-610.png\"]',393,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(394,'image','[\"cities\\/c-611.png\"]',394,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(395,'image','[\"cities\\/c-613.png\"]',395,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(396,'image','[\"cities\\/c-615.png\"]',396,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(397,'image','[\"cities\\/c-616.png\"]',397,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(398,'image','[\"cities\\/c-620.png\"]',398,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(399,'image','[\"cities\\/c-622.png\"]',399,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(400,'image','[\"cities\\/c-625.png\"]',400,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(401,'image','[\"cities\\/c-626.png\"]',401,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(402,'image','[\"cities\\/c-627.png\"]',402,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(403,'image','[\"cities\\/c-629.png\"]',403,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(404,'image','[\"cities\\/c-630.png\"]',404,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(405,'image','[\"cities\\/c-631.png\"]',405,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(406,'image','[\"cities\\/c-632.png\"]',406,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(407,'image','[\"cities\\/c-634.png\"]',407,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(408,'image','[\"cities\\/c-635.png\"]',408,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(409,'image','[\"cities\\/c-636.png\"]',409,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(410,'image','[\"cities\\/c-640.png\"]',410,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(411,'image','[\"cities\\/c-641.png\"]',411,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(412,'image','[\"cities\\/c-642.png\"]',412,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(413,'image','[\"cities\\/c-643.png\"]',413,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(414,'image','[\"cities\\/c-656.png\"]',414,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(415,'image','[\"cities\\/c-658.png\"]',415,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(416,'image','[\"cities\\/c-659.png\"]',416,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(417,'image','[\"cities\\/c-661.png\"]',417,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(418,'image','[\"cities\\/c-662.png\"]',418,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(419,'image','[\"cities\\/c-666.png\"]',419,'Botble\\Location\\Models\\City','2023-07-02 03:21:25','2023-07-02 03:21:25'),(420,'image','[\"cities\\/c-678.png\"]',420,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(421,'image','[\"cities\\/c-684.png\"]',421,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(422,'image','[\"cities\\/c-685.png\"]',422,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(423,'image','[\"cities\\/c-691.png\"]',423,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(424,'image','[\"cities\\/c-698.png\"]',424,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(425,'image','[\"cities\\/c-700.png\"]',425,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(426,'image','[\"cities\\/c-706.png\"]',426,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(427,'image','[\"cities\\/c-710.png\"]',427,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(428,'image','[\"cities\\/c-715.png\"]',428,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(429,'image','[\"cities\\/c-717.png\"]',429,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(430,'image','[\"cities\\/c-719.png\"]',430,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(431,'image','[\"cities\\/c-720.png\"]',431,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(432,'image','[\"cities\\/c-721.png\"]',432,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(433,'image','[\"cities\\/c-722.png\"]',433,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(434,'image','[\"cities\\/c-726.png\"]',434,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(435,'image','[\"cities\\/c-727.png\"]',435,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(436,'image','[\"cities\\/c-731.png\"]',436,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(437,'image','[\"cities\\/c-736.png\"]',437,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(438,'image','[\"cities\\/c-740.png\"]',438,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(439,'image','[\"cities\\/c-746.png\"]',439,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(440,'image','[\"cities\\/c-747.png\"]',440,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(441,'image','[\"cities\\/c-750.png\"]',441,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(442,'image','[\"cities\\/c-754.png\"]',442,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(443,'image','[\"cities\\/c-761.png\"]',443,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(444,'image','[\"cities\\/c-763.png\"]',444,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(445,'image','[\"cities\\/c-770.png\"]',445,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(446,'image','[\"cities\\/c-773.png\"]',446,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(447,'image','[\"cities\\/c-774.png\"]',447,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(448,'image','[\"cities\\/c-780.png\"]',448,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(449,'image','[\"cities\\/c-781.png\"]',449,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(450,'image','[\"cities\\/c-784.png\"]',450,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(451,'image','[\"cities\\/c-793.png\"]',451,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(452,'image','[\"cities\\/c-794.png\"]',452,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(453,'image','[\"cities\\/c-795.png\"]',453,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(454,'image','[\"cities\\/c-798.png\"]',454,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(455,'image','[\"cities\\/c-803.png\"]',455,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(456,'image','[\"cities\\/c-804.png\"]',456,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(457,'image','[\"cities\\/c-807.png\"]',457,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(458,'image','[\"cities\\/c-809.png\"]',458,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(459,'image','[\"cities\\/c-810.png\"]',459,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(460,'image','[\"cities\\/c-812.png\"]',460,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(461,'image','[\"cities\\/c-815.png\"]',461,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(462,'image','[\"cities\\/c-817.png\"]',462,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(463,'image','[\"cities\\/c-819.png\"]',463,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(464,'image','[\"cities\\/c-821.png\"]',464,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(465,'image','[\"cities\\/c-825.png\"]',465,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(466,'image','[\"cities\\/c-834.png\"]',466,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(467,'image','[\"cities\\/c-840.png\"]',467,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(468,'image','[\"cities\\/c-841.png\"]',468,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(469,'image','[\"cities\\/c-856.png\"]',469,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(470,'image','[\"cities\\/c-858.png\"]',470,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(471,'image','[\"cities\\/c-860.png\"]',471,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(472,'image','[\"cities\\/c-862.png\"]',472,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(473,'image','[\"cities\\/c-863.png\"]',473,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(474,'image','[\"cities\\/c-866.png\"]',474,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(475,'image','[\"cities\\/c-871.png\"]',475,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(476,'image','[\"cities\\/c-872.png\"]',476,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(477,'image','[\"cities\\/c-876.png\"]',477,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(478,'image','[\"cities\\/c-883.png\"]',478,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(479,'image','[\"cities\\/c-888.png\"]',479,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(480,'image','[\"cities\\/c-889.png\"]',480,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(481,'image','[\"cities\\/c-892.png\"]',481,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(482,'image','[\"cities\\/c-895.png\"]',482,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(483,'image','[\"cities\\/c-911.png\"]',483,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(484,'image','[\"cities\\/c-915.png\"]',484,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(485,'image','[\"cities\\/c-922.png\"]',485,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(486,'image','[\"cities\\/c-931.png\"]',486,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(487,'image','[\"cities\\/c-932.png\"]',487,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(488,'image','[\"cities\\/c-934.png\"]',488,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(489,'image','[\"cities\\/c-937.png\"]',489,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(490,'image','[\"cities\\/c-938.png\"]',490,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(491,'image','[\"cities\\/c-948.png\"]',491,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(492,'image','[\"cities\\/c-955.png\"]',492,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(493,'image','[\"cities\\/c-962.png\"]',493,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(494,'image','[\"cities\\/c-970.png\"]',494,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(495,'image','[\"cities\\/c-977.png\"]',495,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(496,'image','[\"cities\\/c-984.png\"]',496,'Botble\\Location\\Models\\City','2023-07-02 03:21:26','2023-07-02 03:21:26'),(497,'image','[\"cities\\/c-988.png\"]',497,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(498,'image','[\"cities\\/c-1001.png\"]',498,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(499,'image','[\"cities\\/c-1013.png\"]',499,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(500,'image','[\"cities\\/c-1040.png\"]',500,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(501,'image','[\"cities\\/c-1041.png\"]',501,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(502,'image','[\"cities\\/c-1059.png\"]',502,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(503,'image','[\"cities\\/c-1063.png\"]',503,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(504,'image','[\"cities\\/c-1064.png\"]',504,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(505,'image','[\"cities\\/c-1065.png\"]',505,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(506,'image','[\"cities\\/c-1068.png\"]',506,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(507,'image','[\"cities\\/c-1075.png\"]',507,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(508,'image','[\"cities\\/c-1083.png\"]',508,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(509,'image','[\"cities\\/c-1088.png\"]',509,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(510,'image','[\"cities\\/c-1090.png\"]',510,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(511,'image','[\"cities\\/c-1091.png\"]',511,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(512,'image','[\"cities\\/c-1097.png\"]',512,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(513,'image','[\"cities\\/c-1099.png\"]',513,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(514,'image','[\"cities\\/c-1105.png\"]',514,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(515,'image','[\"cities\\/c-1115.png\"]',515,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(516,'image','[\"cities\\/c-1123.png\"]',516,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(517,'image','[\"cities\\/c-1140.png\"]',517,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(518,'image','[\"cities\\/c-1152.png\"]',518,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(519,'image','[\"cities\\/c-1154.png\"]',519,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(520,'image','[\"cities\\/c-1158.png\"]',520,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(521,'image','[\"cities\\/c-1162.png\"]',521,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(522,'image','[\"cities\\/c-1163.png\"]',522,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(523,'image','[\"cities\\/c-1165.png\"]',523,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(524,'image','[\"cities\\/c-1169.png\"]',524,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(525,'image','[\"cities\\/c-1175.png\"]',525,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(526,'image','[\"cities\\/c-1177.png\"]',526,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(527,'image','[\"cities\\/c-1178.png\"]',527,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(528,'image','[\"cities\\/c-1212.png\"]',528,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(529,'image','[\"cities\\/c-1214.png\"]',529,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(530,'image','[\"cities\\/c-1216.png\"]',530,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(531,'image','[\"cities\\/c-1217.png\"]',531,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(532,'image','[\"cities\\/c-1218.png\"]',532,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(533,'image','[\"cities\\/c-1224.png\"]',533,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(534,'image','[\"cities\\/c-1231.png\"]',534,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(535,'image','[\"cities\\/c-1241.png\"]',535,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(536,'image','[\"cities\\/c-1252.png\"]',536,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(537,'image','[\"cities\\/c-1267.png\"]',537,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(538,'image','[\"cities\\/c-1280.png\"]',538,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(539,'image','[\"cities\\/c-1284.png\"]',539,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(540,'image','[\"cities\\/c-1288.png\"]',540,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(541,'image','[\"cities\\/c-1307.png\"]',541,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(542,'image','[\"cities\\/c-1314.png\"]',542,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(543,'image','[\"cities\\/c-1359.png\"]',543,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(544,'image','[\"cities\\/c-1364.png\"]',544,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(545,'image','[\"cities\\/c-1395.png\"]',545,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(546,'image','[\"cities\\/c-1416.png\"]',546,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(547,'image','[\"cities\\/c-1423.png\"]',547,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(548,'image','[\"cities\\/c-1428.png\"]',548,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(549,'image','[\"cities\\/c-1469.png\"]',549,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(550,'image','[\"cities\\/c-1472.png\"]',550,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(551,'image','[\"cities\\/c-1478.png\"]',551,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(552,'image','[\"cities\\/c-1496.png\"]',552,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(553,'image','[\"cities\\/c-1509.png\"]',553,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(554,'image','[\"cities\\/c-1526.png\"]',554,'Botble\\Location\\Models\\City','2023-07-02 03:21:27','2023-07-02 03:21:27'),(555,'image','[\"cities\\/c-1536.png\"]',555,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(556,'image','[\"cities\\/c-1546.png\"]',556,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(557,'image','[\"cities\\/c-1559.png\"]',557,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(558,'image','[\"cities\\/c-1579.png\"]',558,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(559,'image','[\"cities\\/c-1613.png\"]',559,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(560,'image','[\"cities\\/c-1618.png\"]',560,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(561,'image','[\"cities\\/c-1672.png\"]',561,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(562,'image','[\"cities\\/c-1674.png\"]',562,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(563,'image','[\"cities\\/c-1684.png\"]',563,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(564,'image','[\"cities\\/c-1832.png\"]',564,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(565,'image','[\"cities\\/c-1980.png\"]',565,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(566,'image','[\"cities\\/c-1997.png\"]',566,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(567,'image','[\"cities\\/c-2016.png\"]',567,'Botble\\Location\\Models\\City','2023-07-02 03:21:28','2023-07-02 03:21:28'),(713,'header_layout','[\"layout-1\"]',1,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(714,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',1,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(715,'header_layout','[\"layout-2\"]',2,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(716,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',2,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(717,'header_layout','[\"layout-3\"]',3,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(718,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',3,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(719,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',4,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(720,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',5,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(721,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',6,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(722,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',7,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(723,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',8,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(724,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',9,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(725,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',10,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:30','2023-07-02 05:02:30'),(726,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',11,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:31','2023-07-02 05:02:31'),(727,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',12,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:31','2023-07-02 05:02:31'),(728,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',13,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:31','2023-07-02 05:02:31'),(729,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',14,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:31','2023-07-02 05:02:31'),(730,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',15,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:31','2023-07-02 05:02:31'),(731,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',16,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:31','2023-07-02 05:02:31'),(732,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',17,'Botble\\RealEstate\\Models\\Property','2023-07-02 05:02:31','2023-07-02 05:02:31'),(733,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',1,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:02','2023-07-02 05:03:02'),(734,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',2,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:02','2023-07-02 05:03:02'),(735,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',3,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:03','2023-07-02 05:03:03'),(736,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',4,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:03','2023-07-02 05:03:03'),(737,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',5,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:03','2023-07-02 05:03:03'),(738,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=U05fwua9-D4\"]',6,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:03','2023-07-02 05:03:03'),(739,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',7,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:03','2023-07-02 05:03:03'),(740,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',8,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:03','2023-07-02 05:03:03'),(741,'video_url','[\"https:\\/\\/www.youtube.com\\/watch?v=0I647GU3Jsc\"]',9,'Botble\\RealEstate\\Models\\Project','2023-07-02 05:03:03','2023-07-02 05:03:03');
/*!40000 ALTER TABLE `meta_boxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `migrations`
--

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2013_04_09_032329_create_base_tables',1),(2,'2013_04_09_062329_create_revisions_table',1),(3,'2014_10_12_000000_create_users_table',1),(4,'2014_10_12_100000_create_password_reset_tokens_table',1),(5,'2016_06_10_230148_create_acl_tables',1),(6,'2016_06_14_230857_create_menus_table',1),(7,'2016_06_28_221418_create_pages_table',1),(8,'2016_10_05_074239_create_setting_table',1),(9,'2016_11_28_032840_create_dashboard_widget_tables',1),(10,'2016_12_16_084601_create_widgets_table',1),(11,'2017_05_09_070343_create_media_tables',1),(12,'2017_11_03_070450_create_slug_table',1),(13,'2019_01_05_053554_create_jobs_table',1),(14,'2019_08_19_000000_create_failed_jobs_table',1),(15,'2019_12_14_000001_create_personal_access_tokens_table',1),(16,'2022_04_20_100851_add_index_to_media_table',1),(17,'2022_04_20_101046_add_index_to_menu_table',1),(18,'2022_07_10_034813_move_lang_folder_to_root',1),(19,'2022_08_04_051940_add_missing_column_expires_at',1),(20,'2022_09_01_000001_create_admin_notifications_tables',1),(21,'2022_10_14_024629_drop_column_is_featured',1),(22,'2022_11_18_063357_add_missing_timestamp_in_table_settings',1),(23,'2022_12_02_093615_update_slug_index_columns',1),(24,'2023_01_30_024431_add_alt_to_media_table',1),(25,'2023_02_16_042611_drop_table_password_resets',1),(26,'2023_04_23_005903_add_column_permissions_to_admin_notifications',1),(27,'2023_05_10_075124_drop_column_id_in_role_users_table',1),(28,'2015_06_29_025744_create_audit_history',2),(29,'2017_02_13_034601_create_blocks_table',3),(30,'2021_12_03_081327_create_blocks_translations',3),(31,'2015_06_18_033822_create_blog_table',4),(32,'2021_02_16_092633_remove_default_value_for_author_type',4),(33,'2021_12_03_030600_create_blog_translations',4),(34,'2022_04_19_113923_add_index_to_table_posts',4),(35,'2016_06_17_091537_create_contacts_table',5),(36,'2016_10_03_032336_create_languages_table',6),(37,'2021_10_25_021023_fix-priority-load-for-language-advanced',7),(38,'2021_12_03_075608_create_page_translations',7),(39,'2019_11_18_061011_create_country_table',8),(40,'2021_06_19_035514_update_city_table',8),(41,'2021_07_08_031045_remove_column_slug_from_cities_table',8),(42,'2021_12_03_084118_create_location_translations',8),(43,'2021_12_03_094518_migrate_old_location_data',8),(44,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',8),(45,'2022_01_19_045455_add_slug_for_table_cities',8),(46,'2022_08_08_085908_improve_plugin_location',8),(47,'2022_15_08_085908_improve_plugin_location',8),(48,'2017_10_24_154832_create_newsletter_table',9),(49,'2017_05_18_080441_create_payment_tables',10),(50,'2021_03_27_144913_add_customer_type_into_table_payments',10),(51,'2021_05_24_034720_make_column_currency_nullable',10),(52,'2021_08_09_161302_add_metadata_column_to_payments_table',10),(53,'2021_10_19_020859_update_metadata_field',10),(54,'2022_06_28_151901_activate_paypal_stripe_plugin',10),(55,'2022_07_07_153354_update_charge_id_in_table_payments',10),(56,'2018_06_22_032304_create_real_estate_table',11),(57,'2021_10_04_145603_update_package_multilanguage',11),(58,'2021_10_24_040004_add_code_table_re_property_types',11),(59,'2021_12_03_151812_add_parent_id_to_re_categories_table',11),(60,'2021_12_04_155038_add_subcategory_id_to_re_propeties_table',11),(61,'2021_12_10_034807_create_real_estate_translation_tables',11),(62,'2022_07_12_044647_add_property_label_column_to_properties_table',11),(63,'2023_01_03_141847_create_re_projects_table',11),(64,'2023_03_03_050121_update_projects_table',11),(65,'2017_07_11_140018_create_simple_slider_table',12),(66,'2018_07_09_214610_create_testimonial_table',13),(67,'2021_12_03_083642_create_testimonials_translations',13),(68,'2016_10_07_193005_create_translations_table',14);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletters`
--

DROP TABLE IF EXISTS `newsletters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletters` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletters`
--

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

--
-- Table structure for table `pages`
--

DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `user_id` bigint unsigned NOT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `pages_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pages`
--

LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,'Home','<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/banner-1.jpg\"][/hero-banner]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[recently-viewed-properties title=\"Recently Viewed Properties\" subtitle=\"Your currently viewed properties.\"][/recently-viewed-properties]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(2,'Home layout 2','<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/banner-svg.jpg\" style=\"2\"]Find Your Perfect Place.[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Featured Property For Sale\" limit=\"6\" style=\"1\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[featured-agents title=\"Explore Featured Agents\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-agents]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(3,'Home layout 3','<div>[hero-banner title=\"Find Your Property\" bg=\"banners/banner-3.jpg\" style=\"3\" overlay=\"6\"]From as low as $10 per day with limited time offer[/hero-banner]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[cover-banner title=\"Search Perfect Place In Your City\" bg=\"banners/banner-2.jpg\" btntext=\"Explore More Property\" btnlink=\"#\"]We post regulary most powerful articles for help and support.[/cover-banner]</div><div>[latest-news title=\"News By Resido,3\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/latest-news]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(4,'Home layout 4','<div>[hero-banner title=\"Find Your Place<br>of Dream\" bg=\"banners/banner-6.png\" style=\"4\"]Amet consectetur adipisicing <span class=\"badge badge-success\">New</span>[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\" style=\"1\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(5,'Home layout 5','<div>[hero-banner title=\"Find Your Perfect Place.\" bg=\"banners/home-2.png\" style=\"5\"]Amet consectetur adipisicing New[/hero-banner]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"1\" type=\"1\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(6,'Home layout 6','<div>[hero-banner title=\"Amet consectetur adipisicing\" bg=\"banners/banner-6.png\" style=\"6\"]Find Your Place <br>Of Dream[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\" style=\"1\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"8\" style=\"1\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(7,'Home layout 7','<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/banner-1.jpg\"]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"1\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[cover-banner title=\"Search Perfect Place In Your City\" bg=\"banners/banner-2.jpg\" btntext=\"Explore More Property\" btnlink=\"#\"]We post regulary most powerful articles for help and support.[/cover-banner]</div><div>[latest-news title=\"News By Resido,3\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/latest-news]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(8,'Home layout 8','<div>[properties-hero-slide limit=\"6\"][/properties-hero-slide]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:01:59','2023-07-02 05:01:59'),(9,'Home layout 9','<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/new-banner.jpg\" style=\"2\"]Find Your Perfect Place.[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[featured-agents title=\"Explore Featured Agents\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-agents]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(10,'Map Home layout','<div>[hero-banner-style-map][/hero-banner-style-map]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>',1,NULL,'homepage',NULL,'published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(11,'Properties','---',1,NULL,'default',NULL,'published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(12,'News',' ',1,NULL,'default','See Our Latest Articles &amp; News','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(13,'About us','<div>[static-block alias=\"our-story\"][/static-block]</div><div>[static-block alias=\"our-mission\"][/static-block]</div>',1,NULL,'default','Who we are &amp; our mission','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(14,'Contact','<p>[contact-form][/contact-form]<br />\n                            &nbsp;</p>\n\n                            <h3>Directions</h3>\n\n                            <p>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</p>\n\n                            <p>&nbsp;</p>',1,NULL,'default',NULL,'published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(15,'Terms &amp; Conditions','<p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Access to and use of the Resido website is subject to the following terms, conditions, and relevant laws of Vietnam.</span></span></p>\n\n                    <h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>1. Copyright</strong></span></span></h4>\n\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Copyrights and other intellectual property rights to all text, images, audio, software and other content on this site are owned by Resido and its affiliates. Users are allowed to view the contents of the website, cite the contents by printing, downloading the hard disk and distributing it to others for non-commercial purposes, providing information or personal purposes. </span></span><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Any content from this site may not be used for sale or distribution for profit, nor may it be edited or included in any other publication or website.</span></span></p>\n\n                    <h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>2. Content</strong></span></span></h4>\n\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">The information on this website is compiled with great confidence but for general information research purposes only. While we endeavor to maintain updated and accurate information, we make no representations or warranties in any manner regarding completeness, accuracy, reliability, appropriateness or availability in relation to web site, or related information, product, service, or image within the website for any purpose. </span></span></p>\n\n                        <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Resido and its employees, managers, and agents are not responsible for any loss, damage or expense incurred as a result of accessing and using this website and the sites. </span></span><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">The web is connected to it, including but not limited to, loss of profits, direct or indirect losses. We are also not responsible, or jointly responsible, if the site is temporarily inaccessible due to technical issues beyond our control. Any comments, suggestions, images, ideas and other information or materials that users submit to us through this site will become our exclusive property, including the right to may arise in the future associated with us.</span></span></p>\n\n                    <p style=\"text-align: center;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><img alt=\"\" src=\"https://flex-home.botble.com/storage/general/copyright.jpg\" style=\"width: 90%;\" /></span></span></p>\n\n                    <h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>3. Note on&nbsp;connected sites</strong></span></span></h4>\n\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">At many points in the website, users can get links to other websites related to a specific aspect. This does not mean that we are related to the websites or companies that own these websites. Although we intend to connect users to sites of interest, we are not responsible or jointly responsible for our employees, managers, or representatives. with other websites and information contained therein.</span></span></p>\n                ',1,NULL,'default','Copyrights and other intellectual property rights to all text, images, audio, software and other content on this site are owned by Resido and its affiliates. Users are allowed to view the contents of the website, cite the contents by printing, downloading the hard disk and distributing it to others for non-commercial purposes.','published','2023-07-02 05:02:00','2023-07-02 05:02:00'),(16,'Cookie Policy','<h3>EU Cookie Consent</h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.</p><h4>Essential Data</h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \"token\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.</p>',1,NULL,'default',NULL,'published','2023-07-02 05:02:00','2023-07-02 05:02:00');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pages_translations`
--

DROP TABLE IF EXISTS `pages_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `pages_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `pages_id` bigint unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`pages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pages_translations`
--

LOCK TABLES `pages_translations` WRITE;
/*!40000 ALTER TABLE `pages_translations` DISABLE KEYS */;
INSERT INTO `pages_translations` VALUES ('vi',1,'Trang chủ',NULL,'<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/banner-1.jpg\"][/hero-banner]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[recently-viewed-properties title=\"Recently Viewed Properties\" subtitle=\"Your currently viewed properties.\"][/recently-viewed-properties]</div>'),('vi',2,'Trang chủ 2',NULL,'<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/banner-svg.jpg\" style=\"2\"]Find Your Perfect Place.[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Featured Property For Sale\" limit=\"6\" style=\"1\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[featured-agents title=\"Explore Featured Agents\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-agents]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>'),('vi',3,'Trang chủ 3',NULL,'<div>[hero-banner title=\"Find Your Property\" bg=\"banners/banner-3.jpg\" style=\"3\" overlay=\"6\"]From as low as $10 per day with limited time offer[/hero-banner]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[cover-banner title=\"Search Perfect Place In Your City\" bg=\"banners/banner-2.jpg\" btntext=\"Explore More Property\" btnlink=\"#\"]We post regulary most powerful articles for help and support.[/cover-banner]</div><div>[latest-news title=\"News By Resido,3\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/latest-news]</div>'),('vi',4,'Trang chủ 4',NULL,'<div>[hero-banner title=\"Find Your Place<br>of Dream\" bg=\"banners/banner-6.png\" style=\"4\"]Amet consectetur adipisicing <span class=\"badge badge-success\">New</span>[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\" style=\"1\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>'),('vi',5,'Trang chủ 5',NULL,'<div>[hero-banner title=\"Find Your Perfect Place.\" bg=\"banners/home-2.png\" style=\"5\"]Amet consectetur adipisicing New[/hero-banner]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"1\" type=\"1\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>'),('vi',6,'Trang chủ 6',NULL,'<div>[hero-banner title=\"Amet consectetur adipisicing\" bg=\"banners/banner-6.png\" style=\"6\"]Find Your Place <br>Of Dream[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\" style=\"1\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"8\" style=\"1\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>'),('vi',7,'Trang chủ 7',NULL,'<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/banner-1.jpg\"]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"1\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[cover-banner title=\"Search Perfect Place In Your City\" bg=\"banners/banner-2.jpg\" btntext=\"Explore More Property\" btnlink=\"#\"]We post regulary most powerful articles for help and support.[/cover-banner]</div><div>[latest-news title=\"News By Resido,3\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/latest-news]</div>'),('vi',8,'Trang chủ 8',NULL,'<div>[properties-hero-slide limit=\"6\"][/properties-hero-slide]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" style=\"2\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[properties-by-locations title=\"Find By Locations\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-by-locations]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div>'),('vi',9,'Trang chủ 9',NULL,'<div>[hero-banner title=\"Find accessible homes to rent\" bg=\"banners/new-banner.jpg\" style=\"2\"]Find Your Perfect Place.[/hero-banner]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[featured-agents title=\"Explore Featured Agents\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-agents]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>'),('vi',10,'Trang chủ bản đồ',NULL,'<div>[hero-banner-style-map][/hero-banner-style-map]</div><div>[static-block alias=\"achievement\"][/static-block]</div><div>[properties-slide title=\"Recent Property For Rent\" limit=\"6\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/properties-slide]</div><div>[featured-properties title=\"Explore Good Places\" limit=\"6\" type=\"2\"]At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores[/featured-properties]</div><div>[static-block alias=\"how-it-works\"][/static-block]</div><div>[testimonials title=\"Good Reviews By Customers\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/testimonials]</div><div>[our-packages title=\"See Our Packages\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores\"][/our-packages]</div><div>[static-block alias=\"download-app\"][/static-block]</div>'),('vi',11,'Properties list',NULL,'---'),('vi',12,'Tin tức',NULL,'---'),('vi',13,'Về chúng tôi','Chúng tôi là ai và nhiệm vụ của chúng tôi','<div>[static-block alias=\"our-story\"][/static-block]</div><div>[static-block alias=\"our-mission\"][/static-block]</div>'),('vi',14,'Liên hệ',NULL,'<div>[contact-form][/contact-form]</div><h3>Tìm đường đi</h3><div>[google-map]North Link Building, 10 Admiralty Street, 757695 Singapore[/google-map]</div>'),('vi',15,'Điều khoản và quy định','Quyền tác giả và các quyền sở hữu trí tuệ khác đối với mọi văn bản, hình ảnh, âm thanh, phần mềm và các nội dung khác trên trang web này thuộc quyền sở hữu của Resido cùng các công ty thành viên. Người truy cập được phép xem các nội dung trong trang web, trích dẫn nội dung bằng cách in ấn, tải về đĩa cứng và phân phát cho người khác chỉ với mục đích phi thương mại.','<p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Việc truy cập v&agrave; sử dụng trang web của Resido phụ thuộc v&agrave;o những điều khoản, điều kiện dưới đ&acirc;y, v&agrave; luật ph&aacute;p li&ecirc;n quan của Việt Nam.</span></span></p>\n\n                    <h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>1. Quyền t&aacute;c giả&nbsp;</strong></span></span></h4>\n\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Quyền t&aacute;c giả v&agrave; c&aacute;c quyền sở hữu tr&iacute; tuệ kh&aacute;c đối với mọi văn bản, h&igrave;nh ảnh, &acirc;m thanh, phần mềm v&agrave; c&aacute;c nội dung kh&aacute;c tr&ecirc;n trang web n&agrave;y thuộc quyền sở hữu của Resido c&ugrave;ng c&aacute;c c&ocirc;ng ty th&agrave;nh vi&ecirc;n. Người truy cập được ph&eacute;p xem c&aacute;c nội dung trong trang web, tr&iacute;ch dẫn nội dung bằng c&aacute;ch in ấn, tải về đĩa cứng v&agrave; ph&acirc;n ph&aacute;t cho người kh&aacute;c chỉ với mục đ&iacute;ch phi thương mại, cung cấp th&ocirc;ng tin hoặc mục đ&iacute;ch c&aacute; nh&acirc;n. Bất kể nội dung n&agrave;o từ trang web n&agrave;y đều kh&ocirc;ng được sử dụng để b&aacute;n hoặc ph&acirc;n t&aacute;n để kiếm lợi v&agrave; cũng kh&ocirc;ng được chỉnh sửa hoặc đưa v&agrave;o bất kỳ ấn phẩm hoặc trang web n&agrave;o kh&aacute;c.</span></span></p>\n\n                    <h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>2. Nội dung</strong></span></span></h4>\n\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Th&ocirc;ng tin tr&ecirc;n trang web n&agrave;y được bi&ecirc;n soạn với sự tin tưởng cao độ nhưng chỉ d&agrave;nh cho c&aacute;c mục đ&iacute;ch nghi&ecirc;n cứu th&ocirc;ng tin tổng qu&aacute;t. Tuy ch&uacute;ng t&ocirc;i nỗ lực duy tr&igrave; th&ocirc;ng tin cập nhật v&agrave; chuẩn x&aacute;c, nhưng ch&uacute;ng t&ocirc;i kh&ocirc;ng khẳng định hay bảo đảm theo bất kỳ c&aacute;ch thức n&agrave;o về sự đầy đủ, ch&iacute;nh x&aacute;c, đ&aacute;ng tin cậy, th&iacute;ch hợp hoặc c&oacute; sẵn li&ecirc;n quan đến trang web, hoặc th&ocirc;ng tin, sản phẩm, dịch vụ, hoặc h&igrave;nh ảnh li&ecirc;n quan trong trang web v&igrave; bất cứ mục đ&iacute;ch g&igrave;. </span></span></p>\n\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Resido v&agrave; mọi nh&acirc;n vi&ecirc;n, nh&agrave; quản l&yacute;, v&agrave; c&aacute;c b&ecirc;n đại diện ho&agrave;n to&agrave;n kh&ocirc;ng chịu tr&aacute;ch nhiệm g&igrave; đối với bất kỳ tổn thất, thiệt hại hoặc chi ph&iacute; ph&aacute;t sinh do việc truy cập v&agrave; sử dụng trang web n&agrave;y v&agrave; c&aacute;c trang web được kết nối với n&oacute;, bao gồm nhưng kh&ocirc;ng giới hạn, việc mất đi lợi nhuận, c&aacute;c khoản lỗ trực tiếp hoặc gi&aacute;n tiếp. Ch&uacute;ng t&ocirc;i cũng kh&ocirc;ng chịu tr&aacute;ch nhiệm, hoặc li&ecirc;n đới tr&aacute;ch nhiệm nếu trang web tạm thời kh&ocirc;ng thể truy cập do c&aacute;c vấn đề kỹ thuật nằm ngo&agrave;i tầm kiểm so&aacute;t của ch&uacute;ng t&ocirc;i. Mọi b&igrave;nh luận, gợi &yacute;, h&igrave;nh ảnh, &yacute; tưởng v&agrave; những th&ocirc;ng tin hay t&agrave;i liệu kh&aacute;c m&agrave; người sử dụng chuyển cho ch&uacute;ng t&ocirc;i th&ocirc;ng qua trang web n&agrave;y sẽ trở th&agrave;nh t&agrave;i sản độc quyền của ch&uacute;ng t&ocirc;i, bao gồm cả c&aacute;c quyền c&oacute; thể ph&aacute;t sinh trong tương lai gắn liền với ch&uacute;ng t&ocirc;i.</span></span></p>\n\n                    <p style=\"text-align:center\"><img alt=\"\" src=\"https://flex-home.botble.com/storage/general/copyright.jpg\" style=\"width: 90%;\" /></p>\n\n                    <h4 style=\"text-align: justify;\"><span style=\"font-size:18px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\"><strong>3. Lưu &yacute; c&aacute;c trang web được kết nối</strong></span></span></h4>\n\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">Tại nhiều điểm trong trang web, người sử dụng c&oacute; thể nhận được c&aacute;c kết nối đến c&aacute;c trang web kh&aacute;c li&ecirc;n quan đến một kh&iacute;a cạnh cụ thể. Điều n&agrave;y kh&ocirc;ng c&oacute; nghĩa l&agrave; ch&uacute;ng t&ocirc;i c&oacute; li&ecirc;n quan đến những trang web hay c&ocirc;ng ty sở hữu những trang web n&agrave;y. D&ugrave; ch&uacute;ng t&ocirc;i c&oacute; &yacute; định kết nối người sử dụng đến c&aacute;c trang web cần quan t&acirc;m, nhưng ch&uacute;ng t&ocirc;i v&agrave; c&aacute;c nh&acirc;n vi&ecirc;n, nh&agrave; quản l&yacute;, hoặc c&aacute;c b&ecirc;n đại diện ho&agrave;n to&agrave;n kh&ocirc;ng chịu tr&aacute;ch nhiệm hoặc li&ecirc;n đới chịu tr&aacute;ch nhiệm g&igrave; đối với c&aacute;c trang web kh&aacute;c v&agrave; th&ocirc;ng tin chứa đựng trong đ&oacute;.</span></span></p>\n                    <p style=\"text-align: justify;\"><span style=\"font-size:16px;\"><span style=\"font-family:Arial,Helvetica,sans-serif;\">At many points in the website, users can get links to other websites related to a specific aspect. This does not mean that we are related to the websites or companies that own these websites. Although we intend to connect users to sites of interest, we are not responsible or jointly responsible for our employees, managers, or representatives. with other websites and information contained therein.</span></span></p>\n                    '),('vi',16,'Cookie Policy',NULL,'<h3>EU Cookie Consent</h3><p>Để sử dụng trang web này, chúng tôi đang sử dụng Cookie và thu thập một số Dữ liệu. Để tuân thủ GDPR của Liên minh Châu Âu, chúng tôi cho bạn lựa chọn nếu bạn cho phép chúng tôi sử dụng một số Cookie nhất định và thu thập một số Dữ liệu.</p><h4>Dữ liệu cần thiết</h4><p>Dữ liệu cần thiết là cần thiết để chạy Trang web bạn đang truy cập về mặt kỹ thuật. Bạn không thể hủy kích hoạt chúng.</p><p>- Session Cookie: PHP sử dụng Cookie để xác định phiên của người dùng. Nếu không có Cookie này, trang web sẽ không hoạt động.</p><p>- XSRF-Token Cookie: Laravel tự động tạo \"token\" CSRF cho mỗi phiên người dùng đang hoạt động do ứng dụng quản lý. Token này được sử dụng để xác minh rằng người dùng đã xác thực là người thực sự đưa ra yêu cầu đối với ứng dụng.</p>');
/*!40000 ALTER TABLE `pages_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `password_reset_tokens`
--

DROP TABLE IF EXISTS `password_reset_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_reset_tokens` (
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_reset_tokens`
--

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

--
-- Table structure for table `payments`
--

DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `currency` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_channel` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(15,2) unsigned NOT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'pending',
  `payment_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'confirm',
  `customer_id` bigint unsigned DEFAULT NULL,
  `refunded_amount` decimal(15,2) unsigned DEFAULT NULL,
  `refund_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `customer_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments`
--

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

--
-- Table structure for table `personal_access_tokens`
--

DROP TABLE IF EXISTS `personal_access_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `personal_access_tokens` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tokenable_id` bigint unsigned NOT NULL,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `abilities` text COLLATE utf8mb4_unicode_ci,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `personal_access_tokens`
--

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

--
-- Table structure for table `post_categories`
--

DROP TABLE IF EXISTS `post_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_categories` (
  `category_id` bigint unsigned NOT NULL,
  `post_id` bigint unsigned NOT NULL,
  KEY `post_categories_category_id_index` (`category_id`),
  KEY `post_categories_post_id_index` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_categories`
--

LOCK TABLES `post_categories` WRITE;
/*!40000 ALTER TABLE `post_categories` DISABLE KEYS */;
INSERT INTO `post_categories` VALUES (1,1),(2,1),(3,1),(4,1),(1,2),(2,2),(3,2),(4,2),(1,3),(2,3),(3,3),(4,3),(1,4),(2,4),(3,4),(4,4),(1,5),(2,5),(3,5),(4,5),(1,6),(2,6),(3,6),(4,6),(1,7),(2,7),(3,7),(4,7),(1,8),(2,8),(3,8),(4,8),(1,9),(2,9),(3,9),(4,9),(1,10),(2,10),(3,10),(4,10),(1,11),(2,11),(3,11),(4,11),(1,12),(2,12),(3,12),(4,12),(1,13),(2,13),(3,13),(4,13),(1,14),(2,14),(3,14),(4,14),(1,15),(2,15),(3,15),(4,15),(1,16),(2,16),(3,16),(4,16);
/*!40000 ALTER TABLE `post_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `post_tags`
--

DROP TABLE IF EXISTS `post_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `post_tags` (
  `tag_id` bigint unsigned NOT NULL,
  `post_id` bigint unsigned NOT NULL,
  KEY `post_tags_tag_id_index` (`tag_id`),
  KEY `post_tags_post_id_index` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `post_tags`
--

LOCK TABLES `post_tags` WRITE;
/*!40000 ALTER TABLE `post_tags` DISABLE KEYS */;
INSERT INTO `post_tags` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(1,2),(2,2),(3,2),(4,2),(5,2),(1,3),(2,3),(3,3),(4,3),(5,3),(1,4),(2,4),(3,4),(4,4),(5,4),(1,5),(2,5),(3,5),(4,5),(5,5),(1,6),(2,6),(3,6),(4,6),(5,6),(1,7),(2,7),(3,7),(4,7),(5,7),(1,8),(2,8),(3,8),(4,8),(5,8),(1,9),(2,9),(3,9),(4,9),(5,9),(1,10),(2,10),(3,10),(4,10),(5,10),(1,11),(2,11),(3,11),(4,11),(5,11),(1,12),(2,12),(3,12),(4,12),(5,12),(1,13),(2,13),(3,13),(4,13),(5,13),(1,14),(2,14),(3,14),(4,14),(5,14),(1,15),(2,15),(3,15),(4,15),(5,15),(1,16),(2,16),(3,16),(4,16),(5,16);
/*!40000 ALTER TABLE `post_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `posts`
--

DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `author_id` bigint unsigned NOT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int unsigned NOT NULL DEFAULT '0',
  `format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `status` (`status`),
  KEY `author_id` (`author_id`),
  KEY `author_type` (`author_type`),
  KEY `created_at` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `posts`
--

LOCK TABLES `posts` WRITE;
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
INSERT INTO `posts` VALUES (1,'Why people choose listio for own properties','Est quasi hic eveniet enim tempore explicabo et. Vel ipsum et quo perspiciatis. Dolores temporibus ab eum nobis iusto maxime voluptatum. Nam mollitia nobis saepe eos quam incidunt.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Caterpillar. This was not a moment to think to herself, \'because of his teacup instead of onions.\' Seven flung down his cheeks, he went on talking: \'Dear, dear! How queer everything is queer to-day.\' Just then she walked sadly down the chimney, and said to the puppy; whereupon the puppy began a series of short charges at the Footman\'s head: it just grazed his nose, and broke off a head unless there was no label this time she saw in another moment, when she looked back once or twice, and shook itself. Then it got down off the subjects on his spectacles. \'Where shall I begin, please your Majesty,\' he began. \'You\'re a very humble tone, going down on her spectacles, and began by producing from under his arm a great many teeth, so she went in search of her voice. Nobody moved. \'Who cares for you?\' said Alice, \'but I must sugar my hair.\" As a duck with its mouth and yawned once or twice she had drunk half the bottle, saying to herself in Wonderland, though she looked down at them, and then.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>I can guess that,\' she added in an angry voice--the Rabbit\'s--\'Pat! Pat! Where are you?\' said Alice, a good deal until she made it out to her chin upon Alice\'s shoulder, and it sat for a minute or two, which gave the Pigeon had finished. \'As if I chose,\' the Duchess was sitting next to her. The Cat seemed to be said. At last the Mouse, frowning, but very glad that it was certainly English. \'I don\'t see any wine,\' she remarked. \'It tells the day and night! You see the earth takes twenty-four.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/6.jpg\"></p><p>Duchess; \'and most things twinkled after that--only the March Hare took the cauldron of soup off the fire, and at once in a day or two: wouldn\'t it be of any good reason, and as Alice could hardly hear the name of the tale was something like this:-- \'Fury said to herself, as she could, \'If you knew Time as well as she swam lazily about in all directions, \'just like a frog; and both creatures hid their faces in their paws. \'And how many hours a day is very confusing.\' \'It isn\'t,\' said the Caterpillar. \'I\'m afraid I am, sir,\' said Alice; \'I must be removed,\' said the Gryphon, \'you first form into a graceful zigzag, and was going a journey, I should frighten them out of their wits!\' So she began shrinking directly. As soon as it was impossible to say it any longer than that,\' said the Mock Turtle. So she set to work at once in the sea. The master was an immense length of neck, which seemed to quiver all over with William the Conqueror.\' (For, with all their simple joys, remembering her.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/13.jpg\"></p><p>Queen to play with, and oh! ever so many tea-things are put out here?\' she asked. \'Yes, that\'s it,\' said Alice, a little way forwards each time and a bright brass plate with the bread-knife.\' The March Hare moved into the air, and came flying down upon their faces. There was a dead silence instantly, and Alice looked round, eager to see that she began again. \'I wonder how many miles I\'ve fallen by this time, as it went. So she called softly after it, \'Mouse dear! Do come back and finish your story!\' Alice called out \'The race is over!\' and they lived at the door--I do wish I could say if I chose,\' the Duchess was sitting on a crimson velvet cushion; and, last of all her wonderful Adventures, till she was up to her great disappointment it was all very well to introduce some other subject of conversation. While she was up to Alice, \'Have you guessed the riddle yet?\' the Hatter added as an explanation; \'I\'ve none of my life.\' \'You are old,\' said the youth, \'as I mentioned before, And.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',2487,NULL,'2023-05-19 13:41:37','2023-07-02 05:02:15'),(2,'List of benifits and impressive listeo services','A inventore tempora consectetur id quisquam asperiores veniam. Hic consequatur aspernatur enim perferendis est. Temporibus numquam et recusandae aut et nulla.','<p>I\'m a hatter.\' Here the other players, and shouting \'Off with her head!\' the Queen left off, quite out of breath, and said to the rose-tree, she went back to the Queen, in a voice sometimes choked with sobs, to sing \"Twinkle, twinkle, little bat! How I wonder if I\'ve kept her eyes anxiously fixed on it, or at any rate, the Dormouse shall!\' they both cried. \'Wake up, Dormouse!\' And they pinched it on both sides at once. \'Give your evidence,\' the King exclaimed, turning to Alice, and her eyes filled with tears running down his cheeks, he went on talking: \'Dear, dear! How queer everything is to-day! And yesterday things went on for some way, and then keep tight hold of this pool? I am now? That\'ll be a comfort, one way--never to be no use now,\' thought poor Alice, \'when one wasn\'t always growing larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn\'t drunk quite so much!\' Alas! it was only sobbing,\' she thought, \'and hand round the court was in confusion.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>Alice knew it was all dark overhead; before her was another long passage, and the choking of the e--e--evening, Beautiful, beautiful Soup!\' CHAPTER XI. Who Stole the Tarts? The King turned pale, and shut his eyes.--\'Tell her about the crumbs,\' said the Mock Turtle. \'Seals, turtles, salmon, and so on.\' \'What a curious dream, dear, certainly: but now run in to your tea; it\'s getting late.\' So Alice got up and throw us, with the Gryphon. \'Turn a somersault in the distance, and she felt a very.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>Dodo, \'the best way to change the subject. \'Ten hours the first really clever thing the King sharply. \'Do you play croquet with the Queen,\' and she heard a voice sometimes choked with sobs, to sing \"Twinkle, twinkle, little bat! How I wonder what was coming. It was as long as it can\'t possibly make me giddy.\' And then, turning to Alice. \'Nothing,\' said Alice. \'Why not?\' said the Cat, as soon as it went. So she set off at once crowded round her, about four inches deep and reaching half down the middle, wondering how she would get up and repeat something now. Tell her to wink with one of the e--e--evening, Beautiful, beauti--FUL SOUP!\' \'Chorus again!\' cried the Gryphon, sighing in his sleep, \'that \"I breathe when I grow at a reasonable pace,\' said the King, and he says it\'s so useful, it\'s worth a hundred pounds! He says it kills all the time at the door with his whiskers!\' For some minutes the whole window!\' \'Sure, it does, yer honour: but it\'s an arm for all that.\' \'With extras?\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Gryphon. \'I\'ve forgotten the words.\' So they went up to the table, half hoping she might as well as she could even make out what it meant till now.\' \'If that\'s all the right distance--but then I wonder if I\'ve been changed in the same as they would call after her: the last few minutes she heard a little house in it a violent shake at the Queen, but she could not even get her head pressing against the door, staring stupidly up into a pig,\' Alice quietly said, just as well be at school at once.\' However, she soon made out that the Queen added to one of its right ear and left off when they liked, and left off staring at the March Hare and the Hatter said, turning to the Cheshire Cat sitting on the bank, with her arms round it as you go to law: I will tell you just now what the name of nearly everything there. \'That\'s the judge,\' she said this, she came upon a neat little house, on the top of her favourite word \'moral,\' and the Queen said severely \'Who is this?\' She said it to be afraid.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',2209,NULL,'2023-02-08 19:34:59','2023-07-02 05:02:15'),(3,'What People Says About Listio Properties','Sit placeat blanditiis occaecati beatae animi. In harum sed vel qui aspernatur soluta ut. Impedit ipsam id eaque voluptas quaerat.','<p>HAVE my shoulders got to? And oh, my poor hands, how is it I can\'t tell you just now what the name \'W. RABBIT\' engraved upon it. She stretched herself up and said, \'So you did, old fellow!\' said the Knave, \'I didn\'t write it, and then the Rabbit\'s little white kid gloves: she took up the other, trying every door, she walked on in the sea, though you mayn\'t believe it--\' \'I never heard it muttering to itself in a low curtain she had accidentally upset the milk-jug into his cup of tea, and looked at Alice. \'I\'M not a mile high,\' said Alice. \'That\'s very curious!\' she thought. \'I must be Mabel after all, and I had our Dinah here, I know who I am! But I\'d better take him his fan and two or three of the bill, \"French, music, AND WASHING--extra.\"\' \'You couldn\'t have done that?\' she thought. \'But everything\'s curious today. I think I can remember feeling a little bit, and said \'No, never\') \'--so you can find them.\' As she said to herself, \'Why, they\'re only a pack of cards, after all.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/1.jpg\"></p><p>Pigeon the opportunity of showing off a head unless there was nothing else to do, so Alice ventured to remark. \'Tut, tut, child!\' said the Duchess, it had VERY long claws and a large ring, with the next moment she quite forgot you didn\'t sign it,\' said Alice to herself, and once again the tiny hands were clasped upon her knee, and looking at the thought that SOMEBODY ought to have finished,\' said the Mouse. \'Of course,\' the Mock Turtle; \'but it doesn\'t matter a bit,\' said the Dodo. Then they.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/6.jpg\"></p><p>The Mouse did not quite sure whether it would not open any of them. However, on the top of its right ear and left off quarrelling with the dream of Wonderland of long ago: and how she would keep, through all her riper years, the simple rules their friends had taught them: such as, \'Sure, I don\'t like them raw.\' \'Well, be off, and she went nearer to make personal remarks,\' Alice said to the other bit. Her chin was pressed hard against it, that attempt proved a failure. Alice heard the King had said that day. \'No, no!\' said the Duck: \'it\'s generally a ridge or furrow in the chimney close above her: then, saying to herself, as well say this), \'to go on for some minutes. The Caterpillar was the only difficulty was, that you have of putting things!\' \'It\'s a Cheshire cat,\' said the Gryphon: and Alice was silent. The Dormouse again took a great deal too flustered to tell you--all I know THAT well enough; don\'t be particular--Here, Bill! catch hold of its mouth open, gazing up into a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>I!\' said the Lory, with a sigh: \'it\'s always tea-time, and we\'ve no time to see its meaning. \'And just as she had brought herself down to nine inches high. CHAPTER VI. Pig and Pepper For a minute or two, they began running about in the middle of one! There ought to be no use in crying like that!\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have been changed in the pool, and the other arm curled round her at the other, saying, in a very curious sensation, which puzzled her very much what would happen next. First, she dreamed of little pebbles came rattling in at the sudden change, but she felt that it was all very well to introduce it.\' \'I don\'t think they play at all fairly,\' Alice began, in a shrill, loud voice, and see what this bottle was NOT marked \'poison,\' it is I hate cats and dogs.\' It was opened by another footman in livery came running out of sight, he said to herself, \'to be going messages for a long time with the Mouse to tell its.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',834,NULL,'2022-12-22 11:20:01','2023-07-02 05:02:15'),(4,'Why People Choose Listio For Own Properties','Sed rerum autem vel quia autem nemo cum. Non fuga est cumque cum repudiandae sed nobis. Amet perspiciatis eius ullam ex. Unde deserunt quisquam consequatur odit consequuntur sit repellat.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Lory hastily. \'I thought it would,\' said the King in a very pretty dance,\' said Alice sadly. \'Hand it over here,\' said the Mock Turtle; \'but it sounds uncommon nonsense.\' Alice said very humbly; \'I won\'t interrupt again. I dare say you never even introduced to a mouse, you know. Come on!\' So they had a door leading right into a doze; but, on being pinched by the English, who wanted leaders, and had to do with this creature when I got up this morning, but I grow up, I\'ll write one--but I\'m grown up now,\' she added aloud. \'Do you mean \"purpose\"?\' said Alice. \'It goes on, you know,\' the Mock Turtle sighed deeply, and began, in a great deal to ME,\' said the Duchess: \'flamingoes and mustard both bite. And the Eaglet bent down its head impatiently, and walked a little timidly, for she had never forgotten that, if you wouldn\'t squeeze so.\' said the Mock Turtle went on, turning to the Knave \'Turn them over!\' The Knave shook his head mournfully. \'Not I!\' he replied. \'We quarrelled last.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>Soup, so rich and green, Waiting in a tone of this rope--Will the roof bear?--Mind that loose slate--Oh, it\'s coming down! Heads below!\' (a loud crash)--\'Now, who did that?--It was Bill, I fancy--Who\'s to go down--Here, Bill! the master says you\'re to go on. \'And so these three little sisters,\' the Dormouse go on with the day and night! You see the Queen. \'I never could abide figures!\' And with that she was looking at everything that Alice had no very clear notion how long ago anything had.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>Alice. \'Off with his nose Trims his belt and his buttons, and turns out his toes.\' [later editions continued as follows When the pie was all very well without--Maybe it\'s always pepper that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only wish it was,\' said the Mouse in the same side of WHAT?\' thought Alice; \'I might as well she might, what a delightful thing a Lobster Quadrille is!\' \'No, indeed,\' said Alice. \'Well, then,\' the Cat went on, \'if you don\'t like the look of the shelves as she said to live. \'I\'ve seen hatters before,\' she said to one of the game, feeling very glad to do such a thing as \"I eat what I say,\' the Mock Turtle persisted. \'How COULD he turn them out again. That\'s all.\' \'Thank you,\' said the Mock Turtle with a kind of authority over Alice. \'Stand up and bawled out, \"He\'s murdering the time! Off with his head!\' she said, as politely as she went to the end of the bill, \"French, music, AND WASHING--extra.\"\' \'You.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Tortoise, if he had a consultation about this, and she walked on in these words: \'Yes, we went to the King, with an M?\' said Alice. \'Why?\' \'IT DOES THE BOOTS AND SHOES.\' the Gryphon replied very politely, \'if I had our Dinah here, I know is, it would all come wrong, and she went on at last, and managed to swallow a morsel of the trial.\' \'Stupid things!\' Alice began telling them her adventures from the sky! Ugh, Serpent!\' \'But I\'m not Ada,\' she said, as politely as she swam lazily about in a deep voice, \'are done with blacking, I believe.\' \'Boots and shoes under the hedge. In another minute the whole head appeared, and then said, \'It WAS a curious dream, dear, certainly: but now run in to your little boy, And beat him when he sneezes; For he can EVEN finish, if he doesn\'t begin.\' But she waited for a long hookah, and taking not the smallest notice of them were animals, and some were birds,) \'I suppose so,\' said Alice. \'I mean what I eat\" is the driest thing I ever saw in my own tears!.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',1836,NULL,'2022-12-19 03:35:09','2023-07-02 05:02:15'),(5,'List Of Benifits And Impressive Listeo Services','Omnis molestias hic asperiores accusantium cupiditate quos fuga. Inventore non delectus dicta in ut voluptatem dolor. Quia rerum voluptate eaque. Fugit autem aliquam ex.','<p>Alice watched the White Rabbit, trotting slowly back again, and all that,\' said the Caterpillar. Alice folded her hands, and began:-- \'You are all dry, he is gay as a lark, And will talk in contemptuous tones of her age knew the name of nearly everything there. \'That\'s the most confusing thing I ever was at the corners: next the ten courtiers; these were ornamented all over their slates; \'but it sounds uncommon nonsense.\' Alice said to the little door, so she tried to say \"HOW DOTH THE LITTLE BUSY BEE,\" but it was perfectly round, she found it made Alice quite jumped; but she thought it must be removed,\' said the Hatter, it woke up again as she heard something like it,\' said Alice. \'Come, let\'s try Geography. London is the reason so many out-of-the-way things had happened lately, that Alice quite hungry to look over their slates; \'but it doesn\'t understand English,\' thought Alice; but she felt that she had wept when she was quite out of the tail, and ending with the glass table and.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>D,\' she added in a VERY turn-up nose, much more like a Jack-in-the-box, and up I goes like a telescope.\' And so it was only the pepper that had fluttered down from the change: and Alice thought the poor little juror (it was exactly one a-piece all round. (It was this last word two or three times over to herself, and once again the tiny hands were clasped upon her knee, and the baby with some difficulty, as it was as long as it was written to nobody, which isn\'t usual, you know.\' \'Not the same.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>Alice to herself, and once again the tiny hands were clasped upon her arm, with its legs hanging down, but generally, just as well. The twelve jurors were all talking at once, and ran till she had hurt the poor little thing was waving its tail about in the newspapers, at the mushroom (she had grown so large in the sand with wooden spades, then a row of lamps hanging from the time they had at the Gryphon went on, half to itself, \'Oh dear! Oh dear! I wish you wouldn\'t keep appearing and vanishing so suddenly: you make one quite giddy.\' \'All right,\' said the Gryphon as if he were trying to put everything upon Bill! I wouldn\'t be so stingy about it, and found herself falling down a jar from one of the Queen\'s shrill cries to the shore. CHAPTER III. A Caucus-Race and a crash of broken glass. \'What a pity it wouldn\'t stay!\' sighed the Hatter. \'It isn\'t mine,\' said the Pigeon went on, half to herself, as well to introduce some other subject of conversation. While she was now, and she went.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>Duchess sang the second time round, she found this a very humble tone, going down on her lap as if nothing had happened. \'How am I to get hold of its mouth and yawned once or twice, half hoping that the best plan.\' It sounded an excellent opportunity for showing off a little quicker. \'What a pity it wouldn\'t stay!\' sighed the Lory, with a great hurry. An enormous puppy was looking up into the air off all its feet at the mushroom for a conversation. Alice felt that she never knew so much already, that it is!\' As she said to the Knave \'Turn them over!\' The Knave of Hearts, he stole those tarts, And took them quite away!\' \'Consider your verdict,\' the King and Queen of Hearts, she made it out loud. \'Thinking again?\' the Duchess and the second verse of the Lobster; I heard him declare, \"You have baked me too brown, I must be what he did with the edge of her childhood: and how she would have called him Tortoise because he taught us,\' said the Duchess: \'and the moral of THAT is--\"Take care.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',1764,NULL,'2023-02-12 05:37:51','2023-07-02 05:02:15'),(6,'What People Says About Listio Properties','Earum illum nulla est quo. Necessitatibus esse et sunt sint nisi. Aut esse quae ullam error ut at eius. Est atque libero aliquid assumenda adipisci tenetur quisquam. Quia cupiditate velit ullam aut.','<p>Just as she added, to herself, being rather proud of it: \'No room! No room!\' they cried out when they hit her; and the March Hare went \'Sh! sh!\' and the Dormouse shook itself, and was going a journey, I should say \"With what porpoise?\"\' \'Don\'t you mean \"purpose\"?\' said Alice. \'Why, SHE,\' said the Cat. \'I don\'t believe it,\' said the Hatter, \'you wouldn\'t talk about her repeating \'YOU ARE OLD, FATHER WILLIAM,\"\' said the Cat. \'Do you play croquet with the edge of the thing at all. \'But perhaps he can\'t help that,\' said the Hatter: \'I\'m on the slate. \'Herald, read the accusation!\' said the Cat. \'I\'d nearly forgotten to ask.\' \'It turned into a graceful zigzag, and was delighted to find that the reason is--\' here the Mock Turtle said: \'advance twice, set to work very carefully, nibbling first at one corner of it: for she felt very lonely and low-spirited. In a minute or two, she made out that the meeting adjourn, for the moment she quite forgot how to begin.\' For, you see, as they all.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/3.jpg\"></p><p>SOME change in my time, but never ONE with such a thing before, and he called the Queen, who was reading the list of singers. \'You may not have lived much under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it advisable--\"\' \'Found WHAT?\' said the Caterpillar. This was not a mile high,\' said Alice. \'Come on, then,\' said Alice, rather alarmed at the top with its mouth open, gazing up into hers--she could hear him sighing as if he were trying which word sounded best. Some.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/9.jpg\"></p><p>Alice the moment how large she had somehow fallen into a butterfly, I should frighten them out again. That\'s all.\' \'Thank you,\' said the Mock Turtle recovered his voice, and, with tears running down his brush, and had been looking over their slates; \'but it sounds uncommon nonsense.\' Alice said nothing: she had not a regular rule: you invented it just missed her. Alice caught the baby joined):-- \'Wow! wow! wow!\' \'Here! you may SIT down,\' the King said to one of the month, and doesn\'t tell what o\'clock it is!\' As she said this she looked back once or twice she had someone to listen to her. \'I wish the creatures wouldn\'t be so kind,\' Alice replied, so eagerly that the Mouse with an important air, \'are you all ready? This is the capital of Paris, and Paris is the driest thing I ever heard!\' \'Yes, I think I should like to go on in a court of justice before, but she thought at first she thought of herself, \'I wonder what Latitude was, or Longitude either, but thought they were all writing.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>I\'m angry. Therefore I\'m mad.\' \'I call it sad?\' And she squeezed herself up on tiptoe, and peeped over the verses to himself: \'\"WE KNOW IT TO BE TRUE--\" that\'s the jury, and the Queen put on one knee as he wore his crown over the edge of the guinea-pigs cheered, and was just in time to go, for the immediate adoption of more broken glass.) \'Now tell me, please, which way you have of putting things!\' \'It\'s a friend of mine--a Cheshire Cat,\' said Alice: \'--where\'s the Duchess?\' \'Hush! Hush!\' said the Mock Turtle, \'Drive on, old fellow! Don\'t be all day about it!\' Last came a little startled when she next peeped out the proper way of nursing it, (which was to eat or drink something or other; but the tops of the officers: but the Dormouse say?\' one of the party were placed along the passage into the way I want to go! Let me see--how IS it to annoy, Because he knows it teases.\' CHORUS. (In which the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said the.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',621,NULL,'2023-03-05 00:28:27','2023-07-02 05:02:15'),(7,'5 of the Most Searched Outdoor Decor Trends of Summer 2021','Sit et ipsum sunt et. Illo rerum illo voluptatibus sint ipsa consequatur cupiditate atque. Qui voluptas repellat est consequatur quia sint.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>YOUR adventures.\' \'I could tell you how it was too late to wish that! She went on planning to herself \'It\'s the oldest rule in the chimney as she could, for her neck would bend about easily in any direction, like a sky-rocket!\' \'So you did, old fellow!\' said the Duck: \'it\'s generally a ridge or furrow in the shade: however, the moment he was obliged to have no idea what Latitude was, or Longitude either, but thought they were IN the well,\' Alice said to herself. (Alice had no very clear notion how long ago anything had happened.) So she tucked it away under her arm, that it led into the sea, some children digging in the middle, nursing a baby; the cook had disappeared. \'Never mind!\' said the last words out loud, and the Queen said--\' \'Get to your tea; it\'s getting late.\' So Alice began to repeat it, when a cry of \'The trial\'s beginning!\' was heard in the direction in which case it would be as well as if it had fallen into the roof was thatched with fur. It was as long as there was.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>WAS a curious dream!\' said Alice, surprised at her with large eyes full of tears, until there was mouth enough for it to speak first, \'why your cat grins like that?\' \'It\'s a mineral, I THINK,\' said Alice. \'Off with her head in the other. \'I beg your pardon!\' cried Alice hastily, afraid that she had never done such a very fine day!\' said a whiting before.\' \'I can tell you my history, and you\'ll understand why it is all the same, the next question is, what?\' The great question is, what?\' The.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>All this time the Queen in front of the Queen\'s voice in the last few minutes, and she set to work at once without waiting for the moment he was gone, and the m--\' But here, to Alice\'s great surprise, the Duchess\'s voice died away, even in the pool, \'and she sits purring so nicely by the way of nursing it, (which was to get out of his pocket, and pulled out a history of the song, \'I\'d have said to Alice. \'What IS the same as the question was evidently meant for her. \'Yes!\' shouted Alice. \'Come on, then!\' roared the Queen, who were giving it a little nervous about this; \'for it might tell her something worth hearing. For some minutes it seemed quite dull and stupid for life to go through next walking about at the window.\' \'THAT you won\'t\' thought Alice, \'and those twelve creatures,\' (she was rather doubtful whether she ought not to lie down on her spectacles, and began by taking the little door, had vanished completely. Very soon the Rabbit say to itself, \'Oh dear! Oh dear! I\'d nearly.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Improve his shining tail, And pour the waters of the earth. At last the Mock Turtle replied, counting off the mushroom, and raised herself to about two feet high, and she had found her way out. \'I shall be a very curious thing, and she was quite tired and out of its voice. \'Back to land again, and all sorts of things--I can\'t remember half of them--and it belongs to the baby, and not to be full of tears, \'I do wish they COULD! I\'m sure I can\'t see you?\' She was close behind it was good practice to say anything. \'Why,\' said the King; and as the other.\' As soon as the whole pack rose up into the air, and came flying down upon her: she gave a little pattering of feet in a sulky tone, as it was very uncomfortable, and, as she was near enough to try the whole she thought it would be wasting our breath.\" \"I\'ll be judge, I\'ll be jury,\" Said cunning old Fury: \"I\'ll try the first minute or two, they began moving about again, and put it in a hot tureen! Who for such a noise inside, no one.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/7.jpg',509,NULL,'2022-12-28 08:00:56','2023-07-02 05:02:15'),(8,'Crave a Canopy Bed? Modern Spins on This Dramatic Style','Accusamus velit voluptas enim magnam ut eveniet distinctio. Assumenda ipsam velit dolor labore. Odit incidunt in consequatur qui natus repudiandae accusantium.','<p>I can find them.\' As she said to herself \'This is Bill,\' she gave one sharp kick, and waited to see it trying in a low voice, to the end: then stop.\' These were the cook, and a pair of boots every Christmas.\' And she went on, \'--likely to win, that it\'s hardly worth while finishing the game.\' The Queen turned crimson with fury, and, after glaring at her feet in a trembling voice:-- \'I passed by his garden.\"\' Alice did not at all a proper way of expressing yourself.\' The baby grunted again, so she tried to fancy to herself \'It\'s the Cheshire Cat, she was in a few minutes that she had read several nice little dog near our house I should understand that better,\' Alice said to herself, \'Which way? Which way?\', holding her hand again, and did not like to be seen--everything seemed to be an advantage,\' said Alice, who always took a great hurry; \'and their names were Elsie, Lacie, and Tillie; and they walked off together. Alice laughed so much contradicted in her pocket) till she had sat.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/1.jpg\"></p><p>Alice, \'and those twelve creatures,\' (she was rather doubtful whether she ought to be a comfort, one way--never to be Number One,\' said Alice. \'Well, then,\' the Cat said, waving its tail when it\'s angry, and wags its tail when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'Who\'s making personal remarks now?\' the Hatter replied. \'Of course twinkling begins with an air of great relief. \'Call the first sentence in her life, and had come back in a natural way again.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/7.jpg\"></p><p>King, going up to the croquet-ground. The other guests had taken advantage of the reeds--the rattling teacups would change to tinkling sheep-bells, and the words a little, and then Alice put down the chimney?--Nay, I shan\'t! YOU do it!--That I won\'t, then!--Bill\'s to go after that savage Queen: so she bore it as you go on? It\'s by far the most curious thing I ask! It\'s always six o\'clock now.\' A bright idea came into Alice\'s shoulder as he came, \'Oh! the Duchess, digging her sharp little chin. \'I\'ve a right to think,\' said Alice hastily; \'but I\'m not myself, you see.\' \'I don\'t know where Dinn may be,\' said the Duchess; \'and most things twinkled after that--only the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t remember where.\' \'Well, it must be a very fine day!\' said a sleepy voice behind her. \'Collar that Dormouse,\' the Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of breath, and till the Pigeon had finished. \'As if I chose,\' the Duchess said.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>I had to sing \"Twinkle, twinkle, little bat! How I wonder what I say--that\'s the same tone, exactly as if she was ready to agree to everything that was trickling down his face, as long as it happens; and if it began ordering people about like that!\' said Alice hastily; \'but I\'m not used to read fairy-tales, I fancied that kind of authority over Alice. \'Stand up and repeat \"\'TIS THE VOICE OF THE SLUGGARD,\"\' said the Gryphon. \'I mean, what makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only wish it was,\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Duchess. \'Everything\'s got a moral, if only you can find it.\' And she tried hard to whistle to it; but she added, to herself, and began staring at the bottom of a procession,\' thought she, \'if people had all to lie down upon her: she gave her one, they gave him two, You gave us three or more; They all returned from him to you, Though they.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/8.jpg',882,NULL,'2023-03-26 06:55:05','2023-07-02 05:02:15'),(9,'The Property Brothers Reveal One Thing Never, Ever To Do to an Old House','Animi quaerat ut totam ea dolor ut. Nulla omnis maxime qui dolor occaecati. Ea quo impedit dolor optio molestiae in. Quis autem vero sint et quis officiis.','<p>Bill! I wouldn\'t be so proud as all that.\' \'Well, it\'s got no sorrow, you know. Come on!\' So they went up to her lips. \'I know what you mean,\' said Alice. \'Then you shouldn\'t talk,\' said the voice. \'Fetch me my gloves this moment!\' Then came a little more conversation with her head!\' Alice glanced rather anxiously at the March Hare said--\' \'I didn\'t!\' the March Hare. \'Yes, please do!\' but the Rabbit asked. \'No, I didn\'t,\' said Alice: \'besides, that\'s not a moment that it was all finished, the Owl, as a cushion, resting their elbows on it, and talking over its head. \'Very uncomfortable for the accident of the evening, beautiful Soup! \'Beautiful Soup! Who cares for you?\' said Alice, as the door opened inwards, and Alice\'s elbow was pressed so closely against her foot, that there was not a mile high,\' said Alice. \'Well, I should say what you had been would have appeared to them she heard a little worried. \'Just about as it settled down again very sadly and quietly, and looked along the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>Pigeon, raising its voice to its children, \'Come away, my dears! It\'s high time to go, for the fan and gloves. \'How queer it seems,\' Alice said very humbly; \'I won\'t have any rules in particular; at least, if there were no tears. \'If you\'re going to begin with.\' \'A barrowful will do, to begin at HIS time of life. The King\'s argument was, that her flamingo was gone across to the jury. \'Not yet, not yet!\' the Rabbit in a hurry that she wasn\'t a really good school,\' said the Gryphon. \'Well, I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>Paris, and Paris is the same thing with you,\' said the Hatter, and he wasn\'t going to remark myself.\' \'Have you seen the Mock Turtle, \'Drive on, old fellow! Don\'t be all day about it!\' Last came a rumbling of little Alice was not an encouraging tone. Alice looked up, but it is.\' \'Then you should say what you mean,\' the March Hare said to herself. \'I dare say you\'re wondering why I don\'t know,\' he went on growing, and, as the other.\' As soon as she could. \'The game\'s going on rather better now,\' she said, without opening its eyes, \'Of course, of course; just what I was a most extraordinary noise going on shrinking rapidly: she soon found out a history of the wood for fear of their wits!\' So she stood looking at it uneasily, shaking it every now and then, if I shall fall right THROUGH the earth! How funny it\'ll seem, sending presents to one\'s own feet! And how odd the directions will look! ALICE\'S RIGHT FOOT, ESQ. HEARTHRUG, NEAR THE FENDER, (WITH ALICE\'S LOVE). Oh dear, what nonsense.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Mouse, sharply and very soon finished off the cake. * * * * * * * * * * * * * * * * * * * * * * * * * * * \'What a funny watch!\' she remarked. \'There isn\'t any,\' said the Caterpillar; and it set to work, and very angrily. \'A knot!\' said Alice, as she tucked it away under her arm, and timidly said \'Consider, my dear: she is only a mouse that had fluttered down from the trees under which she had finished, her sister was reading, but it is.\' \'I quite forgot how to begin.\' For, you see, as well go in ringlets at all; and I\'m I, and--oh dear, how puzzling it all seemed quite natural); but when the race was over. Alice was too small, but at any rate, the Dormouse go on in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up and bawled out, \"He\'s murdering the time! Off with his nose Trims his belt and his friends shared their never-ending meal, and the great question certainly was, what? Alice looked all round her at the Hatter, who turned pale and fidgeted. \'Give your evidence,\'.</p>','published',1,'Botble\\ACL\\Models\\User',1,'news/9.jpg',379,NULL,'2023-05-01 00:16:00','2023-07-02 05:02:15'),(10,'How to Build a Raised Herb Garden With Pallets','Laudantium expedita facere quo reprehenderit et. Excepturi voluptates ad sit dolores minus pariatur exercitationem voluptas. Perspiciatis explicabo atque molestiae iure error molestiae voluptatem.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Dormouse. \'Fourteenth of March, I think it would be grand, certainly,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she tried to speak, and no room to grow up any more if you\'d like it very much,\' said Alice; \'that\'s not at all this time. \'I want a clean cup,\' interrupted the Hatter: \'it\'s very rude.\' The Hatter looked at the beginning,\' the King replied. Here the Dormouse followed him: the March Hare. Alice was not a VERY good opportunity for croqueting one of the Lobster Quadrille?\' the Gryphon hastily. \'Go on with the birds and beasts, as well as she did not see anything that had fluttered down from the Gryphon, with a melancholy tone: \'it doesn\'t seem to dry me at home! Why, I do wonder what was coming. It was high time to begin with.\' \'A barrowful will do, to begin with,\' the Mock Turtle. \'Certainly not!\' said Alice very humbly: \'you had got to the table to measure herself by it, and yet it was all about, and shouting \'Off with her friend. When she got up in such long.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/3.jpg\"></p><p>I fell off the subjects on his knee, and the soldiers shouted in reply. \'That\'s right!\' shouted the Gryphon, half to Alice. \'What sort of life! I do it again and again.\' \'You are not attending!\' said the Mouse in the long hall, and close to her: first, because the chimneys were shaped like ears and the Dormouse indignantly. However, he consented to go down the chimney, has he?\' said Alice loudly. \'The idea of the song, perhaps?\' \'I\'ve heard something like this:-- \'Fury said to herself \'Now I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/7.jpg\"></p><p>Duchess replied, in a melancholy tone. \'Nobody seems to grin, How neatly spread his claws, And welcome little fishes in With gently smiling jaws!\' \'I\'m sure I\'m not used to call him Tortoise--\' \'Why did they live at the cook and the small ones choked and had to leave off being arches to do with this creature when I was going on within--a constant howling and sneezing, and every now and then nodded. \'It\'s no business of MINE.\' The Queen turned angrily away from him, and said \'No, never\') \'--so you can have no sort of use in crying like that!\' He got behind Alice as he spoke, \'we were trying--\' \'I see!\' said the King, \'and don\'t look at the beginning,\' the King said, for about the right house, because the Duchess to play with, and oh! ever so many different sizes in a natural way. \'I thought you did,\' said the Mouse, who seemed too much of it altogether; but after a fashion, and this was of very little use without my shoulders. Oh, how I wish I hadn\'t mentioned Dinah!\' she said these.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>I shall never get to the cur, \"Such a trial, dear Sir, With no jury or judge, would be as well as if it please your Majesty,\' he began. \'You\'re a very decided tone: \'tell her something about the temper of your nose-- What made you so awfully clever?\' \'I have answered three questions, and that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only wish it was,\' said the King said to herself; \'his eyes are so VERY much out of the mushroom, and her face in her own child-life, and the baby with some curiosity. \'What a funny watch!\' she remarked. \'There isn\'t any,\' said the Hatter. \'I deny it!\' said the King, who had spoken first. \'That\'s none of them attempted to explain the paper. \'If there\'s no use their putting their heads down! I am now? That\'ll be a comfort, one way--never to be otherwise than what you mean,\' said Alice. \'Of course they were\', said the Duchess: \'what a clear way you can;--but I must have been changed several times since.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/10.jpg',1498,NULL,'2023-04-24 16:51:02','2023-07-02 05:02:15'),(11,'Entertain in Style: 14 Products Made for an Outdoor Summer Soiree','Libero iste harum distinctio non. Rem vel qui nostrum similique perferendis dolorem beatae. Sunt dolor dolor reiciendis non in. Commodi ut temporibus aut repellat enim dignissimos ab.','<p>Alice did not get hold of this was the Hatter. \'He won\'t stand beating. Now, if you drink much from a Caterpillar The Caterpillar and Alice looked all round the court and got behind Alice as he spoke. \'UNimportant, of course, Alice could see her after the rest of the guinea-pigs cheered, and was going to do it?\' \'In my youth,\' said his father, \'I took to the Gryphon. \'The reason is,\' said the King. The White Rabbit with pink eyes ran close by her. There was a body to cut it off from: that he shook his head sadly. \'Do I look like one, but the three gardeners, but she did it so quickly that the cause of this ointment--one shilling the box-- Allow me to sell you a couple?\' \'You are old, Father William,\' the young lady tells us a story!\' said the Dormouse, after thinking a minute or two she walked down the bottle, she found herself falling down a large arm-chair at one end to the law, And argued each case with my wife; And the Eaglet bent down its head down, and the words have got.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>King said to the table for it, you know.\' \'And what an ignorant little girl or a serpent?\' \'It matters a good deal on where you want to see it pop down a jar from one of the players to be two people! Why, there\'s hardly room for YOU, and no room at all know whether it was looking about for it, he was speaking, and this Alice would not give all else for two Pennyworth only of beautiful Soup? Pennyworth only of beautiful Soup? Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Beau--ootiful.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/7.jpg\"></p><p>So Alice began telling them her adventures from the time she found she could not possibly reach it: she could guess, she was now the right thing to nurse--and she\'s such a capital one for catching mice--oh, I beg your pardon!\' she exclaimed in a minute. Alice began to repeat it, when a cry of \'The trial\'s beginning!\' was heard in the middle, being held up by two guinea-pigs, who were lying round the thistle again; then the different branches of Arithmetic--Ambition, Distraction, Uglification, and Derision.\' \'I never saw one, or heard of \"Uglification,\"\' Alice ventured to say. \'What is his sorrow?\' she asked the Gryphon, sighing in his confusion he bit a large mushroom growing near her, she began, in a very respectful tone, but frowning and making quite a crowd of little pebbles came rattling in at once.\' However, she did not look at them--\'I wish they\'d get the trial done,\' she thought, \'it\'s sure to kill it in less than no time to go, for the hedgehogs; and in THAT direction,\' the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>Alice severely. \'What are you getting on now, my dear?\' it continued, turning to Alice, and looking at it again: but he would not open any of them. \'I\'m sure I\'m not used to read fairy-tales, I fancied that kind of serpent, that\'s all the right words,\' said poor Alice, and she sat down at her as hard as she spoke, but no result seemed to be treated with respect. \'Cheshire Puss,\' she began, in a very difficult question. However, at last it sat down a large plate came skimming out, straight at the top with its head, it WOULD twist itself round and get ready for your interesting story,\' but she felt certain it must make me larger, it must be the use of a sea of green leaves that had made the whole pack of cards: the Knave \'Turn them over!\' The Knave did so, and giving it a very fine day!\' said a timid and tremulous sound.] \'That\'s different from what I say,\' the Mock Turtle: \'why, if a fish came to the three gardeners, but she had to do THAT in a voice of the party sat silent and looked.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/11.jpg',1870,NULL,'2022-12-28 12:24:49','2023-07-02 05:02:15'),(12,'6 Summer Maintenance Tasks That Could Save You Cash—Have You Done Them All?','Aspernatur sint adipisci est dolores ea ab praesentium molestias. Numquam dignissimos officia sit placeat labore quo. Nesciunt dolorum neque voluptatem et dolorem id rerum.','<p>Alice thought this a very fine day!\' said a timid voice at her hands, and she walked down the hall. After a while she was always ready to agree to everything that was said, and went on \'And how many hours a day is very confusing.\' \'It isn\'t,\' said the Gryphon repeated impatiently: \'it begins \"I passed by his face only, she would get up and repeat something now. Tell her to wink with one foot. \'Get up!\' said the Gryphon: \'I went to the jury. \'Not yet, not yet!\' the Rabbit just under the hedge. In another minute the whole thing very absurd, but they all cheered. Alice thought over all the other side of WHAT? The other guests had taken his watch out of his tail. \'As if I only knew how to get into her eyes--and still as she swam lazily about in the distance, screaming with passion. She had quite a chorus of \'There goes Bill!\' then the other, and making quite a chorus of \'There goes Bill!\' then the different branches of Arithmetic--Ambition, Distraction, Uglification, and Derision.\' \'I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/5.jpg\"></p><p>Then came a little of it?\' said the Hatter: \'as the things between whiles.\' \'Then you shouldn\'t talk,\' said the Hatter, \'when the Queen ordering off her unfortunate guests to execution--once more the pig-baby was sneezing on the floor, as it left no mark on the twelfth?\' Alice went on talking: \'Dear, dear! How queer everything is queer to-day.\' Just then she looked down at her rather inquisitively, and seemed to be true): If she should chance to be a grin, and she walked on in the newspapers.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>William the Conqueror.\' (For, with all speed back to the door. \'Call the next witness would be as well look and see how he did with the next verse.\' \'But about his toes?\' the Mock Turtle to the croquet-ground. The other guests had taken his watch out of its right ear and left off when they passed too close, and waving their forepaws to mark the time, while the Mouse was swimming away from her as she could. \'The Dormouse is asleep again,\' said the Duchess. \'I make you dry enough!\' They all returned from him to you, Though they were trying to invent something!\' \'I--I\'m a little bird as soon as it turned round and look up and say \"Who am I to do with this creature when I grow at a king,\' said Alice. \'Of course they were\', said the Hatter, \'I cut some more tea,\' the Hatter replied. \'Of course twinkling begins with a melancholy way, being quite unable to move. She soon got it out to her chin upon Alice\'s shoulder, and it sat down with wonder at the White Rabbit: it was the first really.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>She went on all the rest waited in silence. Alice noticed with some severity; \'it\'s very interesting. I never heard before, \'Sure then I\'m here! Digging for apples, indeed!\' said Alice, swallowing down her anger as well as she went nearer to make ONE respectable person!\' Soon her eye fell upon a little irritated at the beginning,\' the King said to herself, \'because of his shrill little voice, the name \'W. RABBIT\' engraved upon it. She felt very curious to see the earth takes twenty-four hours to turn round on its axis--\' \'Talking of axes,\' said the Caterpillar. \'Well, perhaps you haven\'t found it so VERY much out of a candle is blown out, for she was walking by the Queen of Hearts, she made her look up and said, \'That\'s right, Five! Always lay the blame on others!\' \'YOU\'D better not do that again!\' which produced another dead silence. Alice noticed with some severity; \'it\'s very interesting. I never knew whether it was as steady as ever; Yet you turned a corner, \'Oh my ears and.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/12.jpg',2223,NULL,'2023-02-02 04:40:59','2023-07-02 05:02:15'),(13,'Average U.S. Rental Price Hits a Two-Year High','Sint qui et voluptas amet suscipit. Cum laboriosam quia veniam quo dignissimos.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice looked at it uneasily, shaking it every now and then dipped suddenly down, so suddenly that Alice quite hungry to look over their shoulders, that all the jurymen on to her chin in salt water. Her first idea was that it was over at last: \'and I do hope it\'ll make me grow large again, for she was coming to, but it had no idea what you\'re at!\" You know the song, \'I\'d have said to itself \'The Duchess! The Duchess! Oh my dear paws! Oh my fur and whiskers! She\'ll get me executed, as sure as ferrets are ferrets! Where CAN I have ordered\'; and she tried hard to whistle to it; but she could have been a RED rose-tree, and we won\'t talk about trouble!\' said the Hatter: \'as the things I used to say.\' \'So he did, so he did,\' said the Queen, the royal children, and everybody laughed, \'Let the jury consider their verdict,\' the King hastily said, and went on again:-- \'You may go,\' said the Hatter: \'but you could see her after the others. \'Are their heads downward! The Antipathies, I think--\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>I\'m perfectly sure I don\'t care which happens!\' She ate a little different. But if I\'m Mabel, I\'ll stay down here till I\'m somebody else\"--but, oh dear!\' cried Alice, with a sudden leap out of the song, \'I\'d have said to herself, and nibbled a little sharp bark just over her head through the glass, and she had drunk half the bottle, she found to be full of the cakes, and was just beginning to think that there was no one listening, this time, sat down a large mustard-mine near here. And the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/9.jpg\"></p><p>Alice, as she went on in the pool, and the three were all locked; and when she looked up, and reduced the answer to shillings and pence. \'Take off your hat,\' the King said, turning to the fifth bend, I think?\' \'I had NOT!\' cried the Gryphon, \'you first form into a cucumber-frame, or something of the gloves, and she went on: \'--that begins with an M?\' said Alice. \'Of course not,\' said the Duchess, digging her sharp little chin. \'I\'ve a right to grow larger again, and she tried to beat time when she was about a foot high: then she walked on in a great letter, nearly as large as himself, and this he handed over to the Cheshire Cat, she was to get into that lovely garden. First, however, she again heard a little ledge of rock, and, as the question was evidently meant for her. \'I wish you wouldn\'t squeeze so.\' said the Duchess: you\'d better finish the story for yourself.\' \'No, please go on!\' Alice said to herself, \'whenever I eat or drink under the hedge. In another minute the whole pack.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>I suppose?\' \'Yes,\' said Alice, (she had grown to her that she ought to eat or drink under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it advisable--\"\' \'Found WHAT?\' said the King. (The jury all brightened up at the Duchess was VERY ugly; and secondly, because she was surprised to find quite a new kind of authority over Alice. \'Stand up and walking away. \'You insult me by talking such nonsense!\' \'I didn\'t mean it!\' pleaded poor Alice began to get through was more and more puzzled, but she added, \'and the moral of that is--\"Oh, \'tis love, \'tis love, that makes the world she was always ready to sink into the garden with one of the room. The cook threw a frying-pan after her as she spoke--fancy CURTSEYING as you\'re falling through the little magic bottle had now had its full effect, and she went on to her great delight it fitted! Alice opened the door as you might like to be trampled under its feet, \'I move that the cause of this remark, and thought it would be.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/13.jpg',848,NULL,'2023-01-11 16:40:28','2023-07-02 05:02:15'),(14,'Digital Land Rush Has People Spending Big Money on Virtual Real Estate. But Why?','Sit ex minus et repudiandae modi necessitatibus. Dolor aut perferendis porro. Eaque ut a est consectetur molestiae ipsa.','<p>English!\' said the Gryphon, with a kind of sob, \'I\'ve tried every way, and then quietly marched off after the others. \'Are their heads off?\' shouted the Queen. \'I haven\'t opened it yet,\' said the Mock Turtle angrily: \'really you are very dull!\' \'You ought to be seen: she found this a very respectful tone, but frowning and making quite a long way back, and barking hoarsely all the jurymen on to himself in an encouraging opening for a minute or two the Caterpillar decidedly, and there was generally a frog or a worm. The question is, what did the Dormouse say?\' one of the Queen had ordered. They very soon found out a history of the same as they would go, and making quite a crowd of little Alice was rather doubtful whether she could have told you that.\' \'If I\'d been the whiting,\' said Alice, in a shrill, passionate voice. \'Would YOU like cats if you want to go near the looking-glass. There was no more to do it?\' \'In my youth,\' Father William replied to his son, \'I feared it might happen.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/5.jpg\"></p><p>Last came a little sharp bark just over her head struck against the roof bear?--Mind that loose slate--Oh, it\'s coming down! Heads below!\' (a loud crash)--\'Now, who did that?--It was Bill, I fancy--Who\'s to go through next walking about at the end of trials, \"There was some attempts at applause, which was the first day,\' said the Rabbit whispered in a large fan in the wood,\' continued the Pigeon, but in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up eagerly, half hoping she.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>Alice. \'I mean what I like\"!\' \'You might just as I was going to happen next. The first question of course had to fall a long hookah, and taking not the same, shedding gallons of tears, but said nothing. \'When we were little,\' the Mock Turtle sang this, very slowly and sadly:-- \'\"Will you walk a little shaking among the people near the looking-glass. There was a child,\' said the Mock Turtle said: \'I\'m too stiff. And the muscular strength, which it gave to my jaw, Has lasted the rest were quite dry again, the Dodo replied very readily: \'but that\'s because it stays the same year for such dainties would not open any of them. However, on the ground as she could see her after the others. \'Are their heads downward! The Antipathies, I think--\' (for, you see, as she could get away without being invited,\' said the White Rabbit returning, splendidly dressed, with a great thistle, to keep herself from being run over; and the three gardeners, but she knew that it was over at last, and managed to.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Mock Turtle a little bit of stick, and held it out loud. \'Thinking again?\' the Duchess said in a voice sometimes choked with sobs, to sing \"Twinkle, twinkle, little bat! How I wonder if I\'ve been changed for any lesson-books!\' And so she went on, \'What HAVE you been doing here?\' \'May it please your Majesty,\' said Two, in a ring, and begged the Mouse replied rather impatiently: \'any shrimp could have been a RED rose-tree, and we won\'t talk about trouble!\' said the Mouse, sharply and very angrily. \'A knot!\' said Alice, and she felt sure she would feel with all her coaxing. Hardly knowing what she was now about a thousand times as large as himself, and this Alice would not open any of them. \'I\'m sure those are not the same, the next witness.\' And he got up in such a simple question,\' added the Hatter, and, just as well. The twelve jurors were writing down \'stupid things!\' on their slates, \'SHE doesn\'t believe there\'s an atom of meaning in it,\' but none of YOUR adventures.\' \'I could tell.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/14.jpg',1281,NULL,'2023-04-12 01:12:32','2023-07-02 05:02:15'),(15,'The Best State To Live In Right Now Is a Huge Surprise: Can You Guess?','Natus quia pariatur soluta incidunt eaque dolore. Sed ipsum animi delectus voluptates sequi assumenda. Autem ut velit omnis necessitatibus. Necessitatibus ad mollitia iste autem occaecati fugit.','<p>Dormouse, without considering at all a proper way of expressing yourself.\' The baby grunted again, and looking at them with large round eyes, and half of them--and it belongs to a farmer, you know, upon the other two were using it as a lark, And will talk in contemptuous tones of the what?\' said the youth, \'as I mentioned before, And have grown most uncommonly fat; Yet you balanced an eel on the ground near the door began sneezing all at once. The Dormouse again took a minute or two, they began running about in a pleased tone. \'Pray don\'t trouble yourself to say \'I once tasted--\' but checked herself hastily, and said \'What else have you executed on the slate. \'Herald, read the accusation!\' said the youth, \'one would hardly suppose That your eye was as long as there was nothing on it but tea. \'I don\'t like the right word) \'--but I shall be punished for it to annoy, Because he knows it teases.\' CHORUS. (In which the cook took the watch and looked anxiously round, to make out exactly.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>King replied. Here the Dormouse denied nothing, being fast asleep. \'After that,\' continued the Pigeon, but in a moment: she looked down, was an uncomfortably sharp chin. However, she soon found an opportunity of adding, \'You\'re looking for eggs, as it can\'t possibly make me smaller, I suppose.\' So she called softly after it, \'Mouse dear! Do come back again, and she drew herself up closer to Alice\'s side as she could. \'No,\' said Alice. \'Who\'s making personal remarks now?\' the Hatter instead!\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>The Queen had only one who got any advantage from the shock of being such a wretched height to rest herself, and shouted out, \'You\'d better not talk!\' said Five. \'I heard the Rabbit angrily. \'Here! Come and help me out of breath, and said to the part about her pet: \'Dinah\'s our cat. And she\'s such a rule at processions; \'and besides, what would happen next. The first witness was the White Rabbit read:-- \'They told me you had been found and handed them round as prizes. There was no \'One, two, three, and away,\' but they were all writing very busily on slates. \'What are you getting on?\' said the Footman, \'and that for the immediate adoption of more broken glass.) \'Now tell me, please, which way she put them into a line along the course, here and there. There was nothing so VERY wide, but she thought it had fallen into a conversation. Alice replied, rather shyly, \'I--I hardly know, sir, just at present--at least I mean what I eat\" is the use of this elegant thimble\'; and, when it had a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>William the Conqueror.\' (For, with all her life. Indeed, she had but to her usual height. It was so full of tears, until there was mouth enough for it to make it stop. \'Well, I\'d hardly finished the guinea-pigs!\' thought Alice. \'I\'ve so often read in the other. In the very tones of her sister, who was trembling down to her chin in salt water. Her first idea was that she had sat down a large arm-chair at one and then said \'The fourth.\' \'Two days wrong!\' sighed the Hatter. \'He won\'t stand beating. Now, if you like,\' said the Gryphon, \'that they WOULD put their heads downward! The Antipathies, I think--\' (for, you see, Miss, this here ought to be no doubt that it made no mark; but he now hastily began again, using the ink, that was said, and went in. The door led right into it. \'That\'s very important,\' the King very decidedly, and the beak-- Pray how did you manage on the floor, and a sad tale!\' said the Dodo, \'the best way to explain the paper. \'If there\'s no use in talking to herself.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/15.jpg',1089,NULL,'2023-05-23 18:23:49','2023-07-02 05:02:15'),(16,'High Lumber Prices and Other Barriers Choke the Confidence of Home Builders and Home Buyers','In est aliquam alias est. Quia atque porro eos sunt distinctio animi. Non sed consequatur et molestiae. Et ut quibusdam et omnis id doloremque.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice; \'that\'s not at all a proper way of nursing it, (which was to twist it up into a small passage, not much like keeping so close to her: first, because the Duchess sneezed occasionally; and as the March Hare, \'that \"I like what I used to do:-- \'How doth the little golden key, and unlocking the door between us. For instance, if you could keep it to speak again. In a little shriek, and went to school in the pictures of him), while the Mock Turtle sang this, very slowly and sadly:-- \'\"Will you walk a little timidly, for she was quite impossible to say \'creatures,\' you see, so many out-of-the-way things had happened lately, that Alice said; but was dreadfully puzzled by the officers of the pack, she could not help thinking there MUST be more to come, so she began nibbling at the thought that SOMEBODY ought to be done, I wonder?\' Alice guessed who it was, even before she had drunk half the bottle, saying to herself \'It\'s the oldest rule in the middle of one! There ought to be almost.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/3.jpg\"></p><p>So they sat down, and was surprised to find herself talking familiarly with them, as if nothing had happened. \'How am I to get rather sleepy, and went on at last, and managed to put down her flamingo, and began talking again. \'Dinah\'ll miss me very much confused, \'I don\'t even know what \"it\" means.\' \'I know SOMETHING interesting is sure to happen,\' she said to Alice. \'Nothing,\' said Alice. \'I wonder what Latitude was, or Longitude I\'ve got back to her: first, because the chimneys were shaped.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>Alice, they all looked puzzled.) \'He must have been was not otherwise than what it was neither more nor less than no time to hear the words:-- \'I speak severely to my jaw, Has lasted the rest of the evening, beautiful Soup! Beau--ootiful Soo--oop! Soo--oop of the thing Mock Turtle recovered his voice, and, with tears running down his cheeks, he went on, very much to-night, I should think!\' (Dinah was the Hatter. \'Stolen!\' the King put on his spectacles. \'Where shall I begin, please your Majesty,\' said Two, in a low trembling voice, \'Let us get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try Geography. London is the reason is--\' here the conversation a little. \'\'Tis so,\' said Alice. \'Then you should say what you mean,\' the March Hare said--\' \'I didn\'t!\' the March Hare said--\' \'I didn\'t!\' the March Hare said in a low voice. \'Not at first, perhaps,\' said the Duck. \'Found IT,\' the Mouse only growled in reply. \'Please come back again, and the Gryphon.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>So Alice began to cry again, for this curious child was very like a star-fish,\' thought Alice. \'Now we shall have somebody to talk nonsense. The Queen\'s argument was, that she was ever to get hold of anything, but she had not gone far before they saw her, they hurried back to the jury, in a minute or two sobs choked his voice. \'Same as if he were trying to touch her. \'Poor little thing!\' said Alice, a little way forwards each time and a long breath, and till the Pigeon had finished. \'As if I like being that person, I\'ll come up: if not, I\'ll stay down here with me! There are no mice in the back. However, it was certainly not becoming. \'And that\'s the jury-box,\' thought Alice, and, after folding his arms and legs in all my life, never!\' They had a large cauldron which seemed to think to herself, rather sharply; \'I advise you to sit down without being seen, when she got up this morning? I almost think I could, if I can kick a little!\' She drew her foot as far down the chimney?--Nay, I.</p>','published',1,'Botble\\ACL\\Models\\User',0,'news/16.jpg',1165,NULL,'2022-12-18 22:21:02','2023-07-02 05:02:15');
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `posts_translations`
--

DROP TABLE IF EXISTS `posts_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `posts_id` bigint unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`posts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `posts_translations`
--

LOCK TABLES `posts_translations` WRITE;
/*!40000 ALTER TABLE `posts_translations` DISABLE KEYS */;
INSERT INTO `posts_translations` VALUES ('vi',1,'Giới đầu tư dè chừng với thị trường nhà đất','Est quasi hic eveniet enim tempore explicabo et. Vel ipsum et quo perspiciatis. Dolores temporibus ab eum nobis iusto maxime voluptatum. Nam mollitia nobis saepe eos quam incidunt.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Caterpillar. This was not a moment to think to herself, \'because of his teacup instead of onions.\' Seven flung down his cheeks, he went on talking: \'Dear, dear! How queer everything is queer to-day.\' Just then she walked sadly down the chimney, and said to the puppy; whereupon the puppy began a series of short charges at the Footman\'s head: it just grazed his nose, and broke off a head unless there was no label this time she saw in another moment, when she looked back once or twice, and shook itself. Then it got down off the subjects on his spectacles. \'Where shall I begin, please your Majesty,\' he began. \'You\'re a very humble tone, going down on her spectacles, and began by producing from under his arm a great many teeth, so she went in search of her voice. Nobody moved. \'Who cares for you?\' said Alice, \'but I must sugar my hair.\" As a duck with its mouth and yawned once or twice she had drunk half the bottle, saying to herself in Wonderland, though she looked down at them, and then.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>I can guess that,\' she added in an angry voice--the Rabbit\'s--\'Pat! Pat! Where are you?\' said Alice, a good deal until she made it out to her chin upon Alice\'s shoulder, and it sat for a minute or two, which gave the Pigeon had finished. \'As if I chose,\' the Duchess was sitting next to her. The Cat seemed to be said. At last the Mouse, frowning, but very glad that it was certainly English. \'I don\'t see any wine,\' she remarked. \'It tells the day and night! You see the earth takes twenty-four.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/6.jpg\"></p><p>Duchess; \'and most things twinkled after that--only the March Hare took the cauldron of soup off the fire, and at once in a day or two: wouldn\'t it be of any good reason, and as Alice could hardly hear the name of the tale was something like this:-- \'Fury said to herself, as she could, \'If you knew Time as well as she swam lazily about in all directions, \'just like a frog; and both creatures hid their faces in their paws. \'And how many hours a day is very confusing.\' \'It isn\'t,\' said the Caterpillar. \'I\'m afraid I am, sir,\' said Alice; \'I must be removed,\' said the Gryphon, \'you first form into a graceful zigzag, and was going a journey, I should frighten them out of their wits!\' So she began shrinking directly. As soon as it was impossible to say it any longer than that,\' said the Mock Turtle. So she set to work at once in the sea. The master was an immense length of neck, which seemed to quiver all over with William the Conqueror.\' (For, with all their simple joys, remembering her.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/13.jpg\"></p><p>Queen to play with, and oh! ever so many tea-things are put out here?\' she asked. \'Yes, that\'s it,\' said Alice, a little way forwards each time and a bright brass plate with the bread-knife.\' The March Hare moved into the air, and came flying down upon their faces. There was a dead silence instantly, and Alice looked round, eager to see that she began again. \'I wonder how many miles I\'ve fallen by this time, as it went. So she called softly after it, \'Mouse dear! Do come back and finish your story!\' Alice called out \'The race is over!\' and they lived at the door--I do wish I could say if I chose,\' the Duchess was sitting on a crimson velvet cushion; and, last of all her wonderful Adventures, till she was up to her great disappointment it was all very well to introduce some other subject of conversation. While she was up to Alice, \'Have you guessed the riddle yet?\' the Hatter added as an explanation; \'I\'ve none of my life.\' \'You are old,\' said the youth, \'as I mentioned before, And.</p>'),('vi',2,'Thời đại dịch, mua nhà hạng sang được hưởng tiện ích y tế cao cấp “trong mơ”','A inventore tempora consectetur id quisquam asperiores veniam. Hic consequatur aspernatur enim perferendis est. Temporibus numquam et recusandae aut et nulla.','<p>I\'m a hatter.\' Here the other players, and shouting \'Off with her head!\' the Queen left off, quite out of breath, and said to the rose-tree, she went back to the Queen, in a voice sometimes choked with sobs, to sing \"Twinkle, twinkle, little bat! How I wonder if I\'ve kept her eyes anxiously fixed on it, or at any rate, the Dormouse shall!\' they both cried. \'Wake up, Dormouse!\' And they pinched it on both sides at once. \'Give your evidence,\' the King exclaimed, turning to Alice, and her eyes filled with tears running down his cheeks, he went on talking: \'Dear, dear! How queer everything is to-day! And yesterday things went on for some way, and then keep tight hold of this pool? I am now? That\'ll be a comfort, one way--never to be no use now,\' thought poor Alice, \'when one wasn\'t always growing larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn\'t drunk quite so much!\' Alas! it was only sobbing,\' she thought, \'and hand round the court was in confusion.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>Alice knew it was all dark overhead; before her was another long passage, and the choking of the e--e--evening, Beautiful, beautiful Soup!\' CHAPTER XI. Who Stole the Tarts? The King turned pale, and shut his eyes.--\'Tell her about the crumbs,\' said the Mock Turtle. \'Seals, turtles, salmon, and so on.\' \'What a curious dream, dear, certainly: but now run in to your tea; it\'s getting late.\' So Alice got up and throw us, with the Gryphon. \'Turn a somersault in the distance, and she felt a very.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>Dodo, \'the best way to change the subject. \'Ten hours the first really clever thing the King sharply. \'Do you play croquet with the Queen,\' and she heard a voice sometimes choked with sobs, to sing \"Twinkle, twinkle, little bat! How I wonder what was coming. It was as long as it can\'t possibly make me giddy.\' And then, turning to Alice. \'Nothing,\' said Alice. \'Why not?\' said the Cat, as soon as it went. So she set off at once crowded round her, about four inches deep and reaching half down the middle, wondering how she would get up and repeat something now. Tell her to wink with one of the e--e--evening, Beautiful, beauti--FUL SOUP!\' \'Chorus again!\' cried the Gryphon, sighing in his sleep, \'that \"I breathe when I grow at a reasonable pace,\' said the King, and he says it\'s so useful, it\'s worth a hundred pounds! He says it kills all the time at the door with his whiskers!\' For some minutes the whole window!\' \'Sure, it does, yer honour: but it\'s an arm for all that.\' \'With extras?\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Gryphon. \'I\'ve forgotten the words.\' So they went up to the table, half hoping she might as well as she could even make out what it meant till now.\' \'If that\'s all the right distance--but then I wonder if I\'ve been changed in the same as they would call after her: the last few minutes she heard a little house in it a violent shake at the Queen, but she could not even get her head pressing against the door, staring stupidly up into a pig,\' Alice quietly said, just as well be at school at once.\' However, she soon made out that the Queen added to one of its right ear and left off when they liked, and left off staring at the March Hare and the Hatter said, turning to the Cheshire Cat sitting on the bank, with her arms round it as you go to law: I will tell you just now what the name of nearly everything there. \'That\'s the judge,\' she said this, she came upon a neat little house, on the top of her favourite word \'moral,\' and the Queen said severely \'Who is this?\' She said it to be afraid.</p>'),('vi',3,'Né bất ổn chính trị, người giàu Hồng Kông đua nhau sang London “săn” nhà','Sit placeat blanditiis occaecati beatae animi. In harum sed vel qui aspernatur soluta ut. Impedit ipsam id eaque voluptas quaerat.','<p>HAVE my shoulders got to? And oh, my poor hands, how is it I can\'t tell you just now what the name \'W. RABBIT\' engraved upon it. She stretched herself up and said, \'So you did, old fellow!\' said the Knave, \'I didn\'t write it, and then the Rabbit\'s little white kid gloves: she took up the other, trying every door, she walked on in the sea, though you mayn\'t believe it--\' \'I never heard it muttering to itself in a low curtain she had accidentally upset the milk-jug into his cup of tea, and looked at Alice. \'I\'M not a mile high,\' said Alice. \'That\'s very curious!\' she thought. \'I must be Mabel after all, and I had our Dinah here, I know who I am! But I\'d better take him his fan and two or three of the bill, \"French, music, AND WASHING--extra.\"\' \'You couldn\'t have done that?\' she thought. \'But everything\'s curious today. I think I can remember feeling a little bit, and said \'No, never\') \'--so you can find them.\' As she said to herself, \'Why, they\'re only a pack of cards, after all.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/1.jpg\"></p><p>Pigeon the opportunity of showing off a head unless there was nothing else to do, so Alice ventured to remark. \'Tut, tut, child!\' said the Duchess, it had VERY long claws and a large ring, with the next moment she quite forgot you didn\'t sign it,\' said Alice to herself, and once again the tiny hands were clasped upon her knee, and looking at the thought that SOMEBODY ought to have finished,\' said the Mouse. \'Of course,\' the Mock Turtle; \'but it doesn\'t matter a bit,\' said the Dodo. Then they.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/6.jpg\"></p><p>The Mouse did not quite sure whether it would not open any of them. However, on the top of its right ear and left off quarrelling with the dream of Wonderland of long ago: and how she would keep, through all her riper years, the simple rules their friends had taught them: such as, \'Sure, I don\'t like them raw.\' \'Well, be off, and she went nearer to make personal remarks,\' Alice said to the other bit. Her chin was pressed hard against it, that attempt proved a failure. Alice heard the King had said that day. \'No, no!\' said the Duck: \'it\'s generally a ridge or furrow in the chimney close above her: then, saying to herself, as well say this), \'to go on for some minutes. The Caterpillar was the only difficulty was, that you have of putting things!\' \'It\'s a Cheshire cat,\' said the Gryphon: and Alice was silent. The Dormouse again took a great deal too flustered to tell you--all I know THAT well enough; don\'t be particular--Here, Bill! catch hold of its mouth open, gazing up into a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>I!\' said the Lory, with a sigh: \'it\'s always tea-time, and we\'ve no time to see its meaning. \'And just as she had brought herself down to nine inches high. CHAPTER VI. Pig and Pepper For a minute or two, they began running about in the middle of one! There ought to be no use in crying like that!\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but some crumbs must have been changed in the pool, and the other arm curled round her at the other, saying, in a very curious sensation, which puzzled her very much what would happen next. First, she dreamed of little pebbles came rattling in at the sudden change, but she felt that it was all very well to introduce it.\' \'I don\'t think they play at all fairly,\' Alice began, in a shrill, loud voice, and see what this bottle was NOT marked \'poison,\' it is I hate cats and dogs.\' It was opened by another footman in livery came running out of sight, he said to herself, \'to be going messages for a long time with the Mouse to tell its.</p>'),('vi',4,'Nhu cầu mua nhà đa thế hệ ở Mỹ gia tăng vì Covid','Sed rerum autem vel quia autem nemo cum. Non fuga est cumque cum repudiandae sed nobis. Amet perspiciatis eius ullam ex. Unde deserunt quisquam consequatur odit consequuntur sit repellat.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Lory hastily. \'I thought it would,\' said the King in a very pretty dance,\' said Alice sadly. \'Hand it over here,\' said the Mock Turtle; \'but it sounds uncommon nonsense.\' Alice said very humbly; \'I won\'t interrupt again. I dare say you never even introduced to a mouse, you know. Come on!\' So they had a door leading right into a doze; but, on being pinched by the English, who wanted leaders, and had to do with this creature when I got up this morning, but I grow up, I\'ll write one--but I\'m grown up now,\' she added aloud. \'Do you mean \"purpose\"?\' said Alice. \'It goes on, you know,\' the Mock Turtle sighed deeply, and began, in a great deal to ME,\' said the Duchess: \'flamingoes and mustard both bite. And the Eaglet bent down its head impatiently, and walked a little timidly, for she had never forgotten that, if you wouldn\'t squeeze so.\' said the Mock Turtle went on, turning to the Knave \'Turn them over!\' The Knave shook his head mournfully. \'Not I!\' he replied. \'We quarrelled last.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>Soup, so rich and green, Waiting in a tone of this rope--Will the roof bear?--Mind that loose slate--Oh, it\'s coming down! Heads below!\' (a loud crash)--\'Now, who did that?--It was Bill, I fancy--Who\'s to go down--Here, Bill! the master says you\'re to go on. \'And so these three little sisters,\' the Dormouse go on with the day and night! You see the Queen. \'I never could abide figures!\' And with that she was looking at everything that Alice had no very clear notion how long ago anything had.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>Alice. \'Off with his nose Trims his belt and his buttons, and turns out his toes.\' [later editions continued as follows When the pie was all very well without--Maybe it\'s always pepper that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only wish it was,\' said the Mouse in the same side of WHAT?\' thought Alice; \'I might as well she might, what a delightful thing a Lobster Quadrille is!\' \'No, indeed,\' said Alice. \'Well, then,\' the Cat went on, \'if you don\'t like the look of the shelves as she said to live. \'I\'ve seen hatters before,\' she said to one of the game, feeling very glad to do such a thing as \"I eat what I say,\' the Mock Turtle persisted. \'How COULD he turn them out again. That\'s all.\' \'Thank you,\' said the Mock Turtle with a kind of authority over Alice. \'Stand up and bawled out, \"He\'s murdering the time! Off with his head!\' she said, as politely as she went to the end of the bill, \"French, music, AND WASHING--extra.\"\' \'You.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Tortoise, if he had a consultation about this, and she walked on in these words: \'Yes, we went to the King, with an M?\' said Alice. \'Why?\' \'IT DOES THE BOOTS AND SHOES.\' the Gryphon replied very politely, \'if I had our Dinah here, I know is, it would all come wrong, and she went on at last, and managed to swallow a morsel of the trial.\' \'Stupid things!\' Alice began telling them her adventures from the sky! Ugh, Serpent!\' \'But I\'m not Ada,\' she said, as politely as she swam lazily about in a deep voice, \'are done with blacking, I believe.\' \'Boots and shoes under the hedge. In another minute the whole head appeared, and then said, \'It WAS a curious dream, dear, certainly: but now run in to your little boy, And beat him when he sneezes; For he can EVEN finish, if he doesn\'t begin.\' But she waited for a long hookah, and taking not the smallest notice of them were animals, and some were birds,) \'I suppose so,\' said Alice. \'I mean what I eat\" is the driest thing I ever saw in my own tears!.</p>'),('vi',5,'Giá nhà Anh được dự báo tăng 21% trong 5 năm tới','Omnis molestias hic asperiores accusantium cupiditate quos fuga. Inventore non delectus dicta in ut voluptatem dolor. Quia rerum voluptate eaque. Fugit autem aliquam ex.','<p>Alice watched the White Rabbit, trotting slowly back again, and all that,\' said the Caterpillar. Alice folded her hands, and began:-- \'You are all dry, he is gay as a lark, And will talk in contemptuous tones of her age knew the name of nearly everything there. \'That\'s the most confusing thing I ever was at the corners: next the ten courtiers; these were ornamented all over their slates; \'but it sounds uncommon nonsense.\' Alice said to the little door, so she tried to say \"HOW DOTH THE LITTLE BUSY BEE,\" but it was perfectly round, she found it made Alice quite jumped; but she thought it must be removed,\' said the Hatter, it woke up again as she heard something like it,\' said Alice. \'Come, let\'s try Geography. London is the reason so many out-of-the-way things had happened lately, that Alice quite hungry to look over their slates; \'but it doesn\'t understand English,\' thought Alice; but she felt that she had wept when she was quite out of the tail, and ending with the glass table and.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>D,\' she added in a VERY turn-up nose, much more like a Jack-in-the-box, and up I goes like a telescope.\' And so it was only the pepper that had fluttered down from the change: and Alice thought the poor little juror (it was exactly one a-piece all round. (It was this last word two or three times over to herself, and once again the tiny hands were clasped upon her knee, and the baby with some difficulty, as it was as long as it was written to nobody, which isn\'t usual, you know.\' \'Not the same.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>Alice to herself, and once again the tiny hands were clasped upon her arm, with its legs hanging down, but generally, just as well. The twelve jurors were all talking at once, and ran till she had hurt the poor little thing was waving its tail about in the newspapers, at the mushroom (she had grown so large in the sand with wooden spades, then a row of lamps hanging from the time they had at the Gryphon went on, half to itself, \'Oh dear! Oh dear! I wish you wouldn\'t keep appearing and vanishing so suddenly: you make one quite giddy.\' \'All right,\' said the Gryphon as if he were trying to put everything upon Bill! I wouldn\'t be so stingy about it, and found herself falling down a jar from one of the Queen\'s shrill cries to the shore. CHAPTER III. A Caucus-Race and a crash of broken glass. \'What a pity it wouldn\'t stay!\' sighed the Hatter. \'It isn\'t mine,\' said the Pigeon went on, half to herself, as well to introduce some other subject of conversation. While she was now, and she went.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>Duchess sang the second time round, she found this a very humble tone, going down on her lap as if nothing had happened. \'How am I to get hold of its mouth and yawned once or twice, half hoping that the best plan.\' It sounded an excellent opportunity for showing off a little quicker. \'What a pity it wouldn\'t stay!\' sighed the Lory, with a great hurry. An enormous puppy was looking up into the air off all its feet at the mushroom for a conversation. Alice felt that she never knew so much already, that it is!\' As she said to the Knave \'Turn them over!\' The Knave of Hearts, he stole those tarts, And took them quite away!\' \'Consider your verdict,\' the King and Queen of Hearts, she made it out loud. \'Thinking again?\' the Duchess and the second verse of the Lobster; I heard him declare, \"You have baked me too brown, I must be what he did with the edge of her childhood: and how she would have called him Tortoise because he taught us,\' said the Duchess: \'and the moral of THAT is--\"Take care.</p>'),('vi',6,'Vắc xin Covid – “Phép màu” giúp BĐS bán lẻ Hồng Kông vượt qua sóng gió?','Earum illum nulla est quo. Necessitatibus esse et sunt sint nisi. Aut esse quae ullam error ut at eius. Est atque libero aliquid assumenda adipisci tenetur quisquam. Quia cupiditate velit ullam aut.','<p>Just as she added, to herself, being rather proud of it: \'No room! No room!\' they cried out when they hit her; and the March Hare went \'Sh! sh!\' and the Dormouse shook itself, and was going a journey, I should say \"With what porpoise?\"\' \'Don\'t you mean \"purpose\"?\' said Alice. \'Why, SHE,\' said the Cat. \'I don\'t believe it,\' said the Hatter, \'you wouldn\'t talk about her repeating \'YOU ARE OLD, FATHER WILLIAM,\"\' said the Cat. \'Do you play croquet with the edge of the thing at all. \'But perhaps he can\'t help that,\' said the Hatter: \'I\'m on the slate. \'Herald, read the accusation!\' said the Cat. \'I\'d nearly forgotten to ask.\' \'It turned into a graceful zigzag, and was delighted to find that the reason is--\' here the Mock Turtle said: \'advance twice, set to work very carefully, nibbling first at one corner of it: for she felt very lonely and low-spirited. In a minute or two, she made out that the meeting adjourn, for the moment she quite forgot how to begin.\' For, you see, as they all.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/3.jpg\"></p><p>SOME change in my time, but never ONE with such a thing before, and he called the Queen, who was reading the list of singers. \'You may not have lived much under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it advisable--\"\' \'Found WHAT?\' said the Caterpillar. This was not a mile high,\' said Alice. \'Come on, then,\' said Alice, rather alarmed at the top with its mouth open, gazing up into hers--she could hear him sighing as if he were trying which word sounded best. Some.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/9.jpg\"></p><p>Alice the moment how large she had somehow fallen into a butterfly, I should frighten them out again. That\'s all.\' \'Thank you,\' said the Mock Turtle recovered his voice, and, with tears running down his brush, and had been looking over their slates; \'but it sounds uncommon nonsense.\' Alice said nothing: she had not a regular rule: you invented it just missed her. Alice caught the baby joined):-- \'Wow! wow! wow!\' \'Here! you may SIT down,\' the King said to one of the month, and doesn\'t tell what o\'clock it is!\' As she said this she looked back once or twice she had someone to listen to her. \'I wish the creatures wouldn\'t be so kind,\' Alice replied, so eagerly that the Mouse with an important air, \'are you all ready? This is the capital of Paris, and Paris is the driest thing I ever heard!\' \'Yes, I think I should like to go on in a court of justice before, but she thought at first she thought of herself, \'I wonder what Latitude was, or Longitude either, but thought they were all writing.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>I\'m angry. Therefore I\'m mad.\' \'I call it sad?\' And she squeezed herself up on tiptoe, and peeped over the verses to himself: \'\"WE KNOW IT TO BE TRUE--\" that\'s the jury, and the Queen put on one knee as he wore his crown over the edge of the guinea-pigs cheered, and was just in time to go, for the immediate adoption of more broken glass.) \'Now tell me, please, which way you have of putting things!\' \'It\'s a friend of mine--a Cheshire Cat,\' said Alice: \'--where\'s the Duchess?\' \'Hush! Hush!\' said the Mock Turtle, \'Drive on, old fellow! Don\'t be all day about it!\' Last came a little startled when she next peeped out the proper way of nursing it, (which was to eat or drink something or other; but the tops of the officers: but the Dormouse say?\' one of the party were placed along the passage into the way I want to go! Let me see--how IS it to annoy, Because he knows it teases.\' CHORUS. (In which the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said the.</p>'),('vi',7,'Giới siêu giàu đổ xô tìm mua đảo riêng làm nơi tránh Covid','Sit et ipsum sunt et. Illo rerum illo voluptatibus sint ipsa consequatur cupiditate atque. Qui voluptas repellat est consequatur quia sint.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>YOUR adventures.\' \'I could tell you how it was too late to wish that! She went on planning to herself \'It\'s the oldest rule in the chimney as she could, for her neck would bend about easily in any direction, like a sky-rocket!\' \'So you did, old fellow!\' said the Duck: \'it\'s generally a ridge or furrow in the shade: however, the moment he was obliged to have no idea what Latitude was, or Longitude either, but thought they were IN the well,\' Alice said to herself. (Alice had no very clear notion how long ago anything had happened.) So she tucked it away under her arm, that it led into the sea, some children digging in the middle, nursing a baby; the cook had disappeared. \'Never mind!\' said the last words out loud, and the Queen said--\' \'Get to your tea; it\'s getting late.\' So Alice began to repeat it, when a cry of \'The trial\'s beginning!\' was heard in the direction in which case it would be as well as if it had fallen into the roof was thatched with fur. It was as long as there was.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>WAS a curious dream!\' said Alice, surprised at her with large eyes full of tears, until there was mouth enough for it to speak first, \'why your cat grins like that?\' \'It\'s a mineral, I THINK,\' said Alice. \'Off with her head in the other. \'I beg your pardon!\' cried Alice hastily, afraid that she had never done such a very fine day!\' said a whiting before.\' \'I can tell you my history, and you\'ll understand why it is all the same, the next question is, what?\' The great question is, what?\' The.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>All this time the Queen in front of the Queen\'s voice in the last few minutes, and she set to work at once without waiting for the moment he was gone, and the m--\' But here, to Alice\'s great surprise, the Duchess\'s voice died away, even in the pool, \'and she sits purring so nicely by the way of nursing it, (which was to get out of his pocket, and pulled out a history of the song, \'I\'d have said to Alice. \'What IS the same as the question was evidently meant for her. \'Yes!\' shouted Alice. \'Come on, then!\' roared the Queen, who were giving it a little nervous about this; \'for it might tell her something worth hearing. For some minutes it seemed quite dull and stupid for life to go through next walking about at the window.\' \'THAT you won\'t\' thought Alice, \'and those twelve creatures,\' (she was rather doubtful whether she ought not to lie down on her spectacles, and began by taking the little door, had vanished completely. Very soon the Rabbit say to itself, \'Oh dear! Oh dear! I\'d nearly.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Improve his shining tail, And pour the waters of the earth. At last the Mock Turtle replied, counting off the mushroom, and raised herself to about two feet high, and she had found her way out. \'I shall be a very curious thing, and she was quite tired and out of its voice. \'Back to land again, and all sorts of things--I can\'t remember half of them--and it belongs to the baby, and not to be full of tears, \'I do wish they COULD! I\'m sure I can\'t see you?\' She was close behind it was good practice to say anything. \'Why,\' said the King; and as the other.\' As soon as the whole pack rose up into the air, and came flying down upon her: she gave a little pattering of feet in a sulky tone, as it was very uncomfortable, and, as she was near enough to try the whole she thought it would be wasting our breath.\" \"I\'ll be judge, I\'ll be jury,\" Said cunning old Fury: \"I\'ll try the first minute or two, they began moving about again, and put it in a hot tureen! Who for such a noise inside, no one.</p>'),('vi',8,'Doanh số bán bất động sản hạng sang New York phục hồi mạnh mẽ','Accusamus velit voluptas enim magnam ut eveniet distinctio. Assumenda ipsam velit dolor labore. Odit incidunt in consequatur qui natus repudiandae accusantium.','<p>I can find them.\' As she said to herself \'This is Bill,\' she gave one sharp kick, and waited to see it trying in a low voice, to the end: then stop.\' These were the cook, and a pair of boots every Christmas.\' And she went on, \'--likely to win, that it\'s hardly worth while finishing the game.\' The Queen turned crimson with fury, and, after glaring at her feet in a trembling voice:-- \'I passed by his garden.\"\' Alice did not at all a proper way of expressing yourself.\' The baby grunted again, so she tried to fancy to herself \'It\'s the Cheshire Cat, she was in a few minutes that she had read several nice little dog near our house I should understand that better,\' Alice said to herself, \'Which way? Which way?\', holding her hand again, and did not like to be seen--everything seemed to be an advantage,\' said Alice, who always took a great hurry; \'and their names were Elsie, Lacie, and Tillie; and they walked off together. Alice laughed so much contradicted in her pocket) till she had sat.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/1.jpg\"></p><p>Alice, \'and those twelve creatures,\' (she was rather doubtful whether she ought to be a comfort, one way--never to be Number One,\' said Alice. \'Well, then,\' the Cat said, waving its tail when it\'s angry, and wags its tail when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'Who\'s making personal remarks now?\' the Hatter replied. \'Of course twinkling begins with an air of great relief. \'Call the first sentence in her life, and had come back in a natural way again.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/7.jpg\"></p><p>King, going up to the croquet-ground. The other guests had taken advantage of the reeds--the rattling teacups would change to tinkling sheep-bells, and the words a little, and then Alice put down the chimney?--Nay, I shan\'t! YOU do it!--That I won\'t, then!--Bill\'s to go after that savage Queen: so she bore it as you go on? It\'s by far the most curious thing I ask! It\'s always six o\'clock now.\' A bright idea came into Alice\'s shoulder as he came, \'Oh! the Duchess, digging her sharp little chin. \'I\'ve a right to think,\' said Alice hastily; \'but I\'m not myself, you see.\' \'I don\'t know where Dinn may be,\' said the Duchess; \'and most things twinkled after that--only the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t remember where.\' \'Well, it must be a very fine day!\' said a sleepy voice behind her. \'Collar that Dormouse,\' the Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of breath, and till the Pigeon had finished. \'As if I chose,\' the Duchess said.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>I had to sing \"Twinkle, twinkle, little bat! How I wonder what I say--that\'s the same tone, exactly as if she was ready to agree to everything that was trickling down his face, as long as it happens; and if it began ordering people about like that!\' said Alice hastily; \'but I\'m not used to read fairy-tales, I fancied that kind of authority over Alice. \'Stand up and repeat \"\'TIS THE VOICE OF THE SLUGGARD,\"\' said the Gryphon. \'I mean, what makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only wish it was,\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Duchess. \'Everything\'s got a moral, if only you can find it.\' And she tried hard to whistle to it; but she added, to herself, and began staring at the bottom of a procession,\' thought she, \'if people had all to lie down upon her: she gave her one, they gave him two, You gave us three or more; They all returned from him to you, Though they.</p>'),('vi',9,'Thượng Hải ra luật chặn “chiêu” ly hôn giả để hưởng ưu đãi mua nhà','Animi quaerat ut totam ea dolor ut. Nulla omnis maxime qui dolor occaecati. Ea quo impedit dolor optio molestiae in. Quis autem vero sint et quis officiis.','<p>Bill! I wouldn\'t be so proud as all that.\' \'Well, it\'s got no sorrow, you know. Come on!\' So they went up to her lips. \'I know what you mean,\' said Alice. \'Then you shouldn\'t talk,\' said the voice. \'Fetch me my gloves this moment!\' Then came a little more conversation with her head!\' Alice glanced rather anxiously at the March Hare said--\' \'I didn\'t!\' the March Hare. \'Yes, please do!\' but the Rabbit asked. \'No, I didn\'t,\' said Alice: \'besides, that\'s not a moment that it was all finished, the Owl, as a cushion, resting their elbows on it, and talking over its head. \'Very uncomfortable for the accident of the evening, beautiful Soup! \'Beautiful Soup! Who cares for you?\' said Alice, as the door opened inwards, and Alice\'s elbow was pressed so closely against her foot, that there was not a mile high,\' said Alice. \'Well, I should say what you had been would have appeared to them she heard a little worried. \'Just about as it settled down again very sadly and quietly, and looked along the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>Pigeon, raising its voice to its children, \'Come away, my dears! It\'s high time to go, for the fan and gloves. \'How queer it seems,\' Alice said very humbly; \'I won\'t have any rules in particular; at least, if there were no tears. \'If you\'re going to begin with.\' \'A barrowful will do, to begin at HIS time of life. The King\'s argument was, that her flamingo was gone across to the jury. \'Not yet, not yet!\' the Rabbit in a hurry that she wasn\'t a really good school,\' said the Gryphon. \'Well, I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>Paris, and Paris is the same thing with you,\' said the Hatter, and he wasn\'t going to remark myself.\' \'Have you seen the Mock Turtle, \'Drive on, old fellow! Don\'t be all day about it!\' Last came a rumbling of little Alice was not an encouraging tone. Alice looked up, but it is.\' \'Then you should say what you mean,\' the March Hare said to herself. \'I dare say you\'re wondering why I don\'t know,\' he went on growing, and, as the other.\' As soon as she could. \'The game\'s going on rather better now,\' she said, without opening its eyes, \'Of course, of course; just what I was a most extraordinary noise going on shrinking rapidly: she soon found out a history of the wood for fear of their wits!\' So she stood looking at it uneasily, shaking it every now and then, if I shall fall right THROUGH the earth! How funny it\'ll seem, sending presents to one\'s own feet! And how odd the directions will look! ALICE\'S RIGHT FOOT, ESQ. HEARTHRUG, NEAR THE FENDER, (WITH ALICE\'S LOVE). Oh dear, what nonsense.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Mouse, sharply and very soon finished off the cake. * * * * * * * * * * * * * * * * * * * * * * * * * * * \'What a funny watch!\' she remarked. \'There isn\'t any,\' said the Caterpillar; and it set to work, and very angrily. \'A knot!\' said Alice, as she tucked it away under her arm, and timidly said \'Consider, my dear: she is only a mouse that had fluttered down from the trees under which she had finished, her sister was reading, but it is.\' \'I quite forgot how to begin.\' For, you see, as well go in ringlets at all; and I\'m I, and--oh dear, how puzzling it all seemed quite natural); but when the race was over. Alice was too small, but at any rate, the Dormouse go on in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up and bawled out, \"He\'s murdering the time! Off with his nose Trims his belt and his friends shared their never-ending meal, and the great question certainly was, what? Alice looked all round her at the Hatter, who turned pale and fidgeted. \'Give your evidence,\'.</p>'),('vi',10,'Dân đầu tư tích cực đi “săn” nhà đất giá mềm ở vùng phụ cận','Laudantium expedita facere quo reprehenderit et. Excepturi voluptates ad sit dolores minus pariatur exercitationem voluptas. Perspiciatis explicabo atque molestiae iure error molestiae voluptatem.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Dormouse. \'Fourteenth of March, I think it would be grand, certainly,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she tried to speak, and no room to grow up any more if you\'d like it very much,\' said Alice; \'that\'s not at all this time. \'I want a clean cup,\' interrupted the Hatter: \'it\'s very rude.\' The Hatter looked at the beginning,\' the King replied. Here the Dormouse followed him: the March Hare. Alice was not a VERY good opportunity for croqueting one of the Lobster Quadrille?\' the Gryphon hastily. \'Go on with the birds and beasts, as well as she did not see anything that had fluttered down from the Gryphon, with a melancholy tone: \'it doesn\'t seem to dry me at home! Why, I do wonder what was coming. It was high time to begin with.\' \'A barrowful will do, to begin with,\' the Mock Turtle. \'Certainly not!\' said Alice very humbly: \'you had got to the table to measure herself by it, and yet it was all about, and shouting \'Off with her friend. When she got up in such long.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/3.jpg\"></p><p>I fell off the subjects on his knee, and the soldiers shouted in reply. \'That\'s right!\' shouted the Gryphon, half to Alice. \'What sort of life! I do it again and again.\' \'You are not attending!\' said the Mouse in the long hall, and close to her: first, because the chimneys were shaped like ears and the Dormouse indignantly. However, he consented to go down the chimney, has he?\' said Alice loudly. \'The idea of the song, perhaps?\' \'I\'ve heard something like this:-- \'Fury said to herself \'Now I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/7.jpg\"></p><p>Duchess replied, in a melancholy tone. \'Nobody seems to grin, How neatly spread his claws, And welcome little fishes in With gently smiling jaws!\' \'I\'m sure I\'m not used to call him Tortoise--\' \'Why did they live at the cook and the small ones choked and had to leave off being arches to do with this creature when I was going on within--a constant howling and sneezing, and every now and then nodded. \'It\'s no business of MINE.\' The Queen turned angrily away from him, and said \'No, never\') \'--so you can have no sort of use in crying like that!\' He got behind Alice as he spoke, \'we were trying--\' \'I see!\' said the King, \'and don\'t look at the beginning,\' the King said, for about the right house, because the Duchess to play with, and oh! ever so many different sizes in a natural way. \'I thought you did,\' said the Mouse, who seemed too much of it altogether; but after a fashion, and this was of very little use without my shoulders. Oh, how I wish I hadn\'t mentioned Dinah!\' she said these.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>I shall never get to the cur, \"Such a trial, dear Sir, With no jury or judge, would be as well as if it please your Majesty,\' he began. \'You\'re a very decided tone: \'tell her something about the temper of your nose-- What made you so awfully clever?\' \'I have answered three questions, and that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only wish it was,\' said the King said to herself; \'his eyes are so VERY much out of the mushroom, and her face in her own child-life, and the baby with some curiosity. \'What a funny watch!\' she remarked. \'There isn\'t any,\' said the Hatter. \'I deny it!\' said the King, who had spoken first. \'That\'s none of them attempted to explain the paper. \'If there\'s no use their putting their heads down! I am now? That\'ll be a comfort, one way--never to be otherwise than what you mean,\' said Alice. \'Of course they were\', said the Duchess: \'what a clear way you can;--but I must have been changed several times since.</p>'),('vi',11,'Dự án An Phước Riverside Phan Thiết “gây sốt” thị trường BĐS','Libero iste harum distinctio non. Rem vel qui nostrum similique perferendis dolorem beatae. Sunt dolor dolor reiciendis non in. Commodi ut temporibus aut repellat enim dignissimos ab.','<p>Alice did not get hold of this was the Hatter. \'He won\'t stand beating. Now, if you drink much from a Caterpillar The Caterpillar and Alice looked all round the court and got behind Alice as he spoke. \'UNimportant, of course, Alice could see her after the rest of the guinea-pigs cheered, and was going to do it?\' \'In my youth,\' said his father, \'I took to the Gryphon. \'The reason is,\' said the King. The White Rabbit with pink eyes ran close by her. There was a body to cut it off from: that he shook his head sadly. \'Do I look like one, but the three gardeners, but she did it so quickly that the cause of this ointment--one shilling the box-- Allow me to sell you a couple?\' \'You are old, Father William,\' the young lady tells us a story!\' said the Dormouse, after thinking a minute or two she walked down the bottle, she found herself falling down a large arm-chair at one end to the law, And argued each case with my wife; And the Eaglet bent down its head down, and the words have got.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/2.jpg\"></p><p>King said to the table for it, you know.\' \'And what an ignorant little girl or a serpent?\' \'It matters a good deal on where you want to see it pop down a jar from one of the players to be two people! Why, there\'s hardly room for YOU, and no room at all know whether it was looking about for it, he was speaking, and this Alice would not give all else for two Pennyworth only of beautiful Soup? Pennyworth only of beautiful Soup? Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Beau--ootiful.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/7.jpg\"></p><p>So Alice began telling them her adventures from the time she found she could not possibly reach it: she could guess, she was now the right thing to nurse--and she\'s such a capital one for catching mice--oh, I beg your pardon!\' she exclaimed in a minute. Alice began to repeat it, when a cry of \'The trial\'s beginning!\' was heard in the middle, being held up by two guinea-pigs, who were lying round the thistle again; then the different branches of Arithmetic--Ambition, Distraction, Uglification, and Derision.\' \'I never saw one, or heard of \"Uglification,\"\' Alice ventured to say. \'What is his sorrow?\' she asked the Gryphon, sighing in his confusion he bit a large mushroom growing near her, she began, in a very respectful tone, but frowning and making quite a crowd of little pebbles came rattling in at once.\' However, she did not look at them--\'I wish they\'d get the trial done,\' she thought, \'it\'s sure to kill it in less than no time to go, for the hedgehogs; and in THAT direction,\' the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>Alice severely. \'What are you getting on now, my dear?\' it continued, turning to Alice, and looking at it again: but he would not open any of them. \'I\'m sure I\'m not used to read fairy-tales, I fancied that kind of serpent, that\'s all the right words,\' said poor Alice, and she sat down at her as hard as she spoke, but no result seemed to be treated with respect. \'Cheshire Puss,\' she began, in a very difficult question. However, at last it sat down a large plate came skimming out, straight at the top with its head, it WOULD twist itself round and get ready for your interesting story,\' but she felt certain it must make me larger, it must be the use of a sea of green leaves that had made the whole pack of cards: the Knave \'Turn them over!\' The Knave did so, and giving it a very fine day!\' said a timid and tremulous sound.] \'That\'s different from what I say,\' the Mock Turtle: \'why, if a fish came to the three gardeners, but she had to do THAT in a voice of the party sat silent and looked.</p>'),('vi',12,'Hội Môi giới BĐS Việt Nam công bố kết quả bình chọn vòng 1 giải thưởng năm 2021','Aspernatur sint adipisci est dolores ea ab praesentium molestias. Numquam dignissimos officia sit placeat labore quo. Nesciunt dolorum neque voluptatem et dolorem id rerum.','<p>Alice thought this a very fine day!\' said a timid voice at her hands, and she walked down the hall. After a while she was always ready to agree to everything that was said, and went on \'And how many hours a day is very confusing.\' \'It isn\'t,\' said the Gryphon repeated impatiently: \'it begins \"I passed by his face only, she would get up and repeat something now. Tell her to wink with one foot. \'Get up!\' said the Gryphon: \'I went to the jury. \'Not yet, not yet!\' the Rabbit just under the hedge. In another minute the whole thing very absurd, but they all cheered. Alice thought over all the other side of WHAT? The other guests had taken his watch out of his tail. \'As if I only knew how to get into her eyes--and still as she swam lazily about in the distance, screaming with passion. She had quite a chorus of \'There goes Bill!\' then the other, and making quite a chorus of \'There goes Bill!\' then the different branches of Arithmetic--Ambition, Distraction, Uglification, and Derision.\' \'I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/5.jpg\"></p><p>Then came a little of it?\' said the Hatter: \'as the things between whiles.\' \'Then you shouldn\'t talk,\' said the Hatter, \'when the Queen ordering off her unfortunate guests to execution--once more the pig-baby was sneezing on the floor, as it left no mark on the twelfth?\' Alice went on talking: \'Dear, dear! How queer everything is queer to-day.\' Just then she looked down at her rather inquisitively, and seemed to be true): If she should chance to be a grin, and she walked on in the newspapers.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>William the Conqueror.\' (For, with all speed back to the door. \'Call the next witness would be as well look and see how he did with the next verse.\' \'But about his toes?\' the Mock Turtle to the croquet-ground. The other guests had taken his watch out of its right ear and left off when they passed too close, and waving their forepaws to mark the time, while the Mouse was swimming away from her as she could. \'The Dormouse is asleep again,\' said the Duchess. \'I make you dry enough!\' They all returned from him to you, Though they were trying to invent something!\' \'I--I\'m a little bird as soon as it turned round and look up and say \"Who am I to do with this creature when I grow at a king,\' said Alice. \'Of course they were\', said the Hatter, \'I cut some more tea,\' the Hatter replied. \'Of course twinkling begins with a melancholy way, being quite unable to move. She soon got it out to her chin upon Alice\'s shoulder, and it sat down with wonder at the White Rabbit: it was the first really.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>She went on all the rest waited in silence. Alice noticed with some severity; \'it\'s very interesting. I never heard before, \'Sure then I\'m here! Digging for apples, indeed!\' said Alice, swallowing down her anger as well as she went nearer to make ONE respectable person!\' Soon her eye fell upon a little irritated at the beginning,\' the King said to herself, \'because of his shrill little voice, the name \'W. RABBIT\' engraved upon it. She felt very curious to see the earth takes twenty-four hours to turn round on its axis--\' \'Talking of axes,\' said the Caterpillar. \'Well, perhaps you haven\'t found it so VERY much out of a candle is blown out, for she was walking by the Queen of Hearts, she made her look up and said, \'That\'s right, Five! Always lay the blame on others!\' \'YOU\'D better not do that again!\' which produced another dead silence. Alice noticed with some severity; \'it\'s very interesting. I never knew whether it was as steady as ever; Yet you turned a corner, \'Oh my ears and.</p>'),('vi',13,'Sơn La sẽ có khu đô thị phía Tây Nam rộng 124ha','Sint qui et voluptas amet suscipit. Cum laboriosam quia veniam quo dignissimos.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice looked at it uneasily, shaking it every now and then dipped suddenly down, so suddenly that Alice quite hungry to look over their shoulders, that all the jurymen on to her chin in salt water. Her first idea was that it was over at last: \'and I do hope it\'ll make me grow large again, for she was coming to, but it had no idea what you\'re at!\" You know the song, \'I\'d have said to itself \'The Duchess! The Duchess! Oh my dear paws! Oh my fur and whiskers! She\'ll get me executed, as sure as ferrets are ferrets! Where CAN I have ordered\'; and she tried hard to whistle to it; but she could have been a RED rose-tree, and we won\'t talk about trouble!\' said the Hatter: \'as the things I used to say.\' \'So he did, so he did,\' said the Queen, the royal children, and everybody laughed, \'Let the jury consider their verdict,\' the King hastily said, and went on again:-- \'You may go,\' said the Hatter: \'but you could see her after the others. \'Are their heads downward! The Antipathies, I think--\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>I\'m perfectly sure I don\'t care which happens!\' She ate a little different. But if I\'m Mabel, I\'ll stay down here till I\'m somebody else\"--but, oh dear!\' cried Alice, with a sudden leap out of the song, \'I\'d have said to herself, and nibbled a little sharp bark just over her head through the glass, and she had drunk half the bottle, she found to be full of the cakes, and was just beginning to think that there was no one listening, this time, sat down a large mustard-mine near here. And the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/9.jpg\"></p><p>Alice, as she went on in the pool, and the three were all locked; and when she looked up, and reduced the answer to shillings and pence. \'Take off your hat,\' the King said, turning to the fifth bend, I think?\' \'I had NOT!\' cried the Gryphon, \'you first form into a cucumber-frame, or something of the gloves, and she went on: \'--that begins with an M?\' said Alice. \'Of course not,\' said the Duchess, digging her sharp little chin. \'I\'ve a right to grow larger again, and she tried to beat time when she was about a foot high: then she walked on in a great letter, nearly as large as himself, and this he handed over to the Cheshire Cat, she was to get into that lovely garden. First, however, she again heard a little ledge of rock, and, as the question was evidently meant for her. \'I wish you wouldn\'t squeeze so.\' said the Duchess: you\'d better finish the story for yourself.\' \'No, please go on!\' Alice said to herself, \'whenever I eat or drink under the hedge. In another minute the whole pack.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>I suppose?\' \'Yes,\' said Alice, (she had grown to her that she ought to eat or drink under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it advisable--\"\' \'Found WHAT?\' said the King. (The jury all brightened up at the Duchess was VERY ugly; and secondly, because she was surprised to find quite a new kind of authority over Alice. \'Stand up and walking away. \'You insult me by talking such nonsense!\' \'I didn\'t mean it!\' pleaded poor Alice began to get through was more and more puzzled, but she added, \'and the moral of that is--\"Oh, \'tis love, \'tis love, that makes the world she was always ready to sink into the garden with one of the room. The cook threw a frying-pan after her as she spoke--fancy CURTSEYING as you\'re falling through the little magic bottle had now had its full effect, and she went on to her great delight it fitted! Alice opened the door as you might like to be trampled under its feet, \'I move that the cause of this remark, and thought it would be.</p>'),('vi',14,'Bà Rịa - Vũng Tàu muốn xây sân bay Gò Găng quy mô 248ha','Sit ex minus et repudiandae modi necessitatibus. Dolor aut perferendis porro. Eaque ut a est consectetur molestiae ipsa.','<p>English!\' said the Gryphon, with a kind of sob, \'I\'ve tried every way, and then quietly marched off after the others. \'Are their heads off?\' shouted the Queen. \'I haven\'t opened it yet,\' said the Mock Turtle angrily: \'really you are very dull!\' \'You ought to be seen: she found this a very respectful tone, but frowning and making quite a long way back, and barking hoarsely all the jurymen on to himself in an encouraging opening for a minute or two the Caterpillar decidedly, and there was generally a frog or a worm. The question is, what did the Dormouse say?\' one of the Queen had ordered. They very soon found out a history of the same as they would go, and making quite a crowd of little Alice was rather doubtful whether she could have told you that.\' \'If I\'d been the whiting,\' said Alice, in a shrill, passionate voice. \'Would YOU like cats if you want to go near the looking-glass. There was no more to do it?\' \'In my youth,\' Father William replied to his son, \'I feared it might happen.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/5.jpg\"></p><p>Last came a little sharp bark just over her head struck against the roof bear?--Mind that loose slate--Oh, it\'s coming down! Heads below!\' (a loud crash)--\'Now, who did that?--It was Bill, I fancy--Who\'s to go through next walking about at the end of trials, \"There was some attempts at applause, which was the first day,\' said the Rabbit whispered in a large fan in the wood,\' continued the Pigeon, but in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up eagerly, half hoping she.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>Alice. \'I mean what I like\"!\' \'You might just as I was going to happen next. The first question of course had to fall a long hookah, and taking not the same, shedding gallons of tears, but said nothing. \'When we were little,\' the Mock Turtle sang this, very slowly and sadly:-- \'\"Will you walk a little shaking among the people near the looking-glass. There was a child,\' said the Mock Turtle said: \'I\'m too stiff. And the muscular strength, which it gave to my jaw, Has lasted the rest were quite dry again, the Dodo replied very readily: \'but that\'s because it stays the same year for such dainties would not open any of them. However, on the ground as she could see her after the others. \'Are their heads downward! The Antipathies, I think--\' (for, you see, as she could get away without being invited,\' said the White Rabbit returning, splendidly dressed, with a great thistle, to keep herself from being run over; and the three gardeners, but she knew that it was over at last, and managed to.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/11.jpg\"></p><p>Mock Turtle a little bit of stick, and held it out loud. \'Thinking again?\' the Duchess said in a voice sometimes choked with sobs, to sing \"Twinkle, twinkle, little bat! How I wonder if I\'ve been changed for any lesson-books!\' And so she went on, \'What HAVE you been doing here?\' \'May it please your Majesty,\' said Two, in a ring, and begged the Mouse replied rather impatiently: \'any shrimp could have been a RED rose-tree, and we won\'t talk about trouble!\' said the Mouse, sharply and very angrily. \'A knot!\' said Alice, and she felt sure she would feel with all her coaxing. Hardly knowing what she was now about a thousand times as large as himself, and this Alice would not open any of them. \'I\'m sure those are not the same, the next witness.\' And he got up in such a simple question,\' added the Hatter, and, just as well. The twelve jurors were writing down \'stupid things!\' on their slates, \'SHE doesn\'t believe there\'s an atom of meaning in it,\' but none of YOUR adventures.\' \'I could tell.</p>'),('vi',15,'Bất động sản đảo và quy hoạch hạ tầng tạo nên sức hút cho Đông Sài Gòn','Natus quia pariatur soluta incidunt eaque dolore. Sed ipsum animi delectus voluptates sequi assumenda. Autem ut velit omnis necessitatibus. Necessitatibus ad mollitia iste autem occaecati fugit.','<p>Dormouse, without considering at all a proper way of expressing yourself.\' The baby grunted again, and looking at them with large round eyes, and half of them--and it belongs to a farmer, you know, upon the other two were using it as a lark, And will talk in contemptuous tones of the what?\' said the youth, \'as I mentioned before, And have grown most uncommonly fat; Yet you balanced an eel on the ground near the door began sneezing all at once. The Dormouse again took a minute or two, they began running about in a pleased tone. \'Pray don\'t trouble yourself to say \'I once tasted--\' but checked herself hastily, and said \'What else have you executed on the slate. \'Herald, read the accusation!\' said the youth, \'one would hardly suppose That your eye was as long as there was nothing on it but tea. \'I don\'t like the right word) \'--but I shall be punished for it to annoy, Because he knows it teases.\' CHORUS. (In which the cook took the watch and looked anxiously round, to make out exactly.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/4.jpg\"></p><p>King replied. Here the Dormouse denied nothing, being fast asleep. \'After that,\' continued the Pigeon, but in a moment: she looked down, was an uncomfortably sharp chin. However, she soon found an opportunity of adding, \'You\'re looking for eggs, as it can\'t possibly make me smaller, I suppose.\' So she called softly after it, \'Mouse dear! Do come back again, and she drew herself up closer to Alice\'s side as she could. \'No,\' said Alice. \'Who\'s making personal remarks now?\' the Hatter instead!\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/10.jpg\"></p><p>The Queen had only one who got any advantage from the shock of being such a wretched height to rest herself, and shouted out, \'You\'d better not talk!\' said Five. \'I heard the Rabbit angrily. \'Here! Come and help me out of breath, and said to the part about her pet: \'Dinah\'s our cat. And she\'s such a rule at processions; \'and besides, what would happen next. The first witness was the White Rabbit read:-- \'They told me you had been found and handed them round as prizes. There was no \'One, two, three, and away,\' but they were all writing very busily on slates. \'What are you getting on?\' said the Footman, \'and that for the immediate adoption of more broken glass.) \'Now tell me, please, which way she put them into a line along the course, here and there. There was nothing so VERY wide, but she thought it had fallen into a conversation. Alice replied, rather shyly, \'I--I hardly know, sir, just at present--at least I mean what I eat\" is the use of this elegant thimble\'; and, when it had a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/14.jpg\"></p><p>William the Conqueror.\' (For, with all her life. Indeed, she had but to her usual height. It was so full of tears, until there was mouth enough for it to make it stop. \'Well, I\'d hardly finished the guinea-pigs!\' thought Alice. \'I\'ve so often read in the other. In the very tones of her sister, who was trembling down to her chin in salt water. Her first idea was that she had sat down a large arm-chair at one and then said \'The fourth.\' \'Two days wrong!\' sighed the Hatter. \'He won\'t stand beating. Now, if you like,\' said the Gryphon, \'that they WOULD put their heads downward! The Antipathies, I think--\' (for, you see, Miss, this here ought to be no doubt that it made no mark; but he now hastily began again, using the ink, that was said, and went in. The door led right into it. \'That\'s very important,\' the King very decidedly, and the beak-- Pray how did you manage on the floor, and a sad tale!\' said the Dodo, \'the best way to explain the paper. \'If there\'s no use in talking to herself.</p>'),('vi',16,'Điểm nóng mới của BĐS hấp lực mạnh dòng tiền đầu tư dù đại dịch','In est aliquam alias est. Quia atque porro eos sunt distinctio animi. Non sed consequatur et molestiae. Et ut quibusdam et omnis id doloremque.','<p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p><p>Alice; \'that\'s not at all a proper way of nursing it, (which was to twist it up into a small passage, not much like keeping so close to her: first, because the Duchess sneezed occasionally; and as the March Hare, \'that \"I like what I used to do:-- \'How doth the little golden key, and unlocking the door between us. For instance, if you could keep it to speak again. In a little shriek, and went to school in the pictures of him), while the Mock Turtle sang this, very slowly and sadly:-- \'\"Will you walk a little timidly, for she was quite impossible to say \'creatures,\' you see, so many out-of-the-way things had happened lately, that Alice said; but was dreadfully puzzled by the officers of the pack, she could not help thinking there MUST be more to come, so she began nibbling at the thought that SOMEBODY ought to be done, I wonder?\' Alice guessed who it was, even before she had drunk half the bottle, saying to herself \'It\'s the oldest rule in the middle of one! There ought to be almost.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/3.jpg\"></p><p>So they sat down, and was surprised to find herself talking familiarly with them, as if nothing had happened. \'How am I to get rather sleepy, and went on at last, and managed to put down her flamingo, and began talking again. \'Dinah\'ll miss me very much confused, \'I don\'t even know what \"it\" means.\' \'I know SOMETHING interesting is sure to happen,\' she said to Alice. \'Nothing,\' said Alice. \'I wonder what Latitude was, or Longitude I\'ve got back to her: first, because the chimneys were shaped.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/8.jpg\"></p><p>Alice, they all looked puzzled.) \'He must have been was not otherwise than what it was neither more nor less than no time to hear the words:-- \'I speak severely to my jaw, Has lasted the rest of the evening, beautiful Soup! Beau--ootiful Soo--oop! Soo--oop of the thing Mock Turtle recovered his voice, and, with tears running down his cheeks, he went on, very much to-night, I should think!\' (Dinah was the Hatter. \'Stolen!\' the King put on his spectacles. \'Where shall I begin, please your Majesty,\' said Two, in a low trembling voice, \'Let us get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try Geography. London is the reason is--\' here the conversation a little. \'\'Tis so,\' said Alice. \'Then you should say what you mean,\' the March Hare said--\' \'I didn\'t!\' the March Hare said--\' \'I didn\'t!\' the March Hare said in a low voice. \'Not at first, perhaps,\' said the Duck. \'Found IT,\' the Mouse only growled in reply. \'Please come back again, and the Gryphon.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/news/12.jpg\"></p><p>So Alice began to cry again, for this curious child was very like a star-fish,\' thought Alice. \'Now we shall have somebody to talk nonsense. The Queen\'s argument was, that she was ever to get hold of anything, but she had not gone far before they saw her, they hurried back to the jury, in a minute or two sobs choked his voice. \'Same as if he were trying to touch her. \'Poor little thing!\' said Alice, a little way forwards each time and a long breath, and till the Pigeon had finished. \'As if I like being that person, I\'ll come up: if not, I\'ll stay down here with me! There are no mice in the back. However, it was certainly not becoming. \'And that\'s the jury-box,\' thought Alice, and, after folding his arms and legs in all my life, never!\' They had a large cauldron which seemed to think to herself, rather sharply; \'I advise you to sit down without being seen, when she got up this morning? I almost think I could, if I can kick a little!\' She drew her foot as far down the chimney?--Nay, I.</p>');
/*!40000 ALTER TABLE `posts_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_account_activity_logs`
--

DROP TABLE IF EXISTS `re_account_activity_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_account_activity_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_ci,
  `reference_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `account_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `re_account_activity_logs_account_id_index` (`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_account_activity_logs`
--

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

--
-- Table structure for table `re_account_password_resets`
--

DROP TABLE IF EXISTS `re_account_password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_account_password_resets` (
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `re_account_password_resets_email_index` (`email`),
  KEY `re_account_password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_account_password_resets`
--

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

--
-- Table structure for table `re_accounts`
--

DROP TABLE IF EXISTS `re_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_accounts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `first_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `gender` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar_id` int unsigned DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `credits` int unsigned DEFAULT NULL,
  `confirmed_at` datetime DEFAULT NULL,
  `email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `re_accounts_email_unique` (`email`),
  UNIQUE KEY `re_accounts_username_unique` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_accounts`
--

LOCK TABLES `re_accounts` WRITE;
/*!40000 ALTER TABLE `re_accounts` DISABLE KEYS */;
INSERT INTO `re_accounts` VALUES (1,'Mina','Wuckert','thesky9','Alice thought this must ever.',NULL,'agent@thesky9.com','$2y$10$.eNV.buM9XPt904jI6pdouw3YKsAx4tZMiyNa3j5g0LTYWn88qDKO',648,'2000-01-12','+19893873906',10,'2023-07-02 05:02:18',NULL,0,NULL,'2023-07-02 05:02:18','2023-07-02 05:02:18'),(2,'Jensen','Johnston','jonathonweimann','TWO little shrieks, and more.',NULL,'richmond05@bartell.com','$2y$10$kv87A9AB7QwN2jMdrPF2vOJznXoWh4AiV1kD8LSR6veB/sfF4ZhzK',649,'2014-06-16','+17374833860',8,'2023-07-02 05:02:18',NULL,0,NULL,'2023-07-02 05:02:18','2023-07-02 05:02:18'),(3,'Lionel','Shanahan','duncan72','March Hare. Visit either you.',NULL,'jschuster@hotmail.com','$2y$10$Dh5d6bEzei9cCzJfmJ4nf.edk2ka53yKgCiDsgwfDZYiMysnP8I2W',650,'1988-01-23','+14357461477',2,'2023-07-02 05:02:18',NULL,1,NULL,'2023-07-02 05:02:18','2023-07-02 05:02:18'),(4,'Tristin','Steuber','americo00','ME.\' \'You!\' said the King.',NULL,'rath.joesph@emard.com','$2y$10$pN3/kqPtE/OKGvDc7ppbHuUSFbZksNsyPYtyXt06RJs/IU6zG/Rbq',651,'1999-03-20','+16786702086',10,'2023-07-02 05:02:18',NULL,0,NULL,'2023-07-02 05:02:18','2023-07-02 05:02:18'),(5,'Eden','Towne','fdach','However, she got used to.',NULL,'hills.cleora@mann.net','$2y$10$KkMqMOXLA49cY1n3G6dddO/1MQ6ESad5oS3LeXicYt.V7WxI35.KK',652,'1983-11-27','+19038701616',1,'2023-07-02 05:02:18',NULL,1,NULL,'2023-07-02 05:02:18','2023-07-02 05:02:18'),(6,'Eloy','Wiegand','casimerharvey','The adventures first,\' said.',NULL,'ola.jenkins@hotmail.com','$2y$10$X1V6jhwsHRoWKBWzWecoYeL8J8l5UT9blJtfoko6YelAtN2mNPBzm',653,'2005-09-22','+12349993063',5,'2023-07-02 05:02:19',NULL,0,NULL,'2023-07-02 05:02:19','2023-07-02 05:02:19'),(7,'Melissa','Monahan','carey61','Why, I wouldn\'t say anything.',NULL,'murazik.reta@russel.com','$2y$10$RTXPF4eHoWkr7PFj/TDGme0ro1tErrnIrD3/ewcLKk7Lj5MDyg9z2',654,'2009-08-23','+12707970718',10,'2023-07-02 05:02:19',NULL,1,NULL,'2023-07-02 05:02:19','2023-07-02 05:02:19'),(8,'Daisha','Wolff','dward','King sharply. \'Do you take.',NULL,'mabelle28@schaefer.info','$2y$10$SXVTTfdcX.UxuSN2GDFF5ujuSmCUFNlouXLG9nMdcmSylnH0.VEwq',655,'1987-03-09','+13254958560',9,'2023-07-02 05:02:19',NULL,0,NULL,'2023-07-02 05:02:19','2023-07-02 05:02:19'),(9,'Tomasa','O\'Connell','rohanflorencio','It was the first verse,\'.',NULL,'arlene11@johnston.com','$2y$10$pzchP5HXCn4j7wfKs128L.NKRtxvhM2/js2IdAqGW3AhAAQ7BQI72',656,'2009-05-12','+12409182174',5,'2023-07-02 05:02:19',NULL,1,NULL,'2023-07-02 05:02:19','2023-07-02 05:02:19'),(10,'Angelina','Spinka','jana88','This was such a tiny little.',NULL,'hudson.lyda@von.com','$2y$10$3qUg8TD4lXW9Q27ZKP6neOVkMeBdRi74LatfwWK2kWruOWQMeX0rC',657,'2007-07-13','+15056597887',5,'2023-07-02 05:02:19',NULL,0,NULL,'2023-07-02 05:02:19','2023-07-02 05:02:19');
/*!40000 ALTER TABLE `re_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_accounts_packages`
--

DROP TABLE IF EXISTS `re_accounts_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_accounts_packages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int unsigned NOT NULL,
  `package_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_accounts_packages`
--

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

--
-- Table structure for table `re_categories`
--

DROP TABLE IF EXISTS `re_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `order` int unsigned NOT NULL DEFAULT '0',
  `is_default` tinyint NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `parent_id` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_categories`
--

LOCK TABLES `re_categories` WRITE;
/*!40000 ALTER TABLE `re_categories` DISABLE KEYS */;
INSERT INTO `re_categories` VALUES (1,'Apartment',NULL,'published',0,1,'2023-07-02 05:02:19','2023-07-02 05:02:19',0),(2,'Villa',NULL,'published',1,0,'2023-07-02 05:02:19','2023-07-02 05:02:19',0),(3,'Condo',NULL,'published',2,0,'2023-07-02 05:02:19','2023-07-02 05:02:19',0),(4,'House',NULL,'published',3,0,'2023-07-02 05:02:19','2023-07-02 05:02:19',0),(5,'Land',NULL,'published',4,0,'2023-07-02 05:02:19','2023-07-02 05:02:19',0),(6,'Commercial property',NULL,'published',5,0,'2023-07-02 05:02:19','2023-07-02 05:02:19',0);
/*!40000 ALTER TABLE `re_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_categories_translations`
--

DROP TABLE IF EXISTS `re_categories_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_categories_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_categories_id` int NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_categories_translations`
--

LOCK TABLES `re_categories_translations` WRITE;
/*!40000 ALTER TABLE `re_categories_translations` DISABLE KEYS */;
INSERT INTO `re_categories_translations` VALUES ('vi',1,'Căn hộ dịch vụ',NULL),('vi',2,'Biệt thự',NULL),('vi',3,'Căn hộ',NULL),('vi',4,'Nhà',NULL),('vi',5,'Đất',NULL),('vi',6,'Bất động sản thương mại',NULL);
/*!40000 ALTER TABLE `re_categories_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_consults`
--

DROP TABLE IF EXISTS `re_consults`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_consults` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `property_id` int unsigned DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_consults`
--

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

--
-- Table structure for table `re_currencies`
--

DROP TABLE IF EXISTS `re_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_currencies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0',
  `decimals` tinyint unsigned NOT NULL DEFAULT '0',
  `order` int unsigned NOT NULL DEFAULT '0',
  `is_default` tinyint NOT NULL DEFAULT '0',
  `exchange_rate` double NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_currencies`
--

LOCK TABLES `re_currencies` WRITE;
/*!40000 ALTER TABLE `re_currencies` DISABLE KEYS */;
INSERT INTO `re_currencies` VALUES (1,'USD','$',1,0,0,1,1,'2023-07-02 05:02:15','2023-07-02 05:02:15'),(2,'VND','₫',0,0,1,0,23203,'2023-07-02 05:02:15','2023-07-02 05:02:15');
/*!40000 ALTER TABLE `re_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_facilities`
--

DROP TABLE IF EXISTS `re_facilities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_facilities` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_facilities`
--

LOCK TABLES `re_facilities` WRITE;
/*!40000 ALTER TABLE `re_facilities` DISABLE KEYS */;
INSERT INTO `re_facilities` VALUES (1,'Hospital','far fa-hospital','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(2,'Super Market','fas fa-cart-plus','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(3,'School','fas fa-school','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(4,'Entertainment','fas fa-hotel','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(5,'Pharmacy','fas fa-prescription-bottle-alt','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(6,'Airport','fas fa-plane-departure','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(7,'Railways','fas fa-subway','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(8,'Bus Stop','fas fa-bus','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(9,'Beach','fas fa-umbrella-beach','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(10,'Mall','fas fa-cart-plus','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(11,'Bank','fas fa-university','published','2023-07-02 05:02:19','2023-07-02 05:02:19');
/*!40000 ALTER TABLE `re_facilities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_facilities_distances`
--

DROP TABLE IF EXISTS `re_facilities_distances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_facilities_distances` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `facility_id` int unsigned NOT NULL,
  `reference_id` int unsigned NOT NULL,
  `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `distance` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=421 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_facilities_distances`
--

LOCK TABLES `re_facilities_distances` WRITE;
/*!40000 ALTER TABLE `re_facilities_distances` DISABLE KEYS */;
INSERT INTO `re_facilities_distances` VALUES (351,3,1,'Botble\\RealEstate\\Models\\Property','9km'),(352,9,1,'Botble\\RealEstate\\Models\\Property','5km'),(353,3,2,'Botble\\RealEstate\\Models\\Property','13km'),(354,10,2,'Botble\\RealEstate\\Models\\Property','8km'),(355,2,3,'Botble\\RealEstate\\Models\\Property','1km'),(356,7,3,'Botble\\RealEstate\\Models\\Property','4km'),(357,3,4,'Botble\\RealEstate\\Models\\Property','9km'),(358,7,4,'Botble\\RealEstate\\Models\\Property','9km'),(359,1,5,'Botble\\RealEstate\\Models\\Property','8km'),(360,9,5,'Botble\\RealEstate\\Models\\Property','20km'),(361,2,6,'Botble\\RealEstate\\Models\\Property','20km'),(362,8,6,'Botble\\RealEstate\\Models\\Property','17km'),(363,2,7,'Botble\\RealEstate\\Models\\Property','15km'),(364,10,7,'Botble\\RealEstate\\Models\\Property','19km'),(365,2,8,'Botble\\RealEstate\\Models\\Property','10km'),(366,8,8,'Botble\\RealEstate\\Models\\Property','16km'),(367,5,9,'Botble\\RealEstate\\Models\\Property','17km'),(368,12,9,'Botble\\RealEstate\\Models\\Property','16km'),(369,4,10,'Botble\\RealEstate\\Models\\Property','13km'),(370,6,10,'Botble\\RealEstate\\Models\\Property','7km'),(371,5,11,'Botble\\RealEstate\\Models\\Property','12km'),(372,9,11,'Botble\\RealEstate\\Models\\Property','1km'),(373,3,12,'Botble\\RealEstate\\Models\\Property','14km'),(374,6,12,'Botble\\RealEstate\\Models\\Property','4km'),(375,3,13,'Botble\\RealEstate\\Models\\Property','20km'),(376,9,13,'Botble\\RealEstate\\Models\\Property','12km'),(377,5,14,'Botble\\RealEstate\\Models\\Property','12km'),(378,10,14,'Botble\\RealEstate\\Models\\Property','14km'),(379,2,15,'Botble\\RealEstate\\Models\\Property','8km'),(380,7,15,'Botble\\RealEstate\\Models\\Property','16km'),(381,1,16,'Botble\\RealEstate\\Models\\Property','18km'),(382,6,16,'Botble\\RealEstate\\Models\\Property','18km'),(383,3,17,'Botble\\RealEstate\\Models\\Property','1km'),(384,12,17,'Botble\\RealEstate\\Models\\Property','4km'),(385,3,1,'Botble\\RealEstate\\Models\\Project','13'),(386,6,1,'Botble\\RealEstate\\Models\\Project','12'),(387,9,1,'Botble\\RealEstate\\Models\\Project','2'),(388,12,1,'Botble\\RealEstate\\Models\\Project','20'),(389,3,2,'Botble\\RealEstate\\Models\\Project','7'),(390,6,2,'Botble\\RealEstate\\Models\\Project','1'),(391,7,2,'Botble\\RealEstate\\Models\\Project','10'),(392,12,2,'Botble\\RealEstate\\Models\\Project','18'),(393,3,3,'Botble\\RealEstate\\Models\\Project','5'),(394,6,3,'Botble\\RealEstate\\Models\\Project','6'),(395,8,3,'Botble\\RealEstate\\Models\\Project','2'),(396,12,3,'Botble\\RealEstate\\Models\\Project','1'),(397,1,4,'Botble\\RealEstate\\Models\\Project','6'),(398,6,4,'Botble\\RealEstate\\Models\\Project','7'),(399,7,4,'Botble\\RealEstate\\Models\\Project','2'),(400,10,4,'Botble\\RealEstate\\Models\\Project','13'),(401,3,5,'Botble\\RealEstate\\Models\\Project','4'),(402,5,5,'Botble\\RealEstate\\Models\\Project','6'),(403,9,5,'Botble\\RealEstate\\Models\\Project','1'),(404,11,5,'Botble\\RealEstate\\Models\\Project','15'),(405,3,6,'Botble\\RealEstate\\Models\\Project','8'),(406,5,6,'Botble\\RealEstate\\Models\\Project','19'),(407,7,6,'Botble\\RealEstate\\Models\\Project','19'),(408,11,6,'Botble\\RealEstate\\Models\\Project','13'),(409,2,7,'Botble\\RealEstate\\Models\\Project','18'),(410,4,7,'Botble\\RealEstate\\Models\\Project','14'),(411,8,7,'Botble\\RealEstate\\Models\\Project','1'),(412,12,7,'Botble\\RealEstate\\Models\\Project','17'),(413,3,8,'Botble\\RealEstate\\Models\\Project','2'),(414,4,8,'Botble\\RealEstate\\Models\\Project','5'),(415,8,8,'Botble\\RealEstate\\Models\\Project','12'),(416,12,8,'Botble\\RealEstate\\Models\\Project','15'),(417,3,9,'Botble\\RealEstate\\Models\\Project','15'),(418,6,9,'Botble\\RealEstate\\Models\\Project','9'),(419,9,9,'Botble\\RealEstate\\Models\\Project','16'),(420,11,9,'Botble\\RealEstate\\Models\\Project','10');
/*!40000 ALTER TABLE `re_facilities_distances` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_facilities_translations`
--

DROP TABLE IF EXISTS `re_facilities_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_facilities_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_facilities_id` int NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_facilities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_facilities_translations`
--

LOCK TABLES `re_facilities_translations` WRITE;
/*!40000 ALTER TABLE `re_facilities_translations` DISABLE KEYS */;
INSERT INTO `re_facilities_translations` VALUES ('vi',1,'Bệnh viện'),('vi',2,'Siêu thị'),('vi',3,'Trường học'),('vi',4,'Trung tâm giải trí'),('vi',5,'Nhà thuốc'),('vi',6,'Sân bay'),('vi',7,'Ga tàu'),('vi',8,'Trạm xe buýt'),('vi',9,'Bãi biển'),('vi',10,'Trung tâm mua sắm'),('vi',11,'Ngân hàng');
/*!40000 ALTER TABLE `re_facilities_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_features`
--

DROP TABLE IF EXISTS `re_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_features` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_features`
--

LOCK TABLES `re_features` WRITE;
/*!40000 ALTER TABLE `re_features` DISABLE KEYS */;
INSERT INTO `re_features` VALUES (1,'Wifi',NULL,'published'),(2,'Parking',NULL,'published'),(3,'Swimming pool',NULL,'published'),(4,'Balcony',NULL,'published'),(5,'Garden',NULL,'published'),(6,'Security',NULL,'published'),(7,'Fitness center',NULL,'published'),(8,'Air Conditioning',NULL,'published'),(9,'Central Heating  ',NULL,'published'),(10,'Laundry Room',NULL,'published'),(11,'Pets Allow',NULL,'published'),(12,'Spa & Massage',NULL,'published');
/*!40000 ALTER TABLE `re_features` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_features_translations`
--

DROP TABLE IF EXISTS `re_features_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_features_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_features_id` int NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_features_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_features_translations`
--

LOCK TABLES `re_features_translations` WRITE;
/*!40000 ALTER TABLE `re_features_translations` DISABLE KEYS */;
INSERT INTO `re_features_translations` VALUES ('vi',1,'Wifi'),('vi',2,'Bãi đậu xe'),('vi',3,'Hồ bơi'),('vi',4,'Ban công'),('vi',5,'Sân vườn'),('vi',6,'An ninh'),('vi',7,'Trung tâm thể dục'),('vi',8,'Điều hoà nhiệt độ'),('vi',9,'Hệ thống sưởi trung tâm'),('vi',10,'Phòng giặt ủi'),('vi',11,'Cho phép nuôi thú'),('vi',12,'Spa & Massage');
/*!40000 ALTER TABLE `re_features_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_investors`
--

DROP TABLE IF EXISTS `re_investors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_investors` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `avatar_id` int unsigned DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_investors`
--

LOCK TABLES `re_investors` WRITE;
/*!40000 ALTER TABLE `re_investors` DISABLE KEYS */;
INSERT INTO `re_investors` VALUES (1,'Rosenbaum Group',690,'Why, I haven\'t been invited yet.\' \'You\'ll see me there,\' said the March Hare. \'I didn\'t mean it!\' pleaded poor Alice. \'But you\'re so easily offended, you know!\' The Mouse gave a little three-legged.','published','2023-07-02 05:02:48','2023-07-02 05:02:48'),(2,'Parker, Morar and Marvin',691,'Alice ventured to remark. \'Tut, tut, child!\' said the King said, with a round face, and large eyes full of soup. \'There\'s certainly too much frightened to say anything. \'Why,\' said the Duchess; \'and.','published','2023-07-02 05:02:48','2023-07-02 05:02:48'),(3,'Rohan LLC',692,'Owl, as a partner!\' cried the Mock Turtle to sing you a present of everything I\'ve said as yet.\' \'A cheap sort of chance of getting up and said, without even looking round. \'I\'ll fetch the.','published','2023-07-02 05:02:48','2023-07-02 05:02:48'),(4,'Zboncak, Stehr and Hudson',693,'Pepper For a minute or two, which gave the Pigeon in a helpless sort of present!\' thought Alice. One of the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said the.','published','2023-07-02 05:02:48','2023-07-02 05:02:48'),(5,'Miller-Herzog',694,'Queen: so she sat still just as the March Hare. Alice sighed wearily. \'I think you could draw treacle out of the Lobster; I heard him declare, \"You have baked me too brown, I must be Mabel after.','published','2023-07-02 05:02:48','2023-07-02 05:02:48');
/*!40000 ALTER TABLE `re_investors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_investors_translations`
--

DROP TABLE IF EXISTS `re_investors_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_investors_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_investors_id` int NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_investors_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_investors_translations`
--

LOCK TABLES `re_investors_translations` WRITE;
/*!40000 ALTER TABLE `re_investors_translations` DISABLE KEYS */;
INSERT INTO `re_investors_translations` VALUES ('vi',1,'Rosenbaum Group','Why, I haven\'t been invited yet.\' \'You\'ll see me there,\' said the March Hare. \'I didn\'t mean it!\' pleaded poor Alice. \'But you\'re so easily offended, you know!\' The Mouse gave a little three-legged.'),('vi',2,'Parker, Morar and Marvin','Alice ventured to remark. \'Tut, tut, child!\' said the King said, with a round face, and large eyes full of soup. \'There\'s certainly too much frightened to say anything. \'Why,\' said the Duchess; \'and.'),('vi',3,'Rohan LLC','Owl, as a partner!\' cried the Mock Turtle to sing you a present of everything I\'ve said as yet.\' \'A cheap sort of chance of getting up and said, without even looking round. \'I\'ll fetch the.'),('vi',4,'Zboncak, Stehr and Hudson','Pepper For a minute or two, which gave the Pigeon in a helpless sort of present!\' thought Alice. One of the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said the.'),('vi',5,'Miller-Herzog','Queen: so she sat still just as the March Hare. Alice sighed wearily. \'I think you could draw treacle out of the Lobster; I heard him declare, \"You have baked me too brown, I must be Mabel after.');
/*!40000 ALTER TABLE `re_investors_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_packages`
--

DROP TABLE IF EXISTS `re_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_packages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` double(15,2) unsigned NOT NULL,
  `currency_id` int unsigned NOT NULL,
  `percent_save` int unsigned NOT NULL DEFAULT '0',
  `number_of_listings` int unsigned NOT NULL,
  `account_limit` int unsigned DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `features` text COLLATE utf8mb4_unicode_ci,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_packages`
--

LOCK TABLES `re_packages` WRITE;
/*!40000 ALTER TABLE `re_packages` DISABLE KEYS */;
INSERT INTO `re_packages` VALUES (1,'Free First Post',0.00,1,0,1,1,0,0,'[[{\"key\":\"text\",\"value\":\"Buy credits to post your listing(s)\"}],[{\"key\":\"text\",\"value\":\"60-Day Job Postings\"}],[{\"key\":\"text\",\"value\":\"No Expiration on Credits.\"}],[{\"key\":\"text\",\"value\":\"Specialist Assistance\"}],[{\"key\":\"text\",\"value\":\"Get More Eyes\"}]]','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(2,'Single Post',250.00,1,0,1,NULL,0,1,'[[{\"key\":\"text\",\"value\":\"Buy credits to post your listing(s)\"}],[{\"key\":\"text\",\"value\":\"60-Day Job Postings\"}],[{\"key\":\"text\",\"value\":\"No Expiration on Credits.\"}],[{\"key\":\"text\",\"value\":\"Specialist Assistance\"}],[{\"key\":\"text\",\"value\":\"Get More Eyes\"}]]','published','2023-07-02 05:02:19','2023-07-02 05:02:19'),(3,'5 Posts',1000.00,1,20,5,NULL,0,0,'[[{\"key\":\"text\",\"value\":\"Buy credits to post your listing(s)\"}],[{\"key\":\"text\",\"value\":\"60-Day Job Postings\"}],[{\"key\":\"text\",\"value\":\"No Expiration on Credits.\"}],[{\"key\":\"text\",\"value\":\"Specialist Assistance\"}],[{\"key\":\"text\",\"value\":\"Get More Eyes\"}]]','published','2023-07-02 05:02:19','2023-07-02 05:02:19');
/*!40000 ALTER TABLE `re_packages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_packages_translations`
--

DROP TABLE IF EXISTS `re_packages_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_packages_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_packages_id` int NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `features` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`lang_code`,`re_packages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_packages_translations`
--

LOCK TABLES `re_packages_translations` WRITE;
/*!40000 ALTER TABLE `re_packages_translations` DISABLE KEYS */;
INSERT INTO `re_packages_translations` VALUES ('vi',1,'Miễn phí','[[{\"key\":\"text\",\"value\":\"Mua tín dụng để đăng tin của bạn\"}],[{\"key\":\"text\",\"value\":\"Trong 60 ngày\"}],[{\"key\":\"text\",\"value\":\"Không hết hạn đối với các khoản tín dụng.\"}],[{\"key\":\"text\",\"value\":\"Hỗ trợ của Chuyên gia\"}],[{\"key\":\"text\",\"value\":\"Có thêm đôi mắt\"}]]'),('vi',2,'Một post','[[{\"key\":\"text\",\"value\":\"Mua tín dụng để đăng tin của bạn\"}],[{\"key\":\"text\",\"value\":\"Trong 60 ngày\"}],[{\"key\":\"text\",\"value\":\"Không hết hạn đối với các khoản tín dụng.\"}],[{\"key\":\"text\",\"value\":\"Hỗ trợ của Chuyên gia\"}],[{\"key\":\"text\",\"value\":\"Có thêm đôi mắt\"}]]'),('vi',3,'5 posts','[[{\"key\":\"text\",\"value\":\"Mua tín dụng để đăng tin của bạn\"}],[{\"key\":\"text\",\"value\":\"Trong 60 ngày\"}],[{\"key\":\"text\",\"value\":\"Không hết hạn đối với các khoản tín dụng.\"}],[{\"key\":\"text\",\"value\":\"Hỗ trợ của Chuyên gia\"}],[{\"key\":\"text\",\"value\":\"Có thêm đôi mắt\"}]]');
/*!40000 ALTER TABLE `re_packages_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_project_categories`
--

DROP TABLE IF EXISTS `re_project_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_project_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int unsigned NOT NULL,
  `category_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_project_categories`
--

LOCK TABLES `re_project_categories` WRITE;
/*!40000 ALTER TABLE `re_project_categories` DISABLE KEYS */;
INSERT INTO `re_project_categories` VALUES (37,5,4),(46,6,5),(49,9,4),(50,1,4),(51,2,5),(53,3,5),(54,4,3),(58,7,3),(61,9,2),(62,1,2),(63,2,3),(64,3,3),(65,4,4),(66,5,3),(67,6,1),(68,7,5),(69,8,3),(70,8,4);
/*!40000 ALTER TABLE `re_project_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_project_features`
--

DROP TABLE IF EXISTS `re_project_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_project_features` (
  `project_id` int unsigned NOT NULL,
  `feature_id` int unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_project_features`
--

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

--
-- Table structure for table `re_projects`
--

DROP TABLE IF EXISTS `re_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_projects` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `investor_id` int unsigned NOT NULL,
  `number_block` int DEFAULT NULL,
  `number_floor` smallint DEFAULT NULL,
  `number_flat` smallint DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `price_from` decimal(15,0) DEFAULT NULL,
  `price_to` decimal(15,0) DEFAULT NULL,
  `currency_id` int unsigned DEFAULT NULL,
  `city_id` int unsigned DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `state_id` int unsigned DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'selling',
  `latitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `longitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `views` int unsigned NOT NULL DEFAULT '0',
  `author_id` int DEFAULT NULL,
  `author_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'User',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_projects`
--

LOCK TABLES `re_projects` WRITE;
/*!40000 ALTER TABLE `re_projects` DISABLE KEYS */;
INSERT INTO `re_projects` VALUES (1,'Villa Alaya','Similique provident nobis sint commodi nobis explicabo atque. Voluptatem praesentium ullam numquam architecto id dicta. Sed rerum repellendus placeat aliquam.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>MUST be more to come, so she sat on, with closed eyes, and feebly stretching out one paw, trying to put down yet, before the trial\'s over!\' thought Alice. \'I mean what I get\" is the reason is--\' here the Mock Turtle a little girl she\'ll think me at home! Why, I haven\'t had a wink of sleep these three little sisters--they were learning to draw, you know--\' \'What did they live at the Hatter, \'I cut some more tea,\' the March Hare. \'Sixteenth,\' added the Dormouse, without considering at all comfortable, and it was YOUR table,\' said Alice; \'but when you throw them, and just as if his heart would break. She pitied him deeply. \'What is his sorrow?\' she asked the Gryphon, and the beak-- Pray how did you manage to do so. \'Shall we try another figure of the birds hurried off to the conclusion that it might appear to others that what you mean,\' said Alice. \'Why, there they lay on the floor, as it left no mark on the shingle--will you come and join the dance?\"\' \'Thank you, it\'s a set of verses.\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/2.jpg\"></p><p>A little bright-eyed terrier, you know, with oh, such long ringlets, and mine doesn\'t go in at the window.\' \'THAT you won\'t\' thought Alice, \'they\'re sure to do THAT in a deep, hollow tone: \'sit down, both of you, and don\'t speak a word till I\'ve finished.\' So they went up to her feet, they seemed to quiver all over with William the Conqueror.\' (For, with all her life. Indeed, she had read about them in books, and she drew herself up closer to Alice\'s side as she could. The next thing was.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/9.jpg\"></p><p>Cheshire Cat, she was beginning to get in at the mushroom for a minute, nurse! But I\'ve got to?\' (Alice had been would have this cat removed!\' The Queen smiled and passed on. \'Who ARE you doing out here? Run home this moment, I tell you!\' But she did not appear, and after a pause: \'the reason is, that I\'m perfectly sure I don\'t care which happens!\' She ate a little bottle that stood near. The three soldiers wandered about in the face. \'I\'ll put a stop to this,\' she said to the door, and knocked. \'There\'s no sort of knot, and then the different branches of Arithmetic--Ambition, Distraction, Uglification, and Derision.\' \'I never saw one, or heard of uglifying!\' it exclaimed. \'You know what to do, so Alice soon began talking again. \'Dinah\'ll miss me very much pleased at having found out a race-course, in a trembling voice:-- \'I passed by his garden.\"\' Alice did not venture to ask help of any one; so, when the race was over. Alice was beginning to see it written down: but I grow at a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/16.jpg\"></p><p>Queen, and Alice heard the Rabbit just under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you were all ornamented with hearts. Next came an angry voice--the Rabbit\'s--\'Pat! Pat! Where are you?\' said Alice, rather doubtfully, as she could not even get her head to feel very uneasy: to be found: all she could for sneezing. There was nothing on it but tea. \'I don\'t know the way down one side and then they wouldn\'t be so kind,\' Alice replied, so eagerly that the way to change them--\' when she next peeped out the proper way of keeping up the fan she was up to Alice, and tried to curtsey as she swam about, trying to put it to speak again. In a little different. But if I\'m not myself, you see.\' \'I don\'t see any wine,\' she remarked. \'It tells the day of the game, the Queen never left off staring at the door-- Pray, what is the driest thing I know. Silence all round, if you were down here till I\'m somebody else\"--but, oh dear!\' cried Alice in a game of play with a knife, it usually.</p>','[\"projects\\/15.jpg\",\"projects\\/4.jpg\",\"projects\\/13.jpg\",\"projects\\/3.jpg\",\"projects\\/6.jpg\",\"projects\\/20.jpg\"]','536 Briana Row\nZettahaven, MO 94411',3,3,5,108,0,15382,92190,NULL,2,NULL,NULL,'selling','38.1343013','-85.6498512',1034,7,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:02','2023-07-02 05:03:02'),(2,'Ani Private Resorts','Repellat fugiat consequatur blanditiis id illo. Dolor voluptatum nemo eveniet quo. Et ex sed aliquam quaerat deserunt illum illum. Similique dolorum minus in magni velit.','<p>Rabbit\'s voice along--\'Catch him, you by the way, and nothing seems to be true): If she should meet the real Mary Ann, and be turned out of breath, and said anxiously to herself, for she had succeeded in getting its body tucked away, comfortably enough, under her arm, with its mouth again, and we won\'t talk about trouble!\' said the Hatter; \'so I can\'t see you?\' She was moving them about as much use in crying like that!\' But she waited patiently. \'Once,\' said the Mock Turtle angrily: \'really you are very dull!\' \'You ought to tell me your history, she do.\' \'I\'ll tell it her,\' said the Mouse, who was gently brushing away some dead leaves that had fluttered down from the sky! Ugh, Serpent!\' \'But I\'m not Ada,\' she said, as politely as she was about a thousand times as large as himself, and this was of very little use without my shoulders. Oh, how I wish you wouldn\'t keep appearing and vanishing so suddenly: you make one repeat lessons!\' thought Alice; but she knew she had never had to run.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/3.jpg\"></p><p>Hatter. \'I deny it!\' said the Gryphon. \'How the creatures argue. It\'s enough to try the thing Mock Turtle persisted. \'How COULD he turn them out of sight; and an Eaglet, and several other curious creatures. Alice led the way, was the fan and gloves--that is, if I shall never get to the Dormouse, who seemed too much of it in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up eagerly, half hoping that the hedgehog a blow with its tongue hanging out of the court. \'What do you know.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/9.jpg\"></p><p>I THINK,\' said Alice. \'I wonder what Latitude was, or Longitude either, but thought they were nowhere to be treated with respect. \'Cheshire Puss,\' she began, rather timidly, as she went on, without attending to her, And mentioned me to introduce it.\' \'I don\'t think they play at all for any lesson-books!\' And so it was impossible to say whether the pleasure of making a daisy-chain would be quite absurd for her neck kept getting entangled among the distant green leaves. As there seemed to be listening, so she waited. The Gryphon lifted up both its paws in surprise. \'What! Never heard of one,\' said Alice, a little pattering of feet on the end of the others took the least idea what Latitude was, or Longitude either, but thought they were playing the Queen of Hearts were seated on their slates, and she tried to open her mouth; but she knew the meaning of half an hour or so there were no arches left, and all that,\' he said to herself, \'if one only knew the name \'Alice!\' CHAPTER XII.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/14.jpg\"></p><p>This time there could be beheaded, and that in some alarm. This time Alice waited a little, \'From the Queen. \'Can you play croquet with the next moment a shower of little Alice herself, and shouted out, \'You\'d better not do that again!\' which produced another dead silence. Alice was so full of tears, but said nothing. \'When we were little,\' the Mock Turtle\'s heavy sobs. Lastly, she pictured to herself \'Now I can guess that,\' she added aloud. \'Do you know why it\'s called a whiting?\' \'I never saw one, or heard of \"Uglification,\"\' Alice ventured to remark. \'Tut, tut, child!\' said the Rabbit in a few minutes, and began to repeat it, but her voice close to her, though, as they came nearer, Alice could only hear whispers now and then, \'we went to him,\' the Mock Turtle in the air, and came flying down upon her: she gave her one, they gave him two, You gave us three or more; They all made of solid glass; there was enough of me left to make out what she was considering in her hand, watching.</p>','[\"projects\\/19.jpg\",\"projects\\/9.jpg\",\"projects\\/12.jpg\",\"projects\\/4.jpg\",\"projects\\/7.jpg\",\"projects\\/12.jpg\"]','4332 Bogisich Keys Suite 758\nSouth Sam, NJ 53395',1,4,5,188,0,18615,80914,NULL,1,NULL,NULL,'selling','38.263793','-85.700243',8641,5,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:02','2023-07-02 05:03:02'),(3,'Casa Tres Soles','Quia mollitia dolore sunt ipsa. Quis tempore perspiciatis omnis autem reprehenderit eum quia. Repellendus repellat illo similique officia voluptas. Amet deserunt debitis repellat sed consequatur qui.','<p>Dormouse sulkily remarked, \'If you didn\'t sign it,\' said the Pigeon had finished. \'As if it had struck her foot! She was walking hand in her own courage. \'It\'s no business of MINE.\' The Queen smiled and passed on. \'Who ARE you talking to?\' said the Hatter. \'He won\'t stand beating. Now, if you drink much from a Caterpillar The Caterpillar and Alice was more hopeless than ever: she sat down in a low curtain she had caught the flamingo and brought it back, the fight was over, and she felt a very little! Besides, SHE\'S she, and I\'m sure _I_ shan\'t be beheaded!\' said Alice, \'a great girl like you,\' (she might well say this), \'to go on till you come to the Knave was standing before them, in chains, with a table set out under a tree in the same tone, exactly as if he doesn\'t begin.\' But she went on, \'and most things twinkled after that--only the March Hare will be When they take us up and beg for its dinner, and all would change to dull reality--the grass would be so stingy about it, even.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/1.jpg\"></p><p>OURS they had at the other side will make you grow taller, and the bright eager eyes were getting so far off). \'Oh, my poor hands, how is it directed to?\' said the King; and the King put on his spectacles. \'Where shall I begin, please your Majesty,\' said the King, \'that only makes the world go round!\"\' \'Somebody said,\' Alice whispered, \'that it\'s done by everybody minding their own business!\' \'Ah, well! It means much the most confusing thing I ask! It\'s always six o\'clock now.\' A bright idea.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/11.jpg\"></p><p>And yet you incessantly stand on their throne when they liked, and left foot, so as to go among mad people,\' Alice remarked. \'Right, as usual,\' said the youth, \'as I mentioned before, And have grown most uncommonly fat; Yet you finished the first to speak. \'What size do you want to get out of breath, and said to herself, \'if one only knew how to spell \'stupid,\' and that he had taken his watch out of it, and fortunately was just possible it had gone. \'Well! I\'ve often seen them at dinn--\' she checked herself hastily, and said \'What else had you to death.\"\' \'You are old,\' said the Gryphon: and it sat down at her for a baby: altogether Alice did not at all know whether it would be wasting our breath.\" \"I\'ll be judge, I\'ll be jury,\" Said cunning old Fury: \"I\'ll try the patience of an oyster!\' \'I wish I hadn\'t to bring tears into her face, with such a noise inside, no one to listen to her. The Cat only grinned a little of her going, though she looked back once or twice, half hoping that.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/14.jpg\"></p><p>I wonder what you\'re doing!\' cried Alice, jumping up in her face, with such a nice soft thing to eat or drink anything; so I\'ll just see what I could say if I can kick a little!\' She drew her foot as far down the chimney?--Nay, I shan\'t! YOU do it!--That I won\'t, then!--Bill\'s to go on with the game,\' the Queen had never been so much contradicted in her hand, watching the setting sun, and thinking of little birds and animals that had slipped in like herself. \'Would it be of any use, now,\' thought poor Alice, \'it would be like, but it was labelled \'ORANGE MARMALADE\', but to get out at the Queen, \'and he shall tell you how the Dodo solemnly, rising to its children, \'Come away, my dears! It\'s high time to hear the rattle of the court, by the officers of the officers: but the wise little Alice herself, and began staring at the flowers and the moment she appeared on the stairs. Alice knew it was a table in the other. \'I beg your pardon!\' cried Alice in a court of justice before, but she.</p>','[\"projects\\/19.jpg\",\"projects\\/5.jpg\",\"projects\\/2.jpg\",\"projects\\/4.jpg\",\"projects\\/1.jpg\",\"projects\\/19.jpg\"]','20885 Wava Knolls\nChestermouth, HI 29214-6580',4,6,5,101,0,19419,48965,NULL,1,NULL,NULL,'selling','38.142768','-85.7717132',7558,5,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:02','2023-07-02 05:03:02'),(4,'La Bergerie','Eum et alias tenetur voluptatem quasi cupiditate neque. Dolores voluptates nisi enim quia. Expedita labore fugit sint blanditiis.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Alice crouched down among the bright flower-beds and the whole party at once set to work throwing everything within her reach at the Queen, and Alice, were in custody and under sentence of execution.\' \'What for?\' said the Caterpillar. \'Well, I can\'t take LESS,\' said the Lory positively refused to tell me who YOU are, first.\' \'Why?\' said the Gryphon. \'I\'ve forgotten the words.\' So they sat down, and was just in time to avoid shrinking away altogether. \'That WAS a narrow escape!\' said Alice, very loudly and decidedly, and there she saw maps and pictures hung upon pegs. She took down a large arm-chair at one end to the Queen, who was reading the list of singers. \'You may not have lived much under the circumstances. There was certainly English. \'I don\'t like them!\' When the pie was all finished, the Owl, as a boon, Was kindly permitted to pocket the spoon: While the Duchess replied, in a low voice, \'Why the fact is, you ARE a simpleton.\' Alice did not like to have no idea what you\'re.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/2.jpg\"></p><p>Alice had never had to leave the room, when her eye fell upon a little glass box that was linked into hers began to tremble. Alice looked down at her feet as the whole thing, and she put it. She stretched herself up closer to Alice\'s side as she passed; it was certainly not becoming. \'And that\'s the jury-box,\' thought Alice, \'to pretend to be a person of authority over Alice. \'Stand up and walking away. \'You insult me by talking such nonsense!\' \'I didn\'t mean it!\' pleaded poor Alice. \'But.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/8.jpg\"></p><p>Mock Turtle: \'why, if a dish or kettle had been all the rest, Between yourself and me.\' \'That\'s the judge,\' she said these words her foot as far as they used to say it over) \'--yes, that\'s about the crumbs,\' said the Duchess; \'and most of \'em do.\' \'I don\'t see how he can thoroughly enjoy The pepper when he sneezes; For he can EVEN finish, if he would deny it too: but the tops of the legs of the Lizard\'s slate-pencil, and the second verse of the March Hare. \'I didn\'t write it, and on it except a little way off, and had to ask the question?\' said the King. The White Rabbit put on your head-- Do you think you\'re changed, do you?\' \'I\'m afraid I can\'t show it you myself,\' the Mock Turtle to sing \"Twinkle, twinkle, little bat! How I wonder if I chose,\' the Duchess asked, with another dig of her voice, and the little door, so she sat down and saying to herself as she could, for the accident of the other side of the window, she suddenly spread out her hand on the spot.\' This did not like the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/18.jpg\"></p><p>COULD grin.\' \'They all can,\' said the Gryphon. \'We can do no more, whatever happens. What WILL become of me? They\'re dreadfully fond of beheading people here; the great question is, what?\' The great question is, what did the Dormouse began in a hoarse growl, \'the world would go through,\' thought poor Alice, who was gently brushing away some dead leaves that lay far below her. \'What CAN all that green stuff be?\' said Alice. \'Come on, then!\' roared the Queen, turning purple. \'I won\'t!\' said Alice. \'Nothing WHATEVER?\' persisted the King. On this the White Rabbit, \'but it sounds uncommon nonsense.\' Alice said with some curiosity. \'What a funny watch!\' she remarked. \'It tells the day of the others all joined in chorus, \'Yes, please do!\' but the cook had disappeared. \'Never mind!\' said the Hatter went on, taking first one side and then said \'The fourth.\' \'Two days wrong!\' sighed the Hatter. \'He won\'t stand beating. Now, if you wouldn\'t keep appearing and vanishing so suddenly: you make one.</p>','[\"projects\\/5.jpg\",\"projects\\/2.jpg\",\"projects\\/18.jpg\",\"projects\\/5.jpg\",\"projects\\/2.jpg\",\"projects\\/20.jpg\"]','466 Stracke Turnpike Suite 969\nEast Pierce, UT 77672-1226',3,3,5,145,0,6401,96946,NULL,3,NULL,NULL,'selling','44.771005','-72.048664',2443,6,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:03','2023-07-02 05:03:03'),(5,'Hollywood Mansion','Et animi in quis optio sit. Officia placeat laudantium fugiat rerum fuga in. Totam unde ratione molestias. Iusto consequatur rem est expedita repellat.','<p>ONE with such sudden violence that Alice could only hear whispers now and then said, \'It WAS a narrow escape!\' said Alice, very much at first, but, after watching it a little of the Mock Turtle a little girl or a worm. The question is, what?\' The great question certainly was, what? Alice looked down at her for a moment to be in a dreamy sort of chance of getting her hands up to the jury, of course--\"I GAVE HER ONE, THEY GAVE HIM TWO--\" why, that must be collected at once crowded round it, panting, and asking, \'But who has won?\' This question the Dodo in an undertone, \'important--unimportant--unimportant--important--\' as if he would not stoop? Soup of the gloves, and she could not make out what she was walking hand in her hands, wondering if anything would EVER happen in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up and throw us, with the other: he came trotting along in a pleased tone. \'Pray don\'t trouble yourself to say than his first speech. \'You should learn not.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/2.jpg\"></p><p>King. \'It began with the lobsters and the sound of many footsteps, and Alice was beginning to end,\' said the Hatter, \'when the Queen was close behind her, listening: so she began thinking over all she could guess, she was near enough to drive one crazy!\' The Footman seemed to be a very grave voice, \'until all the rest of it now in sight, and no more to be ashamed of yourself,\' said Alice, and looking anxiously about her. \'Oh, do let me help to undo it!\' \'I shall sit here,\' the Footman.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/12.jpg\"></p><p>Alice. \'I don\'t think--\' \'Then you shouldn\'t talk,\' said the Dormouse began in a ring, and begged the Mouse with an air of great dismay, and began to feel which way she put it. She went in without knocking, and hurried upstairs, in great disgust, and walked off; the Dormouse began in a great hurry, muttering to itself \'Then I\'ll go round and get ready to agree to everything that Alice quite jumped; but she saw maps and pictures hung upon pegs. She took down a very melancholy voice. \'Repeat, \"YOU ARE OLD, FATHER WILLIAM,\' to the door, and knocked. \'There\'s no such thing!\' Alice was beginning to see how he did it,) he did with the name of nearly everything there. \'That\'s the most confusing thing I ask! It\'s always six o\'clock now.\' A bright idea came into her face, and large eyes full of the Rabbit\'s voice; and the two sides of it; so, after hunting all about it!\' and he says it\'s so useful, it\'s worth a hundred pounds! He says it kills all the arches are gone from this morning,\' said.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/15.jpg\"></p><p>DON\'T know,\' said Alice a good way off, panting, with its wings. \'Serpent!\' screamed the Gryphon. \'How the creatures argue. It\'s enough to get dry very soon. \'Ahem!\' said the Cat, \'a dog\'s not mad. You grant that?\' \'I suppose so,\' said the King, the Queen, who was trembling down to nine inches high. CHAPTER VI. Pig and Pepper For a minute or two. \'They couldn\'t have done that, you know,\' said the Mouse to tell you--all I know is, it would be like, but it all is! I\'ll try and say \"How doth the little--\"\' and she tried to beat them off, and she jumped up in her French lesson-book. The Mouse gave a look askance-- Said he thanked the whiting kindly, but he now hastily began again, using the ink, that was trickling down his brush, and had to double themselves up and down in a twinkling! Half-past one, time for dinner!\' (\'I only wish they COULD! I\'m sure she\'s the best cat in the pool, and the Hatter went on, \'I must be Mabel after all, and I don\'t want to stay with it as well go in at the.</p>','[\"projects\\/2.jpg\",\"projects\\/4.jpg\",\"projects\\/20.jpg\",\"projects\\/19.jpg\",\"projects\\/13.jpg\",\"projects\\/5.jpg\"]','916 Jerde Camp Apt. 503\nEast Deontaeville, ME 73733',5,4,3,148,0,792,82729,NULL,4,NULL,NULL,'selling','38.1286407','-85.8678042',3838,7,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:03','2023-07-02 05:03:03'),(6,'Crystal Springs','Et adipisci a tenetur dolorem. Debitis enim blanditiis rem voluptatem fuga. Sed inventore saepe cupiditate. Cum beatae qui voluptatem quis molestias reiciendis voluptatum.','<p>I beg your pardon!\' said the King: \'however, it may kiss my hand if it likes.\' \'I\'d rather finish my tea,\' said the King, who had got its head to keep back the wandering hair that curled all over with fright. \'Oh, I know!\' exclaimed Alice, who felt ready to agree to everything that Alice said; \'there\'s a large flower-pot that stood near. The three soldiers wandered about for them, but they were filled with tears running down his cheeks, he went on, \'What\'s your name, child?\' \'My name is Alice, so please your Majesty!\' the Duchess and the three gardeners, oblong and flat, with their fur clinging close to her: first, because the chimneys were shaped like ears and whiskers, how late it\'s getting!\' She was a most extraordinary noise going on between the executioner, the King, \'or I\'ll have you executed, whether you\'re nervous or not.\' \'I\'m a poor man,\' the Hatter were having tea at it: a Dormouse was sitting on a little nervous about it just missed her. Alice caught the baby at her for a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/3.jpg\"></p><p>Duchess; \'and that\'s the queerest thing about it.\' \'She\'s in prison,\' the Queen jumped up in a voice outside, and stopped to listen. \'Mary Ann! Mary Ann!\' said the King. The next thing is, to get an opportunity of taking it away. She did not like to see the Hatter with a sudden leap out of their hearing her; and when she found she had peeped into the court, she said to herself, \'I wonder if I chose,\' the Duchess said in a deep sigh, \'I was a most extraordinary noise going on rather better.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/12.jpg\"></p><p>Why, she\'ll eat a bat?\' when suddenly, thump! thump! down she came upon a heap of sticks and dry leaves, and the little golden key was lying under the sea,\' the Gryphon hastily. \'Go on with the edge with each hand. \'And now which is which?\' she said to herself; \'his eyes are so VERY tired of being such a tiny golden key, and Alice\'s first thought was that it signifies much,\' she said to herself, as usual. I wonder what they\'ll do next! If they had any sense, they\'d take the place where it had VERY long claws and a crash of broken glass, from which she had peeped into the court, by the Hatter, and, just as she tucked it away under her arm, and timidly said \'Consider, my dear: she is only a child!\' The Queen turned crimson with fury, and, after glaring at her feet in a low, weak voice. \'Now, I give it up,\' Alice replied: \'what\'s the answer?\' \'I haven\'t opened it yet,\' said Alice; \'I can\'t remember things as I used--and I don\'t care which happens!\' She ate a little worried. \'Just about.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/13.jpg\"></p><p>The Gryphon lifted up both its paws in surprise. \'What! Never heard of \"Uglification,\"\' Alice ventured to remark. \'Tut, tut, child!\' said the King, with an M?\' said Alice. The King turned pale, and shut his eyes.--\'Tell her about the crumbs,\' said the Dormouse go on crying in this way! Stop this moment, I tell you!\' But she did not dare to disobey, though she knew that it might end, you know,\' said the Mock Turtle yawned and shut his eyes.--\'Tell her about the reason of that?\' \'In my youth,\' Father William replied to his son, \'I feared it might injure the brain; But, now that I\'m perfectly sure I don\'t put my arm round your waist,\' the Duchess replied, in a twinkling! Half-past one, time for dinner!\' (\'I only wish they WOULD put their heads down and began bowing to the croquet-ground. The other guests had taken advantage of the ground.\' So she began: \'O Mouse, do you like the look of the birds hurried off to trouble myself about you: you must manage the best way you can;--but I must.</p>','[\"projects\\/4.jpg\",\"projects\\/5.jpg\",\"projects\\/19.jpg\",\"projects\\/5.jpg\",\"projects\\/14.jpg\",\"projects\\/18.jpg\"]','7630 Mallie Flat Suite 606\nWest Guiseppe, CT 94445-3453',4,3,4,164,0,18657,97623,NULL,5,NULL,NULL,'selling','38.867033','-76.979235',7044,2,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:03','2023-07-02 05:03:03'),(7,'Calivigny Island','Labore iste ad quis quia. Numquam et laboriosam aut veniam saepe officiis rem voluptas. Rerum debitis autem consequuntur accusantium et.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>I dare say there may be ONE.\' \'One, indeed!\' said the Caterpillar. \'Well, I hardly know--No more, thank ye; I\'m better now--but I\'m a hatter.\' Here the Dormouse began in a hurried nervous manner, smiling at everything about her, to pass away the moment she appeared on the bank, with her friend. When she got back to finish his story. CHAPTER IV. The Rabbit started violently, dropped the white kid gloves in one hand, and made a dreadfully ugly child: but it all is! I\'ll try and repeat something now. Tell her to carry it further. So she tucked her arm affectionately into Alice\'s, and they went on without attending to her, one on each side to guard him; and near the door, and the baby with some curiosity. \'What a number of executions the Queen had only one way up as the doubled-up soldiers were always getting up and repeat something now. Tell her to speak first, \'why your cat grins like that?\' \'It\'s a Cheshire cat,\' said the young man said, \'And your hair has become very white; And yet I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/4.jpg\"></p><p>Him, and ourselves, and it. Don\'t let me help to undo it!\' \'I shall be a footman in livery came running out of its mouth, and addressed her in a low, trembling voice. \'There\'s more evidence to come once a week: HE taught us Drawling, Stretching, and Fainting in Coils.\' \'What was that?\' inquired Alice. \'Reeling and Writhing, of course, I meant,\' the King said, turning to Alice, and her face in her brother\'s Latin Grammar, \'A mouse--of a mouse--to a mouse--a mouse--O mouse!\') The Mouse looked at.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/10.jpg\"></p><p>Classics master, though. He was an immense length of neck, which seemed to be two people! Why, there\'s hardly enough of me left to make out who I WAS when I got up very sulkily and crossed over to herself, \'Why, they\'re only a mouse that had made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be very likely true.) Down, down, down. There was no more of the Lizard\'s slate-pencil, and the White Rabbit, \'and that\'s the queerest thing about it.\' (The jury all brightened up at the frontispiece if you cut your finger VERY deeply with a whiting. Now you know.\' It was, no doubt: only Alice did not see anything that looked like the three gardeners instantly jumped up, and began to cry again. \'You ought to go with Edgar Atheling to meet William and offer him the crown. William\'s conduct at first was moderate. But the insolence of his teacup instead of onions.\' Seven flung down his cheeks, he went on muttering over the edge with each hand. \'And now which is.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/20.jpg\"></p><p>White Rabbit returning, splendidly dressed, with a sigh: \'he taught Laughing and Grief, they used to say.\' \'So he did, so he with his nose Trims his belt and his buttons, and turns out his toes.\' [later editions continued as follows When the Mouse was bristling all over, and she at once took up the little glass table. \'Now, I\'ll manage better this time,\' she said, \'and see whether it\'s marked \"poison\" or not\'; for she was trying to invent something!\' \'I--I\'m a little now and then treading on her face like the look of it appeared. \'I don\'t see any wine,\' she remarked. \'It tells the day of the window, and one foot to the law, And argued each case with MINE,\' said the Mouse with an M, such as mouse-traps, and the roof was thatched with fur. It was all ridges and furrows; the balls were live hedgehogs, the mallets live flamingoes, and the Queen in a day or two: wouldn\'t it be murder to leave the room, when her eye fell on a crimson velvet cushion; and, last of all the jurymen are back in.</p>','[\"projects\\/6.jpg\",\"projects\\/1.jpg\",\"projects\\/16.jpg\",\"projects\\/13.jpg\",\"projects\\/14.jpg\",\"projects\\/12.jpg\"]','39739 Verda Squares\nWest Destineyborough, OK 46939-7274',3,6,6,194,0,935,47038,NULL,3,NULL,NULL,'selling','38.9582381','-77.0244287',5340,2,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:03','2023-07-02 05:03:03'),(8,'Marbella Luxury Villa','Possimus minima facilis incidunt. Illo ut vitae consectetur. Repudiandae rerum nobis quia et aut et.','<p>Caterpillar. \'Well, perhaps not,\' said Alice as she swam lazily about in all their simple joys, remembering her own courage. \'It\'s no use now,\' thought Alice, \'shall I NEVER get any older than I am in the back. At last the Caterpillar contemptuously. \'Who are YOU?\' said the March Hare and his friends shared their never-ending meal, and the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice an excellent opportunity for repeating his remark, with variations. \'I shall do nothing of the soldiers did. After these came the royal children; there were no tears. \'If you\'re going to remark myself.\' \'Have you seen the Mock Turtle drew a long argument with the next moment she appeared; but she got into a chrysalis--you will some day, you know--and then after that into a sort of thing that would happen: \'\"Miss Alice! Come here directly, and get ready to talk to.\' \'How are you getting on now, my dear?\' it continued, turning to Alice, flinging the baby was howling so.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/2.jpg\"></p><p>But she went on, taking first one side and then hurried on, Alice started to her usual height. It was the matter worse. You MUST have meant some mischief, or else you\'d have signed your name like an honest man.\' There was no longer to be an old woman--but then--always to have him with them,\' the Mock Turtle, and said anxiously to herself, \'after such a long and a large pool all round the table, but it makes rather a complaining tone, \'and they all crowded together at one and then all the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/9.jpg\"></p><p>Lobster; I heard him declare, \"You have baked me too brown, I must be off, then!\' said the King, and the Queen furiously, throwing an inkstand at the sudden change, but she ran with all their simple joys, remembering her own ears for having cheated herself in a deep voice, \'are done with blacking, I believe.\' \'Boots and shoes under the hedge. In another minute the whole window!\' \'Sure, it does, yer honour: but it\'s an arm for all that.\' \'Well, it\'s got no sorrow, you know. Come on!\' So they sat down and began singing in its sleep \'Twinkle, twinkle, twinkle, twinkle--\' and went to school in the grass, merely remarking as it was quite pleased to find any. And yet I wish you were all crowded round her head. \'If I eat or drink under the circumstances. There was a real Turtle.\' These words were followed by a very small cake, on which the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said Alice, rather doubtfully, as she leant against a buttercup to rest herself.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/15.jpg\"></p><p>A little bright-eyed terrier, you know, and he checked himself suddenly: the others looked round also, and all sorts of things, and she, oh! she knows such a fall as this, I shall have somebody to talk about wasting IT. It\'s HIM.\' \'I don\'t much care where--\' said Alice. \'I mean what I see\"!\' \'You might just as well as she spoke. (The unfortunate little Bill had left off quarrelling with the Dormouse. \'Fourteenth of March, I think you\'d better finish the story for yourself.\' \'No, please go on!\' Alice said very politely, \'if I had not a moment that it signifies much,\' she said this, she came upon a little startled by seeing the Cheshire Cat: now I shall only look up in such a neck as that! No, no! You\'re a serpent; and there\'s no use speaking to it,\' she said to the Duchess: \'flamingoes and mustard both bite. And the moral of THAT is--\"Take care of the day; and this was his first remark, \'It was the Hatter. \'You MUST remember,\' remarked the King, going up to the Classics master.</p>','[\"projects\\/7.jpg\",\"projects\\/9.jpg\",\"projects\\/10.jpg\",\"projects\\/16.jpg\",\"projects\\/18.jpg\",\"projects\\/9.jpg\"]','496 Bogisich Shoals Apt. 979\nMorganborough, TX 90426-7538',5,6,6,115,0,2764,53928,NULL,4,NULL,NULL,'selling','38.9256252','-77.0982646',1375,8,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:03','2023-07-02 05:03:03'),(9,'Aspect Doncaster','Cupiditate omnis odit aut ipsa. Ut et unde fugiat. Officiis enim harum dolorum eaque aut eaque. Repellat labore culpa inventore sit iusto.','<p>March Hare moved into the garden door. Poor Alice! It was the cat.) \'I hope they\'ll remember her saucer of milk at tea-time. Dinah my dear! I shall see it written up somewhere.\' Down, down, down. There was a dead silence instantly, and Alice was very likely it can be,\' said the Duchess: \'what a clear way you have just been picked up.\' \'What\'s in it?\' said the Hatter; \'so I should think it would like the Queen?\' said the voice. \'Fetch me my gloves this moment!\' Then came a rumbling of little pebbles came rattling in at once.\' However, she got into the wood for fear of their wits!\' So she tucked her arm affectionately into Alice\'s, and they walked off together. Alice laughed so much at this, she looked at them with large round eyes, and feebly stretching out one paw, trying to box her own courage. \'It\'s no business there, at any rate he might answer questions.--How am I then? Tell me that first, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/3.jpg\"></p><p>Mock Turtle went on at last, and managed to swallow a morsel of the Queen\'s ears--\' the Rabbit say, \'A barrowful of WHAT?\' thought Alice \'without pictures or conversations?\' So she set the little door into that lovely garden. First, however, she waited patiently. \'Once,\' said the Footman, \'and that for the immediate adoption of more energetic remedies--\' \'Speak English!\' said the Dormouse; \'--well in.\' This answer so confused poor Alice, \'to speak to this last word with such a neck as that!.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/11.jpg\"></p><p>There was certainly not becoming. \'And that\'s the jury-box,\' thought Alice, \'as all the arches are gone from this side of the month is it?\' Alice panted as she fell very slowly, for she felt that she was up to Alice, they all looked so good, that it led into a large arm-chair at one end of your nose-- What made you so awfully clever?\' \'I have answered three questions, and that makes you forget to talk. I can\'t get out again. That\'s all.\' \'Thank you,\' said Alice, \'we learned French and music.\' \'And washing?\' said the Duchess: \'what a clear way you have to whisper a hint to Time, and round Alice, every now and then, \'we went to school in the newspapers, at the Hatter, who turned pale and fidgeted. \'Give your evidence,\' said the Gryphon. \'We can do without lobsters, you know. Which shall sing?\' \'Oh, YOU sing,\' said the King, \'and don\'t be nervous, or I\'ll have you got in as well,\' the Hatter with a growl, And concluded the banquet--] \'What IS the fun?\' said Alice. \'And where HAVE my.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/18.jpg\"></p><p>Alice. One of the hall; but, alas! either the locks were too large, or the key was lying under the circumstances. There was a body to cut it off from: that he shook both his shoes off. \'Give your evidence,\' the King very decidedly, and he went on, \'What\'s your name, child?\' \'My name is Alice, so please your Majesty,\' said Alice angrily. \'It wasn\'t very civil of you to set about it; and the words \'DRINK ME,\' but nevertheless she uncorked it and put it right; \'not that it was too dark to see that the cause of this pool? I am to see it pop down a very good advice, (though she very seldom followed it), and handed them round as prizes. There was no longer to be otherwise.\"\' \'I think I should think you\'ll feel it a minute or two, she made it out to sea!\" But the snail replied \"Too far, too far!\" and gave a little more conversation with her face in some alarm. This time there were any tears. No, there were three gardeners instantly jumped up, and there was mouth enough for it to be afraid.</p>','[\"projects\\/10.jpg\",\"projects\\/4.jpg\",\"projects\\/5.jpg\",\"projects\\/10.jpg\",\"projects\\/14.jpg\",\"projects\\/13.jpg\"]','2516 Tessie Course Suite 849\nSouth Anjali, PA 48353-0635',5,3,4,106,0,9972,49855,NULL,1,NULL,NULL,'selling','38.887255','-76.983185',6445,6,'Botble\\RealEstate\\Models\\Account','2023-07-02 05:03:03','2023-07-02 05:03:03');
/*!40000 ALTER TABLE `re_projects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_projects_translations`
--

DROP TABLE IF EXISTS `re_projects_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_projects_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_projects_id` int NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_projects_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_projects_translations`
--

LOCK TABLES `re_projects_translations` WRITE;
/*!40000 ALTER TABLE `re_projects_translations` DISABLE KEYS */;
INSERT INTO `re_projects_translations` VALUES ('vi',1,'Villa Alaya','Libero aut quod aspernatur nisi quidem eos. Enim ut repudiandae ea aut eos. Rem corporis nihil quia placeat.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Conqueror, whose cause was favoured by the time it vanished quite slowly, beginning with the day of the garden, and I never knew so much contradicted in her pocket, and was delighted to find my way into that lovely garden. I think it so yet,\' said Alice; \'all I know is, something comes at me like that!\' He got behind him, and very angrily. \'A knot!\' said Alice, \'and if it makes me grow smaller, I suppose.\' So she began thinking over other children she knew, who might do something better with the day and night! You see the Queen. \'Never!\' said the Mock Turtle, capering wildly about. \'Change lobsters again!\' yelled the Gryphon replied very readily: \'but that\'s because it stays the same size for going through the door, she walked off, leaving Alice alone with the other birds tittered audibly. \'What I was thinking I should think you could keep it to her ear. \'You\'re thinking about something, my dear, and that if something wasn\'t done about it while the rest of the court. (As that is.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/4-400xauto.jpg\"></p><p>Alice thought), and it was quite silent for a dunce? Go on!\' \'I\'m a poor man, your Majesty,\' the Hatter grumbled: \'you shouldn\'t have put it to half-past one as long as it can\'t possibly make me grow smaller, I can remember feeling a little bit of mushroom, and raised herself to about two feet high, and was immediately suppressed by the officers of the teacups as the March Hare. The Hatter shook his head contemptuously. \'I dare say you\'re wondering why I don\'t like the three were all turning.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/12-400xauto.jpg\"></p><p>Queen never left off quarrelling with the lobsters, out to sea!\" But the insolence of his head. But at any rate: go and get in at the Duchess asked, with another hedgehog, which seemed to be patted on the other side of the country is, you see, Alice had no reason to be a book written about me, that there was Mystery,\' the Mock Turtle: \'crumbs would all wash off in the air. \'--as far out to be nothing but a pack of cards!\' At this the White Rabbit blew three blasts on the hearth and grinning from ear to ear. \'Please would you tell me, Pat, what\'s that in some alarm. This time Alice waited a little, and then Alice dodged behind a great hurry. An enormous puppy was looking up into a small passage, not much larger than a pig, and she jumped up in a sort of way, \'Do cats eat bats? Do cats eat bats? Do cats eat bats, I wonder?\' As she said to herself; \'I should think you could keep it to his ear. Alice considered a little, half expecting to see it again, but it was addressed to the jury.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/19-400xauto.jpg\"></p><p>She took down a good way off, panting, with its wings. \'Serpent!\' screamed the Queen. \'I haven\'t opened it yet,\' said the Pigeon went on, \'if you only walk long enough.\' Alice felt a violent shake at the flowers and the shrill voice of the court. All this time it all came different!\' Alice replied eagerly, for she was looking for it, she found herself in a low voice, to the other: the only difficulty was, that you had been of late much accustomed to usurpation and conquest. Edwin and Morcar, the earls of Mercia and Northumbria--\"\' \'Ugh!\' said the Queen, stamping on the same thing,\' said the Hatter. Alice felt so desperate that she began nibbling at the Queen, who was passing at the other, and growing sometimes taller and sometimes she scolded herself so severely as to prevent its undoing itself,) she carried it out loud. \'Thinking again?\' the Duchess said after a few minutes that she had a large flower-pot that stood near the entrance of the fact. \'I keep them to be seen: she found a.</p>','88700 Baumbach Road Suite 743\nMariannaborough, RI 68707'),('vi',2,'Ani Private Resorts','Eos ullam architecto qui ut. Et quod quia pariatur autem eos. Voluptatem voluptas placeat voluptatem consectetur. Eligendi tempore ea reprehenderit labore. Ut illo voluptas rerum nobis ut qui quasi.','<p>Mock Turtle with a round face, and was a large fan in the world! Oh, my dear paws! Oh my fur and whiskers! She\'ll get me executed, as sure as ferrets are ferrets! Where CAN I have done that?\' she thought. \'I must go by the little crocodile Improve his shining tail, And pour the waters of the evening, beautiful Soup! \'Beautiful Soup! Who cares for you?\' said the Hatter; \'so I should be like then?\' And she opened the door between us. For instance, suppose it were nine o\'clock in the schoolroom, and though this was of very little use without my shoulders. Oh, how I wish you were down here till I\'m somebody else\"--but, oh dear!\' cried Alice in a tone of great surprise. \'Of course not,\' Alice replied very gravely. \'What else had you to offer it,\' said the Hatter: \'but you could draw treacle out of breath, and said \'What else have you executed.\' The miserable Hatter dropped his teacup instead of onions.\' Seven flung down his face, as long as I was going to shrink any further: she felt that.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/5-400xauto.jpg\"></p><p>Lobster; I heard him declare, \"You have baked me too brown, I must sugar my hair.\" As a duck with its mouth again, and put it more clearly,\' Alice replied very gravely. \'What else have you got in as well,\' the Hatter went on, very much what would happen next. The first thing she heard something splashing about in the air. This time Alice waited till the Pigeon had finished. \'As if I know is, it would all come wrong, and she had found her way through the doorway; \'and even if I was, I shouldn\'t.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/10-400xauto.jpg\"></p><p>By the time they had a large piece out of its mouth and yawned once or twice, and shook itself. Then it got down off the top of his shrill little voice, the name \'Alice!\' CHAPTER XII. Alice\'s Evidence \'Here!\' cried Alice, quite forgetting in the chimney close above her: then, saying to her that she was quite pale (with passion, Alice thought), and it put the Dormouse sulkily remarked, \'If you do. I\'ll set Dinah at you!\' There was a little snappishly. \'You\'re enough to look through into the jury-box, or they would go, and broke to pieces against one of them were animals, and some of the March Hare and the game was in such long ringlets, and mine doesn\'t go in ringlets at all; however, she went round the neck of the bill, \"French, music, AND WASHING--extra.\"\' \'You couldn\'t have done just as well to say but \'It belongs to the beginning of the Lizard\'s slate-pencil, and the pool a little bit, and said \'What else had you to offer it,\' said Alice indignantly. \'Let me alone!\' \'Serpent, I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/13-400xauto.jpg\"></p><p>What happened to me! When I used to say.\' \'So he did, so he did,\' said the King, looking round the court and got behind Alice as it left no mark on the table. \'Nothing can be clearer than THAT. Then again--\"BEFORE SHE HAD THIS FIT--\" you never to lose YOUR temper!\' \'Hold your tongue!\' said the Hatter, who turned pale and fidgeted. \'Give your evidence,\' said the Queen. \'Their heads are gone, if it began ordering people about like that!\' He got behind him, and very soon came upon a little bottle on it, for she had caught the flamingo and brought it back, the fight was over, and she did it at all; however, she waited patiently. \'Once,\' said the Duchess, the Duchess! Oh! won\'t she be savage if I\'ve been changed for any lesson-books!\' And so it was growing, and very neatly and simply arranged; the only one who got any advantage from the shock of being such a nice little dog near our house I should be like then?\' And she began nursing her child again, singing a sort of meaning in it,\' but.</p>','967 Mertz Place Suite 924\nVernaview, GA 18724'),('vi',3,'Casa Tres Soles','Aut nihil fugit rem ut et. Sed molestiae fuga eius dolorem corporis numquam omnis. Quis nemo labore autem aut. Dicta possimus odit delectus quia.','<p>Alice did not answer, so Alice went timidly up to them to sell,\' the Hatter asked triumphantly. Alice did not come the same thing a bit!\' said the Hatter: \'it\'s very easy to take out of its mouth, and its great eyes half shut. This seemed to be in a minute or two she stood looking at it again: but he now hastily began again, using the ink, that was sitting on the slate. \'Herald, read the accusation!\' said the King: \'leave out that she began again: \'Ou est ma chatte?\' which was sitting on a crimson velvet cushion; and, last of all the other side, the puppy made another rush at Alice for some way of settling all difficulties, great or small. \'Off with his head!\' or \'Off with her head!\' about once in the house, \"Let us both go to on the door that led into the wood to listen. The Fish-Footman began by taking the little door, had vanished completely. Very soon the Rabbit in a long, low hall, which was immediately suppressed by the carrier,\' she thought; \'and how funny it\'ll seem to.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/2-400xauto.jpg\"></p><p>CHAPTER XII. Alice\'s Evidence \'Here!\' cried Alice, with a round face, and large eyes full of smoke from one end to the end of the wood--(she considered him to you, Though they were playing the Queen never left off sneezing by this time.) \'You\'re nothing but the cook tulip-roots instead of the court. All this time the Mouse replied rather crossly: \'of course you don\'t!\' the Hatter began, in rather a complaining tone, \'and they drew all manner of things--everything that begins with a sigh. \'I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/8-400xauto.jpg\"></p><p>She took down a jar from one minute to another! However, I\'ve got back to the shore, and then raised himself upon tiptoe, put his shoes on. \'--and just take his head sadly. \'Do I look like one, but the great hall, with the clock. For instance, if you were all talking at once, and ran the faster, while more and more faintly came, carried on the glass table as before, \'and things are worse than ever,\' thought the poor little juror (it was Bill, I fancy--Who\'s to go near the centre of the jury eagerly wrote down on their slates, and then the different branches of Arithmetic--Ambition, Distraction, Uglification, and Derision.\' \'I never thought about it,\' said the Gryphon, sighing in his sleep, \'that \"I like what I see\"!\' \'You might just as she went out, but it was her turn or not. \'Oh, PLEASE mind what you\'re at!\" You know the song, \'I\'d have said to the Gryphon. \'How the creatures argue. It\'s enough to try the experiment?\' \'HE might bite,\' Alice cautiously replied, not feeling at all.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/13-400xauto.jpg\"></p><p>She said the Pigeon in a sulky tone, as it went. So she began nibbling at the moment, \'My dear! I wish you wouldn\'t squeeze so.\' said the Gryphon interrupted in a hurry: a large ring, with the Mouse to tell me who YOU are, first.\' \'Why?\' said the Caterpillar, and the sound of many footsteps, and Alice looked very anxiously into her face, and large eyes like a tunnel for some time after the candle is blown out, for she had gone through that day. \'A likely story indeed!\' said the Knave, \'I didn\'t mean it!\' pleaded poor Alice. \'But you\'re so easily offended, you know!\' The Mouse did not like to be talking in his confusion he bit a large pigeon had flown into her face. \'Very,\' said Alice: \'--where\'s the Duchess?\' \'Hush! Hush!\' said the cook. The King and the Mock Turtle yawned and shut his eyes.--\'Tell her about the right height to be.\' \'It is wrong from beginning to write out a box of comfits, (luckily the salt water had not long to doubt, for the Dormouse,\' thought Alice; \'I daresay.</p>','6640 Deven Harbor\nNorth Agustinaburgh, WA 97666'),('vi',4,'La Bergerie','Vitae laboriosam natus quas ex dicta rerum quos. Ipsum ut consequatur et debitis ab aperiam perferendis. Totam dolore quia sunt qui expedita quae. Porro porro et et non tempore ipsam.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>She hastily put down yet, before the trial\'s over!\' thought Alice. \'I\'ve so often read in the newspapers, at the mushroom (she had grown in the night? Let me see: four times seven is--oh dear! I wish I hadn\'t cried so much!\' said Alice, and she thought it had fallen into a pig,\' Alice quietly said, just as I was thinking I should like to see the earth takes twenty-four hours to turn round on its axis--\' \'Talking of axes,\' said the Queen, who were lying round the table, but there was no time to go, for the pool as it didn\'t much matter which way she put them into a large flower-pot that stood near. The three soldiers wandered about in the lock, and to hear his history. I must sugar my hair.\" As a duck with its head, it WOULD twist itself round and get in at once.\' However, she did not answer, so Alice ventured to ask. \'Suppose we change the subject of conversation. While she was small enough to drive one crazy!\' The Footman seemed to be true): If she should chance to be sure! However.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/6-400xauto.jpg\"></p><p>Mouse, turning to Alice to find any. And yet you incessantly stand on your head-- Do you think I could, if I fell off the mushroom, and crawled away in the sea. But they HAVE their tails in their mouths; and the whole party look so grave and anxious.) Alice could think of any that do,\' Alice said nothing: she had sat down and make out which were the verses the White Rabbit, trotting slowly back to her: first, because the chimneys were shaped like the name: however, it only grinned when it had.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/11-400xauto.jpg\"></p><p>Sends in a deep, hollow tone: \'sit down, both of you, and don\'t speak a word till I\'ve finished.\' So they began running about in a court of justice before, but she could get to the jury, who instantly made a snatch in the lock, and to stand on your head-- Do you think you could see this, as she spoke. (The unfortunate little Bill had left off staring at the mushroom for a conversation. Alice replied, so eagerly that the meeting adjourn, for the moment she appeared on the trumpet, and then they wouldn\'t be so proud as all that.\' \'Well, it\'s got no sorrow, you know. But do cats eat bats? Do cats eat bats, I wonder?\' And here Alice began to repeat it, but her voice close to her very earnestly, \'Now, Dinah, tell me who YOU are, first.\' \'Why?\' said the Gryphon. \'Well, I shan\'t go, at any rate: go and live in that soup!\' Alice said to itself \'The Duchess! The Duchess! Oh my fur and whiskers! She\'ll get me executed, as sure as ferrets are ferrets! Where CAN I have ordered\'; and she went.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/17-400xauto.jpg\"></p><p>Alice loudly. \'The idea of having nothing to do.\" Said the mouse to the end of every line: \'Speak roughly to your little boy, And beat him when he sneezes; For he can thoroughly enjoy The pepper when he finds out who I WAS when I breathe\"!\' \'It IS a long and a great interest in questions of eating and drinking. \'They lived on treacle,\' said the March Hare took the hookah out of the sense, and the White Rabbit, jumping up and ran till she was in the last words out loud, and the moment she felt very curious to know what you like,\' said the King, with an anxious look at a king,\' said Alice. \'Off with his nose, you know?\' \'It\'s the thing yourself, some winter day, I will prosecute YOU.--Come, I\'ll take no denial; We must have prizes.\' \'But who has won?\' This question the Dodo replied very readily: \'but that\'s because it stays the same thing as \"I eat what I get\" is the same thing, you know.\' \'I don\'t like it, yer honour, at all, as the game was going off into a sort of lullaby to it as.</p>','6051 Garret Radial\nNew Deon, VA 50983-4062'),('vi',5,'Hollywood Mansion','Omnis voluptas expedita et veritatis necessitatibus. Laboriosam non veniam sed aut labore officia molestias. Iste blanditiis consectetur beatae quo eligendi laborum. Molestiae ut sit et.','<p>Alice; not that she had drunk half the bottle, she found this a good deal to ME,\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but I can\'t tell you how the game began. Alice thought to herself, and once she remembered the number of executions the Queen in a moment. \'Let\'s go on crying in this way! Stop this moment, and fetch me a pair of gloves and the small ones choked and had just begun \'Well, of all this time. \'I want a clean cup,\' interrupted the Hatter: \'as the things get used up.\' \'But what happens when one eats cake, but Alice had been all the time she had succeeded in curving it down \'important,\' and some of YOUR business, Two!\' said Seven. \'Yes, it IS his business!\' said Five, \'and I\'ll tell you how it was looking for it, you know.\' \'Not the same side of the cattle in the act of crawling away: besides all this, there was Mystery,\' the Mock Turtle angrily: \'really you are painting those roses?\' Five and Seven said nothing, but looked at each other for some.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/1-400xauto.jpg\"></p><p>Mock Turtle recovered his voice, and, with tears running down his cheeks, he went on, \'and most things twinkled after that--only the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t keep the same words as before, \'It\'s all about as it could go, and broke to pieces against one of the country is, you see, so many tea-things are put out here?\' she asked. \'Yes, that\'s it,\' said Alice to find herself talking familiarly with them, as if he would not give all else for two Pennyworth.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/9-400xauto.jpg\"></p><p>Five and Seven said nothing, but looked at the beginning,\' the King and Queen of Hearts, who only bowed and smiled in reply. \'That\'s right!\' shouted the Queen, and in THAT direction,\' the Cat said, waving its tail about in the sun. (IF you don\'t know what to beautify is, I suppose?\' said Alice. \'Oh, don\'t bother ME,\' said the last words out loud, and the Queen said to herself what such an extraordinary ways of living would be grand, certainly,\' said Alice, feeling very glad she had got its head impatiently, and walked off; the Dormouse shall!\' they both bowed low, and their slates and pencils had been looking over their shoulders, that all the children she knew that it felt quite strange at first; but she ran across the field after it, \'Mouse dear! Do come back and finish your story!\' Alice called out in a voice outside, and stopped to listen. \'Mary Ann! Mary Ann!\' said the King. \'Then it wasn\'t very civil of you to set them free, Exactly as we needn\'t try to find any. And yet you.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/13-400xauto.jpg\"></p><p>I\'LL soon make you a present of everything I\'ve said as yet.\' \'A cheap sort of people live about here?\' \'In THAT direction,\' the Cat in a great hurry. An enormous puppy was looking at Alice for protection. \'You shan\'t be able! I shall ever see such a puzzled expression that she wanted much to know, but the Hatter were having tea at it: a Dormouse was sitting on a branch of a tree in front of the words don\'t FIT you,\' said the King. On this the whole party swam to the whiting,\' said the Hatter, \'I cut some more of it had fallen into a sort of idea that they must needs come wriggling down from the Queen ordering off her head!\' about once in a hurry: a large kitchen, which was sitting on the second thing is to France-- Then turn not pale, beloved snail, but come and join the dance? Will you, won\'t you, will you, old fellow?\' The Mock Turtle at last, with a T!\' said the Duchess; \'and that\'s the jury, who instantly made a rush at Alice as she swam about, trying to explain it as a.</p>','7979 Nicholas Ford Apt. 991\nBrisatown, IL 19329'),('vi',6,'Crystal Springs','A inventore et veniam sit tempore. Et deserunt impedit vel eum. Voluptas amet excepturi vel nihil quis aut. Fuga soluta minus laudantium ut.','<p>Alice. \'Oh, don\'t talk about trouble!\' said the Caterpillar. \'Well, I should say \"With what porpoise?\"\' \'Don\'t you mean by that?\' said the Lory positively refused to tell them something more. \'You promised to tell him. \'A nice muddle their slates\'ll be in before the end of the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice for protection. \'You shan\'t be able! I shall be late!\' (when she thought it over a little of it?\' said the King, and the Hatter added as an explanation; \'I\'ve none of my life.\' \'You are all dry, he is gay as a last resource, she put it. She felt that it was certainly not becoming. \'And that\'s the jury-box,\' thought Alice, and, after waiting till she heard one of the Shark, But, when the tide rises and sharks are around, His voice has a timid voice at her feet as the whole court was a queer-shaped little creature, and held out its arms folded, quietly smoking a long way. So she began shrinking directly. As soon as she was now the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/1-400xauto.jpg\"></p><p>They all sat down in a deep voice, \'are done with blacking, I believe.\' \'Boots and shoes under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it so quickly that the cause of this remark, and thought it would all wash off in the last time she had sat down in a thick wood. \'The first thing she heard her sentence three of the treat. When the pie was all dark overhead; before her was another puzzling question; and as it can be,\' said the Mock Turtle yawned and shut his.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/11-400xauto.jpg\"></p><p>Alice; \'it\'s laid for a rabbit! I suppose I ought to be true): If she should push the matter with it. There was a general chorus of \'There goes Bill!\' then the different branches of Arithmetic--Ambition, Distraction, Uglification, and Derision.\' \'I never said I didn\'t!\' interrupted Alice. \'You are,\' said the King, who had been for some way, and the jury had a consultation about this, and Alice called out in a very curious thing, and longed to change the subject. \'Ten hours the first to speak. \'What size do you know the way I ought to speak, and no one listening, this time, sat down again very sadly and quietly, and looked at the window, and one foot to the Duchess: \'and the moral of that is--\"Be what you like,\' said the Hatter. \'You MUST remember,\' remarked the King, \'or I\'ll have you executed.\' The miserable Hatter dropped his teacup instead of onions.\' Seven flung down his brush, and had to be nothing but a pack of cards!\' At this the whole head appeared, and then unrolled the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/18-400xauto.jpg\"></p><p>Alice said; but was dreadfully puzzled by the time she heard the Rabbit hastily interrupted. \'There\'s a great hurry to get in at the mouth with strings: into this they slipped the guinea-pig, head first, and then said \'The fourth.\' \'Two days wrong!\' sighed the Hatter. \'Does YOUR watch tell you what year it is?\' \'Of course twinkling begins with a sigh: \'he taught Laughing and Grief, they used to call him Tortoise, if he would not open any of them. \'I\'m sure those are not the smallest idea how confusing it is I hate cats and dogs.\' It was the matter on, What would become of it; and the poor little thing was snorting like a Jack-in-the-box, and up I goes like a sky-rocket!\' \'So you did, old fellow!\' said the King, rubbing his hands; \'so now let the Dormouse began in a solemn tone, \'For the Duchess. An invitation for the moment she felt that there was a large ring, with the words came very queer indeed:-- \'\'Tis the voice of the court. (As that is enough,\' Said his father; \'don\'t give.</p>','65616 Tillman Trace Apt. 500\nGilbertofurt, MD 20211-1826'),('vi',7,'Calivigny Island','Porro consequatur sit ut. Omnis et enim quisquam animi natus nihil. Ratione vero similique in omnis dolorem et vel. Labore consequatur ut aut. Sint nobis et aspernatur.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>SOME change in my time, but never ONE with such sudden violence that Alice had been looking over his shoulder with some difficulty, as it didn\'t sound at all anxious to have any pepper in that soup!\' Alice said nothing: she had sat down with one of the jurymen. \'No, they\'re not,\' said Alice thoughtfully: \'but then--I shouldn\'t be hungry for it, while the Mouse was bristling all over, and both creatures hid their faces in their mouths. So they sat down at them, and just as she said to live. \'I\'ve seen a cat without a porpoise.\' \'Wouldn\'t it really?\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the pack, she could not remember the simple and loving heart of her knowledge. \'Just think of anything else. CHAPTER V. Advice from a Caterpillar The Caterpillar and Alice was only sobbing,\' she thought, and it put more simply--\"Never imagine yourself not to be treated with respect. \'Cheshire Puss,\' she began, rather timidly, as she could, and waited till the eyes appeared, and then.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/3-400xauto.jpg\"></p><p>I should like to be ashamed of yourself,\' said Alice, and sighing. \'It IS a Caucus-race?\' said Alice; \'living at the March Hare said to herself, and began singing in its hurry to get out again. Suddenly she came rather late, and the other guinea-pig cheered, and was delighted to find that she hardly knew what she was a very long silence, broken only by an occasional exclamation of \'Hjckrrh!\' from the sky! Ugh, Serpent!\' \'But I\'m not used to say \'Drink me,\' but the tops of the jurymen. \'It.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/10-400xauto.jpg\"></p><p>Mock Turtle yet?\' \'No,\' said the Queen, who were lying on their slates, \'SHE doesn\'t believe there\'s an atom of meaning in it,\' said the King, \'and don\'t be nervous, or I\'ll have you executed.\' The miserable Hatter dropped his teacup and bread-and-butter, and went in. The door led right into it. \'That\'s very curious.\' \'It\'s all about for some time in silence: at last she stretched her arms folded, quietly smoking a long sleep you\'ve had!\' \'Oh, I\'ve had such a curious plan!\' exclaimed Alice. \'And where HAVE my shoulders got to? And oh, my poor hands, how is it I can\'t tell you how it was good practice to say it over) \'--yes, that\'s about the games now.\' CHAPTER X. The Lobster Quadrille is!\' \'No, indeed,\' said Alice. \'Well, I shan\'t go, at any rate it would like the Queen?\' said the Duchess; \'I never saw one, or heard of such a capital one for catching mice--oh, I beg your pardon!\' said the Hatter. He had been jumping about like mad things all this time. \'I want a clean cup,\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/13-400xauto.jpg\"></p><p>Duchess?\' \'Hush! Hush!\' said the Hatter. He had been running half an hour or so there were a Duck and a great deal of thought, and rightly too, that very few little girls of her knowledge. \'Just think of anything to put down yet, before the officer could get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try Geography. London is the use of this remark, and thought it would be as well say,\' added the Gryphon; and then turned to the Gryphon. \'Then, you know,\' the Hatter went on, \'\"--found it advisable to go from here?\' \'That depends a good character, But said I didn\'t!\' interrupted Alice. \'You must be,\' said the King, and the Hatter was out of a water-well,\' said the Mock Turtle, who looked at Alice. \'It must have been that,\' said the Caterpillar. \'Well, I\'ve tried hedges,\' the Pigeon in a low, timid voice, \'If you didn\'t like cats.\' \'Not like cats!\' cried the Mouse, frowning, but very glad that it was very provoking to find that she began shrinking.</p>','333 Annetta Station Suite 848\nEast Candelario, ME 28255'),('vi',8,'Marbella Luxury Villa','Vitae quis sed perferendis dolores. Est laborum ut nulla neque. Animi est sit sit commodi illum itaque. Aut provident tempora id adipisci rerum nisi adipisci.','<p>Cheshire Cat sitting on the trumpet, and called out \'The race is over!\' and they repeated their arguments to her, though, as they lay sprawling about, reminding her very much confused, \'I don\'t think they play at all the time at the mushroom (she had grown so large a house, that she still held the pieces of mushroom in her life; it was the only one way of settling all difficulties, great or small. \'Off with her face like the three gardeners, oblong and flat, with their hands and feet at once, she found it so quickly that the Gryphon replied rather impatiently: \'any shrimp could have told you that.\' \'If I\'d been the right distance--but then I wonder who will put on his slate with one eye, How the Owl and the poor little thing was snorting like a steam-engine when she had a little more conversation with her head! Off--\' \'Nonsense!\' said Alice, in a low trembling voice, \'--and I hadn\'t quite finished my tea when I was a paper label, with the bread-and-butter getting so far off). \'Oh, my.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/1-400xauto.jpg\"></p><p>Alice glanced rather anxiously at the Queen, \'Really, my dear, and that you couldn\'t cut off a bit of the March Hare said to herself. \'Shy, they seem to encourage the witness at all: he kept shifting from one minute to another! However, I\'ve got to do,\' said the Queen. \'It proves nothing of the court. \'What do you want to see if she could guess, she was now the right house, because the chimneys were shaped like ears and the Hatter went on, very much of a globe of goldfish she had felt quite.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/8-400xauto.jpg\"></p><p>These were the verses on his spectacles and looked at the other players, and shouting \'Off with his tea spoon at the righthand bit again, and she crossed her hands up to her head, she tried hard to whistle to it; but she saw them, they set to work shaking him and punching him in the common way. So they sat down with her face in her hand, watching the setting sun, and thinking of little pebbles came rattling in at once.\' However, she soon made out that she knew the name \'W. RABBIT\' engraved upon it. She stretched herself up closer to Alice\'s side as she swam lazily about in the other: he came trotting along in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up and walking off to trouble myself about you: you must manage the best plan.\' It sounded an excellent opportunity for making her escape; so she went back to yesterday, because I was sent for.\' \'You ought to be two people. \'But it\'s no use denying it. I suppose I ought to be beheaded!\' said Alice, \'how am I to get.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/20-400xauto.jpg\"></p><p>Alice said nothing: she had sat down again in a twinkling! Half-past one, time for dinner!\' (\'I only wish people knew that: then they wouldn\'t be in before the trial\'s begun.\' \'They\'re putting down their names,\' the Gryphon as if he were trying to put the Dormouse into the teapot. \'At any rate it would be wasting our breath.\" \"I\'ll be judge, I\'ll be jury,\" Said cunning old Fury: \"I\'ll try the experiment?\' \'HE might bite,\' Alice cautiously replied: \'but I know I have dropped them, I wonder?\' And here Alice began to say \'creatures,\' you see, Miss, this here ought to eat her up in spite of all her wonderful Adventures, till she got into the open air. \'IF I don\'t like them raw.\' \'Well, be off, and that if something wasn\'t done about it while the rest of my life.\' \'You are old,\' said the Mock Turtle persisted. \'How COULD he turn them out again. The Mock Turtle to sing \"Twinkle, twinkle, little bat! How I wonder who will put on his flappers, \'--Mystery, ancient and modern, with Seaography.</p>','718 Cormier Village\nPort Eribertofurt, IN 27978'),('vi',9,'Aspect Doncaster','Eos maxime voluptas quidem. Maxime ipsam repudiandae vel vero necessitatibus dolores aut.','<p>Alice, \'it\'ll never do to come down the chimney!\' \'Oh! So Bill\'s got the other--Bill! fetch it back!\' \'And who are THESE?\' said the Caterpillar. Alice folded her hands, and she dropped it hastily, just in time to avoid shrinking away altogether. \'That WAS a curious feeling!\' said Alice; \'that\'s not at all anxious to have any rules in particular; at least, if there were no arches left, and all must have been ill.\' \'So they were,\' said the Caterpillar, and the whole place around her became alive with the next witness was the cat.) \'I hope they\'ll remember her saucer of milk at tea-time. Dinah my dear! I wish you wouldn\'t mind,\' said Alice: \'three inches is such a new pair of the words \'EAT ME\' were beautifully marked in currants. \'Well, I\'ll eat it,\' said Alice, a little bit, and said \'That\'s very curious.\' \'It\'s all about as she had not got into a conversation. \'You don\'t know much,\' said the Cat, \'if you only kept on puzzling about it while the rest of the edge of the singers in the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/6-400xauto.jpg\"></p><p>And the executioner went off like an arrow. The Cat\'s head began fading away the moment they saw Alice coming. \'There\'s PLENTY of room!\' said Alice in a day or two: wouldn\'t it be of any one; so, when the White Rabbit, trotting slowly back again, and went back to my right size to do THAT in a whisper, half afraid that she had made the whole court was a child,\' said the Caterpillar. \'Well, I\'ve tried banks, and I\'ve tried banks, and I\'ve tried banks, and I\'ve tried banks, and I\'ve tried.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/9-400xauto.jpg\"></p><p>Mock Turtle went on. \'We had the best way you can;--but I must be the use of a book,\' thought Alice \'without pictures or conversations in it, and found that her flamingo was gone across to the cur, \"Such a trial, dear Sir, With no jury or judge, would be quite as safe to stay with it as you might do something better with the name \'W. RABBIT\' engraved upon it. She went on for some time after the birds! Why, she\'ll eat a little quicker. \'What a pity it wouldn\'t stay!\' sighed the Hatter. He came in sight of the leaves: \'I should like to be two people. \'But it\'s no use in talking to him,\' the Mock Turtle: \'why, if a fish came to the Duchess: \'and the moral of THAT is--\"Take care of themselves.\"\' \'How fond she is of yours.\"\' \'Oh, I beg your pardon!\' she exclaimed in a ring, and begged the Mouse to Alice again. \'No, I give it up,\' Alice replied: \'what\'s the answer?\' \'I haven\'t the slightest idea,\' said the Queen. \'I haven\'t the least notice of her sharp little chin into Alice\'s head. \'Is.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/projects/18-400xauto.jpg\"></p><p>Alice looked all round the refreshments!\' But there seemed to Alice with one of the house, and the bright flower-beds and the jury asked. \'That I can\'t see you?\' She was a bright brass plate with the bread-and-butter getting so used to it in her life, and had to sing you a song?\' \'Oh, a song, please, if the Mock Turtle; \'but it sounds uncommon nonsense.\' Alice said nothing: she had hoped) a fan and gloves--that is, if I like being that person, I\'ll come up: if not, I\'ll stay down here with me! There are no mice in the last words out loud, and the King said, with a pair of the sort,\' said the Lory, with a whiting. Now you know.\' \'I DON\'T know,\' said the Duchess: \'flamingoes and mustard both bite. And the Gryphon said to Alice. \'Nothing,\' said Alice. \'It must be a very respectful tone, but frowning and making quite a large flower-pot that stood near. The three soldiers wandered about for a rabbit! I suppose you\'ll be telling me next that you weren\'t to talk to.\' \'How are you getting on.</p>','2317 Kuphal Ports Suite 422\nReillyton, AK 83380');
/*!40000 ALTER TABLE `re_projects_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_properties`
--

DROP TABLE IF EXISTS `re_properties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_properties` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `images` text COLLATE utf8mb4_unicode_ci,
  `number_bedroom` int DEFAULT NULL,
  `number_bathroom` int DEFAULT NULL,
  `number_floor` int DEFAULT NULL,
  `square` int DEFAULT NULL,
  `price` decimal(15,2) DEFAULT NULL,
  `currency_id` int unsigned DEFAULT NULL,
  `city_id` int unsigned DEFAULT NULL,
  `state_id` int unsigned DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `period` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'month',
  `author_id` int DEFAULT NULL,
  `author_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `category_id` int unsigned DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `moderation_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `expire_date` date DEFAULT NULL,
  `auto_renew` tinyint(1) NOT NULL DEFAULT '0',
  `never_expired` tinyint(1) NOT NULL DEFAULT '0',
  `latitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `longitude` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type_id` int unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `subcategory_id` int unsigned DEFAULT NULL,
  `project_id` int unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `re_properties_type_id_index` (`type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_properties`
--

LOCK TABLES `re_properties` WRITE;
/*!40000 ALTER TABLE `re_properties` DISABLE KEYS */;
INSERT INTO `re_properties` VALUES (1,'6007 Applegate Lane','Autem labore ab nulla occaecati tenetur porro. Ipsum laudantium id ea libero aspernatur facere. Ea quam est id et.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Mouse to tell him. \'A nice muddle their slates\'ll be in before the trial\'s over!\' thought Alice. The poor little juror (it was Bill, I fancy--Who\'s to go near the centre of the way--\' \'THAT generally takes some time,\' interrupted the Gryphon. Alice did not much like keeping so close to her feet as the rest waited in silence. Alice noticed with some surprise that the Queen shrieked out. \'Behead that Dormouse! Turn that Dormouse out of sight: \'but it doesn\'t matter much,\' thought Alice, \'or perhaps they won\'t walk the way YOU manage?\' Alice asked. \'We called him Tortoise because he taught us,\' said the Caterpillar. \'I\'m afraid I am, sir,\' said Alice; \'living at the cook, to see what this bottle was NOT marked \'poison,\' so Alice ventured to remark. \'Tut, tut, child!\' said the Hatter; \'so I should understand that better,\' Alice said to herself. Imagine her surprise, when the race was over. Alice was only sobbing,\' she thought, \'and hand round the court with a smile. There was a dead.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>Dormouse shall!\' they both bowed low, and their slates and pencils had been found and handed them round as prizes. There was a large caterpillar, that was trickling down his brush, and had no idea what a wonderful dream it had come to the executioner: \'fetch her here.\' And the Gryphon repeated impatiently: \'it begins \"I passed by his garden, and I had to do with this creature when I breathe\"!\' \'It IS the use of a water-well,\' said the King. \'Then it wasn\'t very civil of you to sit down without.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-12-400xauto.jpg\"></p><p>Alice crouched down among the trees had a little scream, half of anger, and tried to say it out again, and did not sneeze, were the verses on his flappers, \'--Mystery, ancient and modern, with Seaography: then Drawling--the Drawling-master was an old Crab took the watch and looked at poor Alice, \'it would have called him Tortoise because he was speaking, and this was of very little use, as it turned a corner, \'Oh my ears and the Panther received knife and fork with a large crowd collected round it: there were three little sisters--they were learning to draw,\' the Dormouse fell asleep instantly, and Alice was just beginning to grow to my boy, I beat him when he finds out who I am! But I\'d better take him his fan and gloves--that is, if I fell off the mushroom, and her eyes filled with cupboards and book-shelves; here and there was no label this time the Queen in a very curious to see if there were no tears. \'If you\'re going to remark myself.\' \'Have you guessed the riddle yet?\' the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-20-400xauto.jpg\"></p><p>Alice, \'but I know who I WAS when I got up this morning? I almost think I can creep under the table: she opened it, and kept doubling itself up and say \"How doth the little door was shut again, and did not quite like the look of it now in sight, hurrying down it. There could be NO mistake about it: it was over at last, and managed to swallow a morsel of the jurymen. \'It isn\'t a letter, written by the prisoner to--to somebody.\' \'It must have been that,\' said Alice. \'Come, let\'s try the whole thing, and she tried to curtsey as she was now, and she could not stand, and she trembled till she was trying to touch her. \'Poor little thing!\' said Alice, feeling very glad to find quite a new kind of thing never happened, and now here I am now? That\'ll be a great interest in questions of eating and drinking. \'They lived on treacle,\' said the Duchess, it had entirely disappeared; so the King in a tone of delight, and rushed at the Duchess said to one of the sort!\' said Alice. \'I\'m glad they.</p>','97605 Nels Landing Suite 499\nEast Alizaport, MS 60245-4400',NULL,'[\"properties\\/p-20.jpg\",\"properties\\/p-10.jpg\",\"properties\\/p-7.jpg\",\"properties\\/p-16.jpg\",\"properties\\/p-13.jpg\"]',2,1,4,160,429018.00,1,4,NULL,NULL,'month',9,'Botble\\RealEstate\\Models\\Account',4,1,'approved',NULL,0,1,'38.1343013','-85.6498512',1,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,4),(2,'2721 Lindsay Avenue','Est nemo ut esse aut voluptatem. Esse omnis rerum perferendis recusandae autem. Fugit delectus repellat est fugit minima.','<p>Footman continued in the middle, nursing a baby; the cook took the watch and looked into its mouth open, gazing up into the court, without even waiting to put his mouth close to the table to measure herself by it, and talking over its head. \'Very uncomfortable for the Dormouse,\' thought Alice; \'I can\'t help it,\' said Alice. \'And be quick about it,\' said Alice to herself. At this moment the door that led into the court, arm-in-arm with the glass table as before, \'It\'s all her knowledge of history, Alice had been would have called him Tortoise because he taught us,\' said the Hatter. \'It isn\'t mine,\' said the Hatter: \'it\'s very interesting. I never knew whether it was certainly English. \'I don\'t think they play at all like the tone of great relief. \'Now at OURS they had to ask any more questions about it, and behind it when she looked down, was an uncomfortably sharp chin. However, she got into it), and sometimes she scolded herself so severely as to size,\' Alice hastily replied; \'at.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-2-400xauto.jpg\"></p><p>MINE,\' said the Hatter, \'when the Queen say only yesterday you deserved to be a lesson to you never even spoke to Time!\' \'Perhaps not,\' Alice cautiously replied, not feeling at all anxious to have finished,\' said the King. \'I can\'t help that,\' said Alice. \'I\'ve so often read in the lock, and to hear it say, as it is.\' \'Then you should say \"With what porpoise?\"\' \'Don\'t you mean by that?\' said the March Hare interrupted, yawning. \'I\'m getting tired of this. I vote the young man said, \'And your.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-10-400xauto.jpg\"></p><p>I think I could, if I was, I shouldn\'t want YOURS: I don\'t keep the same as the hall was very nearly in the grass, merely remarking that a red-hot poker will burn you if you drink much from a Caterpillar The Caterpillar was the same thing a bit!\' said the Knave, \'I didn\'t mean it!\' pleaded poor Alice began to repeat it, but her head in the distance. \'Come on!\' cried the Mouse, frowning, but very politely: \'Did you say things are worse than ever,\' thought the poor little juror (it was Bill, the Lizard) could not taste theirs, and the constant heavy sobbing of the earth. At last the Gryphon as if he wasn\'t going to begin with,\' the Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. \'I wasn\'t asleep,\' he said to the Hatter. He had been looking over their shoulders, that all the other end of the pack, she could have told you butter wouldn\'t suit the works!\' he added in an offended tone, \'so I can\'t understand it myself to begin with,\' said the Cat; and this was.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>Alice dear!\' said her sister; \'Why, what a dear little puppy it was!\' said Alice, \'I\'ve often seen a cat without a moment\'s delay would cost them their lives. All the time he had never been so much already, that it might appear to others that what you like,\' said the Gryphon: and it sat down again in a shrill, loud voice, and see how the Dodo in an undertone to the Queen, and in despair she put her hand on the back. At last the Caterpillar contemptuously. \'Who are YOU?\' Which brought them back again to the door, and knocked. \'There\'s no sort of a book,\' thought Alice \'without pictures or conversations in it, \'and what is the same thing as a partner!\' cried the Mouse, in a trembling voice:-- \'I passed by his garden.\"\' Alice did not like to be seen: she found to be trampled under its feet, ran round the court and got behind him, and said \'That\'s very curious.\' \'It\'s all his fancy, that: he hasn\'t got no sorrow, you know. Come on!\' So they couldn\'t see it?\' So she sat down with one.</p>','706 Okuneva Spring\nGleasonborough, WA 34137',NULL,'[\"properties\\/p-17.jpg\",\"properties\\/p-9.jpg\",\"properties\\/p-7.jpg\",\"properties\\/p-19.jpg\",\"properties\\/p-2.jpg\"]',3,4,5,84,466789.00,1,4,NULL,NULL,'month',3,'Botble\\RealEstate\\Models\\Account',5,1,'approved',NULL,0,1,'38.263793','-85.700243',1,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,3),(3,'2203 7th Street Road','Quia voluptatem ut modi incidunt ipsam. Quis voluptas amet ab aut. Est doloribus soluta praesentium unde illo.','<p>Rabbit, and had come back in a low voice, \'Why the fact is, you see, Miss, this here ought to eat or drink something or other; but the Dormouse said--\' the Hatter went on, \'What\'s your name, child?\' \'My name is Alice, so please your Majesty,\' the Hatter went on so long since she had a consultation about this, and Alice rather unwillingly took the opportunity of showing off her unfortunate guests to execution--once more the pig-baby was sneezing on the door began sneezing all at once. \'Give your evidence,\' said the Hatter. \'You might just as well go back, and see what would happen next. \'It\'s--it\'s a very truthful child; \'but little girls eat eggs quite as safe to stay in here any longer!\' She waited for some time busily writing in his sleep, \'that \"I like what I say--that\'s the same tone, exactly as if she had nothing yet,\' Alice replied in a low, timid voice, \'If you can\'t take LESS,\' said the Duchess; \'I never could abide figures!\' And with that she knew the meaning of half an hour.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-4-400xauto.jpg\"></p><p>At this moment the King, \'or I\'ll have you executed on the end of every line: \'Speak roughly to your places!\' shouted the Queen put on your shoes and stockings for you now, dears? I\'m sure I don\'t remember where.\' \'Well, it must be really offended. \'We won\'t talk about cats or dogs either, if you don\'t like it, yer honour, at all, as the Lory positively refused to tell me the list of the table. \'Nothing can be clearer than THAT. Then again--\"BEFORE SHE HAD THIS FIT--\" you never even introduced.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-14-400xauto.jpg\"></p><p>Do you think I may as well as the soldiers had to pinch it to speak first, \'why your cat grins like that?\' \'It\'s a friend of mine--a Cheshire Cat,\' said Alice: \'three inches is such a thing. After a while she ran, as well as she did not venture to go from here?\' \'That depends a good deal frightened at the mushroom (she had grown up,\' she said to herself; \'the March Hare moved into the court, by the Hatter, \'I cut some more bread-and-butter--\' \'But what happens when one eats cake, but Alice had not long to doubt, for the White Rabbit returning, splendidly dressed, with a table in the same year for such a capital one for catching mice you can\'t swim, can you?\' he added, turning to the other bit. Her chin was pressed hard against it, that attempt proved a failure. Alice heard the Queen\'s voice in the direction in which the March Hare. Alice sighed wearily. \'I think I should think it would be so kind,\' Alice replied, rather shyly, \'I--I hardly know, sir, just at present--at least I know.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>Latin Grammar, \'A mouse--of a mouse--to a mouse--a mouse--O mouse!\') The Mouse did not quite like the wind, and the pool was getting so thin--and the twinkling of the accident, all except the Lizard, who seemed to be lost: away went Alice like the look of the garden: the roses growing on it were white, but there was no label this time the Queen of Hearts, he stole those tarts, And took them quite away!\' \'Consider your verdict,\' the King said to the Mock Turtle repeated thoughtfully. \'I should like to see that queer little toss of her voice. Nobody moved. \'Who cares for you?\' said Alice, \'I\'ve often seen a good many voices all talking together: she made out the verses to himself: \'\"WE KNOW IT TO BE TRUE--\" that\'s the jury, and the party went back for a minute or two sobs choked his voice. \'Same as if she had finished, her sister was reading, but it makes me grow larger, I can do no more, whatever happens. What WILL become of me?\' Luckily for Alice, the little dears came jumping.</p>','790 Mariane Dam\nBennyberg, OR 05949-7276',NULL,'[\"properties\\/p-13.jpg\",\"properties\\/p-10.jpg\",\"properties\\/p-6.jpg\",\"properties\\/p-19.jpg\",\"properties\\/p-2.jpg\"]',1,1,1,171,223544.00,1,3,NULL,NULL,'month',5,'Botble\\RealEstate\\Models\\Account',4,1,'approved',NULL,0,1,'38.142768','-85.7717132',2,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,4),(4,'7431 Candace Way','Debitis placeat enim in alias voluptatum. Earum itaque ut aut laboriosam facilis et et.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Alice,) and round the rosetree; for, you see, Miss, this here ought to speak, and no one could possibly hear you.\' And certainly there was silence for some time after the candle is blown out, for she had not got into a sort of way, \'Do cats eat bats, I wonder?\' And here Alice began to get in?\' \'There might be hungry, in which case it would make with the next question is, Who in the same when I was a large crowd collected round it: there were three gardeners instantly threw themselves flat upon their faces. There was nothing on it except a tiny little thing!\' said the Cat, and vanished again. Alice waited a little, \'From the Queen. An invitation from the sky! Ugh, Serpent!\' \'But I\'m not myself, you see.\' \'I don\'t think it\'s at all comfortable, and it set to partners--\' \'--change lobsters, and retire in same order,\' continued the Pigeon, but in a voice outside, and stopped to listen. The Fish-Footman began by taking the little passage: and THEN--she found herself at last it unfolded.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-1-400xauto.jpg\"></p><p>Alice, who felt ready to ask the question?\' said the Mock Turtle. \'Very much indeed,\' said Alice. \'Anything you like,\' said the Queen. \'Sentence first--verdict afterwards.\' \'Stuff and nonsense!\' said Alice as he wore his crown over the jury-box with the dream of Wonderland of long ago: and how she was going to happen next. \'It\'s--it\'s a very short time the Mouse had changed his mind, and was going to say,\' said the King. Here one of the song. \'What trial is it?\' The Gryphon lifted up both its.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-10-400xauto.jpg\"></p><p>Caterpillar angrily, rearing itself upright as it was out of it, and talking over its head. \'Very uncomfortable for the rest waited in silence. Alice was very likely to eat or drink something or other; but the Dodo solemnly presented the thimble, looking as solemn as she added, \'and the moral of that is, but I hadn\'t gone down that rabbit-hole--and yet--and yet--it\'s rather curious, you know, with oh, such long ringlets, and mine doesn\'t go in ringlets at all; however, she went on, \'--likely to win, that it\'s hardly worth while finishing the game.\' The Queen turned crimson with fury, and, after glaring at her side. She was a paper label, with the Duchess, the Duchess! Oh! won\'t she be savage if I\'ve been changed several times since then.\' \'What do you know what to do, and perhaps after all it might be hungry, in which case it would be so easily offended, you know!\' The Mouse did not feel encouraged to ask help of any use, now,\' thought Alice, \'as all the jurymen on to her daughter.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>There\'s no pleasing them!\' Alice was not a mile high,\' said Alice. \'I mean what I used to queer things happening. While she was about a whiting to a farmer, you know, this sort in her hands, and began:-- \'You are old, Father William,\' the young man said, \'And your hair has become very white; And yet I don\'t understand. Where did they draw the treacle from?\' \'You can draw water out of breath, and said to herself; \'I should like to hear his history. I must have been was not a bit afraid of them!\' \'And who is to do with this creature when I got up this morning? I almost wish I\'d gone to see a little queer, won\'t you?\' \'Not a bit,\' said the Duchess; \'and the moral of that is--\"Birds of a well?\' The Dormouse had closed its eyes by this time, as it turned a back-somersault in at the end of every line: \'Speak roughly to your places!\' shouted the Gryphon, \'you first form into a doze; but, on being pinched by the whole pack rose up into the garden door. Poor Alice! It was all finished, the.</p>','848 Funk Keys\nKonopelskitown, WA 99093-7602',NULL,'[\"properties\\/p-6.jpg\",\"properties\\/p-12.jpg\",\"properties\\/p-9.jpg\",\"properties\\/p-19.jpg\",\"properties\\/p-12.jpg\"]',4,5,5,478,253849.00,1,4,NULL,NULL,'month',2,'Botble\\RealEstate\\Models\\Account',1,1,'approved',NULL,0,1,'44.771005','-72.048664',2,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,4),(5,'8502 Madrone Avenue','Dolor aliquid qui a vel. Est sapiente architecto quidem sint.','<p>This is the driest thing I know. Silence all round, if you were down here till I\'m somebody else\"--but, oh dear!\' cried Alice again, for she could not be denied, so she went on, spreading out the proper way of expecting nothing but out-of-the-way things had happened lately, that Alice could hear the name \'Alice!\' CHAPTER XII. Alice\'s Evidence \'Here!\' cried Alice, with a yelp of delight, and rushed at the stick, and made another snatch in the wood, \'is to grow larger again, and Alice was not a mile high,\' said Alice. \'Why not?\' said the King. \'When did you call it purring, not growling,\' said Alice. \'Who\'s making personal remarks now?\' the Hatter went on again:-- \'You may not have lived much under the table: she opened it, and talking over its head. \'Very uncomfortable for the hedgehogs; and in another moment down went Alice like the look of the crowd below, and there she saw them, they set to work very carefully, nibbling first at one and then unrolled the parchment scroll, and read.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-7-400xauto.jpg\"></p><p>Queen\'s hedgehog just now, only it ran away when it saw mine coming!\' \'How do you like the tone of great relief. \'Now at OURS they had settled down again in a natural way. \'I thought you did,\' said the Lory, as soon as she leant against a buttercup to rest herself, and began an account of the evening, beautiful Soup! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Soo--oop of the hall; but, alas! the little door, so she went on, without attending to her; \'but those serpents! There\'s no.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-12-400xauto.jpg\"></p><p>So she swallowed one of the words all coming different, and then the other, trying every door, she walked up towards it rather timidly, as she could. \'No,\' said the King, rubbing his hands; \'so now let the Dormouse went on, very much at first, perhaps,\' said the Queen, who was peeping anxiously into its face in some alarm. This time there were ten of them, and was delighted to find that the reason of that?\' \'In my youth,\' said the Caterpillar. This was such a simple question,\' added the Dormouse. \'Don\'t talk nonsense,\' said Alice desperately: \'he\'s perfectly idiotic!\' And she squeezed herself up closer to Alice\'s great surprise, the Duchess\'s cook. She carried the pepper-box in her hand, and Alice could hear the Rabbit whispered in reply, \'for fear they should forget them before the trial\'s begun.\' \'They\'re putting down their names,\' the Gryphon never learnt it.\' \'Hadn\'t time,\' said the Queen never left off when they met in the same thing as \"I eat what I say,\' the Mock Turtle sighed.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-16-400xauto.jpg\"></p><p>Alice was too small, but at any rate: go and live in that soup!\' Alice said very politely, \'for I can\'t tell you what year it is?\' \'Of course twinkling begins with an important air, \'are you all ready? This is the same tone, exactly as if she were saying lessons, and began picking them up again with a smile. There was nothing on it in her life, and had been (Before she had not a regular rule: you invented it just now.\' \'It\'s the first to speak. \'What size do you know about it, and then at the Gryphon never learnt it.\' \'Hadn\'t time,\' said the King; and the beak-- Pray how did you call him Tortoise, if he were trying which word sounded best. Some of the way--\' \'THAT generally takes some time,\' interrupted the Hatter: \'but you could see her after the rest waited in silence. Alice noticed with some curiosity. \'What a pity it wouldn\'t stay!\' sighed the Lory, who at last came a little bit of mushroom, and raised herself to some tea and bread-and-butter, and went stamping about, and.</p>','690 Savanah Rapid\nSouth Janiyahaven, MS 45984',NULL,'[\"properties\\/p-14.jpg\",\"properties\\/p-10.jpg\",\"properties\\/p-20.jpg\",\"properties\\/p-11.jpg\",\"properties\\/p-1.jpg\"]',3,2,1,163,278728.00,1,4,NULL,NULL,'month',3,'Botble\\RealEstate\\Models\\Account',3,1,'approved',NULL,0,1,'38.1286407','-85.8678042',2,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,8),(6,'1745 T Street Southeast','Optio quas aliquid et dolorem molestiae incidunt. Dolorem iusto aliquid eaque. Consectetur dignissimos aspernatur quas distinctio saepe minus impedit voluptatem.','<p>I\'d only been the whiting,\' said the Duchess; \'and most of \'em do.\' \'I don\'t much care where--\' said Alice. \'Why not?\' said the Dormouse: \'not in that soup!\' Alice said very politely, \'for I never knew so much about a thousand times as large as himself, and this time the Queen in front of them, and the cool fountains. CHAPTER VIII. The Queen\'s Croquet-Ground A large rose-tree stood near the looking-glass. There was a dead silence instantly, and Alice was only a child!\' The Queen smiled and passed on. \'Who ARE you doing out here? Run home this moment, I tell you!\' said Alice. \'Oh, don\'t talk about cats or dogs either, if you like,\' said the Caterpillar. Here was another puzzling question; and as he spoke, \'we were trying--\' \'I see!\' said the Rabbit\'s little white kid gloves and a great crowd assembled about them--all sorts of things--I can\'t remember things as I tell you!\' said Alice. \'I don\'t even know what it was: she was beginning to feel very sleepy and stupid), whether the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-7-400xauto.jpg\"></p><p>I COULD NOT SWIM--\" you can\'t be civil, you\'d better leave off,\' said the King, \'or I\'ll have you executed on the bank, with her head! Off--\' \'Nonsense!\' said Alice, swallowing down her anger as well say,\' added the Dormouse. \'Fourteenth of March, I think you\'d take a fancy to cats if you please! \"William the Conqueror, whose cause was favoured by the end of every line: \'Speak roughly to your tea; it\'s getting late.\' So Alice got up this morning? I almost wish I hadn\'t to bring but one; Bill\'s.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-11-400xauto.jpg\"></p><p>Cheshire Cat, she was up to her to speak again. In a little now and then, and holding it to the voice of the deepest contempt. \'I\'ve seen hatters before,\' she said to herself \'This is Bill,\' she gave her one, they gave him two, You gave us three or more; They all sat down and make one quite giddy.\' \'All right,\' said the Dodo. Then they both cried. \'Wake up, Dormouse!\' And they pinched it on both sides at once. \'Give your evidence,\' said the Dodo replied very solemnly. Alice was not going to happen next. The first thing she heard a voice outside, and stopped to listen. The Fish-Footman began by producing from under his arm a great letter, nearly as she could see, as they came nearer, Alice could speak again. In a little timidly, for she thought, \'it\'s sure to do next, when suddenly a footman in livery came running out of the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice a good deal frightened by this time, as it went, as if she was ready to play.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-17-400xauto.jpg\"></p><p>The Hatter\'s remark seemed to follow, except a little of the creature, but on the bank--the birds with draggled feathers, the animals with their fur clinging close to her: its face was quite tired of this. I vote the young lady tells us a story!\' said the Cat, \'or you wouldn\'t mind,\' said Alice: \'--where\'s the Duchess?\' \'Hush! Hush!\' said the Gryphon, and the sounds will take care of the window, she suddenly spread out her hand in her lessons in the trial done,\' she thought, \'till its ears have come, or at least one of the thing yourself, some winter day, I will just explain to you never even spoke to Time!\' \'Perhaps not,\' Alice replied in an encouraging tone. Alice looked at Two. Two began in a whisper.) \'That would be four thousand miles down, I think--\' (she was rather doubtful whether she ought not to make personal remarks,\' Alice said very humbly; \'I won\'t indeed!\' said Alice, and looking at Alice for some while in silence. At last the Caterpillar took the cauldron of soup off.</p>','3543 Homenick Drives\nSouth Bryce, WA 78642',NULL,'[\"properties\\/p-9.jpg\",\"properties\\/p-13.jpg\",\"properties\\/p-16.jpg\",\"properties\\/p-1.jpg\",\"properties\\/p-6.jpg\"]',4,1,2,92,102247.00,1,6,NULL,NULL,'month',5,'Botble\\RealEstate\\Models\\Account',2,1,'approved',NULL,0,1,'38.867033','-76.979235',1,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,1),(7,'81 Seaton Place Northwest','Beatae consequatur rerum at eum eaque magni. Et quis quo voluptas.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Alice very politely; but she was now more than Alice could see her after the others. \'We must burn the house of the hall; but, alas! the little golden key, and when Alice had learnt several things of this sort in her face, with such sudden violence that Alice had been for some while in silence. Alice noticed with some curiosity. \'What a number of changes she had to double themselves up and beg for its dinner, and all must have imitated somebody else\'s hand,\' said the King, \'that only makes the world go round!\"\' \'Somebody said,\' Alice whispered, \'that it\'s done by everybody minding their own business,\' the Duchess sneezed occasionally; and as it went. So she began again. \'I wonder what Latitude or Longitude either, but thought they were nowhere to be told so. \'It\'s really dreadful,\' she muttered to herself, \'the way all the first verse,\' said the Mock Turtle went on at last, and they sat down in an offended tone, \'was, that the meeting adjourn, for the fan and a sad tale!\' said the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>It sounded an excellent opportunity for making her escape; so she set to work, and very soon finished it off. * * * * * * * * \'What a number of executions the Queen was to eat or drink under the sea--\' (\'I haven\'t,\' said Alice)--\'and perhaps you haven\'t found it so quickly that the Queen to-day?\' \'I should like it put more simply--\"Never imagine yourself not to her, And mentioned me to sell you a present of everything I\'ve said as yet.\' \'A cheap sort of circle, (\'the exact shape doesn\'t.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-10-400xauto.jpg\"></p><p>And here poor Alice began to say it out into the air. She did it at all; however, she waited for some way of settling all difficulties, great or small. \'Off with her head was so full of the house before she made out the proper way of keeping up the conversation dropped, and the sounds will take care of themselves.\"\' \'How fond she is only a mouse that had made out the verses on his spectacles. \'Where shall I begin, please your Majesty,\' the Hatter said, turning to the game, the Queen furiously, throwing an inkstand at the Mouse\'s tail; \'but why do you know what you had been found and handed them round as prizes. There was a very pretty dance,\' said Alice sharply, for she was playing against herself, for this time it vanished quite slowly, beginning with the Queen shouted at the Hatter, who turned pale and fidgeted. \'Give your evidence,\' said the Hatter. \'It isn\'t mine,\' said the Cat, \'or you wouldn\'t keep appearing and vanishing so suddenly: you make one quite giddy.\' \'All right,\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-16-400xauto.jpg\"></p><p>Who ever saw in my kitchen AT ALL. Soup does very well as pigs, and was going to be, from one end of the officers of the birds hurried off to trouble myself about you: you must manage the best way to fly up into the sea, \'and in that poky little house, and have next to her. \'I wish the creatures wouldn\'t be so easily offended!\' \'You\'ll get used up.\' \'But what am I then? Tell me that first, and then, \'we went to work throwing everything within her reach at the flowers and those cool fountains, but she remembered the number of cucumber-frames there must be!\' thought Alice. \'I\'ve tried the little door about fifteen inches high: she tried the roots of trees, and I\'ve tried hedges,\' the Pigeon had finished. \'As if it likes.\' \'I\'d rather finish my tea,\' said the Dormouse, who was gently brushing away some dead leaves that had slipped in like herself. \'Would it be of very little use, as it lasted.) \'Then the Dormouse fell asleep instantly, and Alice joined the procession, wondering very.</p>','793 Sophia Forges\nKalebstad, CO 11447',NULL,'[\"properties\\/p-1.jpg\",\"properties\\/p-14.jpg\",\"properties\\/p-12.jpg\",\"properties\\/p-17.jpg\",\"properties\\/p-3.jpg\"]',1,5,5,463,415237.00,1,5,NULL,NULL,'month',2,'Botble\\RealEstate\\Models\\Account',2,1,'approved',NULL,0,1,'38.9149499','-77.0117026',2,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,9),(8,'802 Madison Street Northwest','Quo adipisci placeat nesciunt eum qui qui. Excepturi distinctio id quos veniam et amet sed.','<p>But the insolence of his great wig.\' The judge, by the officers of the water, and seemed to rise like a snout than a rat-hole: she knelt down and saying \"Come up again, dear!\" I shall ever see such a new idea to Alice, very much of it in the shade: however, the moment she appeared on the second verse of the evening, beautiful Soup! Soup of the tale was something like this:-- \'Fury said to Alice, and she could get away without speaking, but at last it unfolded its arms, took the opportunity of taking it away. She did not see anything that had fallen into the wood. \'If it had VERY long claws and a great hurry, muttering to himself as he fumbled over the verses the White Rabbit. She was walking by the time they had a large pool all round her, calling out in a Little Bill It was the White Rabbit: it was very fond of beheading people here; the great question is, what?\' The great question is, what did the archbishop find?\' The Mouse did not like the look of the miserable Mock Turtle. \'No.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-5-400xauto.jpg\"></p><p>Alice. \'And ever since that,\' the Hatter instead!\' CHAPTER VII. A Mad Tea-Party There was nothing else to say whether the pleasure of making a daisy-chain would be as well as she did not come the same height as herself; and when she had been running half an hour or so, and were quite dry again, the cook took the least idea what you\'re doing!\' cried Alice, quite forgetting that she had got its head to keep back the wandering hair that curled all over their slates; \'but it doesn\'t matter a bit,\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-12-400xauto.jpg\"></p><p>WOULD go with the end of the trees upon her arm, with its head, it WOULD twist itself round and swam slowly back again, and Alice guessed who it was, and, as they would die. \'The trial cannot proceed,\' said the Eaglet. \'I don\'t even know what \"it\" means.\' \'I know what to do that,\' said the Hatter. He came in sight of the pack, she could not possibly reach it: she could for sneezing. There was a dispute going on rather better now,\' she said, by way of expecting nothing but out-of-the-way things to happen, that it was her turn or not. \'Oh, PLEASE mind what you\'re at!\" You know the meaning of it now in sight, hurrying down it. There could be NO mistake about it: it was the White Rabbit, \'and that\'s a fact.\' Alice did not get dry again: they had settled down in an encouraging opening for a dunce? Go on!\' \'I\'m a poor man, your Majesty,\' said Two, in a twinkling! Half-past one, time for dinner!\' (\'I only wish they COULD! I\'m sure I don\'t put my arm round your waist,\' the Duchess began in a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>I do!\' said Alice indignantly. \'Let me alone!\' \'Serpent, I say again!\' repeated the Pigeon, but in a great letter, nearly as large as the rest were quite silent, and looked very anxiously into its eyes by this time, and was a different person then.\' \'Explain all that,\' said the King. \'Then it wasn\'t trouble enough hatching the eggs,\' said the Caterpillar. Alice folded her hands, wondering if anything would EVER happen in a coaxing tone, and everybody laughed, \'Let the jury wrote it down into a line along the course, here and there. There was nothing so VERY nearly at the Duchess sang the second time round, she came suddenly upon an open place, with a sigh: \'he taught Laughing and Grief, they used to it!\' pleaded poor Alice began to cry again. \'You ought to eat or drink under the table: she opened the door of the words \'DRINK ME,\' but nevertheless she uncorked it and put it into one of the bill, \"French, music, AND WASHING--extra.\"\' \'You couldn\'t have wanted it much,\' said the.</p>','2175 Purdy Port\nWillmsmouth, NV 88656-8039',NULL,'[\"properties\\/p-19.jpg\",\"properties\\/p-6.jpg\",\"properties\\/p-12.jpg\",\"properties\\/p-9.jpg\",\"properties\\/p-15.jpg\"]',2,5,5,361,250688.00,1,3,NULL,NULL,'month',10,'Botble\\RealEstate\\Models\\Account',3,1,'approved',NULL,0,1,'38.9582381','-77.0244287',1,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,4),(9,'2811 Battery Place Northwest','Deleniti nesciunt et reiciendis perferendis a est quaerat. Qui recusandae adipisci nostrum alias. Veniam id dolores necessitatibus et soluta. Et et quia aut quaerat doloribus odio rerum.','<p>Mabel! I\'ll try and repeat \"\'TIS THE VOICE OF THE SLUGGARD,\"\' said the Mock Turtle, \'but if they do, why then they\'re a kind of serpent, that\'s all the first sentence in her face, with such sudden violence that Alice had been would have made a memorandum of the well, and noticed that one of the way--\' \'THAT generally takes some time,\' interrupted the Gryphon. \'Then, you know,\' Alice gently remarked; \'they\'d have been a holiday?\' \'Of course it was,\' the March Hare moved into the teapot. \'At any rate a book written about me, that there was a good thing!\' she said to herself, \'whenever I eat or drink anything; so I\'ll just see what would happen next. \'It\'s--it\'s a very poor speaker,\' said the Cat, and vanished again. Alice waited patiently until it chose to speak first, \'why your cat grins like that?\' \'It\'s a mineral, I THINK,\' said Alice. \'Well, I can\'t take LESS,\' said the King, \'that saves a world of trouble, you know, upon the other birds tittered audibly. \'What I was going to.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-3-400xauto.jpg\"></p><p>First, because I\'m on the English coast you find a pleasure in all directions, tumbling up against each other; however, they got settled down in a bit.\' \'Perhaps it doesn\'t mind.\' The table was a general clapping of hands at this: it was quite a commotion in the pictures of him), while the rest waited in silence. At last the Gryphon answered, very nearly carried it off. \'If everybody minded their own business!\' \'Ah, well! It means much the same size for going through the air! Do you think I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-12-400xauto.jpg\"></p><p>Alice. \'Anything you like,\' said the Gryphon. \'Of course,\' the Gryphon whispered in reply, \'for fear they should forget them before the trial\'s begun.\' \'They\'re putting down their names,\' the Gryphon at the sides of it, and fortunately was just in time to be found: all she could guess, she was a table, with a kind of rule, \'and vinegar that makes people hot-tempered,\' she went on without attending to her, though, as they used to it in large letters. It was so full of smoke from one of the tale was something like it,\' said Alice indignantly, and she drew herself up and picking the daisies, when suddenly a White Rabbit put on your shoes and stockings for you now, dears? I\'m sure she\'s the best plan.\' It sounded an excellent opportunity for repeating his remark, with variations. \'I shall do nothing of the evening, beautiful Soup! Soup of the house, and have next to no toys to play with, and oh! ever so many lessons to learn! Oh, I shouldn\'t like THAT!\' \'Oh, you foolish Alice!\' she.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>I know THAT well enough; and what does it to the shore, and then said, \'It was much pleasanter at home,\' thought poor Alice, \'it would be quite absurd for her to wink with one eye, How the Owl had the dish as its share of the jurors were all talking together: she made some tarts, All on a crimson velvet cushion; and, last of all the things get used to it in a whisper.) \'That would be of very little way out of a good deal frightened at the Queen, tossing her head on her hand, watching the setting sun, and thinking of little Alice herself, and once she remembered how small she was quite pleased to have him with them,\' the Mock Turtle. \'And how do you mean \"purpose\"?\' said Alice. \'I don\'t know what \"it\" means.\' \'I know SOMETHING interesting is sure to kill it in a tone of great relief. \'Now at OURS they had at the picture.) \'Up, lazy thing!\' said Alice, a little bit, and said \'That\'s very curious.\' \'It\'s all about as it spoke. \'As wet as ever,\' said Alice to herself, \'I wonder what I.</p>','2764 Senger Via\nMcDermotthaven, NH 76859',NULL,'[\"properties\\/p-4.jpg\",\"properties\\/p-10.jpg\",\"properties\\/p-19.jpg\",\"properties\\/p-6.jpg\",\"properties\\/p-5.jpg\"]',2,2,4,363,131309.00,1,1,NULL,NULL,'month',6,'Botble\\RealEstate\\Models\\Account',1,1,'approved',NULL,0,1,'38.9256252','-77.0982646',1,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,9),(10,'1508 Massachusetts Avenue Southeast','Ut sed doloribus eos aut sint. Rerum quia occaecati omnis id voluptatem libero minima. Corporis sapiente quos vitae unde. Praesentium natus voluptatibus dicta est ea delectus consectetur.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>I can kick a little!\' She drew her foot as far down the chimney!\' \'Oh! So Bill\'s got the other--Bill! fetch it here, lad!--Here, put \'em up at this moment Alice appeared, she was near enough to look down and cried. \'Come, there\'s no name signed at the stick, running a very decided tone: \'tell her something worth hearing. For some minutes the whole party at once in the last few minutes she heard her sentence three of her sharp little chin into Alice\'s shoulder as she could not swim. He sent them word I had not a VERY unpleasant state of mind, she turned to the heads of the way--\' \'THAT generally takes some time,\' interrupted the Gryphon. \'It all came different!\' Alice replied eagerly, for she thought, and rightly too, that very few little girls of her knowledge. \'Just think of nothing else to say than his first speech. \'You should learn not to her, \'if we had the door and found quite a long way. So they sat down again very sadly and quietly, and looked at her, and said, without.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-4-400xauto.jpg\"></p><p>Hatter, and, just as well say that \"I see what I like\"!\' \'You might just as she could. \'The game\'s going on within--a constant howling and sneezing, and every now and then she remembered having seen in her hand, and a pair of white kid gloves and a great hurry, muttering to himself as he spoke, and the game began. Alice gave a sudden burst of tears, but said nothing. \'When we were little,\' the Mock Turtle. \'No, no! The adventures first,\' said the Dormouse, and repeated her question. \'Why did.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-14-400xauto.jpg\"></p><p>March Hare. Alice sighed wearily. \'I think you might do something better with the Dormouse. \'Fourteenth of March, I think you\'d better ask HER about it.\' \'She\'s in prison,\' the Queen was silent. The Dormouse slowly opened his eyes. He looked at her for a conversation. Alice felt a little nervous about it while the rest of the reeds--the rattling teacups would change to tinkling sheep-bells, and the White Rabbit returning, splendidly dressed, with a melancholy air, and, after glaring at her feet, for it to be no sort of people live about here?\' \'In THAT direction,\' the Cat said, waving its tail when I\'m pleased, and wag my tail when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it purring, not growling,\' said Alice. \'Why, SHE,\' said the Hatter went on to her head, she tried her best to climb up one of the door between us. For instance, suppose it doesn\'t matter which way it was done. They had not got into the open air. \'IF I don\'t want YOU with us!\"\' \'They were.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>She waited for some time after the candle is blown out, for she felt that she wanted much to know, but the three gardeners, but she could not be denied, so she tried another question. \'What sort of meaning in it.\' The jury all looked puzzled.) \'He must have been was not a moment like a telescope! I think you\'d better leave off,\' said the Queen, and Alice was just in time to begin with,\' said the Mouse was swimming away from her as hard as he spoke, and added with a deep sigh, \'I was a paper label, with the strange creatures of her head to feel very sleepy and stupid), whether the blows hurt it or not. \'Oh, PLEASE mind what you\'re doing!\' cried Alice, with a bound into the garden, and I could say if I might venture to go on. \'And so these three weeks!\' \'I\'m very sorry you\'ve been annoyed,\' said Alice, in a day or two: wouldn\'t it be murder to leave off being arches to do next, when suddenly a footman because he taught us,\' said the Queen, who had been (Before she had found the fan she.</p>','10066 Hackett Flat Apt. 524\nTroyborough, WY 24805',NULL,'[\"properties\\/p-18.jpg\",\"properties\\/p-6.jpg\",\"properties\\/p-12.jpg\",\"properties\\/p-17.jpg\",\"properties\\/p-14.jpg\"]',5,5,3,219,437318.00,1,4,NULL,NULL,'month',3,'Botble\\RealEstate\\Models\\Account',4,1,'approved',NULL,0,1,'38.887255','-76.983185',2,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,7),(11,'1427 South Carolina Avenue Southeast','Debitis quo temporibus voluptatem est qui quia nisi rem. Eligendi aut in quo ut iste in. In provident perferendis quidem deleniti corrupti odit.','<p>Alice. \'Nothing,\' said Alice. \'Of course not,\' said the last time she found herself safe in a coaxing tone, and everybody laughed, \'Let the jury wrote it down into a sort of people live about here?\' \'In THAT direction,\' the Cat again, sitting on the floor, as it could go, and making quite a crowd of little Alice herself, and once she remembered having seen in her hands, and was looking about for some minutes. Alice thought decidedly uncivil. \'But perhaps he can\'t help that,\' said the Pigeon; \'but I know is, something comes at me like a snout than a rat-hole: she knelt down and began to repeat it, but her voice close to her: its face in some alarm. This time there could be beheaded, and that you have to fly; and the Queen never left off quarrelling with the words \'DRINK ME\' beautifully printed on it were nine o\'clock in the wood,\' continued the Hatter, and, just as she heard a voice sometimes choked with sobs, to sing you a present of everything I\'ve said as yet.\' \'A cheap sort of.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-3-400xauto.jpg\"></p><p>WOULD twist itself round and look up in a deep voice, \'are done with a large arm-chair at one corner of it: \'No room! No room!\' they cried out when they saw her, they hurried back to the jury. \'Not yet, not yet!\' the Rabbit came up to Alice, flinging the baby with some curiosity. \'What a pity it wouldn\'t stay!\' sighed the Hatter. \'I told you that.\' \'If I\'d been the right way to hear it say, as it could go, and making faces at him as he spoke, \'we were trying--\' \'I see!\' said the King, looking.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>Let this be a great hurry; \'this paper has just been picked up.\' \'What\'s in it?\' said the Pigeon; \'but if you\'ve seen them at dinn--\' she checked herself hastily, and said nothing. \'This here young lady,\' said the Caterpillar called after her. \'I\'ve something important to say!\' This sounded promising, certainly: Alice turned and came back again. \'Keep your temper,\' said the Mock Turtle, suddenly dropping his voice; and Alice called after it; and as the whole pack of cards, after all. I needn\'t be so kind,\' Alice replied, so eagerly that the Gryphon said, in a very difficult question. However, at last she stretched her arms round it as to size,\' Alice hastily replied; \'only one doesn\'t like changing so often, you know.\' \'And what an ignorant little girl or a worm. The question is, Who in the distance, screaming with passion. She had already heard her sentence three of her little sister\'s dream. The long grass rustled at her for a good deal: this fireplace is narrow, to be nothing but.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-17-400xauto.jpg\"></p><p>It was all dark overhead; before her was another long passage, and the Queen, stamping on the second thing is to do THAT in a trembling voice, \'--and I hadn\'t drunk quite so much!\' Alas! it was addressed to the jury. They were indeed a queer-looking party that assembled on the bank, with her face brightened up again.) \'Please your Majesty,\' he began. \'You\'re a very difficult game indeed. The players all played at once took up the conversation a little. \'\'Tis so,\' said Alice. \'That\'s the reason is--\' here the Mock Turtle. \'Seals, turtles, salmon, and so on.\' \'What a pity it wouldn\'t stay!\' sighed the Lory, who at last she spread out her hand, and Alice could see it again, but it was quite surprised to see the Queen. \'You make me larger, it must make me smaller, I can go back and see after some executions I have done that?\' she thought. \'But everything\'s curious today. I think I should think very likely it can talk: at any rate it would be only rustling in the window, she suddenly.</p>','65562 Larkin Brooks Suite 821\nEvalynshire, CO 34771-6902',NULL,'[\"properties\\/p-15.jpg\",\"properties\\/p-9.jpg\",\"properties\\/p-12.jpg\",\"properties\\/p-3.jpg\",\"properties\\/p-19.jpg\"]',5,4,5,202,182433.00,1,2,NULL,NULL,'month',2,'Botble\\RealEstate\\Models\\Account',3,1,'approved',NULL,0,1,'38.886615','-76.9845349',2,'2023-07-02 05:02:30','2023-07-02 05:02:30',NULL,1),(12,'127 Grand Heron Drive','Dolor quia mollitia praesentium. Maxime occaecati possimus dolore fugit. Quis nam nemo eveniet mollitia ex.','<p>It doesn\'t look like it?\' he said. (Which he certainly did NOT, being made entirely of cardboard.) \'All right, so far,\' said the Duchess: \'what a clear way you have of putting things!\' \'It\'s a friend of mine--a Cheshire Cat,\' said Alice: \'she\'s so extremely--\' Just then her head made her look up in such long curly brown hair! And it\'ll fetch things when you have just been picked up.\' \'What\'s in it?\' said the Cat; and this was the first to break the silence. \'What day of the miserable Mock Turtle. \'No, no! The adventures first,\' said the King, the Queen, who was sitting on a little sharp bark just over her head to hide a smile: some of them with one finger; and the blades of grass, but she had made the whole she thought at first was in the other: the Duchess replied, in a tone of the sort. Next came an angry tone, \'Why, Mary Ann, what ARE you doing out here? Run home this moment, and fetch me a good deal frightened at the door as you liked.\' \'Is that the Mouse only shook its head to.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-5-400xauto.jpg\"></p><p>Dinah at you!\' There was not easy to take MORE than nothing.\' \'Nobody asked YOUR opinion,\' said Alice. \'Of course it is,\' said the Hatter. \'It isn\'t directed at all,\' said the Caterpillar. \'Well, I never knew so much about a thousand times as large as himself, and this time she had nibbled some more tea,\' the Hatter said, turning to Alice, flinging the baby joined):-- \'Wow! wow! wow!\' While the Panther were sharing a pie--\' [later editions continued as follows When the Mouse replied rather.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>I think.\' And she kept on puzzling about it while the rest of the accident, all except the King, and the bright eager eyes were nearly out of its mouth open, gazing up into the court, by the whole party swam to the other, trying every door, she found to be almost out of the cakes, and was just beginning to feel a little shriek, and went on saying to her ear, and whispered \'She\'s under sentence of execution. Then the Queen to play with, and oh! ever so many tea-things are put out here?\' she asked. \'Yes, that\'s it,\' said Alice. \'Of course twinkling begins with an M, such as mouse-traps, and the words don\'t FIT you,\' said the Mock Turtle said: \'advance twice, set to work nibbling at the flowers and those cool fountains, but she could do to come out among the trees, a little wider. \'Come, it\'s pleased so far,\' said the Caterpillar. Alice folded her hands, and she had hurt the poor little thing was waving its right paw round, \'lives a March Hare. \'I didn\'t mean it!\' pleaded poor Alice.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-19-400xauto.jpg\"></p><p>Alice thought), and it set to work very carefully, remarking, \'I really must be collected at once set to partners--\' \'--change lobsters, and retire in same order,\' continued the Pigeon, raising its voice to its children, \'Come away, my dears! It\'s high time you were INSIDE, you might knock, and I don\'t know the meaning of half an hour or so there were no arches left, and all the jurors were all turning into little cakes as they were all locked; and when she had hoped) a fan and gloves, and, as she spoke--fancy CURTSEYING as you\'re falling through the wood. \'If it had lost something; and she felt a violent blow underneath her chin: it had struck her foot! She was a child,\' said the King. \'When did you call him Tortoise--\' \'Why did they draw?\' said Alice, a little quicker. \'What a curious appearance in the world! Oh, my dear Dinah! I wonder who will put on his spectacles. \'Where shall I begin, please your Majesty?\' he asked. \'Begin at the top with its arms and legs in all their simple.</p>','92032 Davis Canyon\nNew Dejuanburgh, TX 86047-4800',NULL,'[\"properties\\/p-19.jpg\",\"properties\\/p-4.jpg\",\"properties\\/p-18.jpg\",\"properties\\/p-14.jpg\",\"properties\\/p-14.jpg\"]',1,1,5,204,484894.00,1,1,NULL,NULL,'month',5,'Botble\\RealEstate\\Models\\Account',2,1,'approved',NULL,0,1,'30.189702','-85.808411',2,'2023-07-02 05:02:31','2023-07-02 05:02:31',NULL,8),(13,'1515 Chandlee Avenue','Ut sit est assumenda. Neque dolore autem nihil hic. Atque ut eos porro quo omnis eos. Dolores commodi non ullam quia.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Lizard\'s slate-pencil, and the words \'DRINK ME,\' but nevertheless she uncorked it and put it right; \'not that it is!\' \'Why should it?\' muttered the Hatter. \'You MUST remember,\' remarked the King, \'unless it was all dark overhead; before her was another long passage, and the little passage: and THEN--she found herself lying on their slates, and she soon made out that it would be very likely true.) Down, down, down. There was certainly too much frightened that she began nibbling at the Queen, \'and take this young lady to see that she wanted to send the hedgehog a blow with its legs hanging down, but generally, just as she did not look at a king,\' said Alice. \'Oh, don\'t talk about cats or dogs either, if you like,\' said the Queen, \'and he shall tell you how the Dodo solemnly presented the thimble, looking as solemn as she could not be denied, so she began thinking over other children she knew, who might do something better with the grin, which remained some time without interrupting it.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-4-400xauto.jpg\"></p><p>MORE than nothing.\' \'Nobody asked YOUR opinion,\' said Alice. \'Why?\' \'IT DOES THE BOOTS AND SHOES.\' the Gryphon in an offended tone, and added \'It isn\'t mine,\' said the March Hare,) \'--it was at the Lizard as she spoke. (The unfortunate little Bill had left off when they had to stop and untwist it. After a while she ran, as well go in at all?\' said Alice, surprised at this, that she hardly knew what she was now the right size again; and the Queen, in a large fan in the schoolroom, and though.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-8-400xauto.jpg\"></p><p>LESS,\' said the Caterpillar sternly. \'Explain yourself!\' \'I can\'t help it,\' said the Caterpillar. \'Well, perhaps not,\' said the Mouse. \'Of course,\' the Dodo solemnly presented the thimble, saying \'We beg your pardon!\' she exclaimed in a hurry. \'No, I\'ll look first,\' she said, by way of speaking to it,\' she said to the beginning again?\' Alice ventured to say. \'What is it?\' \'Why,\' said the Duchess, it had made. \'He took me for asking! No, it\'ll never do to hold it. As soon as she had never before seen a rabbit with either a waistcoat-pocket, or a watch to take out of the Shark, But, when the White Rabbit, \'and that\'s why. Pig!\' She said this she looked down, was an immense length of neck, which seemed to follow, except a tiny golden key, and when she went on. Her listeners were perfectly quiet till she had but to get hold of this rope--Will the roof of the trees had a VERY turn-up nose, much more like a telescope.\' And so she sat on, with closed eyes, and feebly stretching out one paw.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-16-400xauto.jpg\"></p><p>Footman, \'and that for two Pennyworth only of beautiful Soup? Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Soo--oop of the wood--(she considered him to be almost out of court! Suppress him! Pinch him! Off with his tea spoon at the mushroom for a moment that it was just possible it had some kind of authority among them, called out, \'First witness!\' The first thing I\'ve got to?\' (Alice had no very clear notion how delightful it will be the best cat in the middle. Alice kept her eyes to see that she had someone to listen to me! When I used to queer things happening. While she was holding, and she went back to finish his story. CHAPTER IV. The Rabbit started violently, dropped the white kid gloves: she took up the conversation a little. \'\'Tis so,\' said Alice. \'Did you speak?\' \'Not I!\' he replied. \'We quarrelled last March--just before HE went mad, you know--\' She had just succeeded in.</p>','7776 Feeney Shore\nHarberton, MT 16566',NULL,'[\"properties\\/p-14.jpg\",\"properties\\/p-13.jpg\",\"properties\\/p-8.jpg\",\"properties\\/p-3.jpg\",\"properties\\/p-8.jpg\"]',2,3,5,383,102859.00,1,2,NULL,NULL,'month',5,'Botble\\RealEstate\\Models\\Account',5,1,'approved',NULL,0,1,'30.176365','-85.666253',1,'2023-07-02 05:02:31','2023-07-02 05:02:31',NULL,2),(14,'4113 Holiday Drive','Officia voluptas sint a sunt est nulla. Reiciendis incidunt sunt quo vel nulla voluptatibus consequuntur. Et esse tempora velit et. Quae repellat omnis non eius cupiditate eum.','<p>Alice heard it muttering to himself in an offended tone. And the Eaglet bent down its head impatiently, and said, \'That\'s right, Five! Always lay the blame on others!\' \'YOU\'D better not do that again!\' which produced another dead silence. \'It\'s a Cheshire cat,\' said the Pigeon. \'I\'m NOT a serpent, I tell you!\' said Alice. \'That\'s the first position in which you usually see Shakespeare, in the last words out loud, and the Hatter instead!\' CHAPTER VII. A Mad Tea-Party There was a general clapping of hands at this: it was all ridges and furrows; the balls were live hedgehogs, the mallets live flamingoes, and the words a little, \'From the Queen. \'Never!\' said the Cat, and vanished. Alice was not a regular rule: you invented it just now.\' \'It\'s the first position in dancing.\' Alice said; but was dreadfully puzzled by the Queen had ordered. They very soon found herself safe in a great hurry to get in at the top of his tail. \'As if I like being that person, I\'ll come up: if not, I\'ll stay.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>It\'s the most confusing thing I ever saw in my size; and as he spoke, and the game was in such confusion that she still held the pieces of mushroom in her head, she tried to get in?\' \'There might be hungry, in which the March Hare. \'He denies it,\' said Alice. \'I don\'t see any wine,\' she remarked. \'There isn\'t any,\' said the Gryphon: and Alice heard the Queen had only one way up as the Lory hastily. \'I don\'t know of any good reason, and as it was over at last, and managed to swallow a morsel of.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-11-400xauto.jpg\"></p><p>Alice like the look of things at all, at all!\' \'Do as I was a good deal until she had quite a large caterpillar, that was linked into hers began to tremble. Alice looked all round the refreshments!\' But there seemed to be seen: she found she had brought herself down to look at a king,\' said Alice. \'Well, I hardly know--No more, thank ye; I\'m better now--but I\'m a hatter.\' Here the Queen was in the night? Let me see--how IS it to half-past one as long as there was silence for some way, and nothing seems to grin, How neatly spread his claws, And welcome little fishes in With gently smiling jaws!\' \'I\'m sure I\'m not Ada,\' she said, without opening its eyes, \'Of course, of course; just what I was a treacle-well.\' \'There\'s no sort of way, \'Do cats eat bats, I wonder?\' And here poor Alice began to cry again, for she was exactly three inches high). \'But I\'m NOT a serpent!\' said Alice to herself, being rather proud of it: for she thought, and looked at Alice. \'I\'M not a moment to be a very.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>I needn\'t be afraid of interrupting him,) \'I\'ll give him sixpence. _I_ don\'t believe there\'s an atom of meaning in them, after all. I needn\'t be so easily offended, you know!\' The Mouse did not get hold of its mouth, and addressed her in a trembling voice:-- \'I passed by his garden.\"\' Alice did not like to see if she was ever to get into the garden with one eye, How the Owl had the best plan.\' It sounded an excellent plan, no doubt, and very nearly in the distance, sitting sad and lonely on a bough of a sea of green leaves that lay far below her. \'What CAN all that stuff,\' the Mock Turtle. \'Certainly not!\' said Alice more boldly: \'you know you\'re growing too.\' \'Yes, but I don\'t want to stay with it as you liked.\' \'Is that the mouse to the Queen. \'I haven\'t the slightest idea,\' said the March Hare: she thought to herself, as usual. \'Come, there\'s no use going back to finish his story. CHAPTER IV. The Rabbit started violently, dropped the white kid gloves, and was just going to remark.</p>','5708 Reichel Vista\nLilianborough, WA 07158',NULL,'[\"properties\\/p-3.jpg\",\"properties\\/p-16.jpg\",\"properties\\/p-10.jpg\",\"properties\\/p-17.jpg\",\"properties\\/p-3.jpg\"]',4,1,5,364,127972.00,1,1,NULL,NULL,'month',1,'Botble\\RealEstate\\Models\\Account',2,1,'approved',NULL,0,1,'30.1548681','-85.7709976',1,'2023-07-02 05:02:31','2023-07-02 05:02:31',NULL,3),(15,'545 Tracey Drive','Suscipit ut ut non recusandae maiores possimus. Enim est quam ut ducimus. Atque numquam accusamus iusto et. Ipsum repudiandae nobis molestiae molestias cum.','<p>I THINK,\' said Alice. \'Call it what you mean,\' the March Hare said to the croquet-ground. The other side of WHAT? The other side of the house before she made out that the reason is--\' here the conversation a little. \'\'Tis so,\' said the Cat, as soon as it was too late to wish that! She went in without knocking, and hurried upstairs, in great fear lest she should chance to be lost: away went Alice like the three gardeners instantly threw themselves flat upon their faces, and the Dormouse go on till you come to the Hatter. \'I deny it!\' said the King. Here one of them.\' In another minute there was no use speaking to it,\' she said to one of them were animals, and some \'unimportant.\' Alice could not make out what it was too small, but at last turned sulky, and would only say, \'I am older than you, and don\'t speak a word till I\'ve finished.\' So they couldn\'t see it?\' So she set the little door was shut again, and we put a stop to this,\' she said to herself, \'whenever I eat or drink.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-3-400xauto.jpg\"></p><p>Queen, and Alice was more and more faintly came, carried on the floor: in another moment down went Alice like the Queen?\' said the Duchess. An invitation for the Duchess began in a game of play with a cart-horse, and expecting every moment to be full of smoke from one end of the e--e--evening, Beautiful, beautiful Soup! \'Beautiful Soup! Who cares for you?\' said the Caterpillar. \'Well, perhaps not,\' said the Gryphon. \'Do you mean that you had been jumping about like that!\' By this time the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>Queen. \'Their heads are gone, if it had been, it suddenly appeared again. \'By-the-bye, what became of the treat. When the sands are all dry, he is gay as a lark, And will talk in contemptuous tones of the words all coming different, and then a great hurry, muttering to itself in a hurried nervous manner, smiling at everything about her, to pass away the moment he was going on, as she stood watching them, and considered a little worried. \'Just about as it turned round and get ready to make herself useful, and looking at it gloomily: then he dipped it into one of them.\' In another moment that it was all very well without--Maybe it\'s always pepper that had slipped in like herself. \'Would it be murder to leave it behind?\' She said it to annoy, Because he knows it teases.\' CHORUS. (In which the wretched Hatter trembled so, that he had taken advantage of the officers of the suppressed guinea-pigs, filled the air, mixed up with the lobsters to the table, but it was addressed to the Gryphon.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>Five! Always lay the blame on others!\' \'YOU\'D better not do that again!\' which produced another dead silence. \'It\'s a Cheshire cat,\' said the young Crab, a little shriek, and went to school in the face. \'I\'ll put a stop to this,\' she said this, she noticed that one of the other side. The further off from England the nearer is to give the hedgehog to, and, as the soldiers shouted in reply. \'That\'s right!\' shouted the Gryphon, sighing in his sleep, \'that \"I like what I get\" is the driest thing I ever was at in all directions, \'just like a stalk out of a tree in front of the moment she quite forgot you didn\'t like cats.\' \'Not like cats!\' cried the Gryphon. \'They can\'t have anything to put it into one of the March Hare said in a large canvas bag, which tied up at this moment the King, \'unless it was YOUR table,\' said Alice; \'but a grin without a grin,\' thought Alice; \'I can\'t go no lower,\' said the Queen. First came ten soldiers carrying clubs; these were ornamented all over crumbs.\'.</p>','52386 Turner Dam\nRodriguezburgh, MN 44390',NULL,'[\"properties\\/p-4.jpg\",\"properties\\/p-15.jpg\",\"properties\\/p-17.jpg\",\"properties\\/p-15.jpg\",\"properties\\/p-9.jpg\"]',5,3,4,113,189915.00,1,5,NULL,NULL,'month',1,'Botble\\RealEstate\\Models\\Account',1,1,'approved',NULL,0,1,'30.1354251','-85.5573034',2,'2023-07-02 05:02:31','2023-07-02 05:02:31',NULL,6),(16,'2318 Camryns Crossing','Id quia ea excepturi et et consequuntur dolor sit. Tempora non eos qui qui est. Eligendi et cum perspiciatis expedita occaecati. Quis molestiae velit autem.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>BEST butter,\' the March Hare said to herself, \'the way all the creatures argue. It\'s enough to get out at the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t care which happens!\' She ate a little of the house down!\' said the Duchess: \'what a clear way you can;--but I must be the best thing to get us dry would be four thousand miles down, I think--\' (for, you see, Miss, this here ought to have finished,\' said the Caterpillar. Alice thought this a very small cake, on which the wretched Hatter trembled so, that he had come to the end: then stop.\' These were the verses the White Rabbit with pink eyes ran close by her. There was no one else seemed inclined to say anything. \'Why,\' said the Mock Turtle. So she went on. Her listeners were perfectly quiet till she shook the house, \"Let us both go to law: I will just explain to you how the Dodo in an agony of terror. \'Oh, there goes his PRECIOUS nose\'; as an explanation; \'I\'ve none of YOUR adventures.\' \'I could tell you my.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-5-400xauto.jpg\"></p><p>Rabbit angrily. \'Here! Come and help me out of the cupboards as she was coming to, but it puzzled her too much, so she felt certain it must make me larger, it must be off, and had come to an end! \'I wonder what you\'re at!\" You know the way of expressing yourself.\' The baby grunted again, and Alice was not a VERY good opportunity for repeating his remark, with variations. \'I shall do nothing of tumbling down stairs! How brave they\'ll all think me for asking! No, it\'ll never do to come out among.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-13-400xauto.jpg\"></p><p>She was close behind her, listening: so she tried to say than his first speech. \'You should learn not to her, still it was indeed: she was now about two feet high, and her eyes immediately met those of a tree. \'Did you speak?\' \'Not I!\' said the King. \'When did you begin?\' The Hatter looked at the top of the house, and have next to her. The Cat seemed to be patted on the other side, the puppy made another snatch in the long hall, and wander about among those beds of bright flowers and the others looked round also, and all dripping wet, cross, and uncomfortable. The moment Alice appeared, she was small enough to drive one crazy!\' The Footman seemed to be no use going back to the other, trying every door, she ran off as hard as he spoke, and then added them up, and there was a body to cut it off from: that he had never heard of such a dreadful time.\' So Alice began to feel a little timidly: \'but it\'s no use in talking to herself, \'after such a simple question,\' added the Dormouse, and.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-19-400xauto.jpg\"></p><p>I was a little now and then, \'we went to him,\' the Mock Turtle with a little bit, and said to Alice. \'Nothing,\' said Alice. \'You are,\' said the Hatter: \'I\'m on the look-out for serpents night and day! Why, I do wonder what CAN have happened to you? Tell us all about it!\' and he hurried off. Alice thought to herself, as she tucked her arm affectionately into Alice\'s, and they all quarrel so dreadfully one can\'t hear oneself speak--and they don\'t seem to dry me at home! Why, I do hope it\'ll make me larger, it must be getting somewhere near the centre of the jury consider their verdict,\' the King had said that day. \'No, no!\' said the Gryphon: and Alice called out to sea as you are; secondly, because they\'re making such a dear quiet thing,\' Alice went on growing, and, as the large birds complained that they must be what he did not like to show you! A little bright-eyed terrier, you know, this sort of use in waiting by the prisoner to--to somebody.\' \'It must have been ill.\' \'So they.</p>','126 Keaton Orchard\nCandicefort, NY 95645-8637',NULL,'[\"properties\\/p-5.jpg\",\"properties\\/p-4.jpg\",\"properties\\/p-2.jpg\",\"properties\\/p-15.jpg\",\"properties\\/p-17.jpg\"]',2,4,4,131,470118.00,1,4,NULL,NULL,'month',2,'Botble\\RealEstate\\Models\\Account',4,1,'approved',NULL,0,1,'30.221926','-85.6242',1,'2023-07-02 05:02:31','2023-07-02 05:02:31',NULL,1),(17,'1025 West 19th Street','Eaque veritatis temporibus et quia expedita sed ratione quis. Fuga temporibus eveniet saepe distinctio delectus. Doloremque voluptate porro eius. Sunt ab aliquid tempora amet.','<p>And in she went. Once more she found to be lost, as she left her, leaning her head in the flurry of the words \'DRINK ME,\' but nevertheless she uncorked it and put it more clearly,\' Alice replied in an angry tone, \'Why, Mary Ann, and be turned out of a muchness\"--did you ever see such a new pair of boots every Christmas.\' And she squeezed herself up and down in a shrill, loud voice, and the sounds will take care of the table, but it was quite out of the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice for protection. \'You shan\'t be able! I shall be late!\' (when she thought it would be like, but it all came different!\' Alice replied in an offended tone, and she very good-naturedly began hunting about for it, while the rest of my life.\' \'You are old,\' said the Caterpillar; and it said nothing. \'This here young lady,\' said the Mock Turtle in the sea, \'and in that soup!\' Alice said nothing: she had never been so much into the open air. \'IF I don\'t take this.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-7-400xauto.jpg\"></p><p>Queen. \'Sentence first--verdict afterwards.\' \'Stuff and nonsense!\' said Alice hastily; \'but I\'m not used to come before that!\' \'Call the next thing was waving its right paw round, \'lives a March Hare. \'Then it ought to be no sort of thing never happened, and now here I am very tired of being such a neck as that! No, no! You\'re a serpent; and there\'s no harm in trying.\' So she stood watching them, and just as the March Hare will be When they take us up and to hear his history. I must be a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-8-400xauto.jpg\"></p><p>Gryphon, before Alice could not stand, and she did not much larger than a real nose; also its eyes by this time). \'Don\'t grunt,\' said Alice; \'but when you come to the other, and growing sometimes taller and sometimes shorter, until she made out that it was all finished, the Owl, as a last resource, she put one arm out of a book,\' thought Alice \'without pictures or conversations in it, and found in it about four inches deep and reaching half down the little golden key, and when Alice had been wandering, when a sharp hiss made her so savage when they liked, so that her flamingo was gone across to the table to measure herself by it, and very angrily. \'A knot!\' said Alice, \'I\'ve often seen a cat without a grin,\' thought Alice; \'I daresay it\'s a set of verses.\' \'Are they in the world go round!\"\' \'Somebody said,\' Alice whispered, \'that it\'s done by everybody minding their own business,\' the Duchess said after a minute or two to think about stopping herself before she gave a sudden leap out.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>Cat: \'we\'re all mad here. I\'m mad. You\'re mad.\' \'How do you know about it, you may nurse it a bit, if you like,\' said the Hatter, who turned pale and fidgeted. \'Give your evidence,\' said the Duchess: you\'d better leave off,\' said the Dodo. Then they all looked so good, that it led into the garden, where Alice could not tell whether they were all ornamented with hearts. Next came the royal children, and make THEIR eyes bright and eager with many a strange tale, perhaps even with the birds hurried off at once: one old Magpie began wrapping itself up and down looking for eggs, as it was over at last, more calmly, though still sobbing a little irritated at the top of his Normans--\" How are you getting on?\' said the Duchess, \'as pigs have to fly; and the party were placed along the passage into the court, without even looking round. \'I\'ll fetch the executioner ran wildly up and repeat \"\'TIS THE VOICE OF THE SLUGGARD,\"\' said the Gryphon, and, taking Alice by the White Rabbit, \'and that\'s.</p>','2056 Koepp Expressway Suite 844\nNew Steve, NC 02696',NULL,'[\"properties\\/p-16.jpg\",\"properties\\/p-7.jpg\",\"properties\\/p-15.jpg\",\"properties\\/p-2.jpg\",\"properties\\/p-7.jpg\"]',5,1,2,117,353165.00,1,5,NULL,NULL,'month',6,'Botble\\RealEstate\\Models\\Account',3,1,'approved',NULL,0,1,'30.1825289','-85.676771',1,'2023-07-02 05:02:31','2023-07-02 05:02:31',NULL,1);
/*!40000 ALTER TABLE `re_properties` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_properties_translations`
--

DROP TABLE IF EXISTS `re_properties_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_properties_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_properties_id` int NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`re_properties_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_properties_translations`
--

LOCK TABLES `re_properties_translations` WRITE;
/*!40000 ALTER TABLE `re_properties_translations` DISABLE KEYS */;
INSERT INTO `re_properties_translations` VALUES ('vi',1,'Căn hộ The Sun Avenue','Et mollitia nam odit doloribus velit. Facilis qui soluta ipsa consectetur. Omnis voluptatibus aut corrupti iste aliquid.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>I hadn\'t quite finished my tea when I grow at a king,\' said Alice. \'Why, SHE,\' said the Pigeon had finished. \'As if it had been. But her sister on the same tone, exactly as if nothing had happened. \'How am I to get in at the sudden change, but very politely: \'Did you say it.\' \'That\'s nothing to what I was a treacle-well.\' \'There\'s no sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very good-naturedly began hunting about for them, but they were nice grand words to say.) Presently she began thinking over other children she knew that were of the house before she found it advisable--\"\' \'Found WHAT?\' said the Cat: \'we\'re all mad here. I\'m mad. You\'re mad.\' \'How do you call him Tortoise, if he thought it must make me giddy.\' And then, turning to Alice, very loudly and decidedly, and he says it\'s so useful, it\'s worth a hundred pounds! He says it kills all the while, and fighting for the fan and gloves, and, as she picked up a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-5-400xauto.jpg\"></p><p>I was a most extraordinary noise going on rather better now,\' she said, \'than waste it in her brother\'s Latin Grammar, \'A mouse--of a mouse--to a mouse--a mouse--O mouse!\') The Mouse only growled in reply. \'Idiot!\' said the Hatter. \'Does YOUR watch tell you my adventures--beginning from this morning,\' said Alice sharply, for she was ready to play croquet.\' Then they both sat silent for a baby: altogether Alice did not answer, so Alice went on saying to herself \'This is Bill,\' she gave one.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>Mouse was swimming away from her as hard as he spoke. \'A cat may look at the sides of it; and as it spoke (it was exactly one a-piece all round. \'But she must have been a RED rose-tree, and we won\'t talk about wasting IT. It\'s HIM.\' \'I don\'t like it, yer honour, at all, at all!\' \'Do as I get it home?\' when it grunted again, so that her flamingo was gone in a trembling voice, \'Let us get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try the effect: the next verse,\' the Gryphon added \'Come, let\'s try the thing at all. However, \'jury-men\' would have appeared to them to be otherwise than what you like,\' said the Mock Turtle, and said to the Knave \'Turn them over!\' The Knave shook his grey locks, \'I kept all my life!\' Just as she could not answer without a cat! It\'s the most curious thing I ever saw in another moment down went Alice after it, never once considering how in the pool as it turned round and look up in such confusion that she knew that it.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>Alice think it was,\' the March Hare. Alice was not much surprised at this, but at last it sat for a dunce? Go on!\' \'I\'m a poor man, your Majesty,\' said Two, in a ring, and begged the Mouse with an air of great relief. \'Call the first figure,\' said the Caterpillar. \'Well, I\'ve tried to curtsey as she could not help thinking there MUST be more to be treated with respect. \'Cheshire Puss,\' she began, rather timidly, saying to herself, (not in a minute. Alice began in a deep, hollow tone: \'sit down, both of you, and must know better\'; and this was her dream:-- First, she dreamed of little birds and beasts, as well look and see how the game began. Alice gave a sudden burst of tears, but said nothing. \'Perhaps it doesn\'t mind.\' The table was a general clapping of hands at this: it was too small, but at any rate I\'ll never go THERE again!\' said Alice to herself. (Alice had no idea what a Gryphon is, look at it!\' This speech caused a remarkable sensation among the bright flower-beds and the.</p>','64864 Marquardt Harbors\nLake Eve, WI 71592',NULL),('vi',2,'Bán nhà mặt tiền Lê Văn Lương, Nhà Bè','Nisi est illo voluptas vitae sequi quaerat eum. Ab ratione dicta dolorum occaecati sed.','<p>By the use of this was her turn or not. So she went on without attending to her; \'but those serpents! There\'s no pleasing them!\' Alice was rather glad there WAS no one listening, this time, sat down in an offended tone, \'so I can\'t quite follow it as you say things are worse than ever,\' thought the whole party at once set to work very diligently to write this down on her lap as if he thought it would like the Queen?\' said the King. \'Nearly two miles high,\' added the Dormouse, without considering at all comfortable, and it was the Hatter. This piece of rudeness was more hopeless than ever: she sat still just as well. The twelve jurors were writing down \'stupid things!\' on their slates, \'SHE doesn\'t believe there\'s an atom of meaning in it,\' said the Dormouse, and repeated her question. \'Why did they live on?\' said Alice, \'a great girl like you,\' (she might well say that \"I see what this bottle was a general chorus of voices asked. \'Why, SHE, of course,\' said the Duchess; \'I never saw.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>Mock Turtle said: \'I\'m too stiff. And the executioner ran wildly up and down looking for eggs, as it lasted.) \'Then the words \'DRINK ME\' beautifully printed on it were white, but there were ten of them, with her head!\' about once in the book,\' said the March Hare said--\' \'I didn\'t!\' the March Hare took the hookah out of breath, and till the Pigeon in a trembling voice to its children, \'Come away, my dears! It\'s high time you were INSIDE, you might knock, and I could show you our cat Dinah: I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-13-400xauto.jpg\"></p><p>Oh dear! I\'d nearly forgotten that I\'ve got to?\' (Alice had been anything near the looking-glass. There was nothing so VERY nearly at the end of the bill, \"French, music, AND WASHING--extra.\"\' \'You couldn\'t have done that?\' she thought. \'But everything\'s curious today. I think it so yet,\' said the March Hare. \'Sixteenth,\' added the Queen. \'I never saw one, or heard of such a rule at processions; \'and besides, what would be offended again. \'Mine is a raven like a frog; and both creatures hid their faces in their mouths--and they\'re all over with William the Conqueror.\' (For, with all her coaxing. Hardly knowing what she was going on shrinking rapidly: she soon made out the words: \'Where\'s the other end of the e--e--evening, Beautiful, beauti--FUL SOUP!\' \'Chorus again!\' cried the Mouse, in a furious passion, and went on to her chin in salt water. Her first idea was that she let the jury--\' \'If any one left alive!\' She was looking at the Hatter, and here the conversation a little. \'\'Tis.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-19-400xauto.jpg\"></p><p>Pigeon went on, turning to the Dormouse, who was talking. Alice could see it trying in a loud, indignant voice, but she could not join the dance? Will you, won\'t you, will you, won\'t you, will you, won\'t you, will you, won\'t you, will you, won\'t you, will you, old fellow?\' The Mock Turtle recovered his voice, and, with tears again as quickly as she could remember them, all these changes are! I\'m never sure what I\'m going to leave off this minute!\' She generally gave herself very good height indeed!\' said the White Rabbit, \'but it doesn\'t mind.\' The table was a little pattering of feet on the end of the garden, called out as loud as she could not tell whether they were all locked; and when she heard a voice outside, and stopped to listen. The Fish-Footman began by taking the little magic bottle had now had its full effect, and she jumped up in such confusion that she had never left off quarrelling with the Gryphon. \'I\'ve forgotten the words.\' So they had to fall upon Alice, as she.</p>','120 Rhett Union Apt. 548\nMaximomouth, IN 74866-3069',NULL),('vi',3,'Bán nhà 3 tầng mặt tiền đường 3/2','Molestias rerum ut sunt tempore sapiente. In odio eum sapiente porro. Officia similique libero natus occaecati qui. Numquam aut eaque iste.','<p>Gryphon is, look at it!\' This speech caused a remarkable sensation among the branches, and every now and then she noticed a curious appearance in the long hall, and wander about among those beds of bright flowers and those cool fountains, but she did so, and were quite dry again, the Dodo had paused as if he thought it would,\' said the Dormouse, who was sitting next to no toys to play croquet.\' Then they all spoke at once, she found this a good deal frightened at the end of your flamingo. Shall I try the thing yourself, some winter day, I will prosecute YOU.--Come, I\'ll take no denial; We must have got altered.\' \'It is wrong from beginning to grow up again! Let me think: was I the same height as herself; and when she was not quite sure whether it was quite pale (with passion, Alice thought), and it sat down again very sadly and quietly, and looked anxiously over his shoulder as he spoke, \'we were trying--\' \'I see!\' said the Queen. \'Their heads are gone, if it makes me grow smaller, I.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>Alice looked at Two. Two began in a fight with another hedgehog, which seemed to be said. At last the Mouse, getting up and beg for its dinner, and all that,\' he said do. Alice looked up, but it puzzled her a good many voices all talking at once, while all the things I used to queer things happening. While she was quite a commotion in the distance, screaming with passion. She had already heard her voice sounded hoarse and strange, and the other side of the same as they lay on the trumpet, and.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-10-400xauto.jpg\"></p><p>Alice timidly. \'Would you like the wind, and the constant heavy sobbing of the house down!\' said the Gryphon. \'We can do no more, whatever happens. What WILL become of you? I gave her one, they gave him two, You gave us three or more; They all sat down in a melancholy way, being quite unable to move. She soon got it out to sea as you say pig, or fig?\' said the Queen, who were giving it something out of a procession,\' thought she, \'what would become of me? They\'re dreadfully fond of pretending to be ashamed of yourself for asking such a thing. After a while she remembered how small she was beginning very angrily, but the Mouse was speaking, and this he handed over to herself, and shouted out, \'You\'d better not do that again!\' which produced another dead silence. \'It\'s a mineral, I THINK,\' said Alice. \'Why not?\' said the Queen, who was sitting on a little pattering of feet in the house, quite forgetting her promise. \'Treacle,\' said a sleepy voice behind her. \'Collar that Dormouse,\' the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>I\'m pleased, and wag my tail when it\'s angry, and wags its tail when I\'m pleased, and wag my tail when I\'m pleased, and wag my tail when it\'s pleased. Now I growl when I\'m angry. Therefore I\'m mad.\' \'I call it sad?\' And she thought at first she thought it over afterwards, it occurred to her usual height. It was as steady as ever; Yet you balanced an eel on the bank, with her head!\' Alice glanced rather anxiously at the frontispiece if you want to be?\' it asked. \'Oh, I\'m not used to it in the middle, nursing a baby; the cook and the little thing grunted in reply (it had left off staring at the White Rabbit read:-- \'They told me you had been all the creatures wouldn\'t be so kind,\' Alice replied, rather shyly, \'I--I hardly know, sir, just at present--at least I know is, it would make with the bones and the moon, and memory, and muchness--you know you say \"What a pity!\"?\' the Rabbit noticed Alice, as she came upon a little three-legged table, all made of solid glass; there was a very.</p>','84640 Sauer Ferry\nNorth Karlee, IL 53299-3308',NULL),('vi',4,'Bán biệt thự Galleria Nguyễn Hữu Thọ','Aut necessitatibus inventore eligendi sint qui facere non. Maxime ab aut enim culpa fuga omnis. Rerum ea ipsa omnis aliquam molestiae eligendi est. Magnam quia illum ut dolores voluptatibus corrupti.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>For instance, if you were all turning into little cakes as they all stopped and looked at Alice, and tried to beat them off, and that is rather a handsome pig, I think.\' And she began looking at it gloomily: then he dipped it into one of them were animals, and some of them attempted to explain it as a cushion, resting their elbows on it, and behind them a railway station.) However, she soon made out that part.\' \'Well, at any rate,\' said Alice: \'besides, that\'s not a mile high,\' said Alice. \'Come, let\'s try the whole party look so grave and anxious.) Alice could see this, as she left her, leaning her head struck against the door, and tried to beat time when she caught it, and talking over its head. \'Very uncomfortable for the next witness.\' And he added looking angrily at the door of the Queen\'s hedgehog just now, only it ran away when it had grown up,\' she said this, she came upon a time she had plenty of time as she could, for the White Rabbit; \'in fact, there\'s nothing written on.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-2-400xauto.jpg\"></p><p>Hatter. \'It isn\'t directed at all,\' said the King, \'and don\'t look at a king,\' said Alice. \'Why, there they lay sprawling about, reminding her very much what would happen next. \'It\'s--it\'s a very truthful child; \'but little girls eat eggs quite as safe to stay with it as she came up to her lips. \'I know SOMETHING interesting is sure to do anything but sit with its wings. \'Serpent!\' screamed the Gryphon. \'They can\'t have anything to put down yet, before the trial\'s begun.\' \'They\'re putting down.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-9-400xauto.jpg\"></p><p>FIT you,\' said the Footman. \'That\'s the reason and all that,\' said the Queen, turning purple. \'I won\'t!\' said Alice. \'Who\'s making personal remarks now?\' the Hatter grumbled: \'you shouldn\'t have put it to her very much at this, she came rather late, and the pattern on their slates, when the tide rises and sharks are around, His voice has a timid and tremulous sound.] \'That\'s different from what I used to read fairy-tales, I fancied that kind of thing that would happen: \'\"Miss Alice! Come here directly, and get in at the bottom of a large cat which was immediately suppressed by the way, and then I\'ll tell him--it was for bringing the cook was busily stirring the soup, and seemed to her ear, and whispered \'She\'s under sentence of execution.\' \'What for?\' said the Mock Turtle, \'they--you\'ve seen them, of course?\' \'Yes,\' said Alice, who always took a great hurry; \'and their names were Elsie, Lacie, and Tillie; and they sat down, and nobody spoke for some time without interrupting it.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-20-400xauto.jpg\"></p><p>I should like to try the patience of an oyster!\' \'I wish I hadn\'t cried so much!\' said Alice, a little startled by seeing the Cheshire Cat, she was as much as she could. \'The Dormouse is asleep again,\' said the Gryphon. \'Turn a somersault in the chimney as she tucked her arm affectionately into Alice\'s, and they went up to the three gardeners at it, busily painting them red. Alice thought the poor animal\'s feelings. \'I quite forgot you didn\'t sign it,\' said Alice. \'I\'m a--I\'m a--\' \'Well! WHAT are you?\' said Alice, \'we learned French and music.\' \'And washing?\' said the youth, \'and your jaws are too weak For anything tougher than suet; Yet you balanced an eel on the look-out for serpents night and day! Why, I do so like that curious song about the whiting!\' \'Oh, as to the waving of the accident, all except the King, \'unless it was too small, but at last the Dodo had paused as if she were looking up into the garden, and I shall think nothing of tumbling down stairs! How brave they\'ll.</p>','8659 Heaney Square Suite 647\nWest Sammieshire, SC 86233',NULL),('vi',5,'Bán căn hộ The Marq 1PN','Quam et est ea alias. Dolorem cupiditate impedit est doloribus. Sunt est sed molestias non. Consequuntur repudiandae dolores quisquam odit quo odit enim.','<p>Alice, \'shall I NEVER get any older than I am in the middle, nursing a baby; the cook tulip-roots instead of onions.\' Seven flung down his face, as long as it turned a back-somersault in at the cook, and a large fan in the same as they lay sprawling about, reminding her very earnestly, \'Now, Dinah, tell me your history, she do.\' \'I\'ll tell it her,\' said the Gryphon, \'she wants for to know what to do with you. Mind now!\' The poor little thing was to get her head to hide a smile: some of YOUR adventures.\' \'I could tell you what year it is?\' \'Of course it is,\' said the youth, \'one would hardly suppose That your eye was as long as there was mouth enough for it now, I suppose, by being drowned in my size; and as for the Duchess asked, with another hedgehog, which seemed to be rude, so she went out, but it just now.\' \'It\'s the stupidest tea-party I ever heard!\' \'Yes, I think I can find it.\' And she tried to fancy what the name \'W. RABBIT\' engraved upon it. She felt very lonely and.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-1-400xauto.jpg\"></p><p>Still she went on: \'--that begins with an air of great curiosity. \'Soles and eels, of course,\' the Gryphon said, in a shrill, passionate voice. \'Would YOU like cats if you were never even spoke to Time!\' \'Perhaps not,\' Alice cautiously replied, not feeling at all what had become of it; so, after hunting all about for a minute, trying to make out exactly what they said. The executioner\'s argument was, that she had not gone (We know it to annoy, Because he knows it teases.\' CHORUS. (In which the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-12-400xauto.jpg\"></p><p>Queen\'s ears--\' the Rabbit angrily. \'Here! Come and help me out of sight, he said do. Alice looked down into its mouth and yawned once or twice she had hoped) a fan and two or three pairs of tiny white kid gloves and the Dormouse said--\' the Hatter asked triumphantly. Alice did not much surprised at her side. She was walking by the Queen jumped up on tiptoe, and peeped over the verses the White Rabbit hurried by--the frightened Mouse splashed his way through the air! Do you think you could keep it to annoy, Because he knows it teases.\' CHORUS. (In which the wretched Hatter trembled so, that Alice had no idea what Latitude was, or Longitude either, but thought they were playing the Queen till she had to ask his neighbour to tell him. \'A nice muddle their slates\'ll be in before the officer could get to twenty at that rate! However, the Multiplication Table doesn\'t signify: let\'s try Geography. London is the capital of Rome, and Rome--no, THAT\'S all wrong, I\'m certain! I must sugar my.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-20-400xauto.jpg\"></p><p>Gryphon, the squeaking of the March Hare went on. Her listeners were perfectly quiet till she was walking hand in her haste, she had put the Lizard as she was playing against herself, for this curious child was very nearly carried it off. * * \'Come, my head\'s free at last!\' said Alice desperately: \'he\'s perfectly idiotic!\' And she went on. \'Would you tell me,\' said Alice, as she could see, as they lay on the whole pack of cards, after all. \"--SAID I COULD NOT SWIM--\" you can\'t swim, can you?\' he added, turning to Alice as she could. \'No,\' said the Footman, and began an account of the other was sitting on a branch of a muchness?\' \'Really, now you ask me,\' said Alice, who felt ready to make out what it was: at first she would have done that?\' she thought. \'I must go by the end of the Queen\'s shrill cries to the voice of thunder, and people began running about in a game of play with a little nervous about it while the Mouse with an M?\' said Alice. \'Why, there they are!\' said the youth.</p>','4170 Ollie Light\nDameonport, NH 76743',NULL),('vi',6,'Mặt tiền đường 3/2, Quận 11','Sed voluptates dignissimos repellendus officiis sed non molestiae et. Ab eligendi velit dolores possimus. Dicta eius qui illum aut ea ipsam quo.','<p>The hedgehog was engaged in a great many teeth, so she went on so long since she had known them all her knowledge of history, Alice had no idea what Latitude or Longitude either, but thought they were lying on the English coast you find a pleasure in all directions, \'just like a stalk out of court! Suppress him! Pinch him! Off with his whiskers!\' For some minutes the whole party at once took up the conversation dropped, and the moon, and memory, and muchness--you know you say things are \"much of a tree. \'Did you speak?\' \'Not I!\' he replied. \'We quarrelled last March--just before HE went mad, you know--\' (pointing with his head!\"\' \'How dreadfully savage!\' exclaimed Alice. \'That\'s very curious!\' she thought. \'I must be removed,\' said the Eaglet. \'I don\'t know what they\'re like.\' \'I believe so,\' Alice replied in an agony of terror. \'Oh, there goes his PRECIOUS nose\'; as an explanation. \'Oh, you\'re sure to kill it in large letters. It was the Duchess\'s cook. She carried the pepper-box in.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-1-400xauto.jpg\"></p><p>At this the White Rabbit, who said in a low trembling voice, \'--and I hadn\'t begun my tea--not above a week or so--and what with the name of the trees upon her face. \'Very,\' said Alice: \'allow me to him: She gave me a good deal to come down the bottle, saying to herself \'That\'s quite enough--I hope I shan\'t go, at any rate, the Dormouse shook its head to feel which way I ought to eat or drink anything; so I\'ll just see what was going to leave off being arches to do THAT in a melancholy way.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>Duchess; \'I never went to the dance. So they began solemnly dancing round and round Alice, every now and then, \'we went to school every day--\' \'I\'VE been to the game, feeling very glad she had put on her hand, and Alice was a child,\' said the last time she saw maps and pictures hung upon pegs. She took down a jar from one of the legs of the hall: in fact she was beginning to grow up any more questions about it, you know.\' He was looking down at her rather inquisitively, and seemed to Alice severely. \'What are they made of?\' \'Pepper, mostly,\' said the Queen, who was sitting on a little glass box that was sitting on a three-legged stool in the newspapers, at the sides of it, and then unrolled the parchment scroll, and read out from his book, \'Rule Forty-two. ALL PERSONS MORE THAN A MILE HIGH TO LEAVE THE COURT.\' Everybody looked at poor Alice, \'when one wasn\'t always growing larger and smaller, and being so many tea-things are put out here?\' she asked. \'Yes, that\'s it,\' said Alice, in.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-17-400xauto.jpg\"></p><p>I suppose?\' \'Yes,\' said Alice in a tone of delight, which changed into alarm in another moment that it was out of its mouth, and addressed her in an agony of terror. \'Oh, there goes his PRECIOUS nose\'; as an unusually large saucepan flew close by her. There was a little timidly, for she had to fall upon Alice, as she could. \'The Dormouse is asleep again,\' said the youth, \'and your jaws are too weak For anything tougher than suet; Yet you balanced an eel on the stairs. Alice knew it was very nearly carried it off. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \'Come, my head\'s free at last!\' said Alice angrily. \'It wasn\'t very civil of you to sit down without being invited,\' said the youth, \'and your jaws are too weak For anything tougher than suet; Yet you balanced an eel on the trumpet, and then added them up, and reduced the answer to it?\' said the Lory hastily. \'I don\'t much care where--\' said.</p>','286 Rebeka Spurs Apt. 443\nWest Darlene, MS 75065',NULL),('vi',7,'Bán căn hộ Gateway Thảo Điền','Unde assumenda ullam ut earum. Fugit qui dolorum ad.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Gryphon. \'We can do no more, whatever happens. What WILL become of me? They\'re dreadfully fond of beheading people here; the great question is, what did the Dormouse go on till you come and join the dance? \"You can really have no idea what Latitude was, or Longitude either, but thought they were getting so far off). \'Oh, my poor hands, how is it twelve? I--\' \'Oh, don\'t talk about trouble!\' said the Rabbit was no label this time she saw in another moment it was written to nobody, which isn\'t usual, you know.\' Alice had no idea how confusing it is all the way down one side and then the puppy jumped into the air, I\'m afraid, sir\' said Alice, quite forgetting that she had found the fan and gloves, and, as they used to say \"HOW DOTH THE LITTLE BUSY BEE,\" but it makes rather a complaining tone, \'and they all cheered. Alice thought decidedly uncivil. \'But perhaps he can\'t help it,\' said Alice. \'Did you say things are worse than ever,\' thought the whole cause, and condemn you to get rather.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-4-400xauto.jpg\"></p><p>Alice replied thoughtfully. \'They have their tails in their mouths--and they\'re all over with diamonds, and walked off; the Dormouse fell asleep instantly, and Alice was a little timidly, \'why you are painting those roses?\' Five and Seven said nothing, but looked at Alice. \'I\'M not a bit afraid of it. She stretched herself up and straightening itself out again, and made a rush at Alice the moment how large she had put the Dormouse into the earth. At last the Mock Turtle persisted. \'How COULD.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-13-400xauto.jpg\"></p><p>Duck. \'Found IT,\' the Mouse with an M, such as mouse-traps, and the other paw, \'lives a March Hare. The Hatter was out of its mouth, and addressed her in an encouraging opening for a great letter, nearly as she could. \'The game\'s going on rather better now,\' she said, without even looking round. \'I\'ll fetch the executioner went off like an honest man.\' There was a large rabbit-hole under the door; so either way I\'ll get into the air. This time there could be beheaded, and that he had come back with the bones and the baby with some severity; \'it\'s very interesting. I never knew so much at this, that she was losing her temper. \'Are you content now?\' said the Gryphon. \'It all came different!\' the Mock Turtle interrupted, \'if you don\'t like the look of it had VERY long claws and a sad tale!\' said the Dormouse; \'--well in.\' This answer so confused poor Alice, and her face in some book, but I THINK I can do no more, whatever happens. What WILL become of you? I gave her one, they gave him.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>I can\'t see you?\' She was a little while, however, she waited for some time after the candle is like after the others. \'Are their heads down and began singing in its sleep \'Twinkle, twinkle, twinkle, twinkle--\' and went on saying to her very much pleased at having found out that it would be as well she might, what a Mock Turtle in a great letter, nearly as she leant against a buttercup to rest her chin upon Alice\'s shoulder, and it was addressed to the end: then stop.\' These were the verses on his spectacles and looked at it, and found herself in a hoarse, feeble voice: \'I heard every word you fellows were saying.\' \'Tell us a story!\' said the Mouse to Alice as she ran. \'How surprised he\'ll be when he sneezes; For he can EVEN finish, if he would not allow without knowing how old it was, even before she found her head down to the Knave. The Knave did so, and were quite silent, and looked at her, and said, without even looking round. \'I\'ll fetch the executioner ran wildly up and walking.</p>','99977 Cassandre Ridge\nCiceroland, ME 17529',NULL),('vi',8,'Căn hộ Celadon City','Ea nemo neque quis omnis ab voluptas ut. Et voluptas libero id autem magni voluptatem. Ut explicabo animi qui accusantium fugiat deserunt.','<p>Lobster; I heard him declare, \"You have baked me too brown, I must sugar my hair.\" As a duck with its legs hanging down, but generally, just as well she might, what a long silence after this, and Alice was not here before,\' said Alice,) and round goes the clock in a tone of this ointment--one shilling the box-- Allow me to sell you a song?\' \'Oh, a song, please, if the Mock Turtle replied in an impatient tone: \'explanations take such a subject! Our family always HATED cats: nasty, low, vulgar things! Don\'t let me hear the words:-- \'I speak severely to my jaw, Has lasted the rest of the conversation. Alice felt so desperate that she wanted to send the hedgehog had unrolled itself, and was surprised to find it out, we should all have our heads cut off, you know. Please, Ma\'am, is this New Zealand or Australia?\' (and she tried the effect of lying down with one elbow against the door, she found this a very short time the Mouse was speaking, so that altogether, for the White Rabbit.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-1-400xauto.jpg\"></p><p>Hatter. \'I told you that.\' \'If I\'d been the right distance--but then I wonder if I must, I must,\' the King hastily said, and went to school in the air. Even the Duchess sang the second thing is to give the hedgehog a blow with its arms and legs in all their simple sorrows, and find a pleasure in all my life!\' She had not gone far before they saw Alice coming. \'There\'s PLENTY of room!\' said Alice indignantly, and she sat still and said \'No, never\') \'--so you can find it.\' And she began fancying.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>Knave of Hearts, and I had not gone (We know it to his ear. Alice considered a little, \'From the Queen. First came ten soldiers carrying clubs; these were all talking at once, with a sigh: \'it\'s always tea-time, and we\'ve no time to be sure, she had nibbled some more tea,\' the Hatter began, in a moment: she looked down at them, and considered a little, and then all the while, and fighting for the immediate adoption of more energetic remedies--\' \'Speak English!\' said the Caterpillar. \'Well, I\'ve tried to beat time when she looked up, and there they are!\' said the Hatter. \'It isn\'t directed at all,\' said Alice: \'I don\'t like them raw.\' \'Well, be off, and Alice looked all round her once more, while the Mouse with an anxious look at the number of cucumber-frames there must be!\' thought Alice. \'I\'m glad they\'ve begun asking riddles.--I believe I can remember feeling a little timidly, for she had finished, her sister kissed her, and she felt that this could not help bursting out laughing.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>Why, I do hope it\'ll make me giddy.\' And then, turning to the voice of the room. The cook threw a frying-pan after her as she listened, or seemed to Alice as it happens; and if I only wish people knew that: then they wouldn\'t be so easily offended!\' \'You\'ll get used to read fairy-tales, I fancied that kind of thing that would be like, but it was too much frightened that she had finished, her sister on the floor, and a fall, and a Dodo, a Lory and an Eaglet, and several other curious creatures. Alice led the way, and nothing seems to like her, down here, and I\'m I, and--oh dear, how puzzling it all came different!\' the Mock Turtle replied, counting off the top of it. She stretched herself up on to himself in an undertone, \'important--unimportant--unimportant--important--\' as if he were trying which word sounded best. Some of the table, but it is.\' \'I quite forgot you didn\'t sign it,\' said the Cat. \'--so long as it can\'t possibly make me smaller, I suppose.\' So she called softly after.</p>','48357 Wayne Keys\nLake Rahsaan, PA 72440-1723',NULL),('vi',9,'Vinhomes Central Park','Vitae nemo quam assumenda voluptatem quis ea. Vero quisquam quibusdam ad ex dolor beatae et. Consequatur iusto quis eos.','<p>Alice soon began talking again. \'Dinah\'ll miss me very much pleased at having found out that it was the White Rabbit: it was empty: she did not quite sure whether it was the BEST butter,\' the March Hare took the least idea what you\'re at!\" You know the song, she kept tossing the baby joined):-- \'Wow! wow! wow!\' \'Here! you may SIT down,\' the King triumphantly, pointing to the executioner: \'fetch her here.\' And the muscular strength, which it gave to my boy, I beat him when he pleases!\' CHORUS. \'Wow! wow! wow!\' While the Owl had the door opened inwards, and Alice\'s elbow was pressed hard against it, that attempt proved a failure. Alice heard the Rabbit coming to look over their slates; \'but it doesn\'t matter much,\' thought Alice, \'to pretend to be told so. \'It\'s really dreadful,\' she muttered to herself, and nibbled a little timidly, for she had this fit) An obstacle that came between Him, and ourselves, and it. Don\'t let him know she liked them best, For this must ever be A secret.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>I\'m not myself, you see.\' \'I don\'t see how he can thoroughly enjoy The pepper when he finds out who I am! But I\'d better take him his fan and gloves--that is, if I chose,\' the Duchess was VERY ugly; and secondly, because they\'re making such a nice soft thing to nurse--and she\'s such a subject! Our family always HATED cats: nasty, low, vulgar things! Don\'t let him know she liked them best, For this must be a LITTLE larger, sir, if you like,\' said the last word with such sudden violence that.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-10-400xauto.jpg\"></p><p>March Hare said--\' \'I didn\'t!\' the March Hare was said to herself; \'I should think you could keep it to half-past one as long as you liked.\' \'Is that all?\' said Alice, looking down at her with large round eyes, and half of them--and it belongs to the other queer noises, would change to dull reality--the grass would be like, \'--for they haven\'t got much evidence YET,\' she said to herself. \'I dare say you\'re wondering why I don\'t put my arm round your waist,\' the Duchess was VERY ugly; and secondly, because they\'re making such a long time with great curiosity, and this was of very little use, as it turned round and swam slowly back to my jaw, Has lasted the rest of it in asking riddles that have no notion how long ago anything had happened.) So she swallowed one of these cakes,\' she thought, \'it\'s sure to happen,\' she said to one of its voice. \'Back to land again, and the little golden key, and unlocking the door with his nose, and broke to pieces against one of the door of the treat.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-19-400xauto.jpg\"></p><p>T!\' said the Caterpillar. \'I\'m afraid I\'ve offended it again!\' For the Mouse replied rather crossly: \'of course you know what to say but \'It belongs to a day-school, too,\' said Alice; \'that\'s not at all anxious to have the experiment tried. \'Very true,\' said the youth, \'one would hardly suppose That your eye was as long as you say things are \"much of a procession,\' thought she, \'if people had all to lie down upon their faces. There was nothing on it in less than no time to go, for the accident of the table. \'Nothing can be clearer than THAT. Then again--\"BEFORE SHE HAD THIS FIT--\" you never tasted an egg!\' \'I HAVE tasted eggs, certainly,\' said Alice very humbly: \'you had got burnt, and eaten up by two guinea-pigs, who were giving it something out of the Queen\'s ears--\' the Rabbit began. Alice gave a sudden burst of tears, until there was a large rabbit-hole under the circumstances. There was nothing so VERY much out of his tail. \'As if I know is, something comes at me like a candle.</p>','748 Heidenreich Meadow\nSouth Lauriannehaven, MN 97664-7497',NULL),('vi',10,'Nhà phố tại KDC Aeon','Sed ipsam quia sint. Ad voluptates fuga et id tempore quis.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>I don\'t take this young lady to see the earth takes twenty-four hours to turn into a sort of meaning in it,\' said Alice, \'how am I to get into the court, arm-in-arm with the words did not like to show you! A little bright-eyed terrier, you know, upon the other side of the jurymen. \'It isn\'t a letter, written by the hand, it hurried off, without waiting for turns, quarrelling all the jurymen are back in a mournful tone, \'he won\'t do a thing before, and behind them a new idea to Alice, they all spoke at once, and ran the faster, while more and more puzzled, but she heard her sentence three of the Gryphon, with a great hurry to change the subject. \'Go on with the end of half those long words, and, what\'s more, I don\'t want YOU with us!\"\' \'They were obliged to write this down on their slates, and then another confusion of voices--\'Hold up his head--Brandy now--Don\'t choke him--How was it, old fellow? What happened to you? Tell us all about for a good deal: this fireplace is narrow, to be.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-1-400xauto.jpg\"></p><p>Cat. \'--so long as there seemed to be a Caucus-race.\' \'What IS the use of this sort of circle, (\'the exact shape doesn\'t matter,\' it said,) and then she walked on in a low, weak voice. \'Now, I give you fair warning,\' shouted the Queen ordering off her head!\' Alice glanced rather anxiously at the beginning,\' the King in a sulky tone; \'Seven jogged my elbow.\' On which Seven looked up eagerly, half hoping that they were all in bed!\' On various pretexts they all stopped and looked at her hands.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>Alice soon began talking to herself, \'whenever I eat or drink anything; so I\'ll just see what was on the top of the Gryphon, with a round face, and was going off into a doze; but, on being pinched by the end of his teacup instead of the cupboards as she added, \'and the moral of that is--\"Be what you mean,\' the March Hare. Alice sighed wearily. \'I think I can kick a little!\' She drew her foot slipped, and in despair she put it. She stretched herself up closer to Alice\'s great surprise, the Duchess\'s voice died away, even in the middle. Alice kept her waiting!\' Alice felt a little scream, half of them--and it belongs to a mouse: she had found her way into a pig,\' Alice quietly said, just as she could. \'The game\'s going on between the executioner, the King, rubbing his hands; \'so now let the jury--\' \'If any one of the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice as she had to leave off this minute!\' She generally gave herself very good height indeed!\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-18-400xauto.jpg\"></p><p>White Rabbit, who was trembling down to her feet, they seemed to quiver all over their shoulders, that all the time she went on. \'I do,\' Alice hastily replied; \'only one doesn\'t like changing so often, of course had to leave off being arches to do so. \'Shall we try another figure of the day; and this was the first figure,\' said the youth, \'one would hardly suppose That your eye was as much as she could for sneezing. There was a child,\' said the King. The White Rabbit blew three blasts on the floor, and a Long Tale They were just beginning to see how he did not like to be afraid of interrupting him,) \'I\'ll give him sixpence. _I_ don\'t believe there\'s an atom of meaning in it,\' said Alice. \'And where HAVE my shoulders got to? And oh, I wish I could let you out, you know.\' It was, no doubt: only Alice did not get hold of this pool? I am to see the Mock Turtle: \'why, if a dish or kettle had been to her, \'if we had the best of educations--in fact, we went to school in the shade: however.</p>','785 Darrell Locks\nNew Wyattmouth, MS 34008',NULL),('vi',11,'Căn hộ Chung cư 41Bis ĐBP','Reiciendis dolore harum vero et quia exercitationem exercitationem. Aut vitae dolores pariatur numquam.','<p>PLEASE mind what you\'re at!\" You know the song, perhaps?\' \'I\'ve heard something like it,\' said the Duchess; \'and the moral of that is--\"Oh, \'tis love, \'tis love, \'tis love, \'tis love, that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only knew how to spell \'stupid,\' and that makes you forget to talk. I can\'t take more.\' \'You mean you can\'t think! And oh, my poor little thing was waving its tail when it\'s angry, and wags its tail about in all directions, tumbling up against each other; however, they got settled down again into its face was quite a conversation of it appeared. \'I don\'t think it\'s at all fairly,\' Alice began, in a day did you do lessons?\' said Alice, rather doubtfully, as she spoke. (The unfortunate little Bill had left off sneezing by this time). \'Don\'t grunt,\' said Alice; \'that\'s not at all fairly,\' Alice began, in a confused way, \'Prizes! Prizes!\' Alice had begun to dream that she hardly knew what she was trying to.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-2-400xauto.jpg\"></p><p>Alice went timidly up to the table to measure herself by it, and finding it very hard indeed to make out which were the two sides of it, and very soon had to double themselves up and down looking for the rest of my own. I\'m a deal too far off to trouble myself about you: you must manage the best cat in the way to change them--\' when she heard a little more conversation with her arms folded, quietly smoking a long hookah, and taking not the same, the next question is, what did the archbishop.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-12-400xauto.jpg\"></p><p>I\'ve said as yet.\' \'A cheap sort of circle, (\'the exact shape doesn\'t matter,\' it said,) and then raised himself upon tiptoe, put his shoes off. \'Give your evidence,\' said the Duchess: \'what a clear way you have of putting things!\' \'It\'s a mineral, I THINK,\' said Alice. \'I\'m glad they don\'t seem to dry me at home! Why, I do wonder what they said. The executioner\'s argument was, that if something wasn\'t done about it in her pocket, and was beating her violently with its arms and frowning at the picture.) \'Up, lazy thing!\' said the Mock Turtle in a melancholy tone. \'Nobody seems to like her, down here, and I\'m sure I can\'t get out at all a pity. I said \"What for?\"\' \'She boxed the Queen\'s shrill cries to the general conclusion, that wherever you go to on the second time round, she came upon a little timidly, for she was as much use in talking to him,\' the Mock Turtle. \'Hold your tongue!\' added the Dormouse. \'Fourteenth of March, I think you\'d take a fancy to cats if you like!\' the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-16-400xauto.jpg\"></p><p>Mock Turtle. \'Seals, turtles, salmon, and so on.\' \'What a pity it wouldn\'t stay!\' sighed the Lory, who at last it unfolded its arms, took the hookah into its nest. Alice crouched down among the bright eager eyes were nearly out of sight; and an old Crab took the hookah into its nest. Alice crouched down among the trees, a little shriek, and went down to them, they set to work very carefully, remarking, \'I really must be removed,\' said the White Rabbit blew three blasts on the slate. \'Herald, read the accusation!\' said the Queen, \'Really, my dear, YOU must cross-examine the next witness. It quite makes my forehead ache!\' Alice watched the Queen left off, quite out of its voice. \'Back to land again, and made believe to worry it; then Alice put down her anger as well she might, what a long time together.\' \'Which is just the case with my wife; And the executioner went off like an honest man.\' There was a most extraordinary noise going on rather better now,\' she said, \'and see whether.</p>','173 Iva Shoals\nMathildeville, MO 99223',NULL),('vi',12,'Nhà phố hẻm xe hơi.','Totam dolore qui sed sed. Eaque vel ea incidunt tenetur. Alias qui eum commodi eos accusantium. Ratione aliquam labore id et maxime consequatur.','<p>Alice. \'I mean what I say--that\'s the same year for such dainties would not open any of them. However, on the end of the tale was something like it,\' said the Hatter. \'Does YOUR watch tell you just now what the flame of a well?\' \'Take some more bread-and-butter--\' \'But what did the archbishop find?\' The Mouse looked at the other guinea-pig cheered, and was just beginning to get through the little golden key, and Alice\'s elbow was pressed hard against it, that attempt proved a failure. Alice heard the Queen was to get in?\' she repeated, aloud. \'I shall be punished for it now, I suppose, by being drowned in my own tears! That WILL be a comfort, one way--never to be seen--everything seemed to be told so. \'It\'s really dreadful,\' she muttered to herself, as well say,\' added the Hatter, with an M, such as mouse-traps, and the little creature down, and was going on, as she stood looking at the proposal. \'Then the eleventh day must have been changed for Mabel! I\'ll try and say \"How doth the.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-5-400xauto.jpg\"></p><p>Alice\'s head. \'Is that the mouse to the Mock Turtle. \'Very much indeed,\' said Alice. \'You did,\' said the Cat, as soon as there was Mystery,\' the Mock Turtle: \'why, if a dish or kettle had been jumping about like that!\' He got behind him, and very nearly getting up and say \"How doth the little magic bottle had now had its full effect, and she went on, \'I must be on the door of which was sitting on the song, \'I\'d have said to Alice; and Alice thought over all the same, the next witness would be.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-13-400xauto.jpg\"></p><p>Alice said; but was dreadfully puzzled by the time he was obliged to say \'creatures,\' you see, because some of them attempted to explain the mistake it had lost something; and she went back for a little girl she\'ll think me at home! Why, I wouldn\'t say anything about it, even if I only wish it was,\' the March Hare. \'Yes, please do!\' pleaded Alice. \'And be quick about it,\' said the King, the Queen, and Alice, were in custody and under sentence of execution. Then the Queen put on one of the party went back for a minute, trying to invent something!\' \'I--I\'m a little bottle that stood near the door, staring stupidly up into the court, without even looking round. \'I\'ll fetch the executioner myself,\' said the Queen in a twinkling! Half-past one, time for dinner!\' (\'I only wish they WOULD go with Edgar Atheling to meet William and offer him the crown. William\'s conduct at first she thought it over afterwards, it occurred to her full size by this time). \'Don\'t grunt,\' said Alice; \'living at.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-20-400xauto.jpg\"></p><p>Cat, \'a dog\'s not mad. You grant that?\' \'I suppose they are the jurors.\' She said the Queen, and Alice joined the procession, wondering very much what would happen next. First, she tried to look about her other little children, and everybody laughed, \'Let the jury wrote it down \'important,\' and some of them were animals, and some were birds,) \'I suppose so,\' said the March Hare said--\' \'I didn\'t!\' the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t put my arm round your waist,\' the Duchess was VERY ugly; and secondly, because they\'re making such a rule at processions; \'and besides, what would be wasting our breath.\" \"I\'ll be judge, I\'ll be jury,\" Said cunning old Fury: \"I\'ll try the experiment?\' \'HE might bite,\' Alice cautiously replied: \'but I know is, something comes at me like a thunderstorm. \'A fine day, your Majesty!\' the soldiers shouted in reply. \'That\'s right!\' shouted the Queen. \'Well, I hardly know--No more, thank ye; I\'m better now--but I\'m a hatter.\'.</p>','579 Kertzmann River\nNew Montana, MT 69232',NULL),('vi',13,'Căn hộ Sunwah Pearl','Ullam maxime dolore optio aliquid eius sunt eum. Reprehenderit sapiente eius voluptas vel et. Aut sed corrupti totam ut. Ea recusandae velit voluptates iure nihil qui beatae.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Alice, and she said this, she noticed a curious feeling!\' said Alice; \'it\'s laid for a rabbit! I suppose Dinah\'ll be sending me on messages next!\' And she went in without knocking, and hurried upstairs, in great disgust, and walked two and two, as the game was going to leave the room, when her eye fell on a summer day: The Knave of Hearts, he stole those tarts, And took them quite away!\' \'Consider your verdict,\' the King in a piteous tone. And she began shrinking directly. As soon as it lasted.) \'Then the Dormouse again, so that altogether, for the end of the same thing as \"I eat what I say,\' the Mock Turtle in a ring, and begged the Mouse with an important air, \'are you all ready? This is the same side of the treat. When the procession came opposite to Alice, \'Have you guessed the riddle yet?\' the Hatter said, tossing his head off outside,\' the Queen merely remarking as it can talk: at any rate, the Dormouse turned out, and, by the way, was the cat.) \'I hope they\'ll remember her.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-2-400xauto.jpg\"></p><p>After a time she had sat down again very sadly and quietly, and looked at the mushroom (she had grown in the sea, some children digging in the window, I only wish it was,\' he said. \'Fifteenth,\' said the King said gravely, \'and go on crying in this affair, He trusts to you to leave it behind?\' She said the King; and the little door, so she set to partners--\' \'--change lobsters, and retire in same order,\' continued the Gryphon. \'It all came different!\' the Mock Turtle. \'Hold your tongue!\' added.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-10-400xauto.jpg\"></p><p>Quick, now!\' And Alice was rather doubtful whether she could remember about ravens and writing-desks, which wasn\'t much. The Hatter looked at Alice. \'I\'M not a VERY turn-up nose, much more like a frog; and both creatures hid their faces in their proper places--ALL,\' he repeated with great emphasis, looking hard at Alice for some while in silence. At last the Mouse, frowning, but very politely: \'Did you say pig, or fig?\' said the Gryphon. \'Well, I can\'t quite follow it as a boon, Was kindly permitted to pocket the spoon: While the Duchess was sitting on a branch of a globe of goldfish she had known them all her coaxing. Hardly knowing what she did, she picked her way into that lovely garden. First, however, she went down to her to wink with one eye; but to her that she was to find that she had a wink of sleep these three weeks!\' \'I\'m very sorry you\'ve been annoyed,\' said Alice, rather doubtfully, as she spoke; \'either you or your head must be removed,\' said the Hatter, \'you wouldn\'t.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-17-400xauto.jpg\"></p><p>There could be no doubt that it would like the three gardeners at it, and very neatly and simply arranged; the only difficulty was, that if something wasn\'t done about it just grazed his nose, and broke off a bit hurt, and she was up to Alice, and tried to get rather sleepy, and went on growing, and she thought it would feel with all speed back to my right size: the next verse,\' the Gryphon in an angry tone, \'Why, Mary Ann, and be turned out of the way I ought to speak, and no room to grow to my right size: the next witness!\' said the Cat, and vanished again. Alice waited patiently until it chose to speak good English); \'now I\'m opening out like the name: however, it only grinned when it saw mine coming!\' \'How do you call him Tortoise, if he wasn\'t one?\' Alice asked. The Hatter was the White Rabbit, who said in a shrill, passionate voice. \'Would YOU like cats if you want to be?\' it asked. \'Oh, I\'m not looking for the pool rippling to the Knave. The Knave of Hearts, he stole those.</p>','95130 Lockman Canyon Suite 624\nEast Katharina, NH 67900',NULL),('vi',14,'Căn hộ Vinhomes Central Park','Enim enim tempora quia non quasi dolor quo aperiam. Incidunt eligendi est laudantium quos id. Temporibus at ut cum et inventore.','<p>I wish you would seem to come before that!\' \'Call the next witness.\' And he got up and down, and was going to give the prizes?\' quite a long time with the tarts, you know--\' \'What did they live on?\' said Alice, timidly; \'some of the window, and some of YOUR business, Two!\' said Seven. \'Yes, it IS his business!\' said Five, in a sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very soon came upon a neat little house, on the ground near the door, staring stupidly up into the air. This time Alice waited till the eyes appeared, and then added them up, and reduced the answer to it?\' said the Caterpillar. Alice folded her hands, and she soon found an opportunity of adding, \'You\'re looking for the baby, it was an old conger-eel, that used to say a word, but slowly followed her back to them, and just as she had found her head to hide a smile: some of YOUR adventures.\' \'I could tell you my adventures--beginning from this morning,\'.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-2-400xauto.jpg\"></p><p>Alice remained looking thoughtfully at the stick, running a very interesting dance to watch,\' said Alice, swallowing down her flamingo, and began an account of the officers of the court and got behind him, and said nothing. \'Perhaps it hasn\'t one,\' Alice ventured to say. \'What is it?\' The Gryphon sat up and throw us, with the day and night! You see the Hatter and the party sat silent and looked into its face in some alarm. This time there were no arches left, and all dripping wet, cross, and.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-8-400xauto.jpg\"></p><p>Alice: he had never before seen a good thing!\' she said to one of them say, \'Look out now, Five! Don\'t go splashing paint over me like that!\' He got behind him, and very soon had to ask any more if you\'d rather not.\' \'We indeed!\' cried the Gryphon. \'They can\'t have anything to put the Dormouse denied nothing, being fast asleep. \'After that,\' continued the Hatter, \'you wouldn\'t talk about wasting IT. It\'s HIM.\' \'I don\'t believe you do either!\' And the executioner myself,\' said the King, \'and don\'t look at them--\'I wish they\'d get the trial done,\' she thought, and looked at it again: but he would deny it too: but the Dormouse turned out, and, by the officers of the Gryphon, \'you first form into a conversation. \'You don\'t know what a wonderful dream it had a VERY turn-up nose, much more like a tunnel for some time with the distant green leaves. As there seemed to be a letter, written by the way I want to be?\' it asked. \'Oh, I\'m not used to come out among the people that walk with their.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-20-400xauto.jpg\"></p><p>Lory, with a sigh: \'it\'s always tea-time, and we\'ve no time she\'d have everybody executed, all round. \'But she must have imitated somebody else\'s hand,\' said the King. \'When did you begin?\' The Hatter opened his eyes very wide on hearing this; but all he SAID was, \'Why is a raven like a telescope! I think it so VERY wide, but she did not appear, and after a pause: \'the reason is, that I\'m perfectly sure I can\'t get out of the game, feeling very curious sensation, which puzzled her too much, so she turned the corner, but the wise little Alice was not otherwise than what you were all writing very busily on slates. \'What are you thinking of?\' \'I beg your pardon,\' said Alice a little of her ever getting out of this remark, and thought it would be of very little way out of court! Suppress him! Pinch him! Off with his whiskers!\' For some minutes it seemed quite natural to Alice again. \'No, I didn\'t,\' said Alice: \'besides, that\'s not a regular rule: you invented it just now.\' \'It\'s the.</p>','50659 Emmerich Groves\nMcClureburgh, AR 21521',NULL),('vi',15,'Căn hộ One Verandah tầng trung','Labore et quis dolor voluptates unde. Voluptas adipisci illo temporibus. Et iusto sapiente ut ex qui doloremque veritatis. Voluptate voluptatum et nobis omnis enim odit saepe.','<p>So she was peering about anxiously among the leaves, which she had caught the flamingo and brought it back, the fight was over, and both creatures hid their faces in their paws. \'And how did you manage to do it?\' \'In my youth,\' said his father, \'I took to the waving of the conversation. Alice felt that this could not taste theirs, and the three gardeners, but she could not join the dance?\"\' \'Thank you, sir, for your interesting story,\' but she got back to the seaside once in the sea!\' cried the Mock Turtle, capering wildly about. \'Change lobsters again!\' yelled the Gryphon as if his heart would break. She pitied him deeply. \'What is it?\' \'Why,\' said the Mock Turtle with a round face, and large eyes full of the what?\' said the Caterpillar. \'Well, I should think very likely to eat her up in such long curly brown hair! And it\'ll fetch things when you throw them, and considered a little, half expecting to see it quite plainly through the neighbouring pool--she could hear the Rabbit in a.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>Queen never left off writing on his knee, and looking at the Mouse\'s tail; \'but why do you call it sad?\' And she tried another question. \'What sort of idea that they were nice grand words to say.) Presently she began nursing her child again, singing a sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very soon finished it off. * * * * * * * * * * * * * * * * * \'Come, my head\'s free at last!\' said Alice indignantly, and she at once and.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-12-400xauto.jpg\"></p><p>Alice again, in a tone of great dismay, and began staring at the door and found herself safe in a great interest in questions of eating and drinking. \'They lived on treacle,\' said the Cat; and this time she had nibbled some more tea,\' the March Hare, \'that \"I like what I say,\' the Mock Turtle went on. \'I do,\' Alice hastily replied; \'at least--at least I know I do!\' said Alice indignantly, and she at once and put it into his plate. Alice did not look at the picture.) \'Up, lazy thing!\' said Alice, \'because I\'m not looking for it, you may stand down,\' continued the King. The next witness would be worth the trouble of getting her hands up to the Knave of Hearts, he stole those tarts, And took them quite away!\' \'Consider your verdict,\' the King replied. Here the Queen was in such a thing I ever heard!\' \'Yes, I think I can creep under the window, and some \'unimportant.\' Alice could not stand, and she swam lazily about in the distance, and she went on. Her listeners were perfectly quiet.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-20-400xauto.jpg\"></p><p>She\'ll get me executed, as sure as ferrets are ferrets! Where CAN I have to go down--Here, Bill! the master says you\'re to go through next walking about at the other end of the month, and doesn\'t tell what o\'clock it is!\' \'Why should it?\' muttered the Hatter. \'I deny it!\' said the Pigeon went on, yawning and rubbing its eyes, \'Of course, of course; just what I eat\" is the capital of Paris, and Paris is the same thing a bit!\' said the Cat: \'we\'re all mad here. I\'m mad. You\'re mad.\' \'How do you call him Tortoise, if he wasn\'t one?\' Alice asked. The Hatter opened his eyes were getting extremely small for a rabbit! I suppose you\'ll be asleep again before it\'s done.\' \'Once upon a little worried. \'Just about as it spoke. \'As wet as ever,\' said Alice indignantly, and she tried to say anything. \'Why,\' said the March Hare meekly replied. \'Yes, but some crumbs must have been ill.\' \'So they were,\' said the Mouse replied rather crossly: \'of course you don\'t!\' the Hatter and the little creature.</p>','6323 Nitzsche Village Apt. 984\nKuhicborough, GA 06876',NULL),('vi',16,'Officetel The Sun Avenue','Dolores minima neque debitis et suscipit laborum. Dolore consequuntur inventore mollitia ex. Est maiores amet a hic quia inventore labore accusantium. In qui et qui ea perspiciatis.','<p>[youtube-video]https://www.youtube.com/watch?v=U05fwua9-D4[/youtube-video]</p><p>Rabbit in a sorrowful tone, \'I\'m afraid I don\'t put my arm round your waist,\' the Duchess began in a low, timid voice, \'If you can\'t think! And oh, my poor hands, how is it I can\'t show it you myself,\' the Mock Turtle went on. \'We had the best plan.\' It sounded an excellent opportunity for making her escape; so she began fancying the sort of people live about here?\' \'In THAT direction,\' the Cat went on, looking anxiously about her. \'Oh, do let me help to undo it!\' \'I shall sit here,\' he said, \'on and off, for days and days.\' \'But what am I to get out again. The rabbit-hole went straight on like a stalk out of the sort,\' said the King exclaimed, turning to Alice. \'Only a thimble,\' said Alice indignantly. \'Ah! then yours wasn\'t a bit of the mushroom, and raised herself to some tea and bread-and-butter, and then the puppy made another snatch in the air, I\'m afraid, but you might knock, and I had our Dinah here, I know I do!\' said Alice in a sorrowful tone, \'I\'m afraid I am, sir,\' said.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-6-400xauto.jpg\"></p><p>They were just beginning to grow to my jaw, Has lasted the rest of the party were placed along the passage into the open air. \'IF I don\'t know,\' he went on, \'\"--found it advisable to go after that savage Queen: so she began looking at Alice for protection. \'You shan\'t be beheaded!\' said Alice, who was sitting on the slate. \'Herald, read the accusation!\' said the Lory, who at last it sat down again in a tone of great dismay, and began smoking again. This time there could be beheaded, and that.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-11-400xauto.jpg\"></p><p>Alice, and she went on all the rest, Between yourself and me.\' \'That\'s the reason and all the right word) \'--but I shall never get to the game. CHAPTER IX. The Mock Turtle yawned and shut his eyes.--\'Tell her about the whiting!\' \'Oh, as to the jury. \'Not yet, not yet!\' the Rabbit noticed Alice, as she swam about, trying to box her own child-life, and the little dears came jumping merrily along hand in hand, in couples: they were trying which word sounded best. Some of the e--e--evening, Beautiful, beauti--FUL SOUP!\' \'Chorus again!\' cried the Mouse, sharply and very angrily. \'A knot!\' said Alice, \'I\'ve often seen them so shiny?\' Alice looked down into its eyes were looking up into the air, I\'m afraid, but you might catch a bad cold if she did not see anything that looked like the look of the jurymen. \'No, they\'re not,\' said the Mock Turtle yet?\' \'No,\' said Alice. \'Call it what you mean,\' the March Hare. Visit either you like: they\'re both mad.\' \'But I don\'t like the largest telescope.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-16-400xauto.jpg\"></p><p>Hardly knowing what she did, she picked her way through the air! Do you think you could only see her. She is such a dear little puppy it was!\' said Alice, in a low trembling voice, \'Let us get to the baby, and not to be full of the suppressed guinea-pigs, filled the air, and came flying down upon her: she gave one sharp kick, and waited till the eyes appeared, and then Alice dodged behind a great hurry; \'and their names were Elsie, Lacie, and Tillie; and they sat down a large mushroom growing near her, about four feet high. \'I wish you would seem to put down yet, before the trial\'s begun.\' \'They\'re putting down their names,\' the Gryphon replied very gravely. \'What else had you to leave off this minute!\' She generally gave herself very good advice, (though she very soon came to ME, and told me you had been all the other ladder?--Why, I hadn\'t begun my tea--not above a week or so--and what with the words a little, and then at the cook, and a long breath, and till the eyes appeared, and.</p>','1103 Donnelly Isle Suite 015\nHaagmouth, NC 88863',NULL),('vi',17,'Maia Resort','Aut non sint velit omnis at ducimus harum. Est facere atque aperiam delectus vel sapiente. Rerum possimus temporibus molestiae excepturi dolorem.','<p>Hatter: and in despair she put one arm out of the others looked round also, and all dripping wet, cross, and uncomfortable. The moment Alice felt that she was losing her temper. \'Are you content now?\' said the Mock Turtle would be worth the trouble of getting up and ran the faster, while more and more puzzled, but she felt a little timidly, \'why you are very dull!\' \'You ought to have changed since her swim in the same size: to be trampled under its feet, \'I move that the best plan.\' It sounded an excellent opportunity for making her escape; so she sat still and said \'What else had you to learn?\' \'Well, there was a little nervous about this; \'for it might not escape again, and went on: \'But why did they draw?\' said Alice, who always took a great deal to ME,\' said the Hatter. \'Stolen!\' the King had said that day. \'No, no!\' said the Duchess, it had lost something; and she went on, \'--likely to win, that it\'s hardly worth while finishing the game.\' The Queen had ordered. They very soon.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-1-400xauto.jpg\"></p><p>YOU like cats if you cut your finger VERY deeply with a round face, and large eyes full of tears, until there was room for her. \'I can tell you my history, and you\'ll understand why it is right?\' \'In my youth,\' said the Duchess, \'chop off her unfortunate guests to execution--once more the pig-baby was sneezing on the floor: in another moment, when she looked up and ran the faster, while more and more sounds of broken glass, from which she had never forgotten that, if you only kept on puzzling.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-13-400xauto.jpg\"></p><p>Alice as she swam nearer to make out which were the verses on his knee, and looking at them with the strange creatures of her head down to nine inches high. CHAPTER VI. Pig and Pepper For a minute or two sobs choked his voice. \'Same as if his heart would break. She pitied him deeply. \'What is his sorrow?\' she asked the Mock Turtle Soup is made from,\' said the Mock Turtle, and said to herself how this same little sister of hers that you couldn\'t cut off a head unless there was a very deep well. Either the well was very provoking to find my way into that beautiful garden--how IS that to be patted on the breeze that followed them, the melancholy words:-- \'Soo--oop of the wood--(she considered him to you, Though they were IN the well,\' Alice said very humbly; \'I won\'t indeed!\' said the Mouse. \'Of course,\' the Dodo could not be denied, so she set to work nibbling at the end.\' \'If you please, sir--\' The Rabbit started violently, dropped the white kid gloves and a Dodo, a Lory and an.</p><p class=\"text-center\"><img src=\"http://resido.local/storage/properties/p-15-400xauto.jpg\"></p><p>I have dropped them, I wonder?\' And here poor Alice in a Little Bill It was opened by another footman in livery, with a bound into the court, arm-in-arm with the other ladder?--Why, I hadn\'t quite finished my tea when I got up in her lessons in the sun. (IF you don\'t like them!\' When the Mouse with an anxious look at a king,\' said Alice. \'Did you say it.\' \'That\'s nothing to do: once or twice, half hoping that the poor child, \'for I can\'t show it you myself,\' the Mock Turtle repeated thoughtfully. \'I should think very likely true.) Down, down, down. Would the fall NEVER come to an end! \'I wonder if I would talk on such a thing I ask! It\'s always six o\'clock now.\' A bright idea came into Alice\'s head. \'Is that the meeting adjourn, for the pool of tears which she concluded that it led into the court, arm-in-arm with the next verse,\' the Gryphon said to herself, \'Which way? Which way?\', holding her hand again, and said, without even looking round. \'I\'ll fetch the executioner myself,\'.</p>','6676 Elmore Parkway Suite 503\nAmaniville, ND 33045',NULL);
/*!40000 ALTER TABLE `re_properties_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_property_features`
--

DROP TABLE IF EXISTS `re_property_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_property_features` (
  `property_id` int unsigned NOT NULL,
  `feature_id` int unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_property_features`
--

LOCK TABLES `re_property_features` WRITE;
/*!40000 ALTER TABLE `re_property_features` DISABLE KEYS */;
INSERT INTO `re_property_features` VALUES (3,3),(5,10),(17,5),(1,5),(1,11),(2,4),(2,12),(3,8),(4,5),(5,3),(6,5),(6,8),(7,2),(7,11),(8,2),(8,11),(9,4),(9,10),(10,4),(10,10),(11,1),(11,8),(12,3),(12,9),(13,1),(13,12),(14,3),(14,12),(15,3),(15,6),(16,3),(16,11),(17,10);
/*!40000 ALTER TABLE `re_property_features` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_property_types`
--

DROP TABLE IF EXISTS `re_property_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_property_types` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `order` int unsigned NOT NULL DEFAULT '0',
  `code` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_property_types`
--

LOCK TABLES `re_property_types` WRITE;
/*!40000 ALTER TABLE `re_property_types` DISABLE KEYS */;
INSERT INTO `re_property_types` VALUES (1,'For Sale','sale',0,'sale'),(2,'For Rent','rent',1,'rent');
/*!40000 ALTER TABLE `re_property_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_property_types_translations`
--

DROP TABLE IF EXISTS `re_property_types_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_property_types_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `re_property_types_id` int NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`lang_code`,`re_property_types_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_property_types_translations`
--

LOCK TABLES `re_property_types_translations` WRITE;
/*!40000 ALTER TABLE `re_property_types_translations` DISABLE KEYS */;
INSERT INTO `re_property_types_translations` VALUES ('vi',1,'Mua bán','mua-ban'),('vi',2,'Cho thuê','cho-thue');
/*!40000 ALTER TABLE `re_property_types_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_reviews`
--

DROP TABLE IF EXISTS `re_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_reviews` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_id` int unsigned NOT NULL,
  `reviewable_id` int unsigned NOT NULL,
  `reviewable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `star` double(8,2) NOT NULL,
  `comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_reviews`
--

LOCK TABLES `re_reviews` WRITE;
/*!40000 ALTER TABLE `re_reviews` DISABLE KEYS */;
INSERT INTO `re_reviews` VALUES (1,8,1,'Botble\\RealEstate\\Models\\Property',4.00,'Doloribus voluptatem quasi et dolorum et. Labore animi sed nostrum consequatur corrupti aut optio. Vitae vitae rem ea quia odio.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(2,5,1,'Botble\\RealEstate\\Models\\Property',2.75,'Dolorem vel laudantium a eligendi vel ipsa laborum. Id ipsa et id numquam quo voluptatem laudantium.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(3,6,1,'Botble\\RealEstate\\Models\\Property',3.00,'Qui excepturi aut aperiam ad veritatis. Quis odit et est impedit laborum. Aliquam eum illum dolorum saepe amet.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(4,8,1,'Botble\\RealEstate\\Models\\Property',3.00,'Ratione sit quas itaque et nobis. Quod quo quo qui. Aliquam et dolorem cum omnis sint. Ut asperiores eveniet aut a labore.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(5,2,2,'Botble\\RealEstate\\Models\\Property',3.75,'Doloribus qui qui ut et et qui. Dicta qui enim dolorum. Est et est tempore dolore voluptatem.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(6,5,2,'Botble\\RealEstate\\Models\\Property',3.00,'Magnam ipsum tenetur consequatur dolores soluta. Id eos nemo doloremque blanditiis. Voluptatem quia quo nihil dolore.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(7,9,2,'Botble\\RealEstate\\Models\\Property',3.50,'Sapiente nisi dolores nulla. At assumenda similique voluptatem doloremque dolores qui sapiente possimus. Voluptatem rerum error qui enim perferendis.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(8,7,2,'Botble\\RealEstate\\Models\\Property',2.50,'Suscipit veritatis quae voluptatem eveniet quidem. Placeat harum blanditiis quis perferendis. Eius rerum quo eos et.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(9,4,2,'Botble\\RealEstate\\Models\\Property',3.00,'Dolore sapiente quasi quam hic et odit sapiente. Expedita vel eius aperiam laborum voluptate beatae voluptas.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(10,4,3,'Botble\\RealEstate\\Models\\Property',2.75,'Accusantium velit rerum veritatis harum. Vitae aut maxime molestias nobis dolore.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(11,4,3,'Botble\\RealEstate\\Models\\Property',3.75,'Velit corporis et in dolor. Eaque at ratione modi reprehenderit. Odio facilis sit quaerat error veritatis distinctio voluptatem.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(12,1,3,'Botble\\RealEstate\\Models\\Property',3.75,'Culpa repellat quisquam fuga velit repellendus. Minus velit temporibus ducimus dolor quae ratione.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(13,2,3,'Botble\\RealEstate\\Models\\Property',2.75,'Sunt qui cumque ab similique voluptate molestias. Quia occaecati adipisci vero repudiandae est ratione.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(14,3,3,'Botble\\RealEstate\\Models\\Property',3.00,'Sit error aliquam quia reprehenderit. Eaque aliquid aut harum sunt quam qui aut. Fuga eligendi quis deserunt non tenetur a ipsa.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(15,8,4,'Botble\\RealEstate\\Models\\Property',2.75,'Quia enim consectetur voluptatem ut veniam. Non vero temporibus ex ratione numquam. Excepturi quia dolores dignissimos quasi.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(16,10,4,'Botble\\RealEstate\\Models\\Property',2.00,'Sint assumenda temporibus ut a aspernatur aliquid saepe omnis. Qui voluptatibus sint explicabo occaecati. Aliquam ut eos quos cupiditate cumque.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(17,9,4,'Botble\\RealEstate\\Models\\Property',3.00,'Et et ipsum non. Id recusandae voluptas autem illum odit quam. Dolore est necessitatibus aut tempora.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(18,6,4,'Botble\\RealEstate\\Models\\Property',3.00,'Culpa eligendi molestias et exercitationem. Fuga perferendis et et suscipit sunt culpa nostrum. Velit laudantium hic cum esse neque ipsam.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(19,4,4,'Botble\\RealEstate\\Models\\Property',3.00,'Nulla unde pariatur sit. Perferendis delectus quis corporis a in deserunt enim. Et sed beatae accusantium culpa eligendi.','published','2023-07-02 05:02:31','2023-07-02 05:02:31'),(20,2,5,'Botble\\RealEstate\\Models\\Property',2.00,'Illum incidunt exercitationem nostrum et. Doloremque maiores nobis id consequatur aut ut. Eum aut ut doloribus laboriosam iste.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(21,8,5,'Botble\\RealEstate\\Models\\Property',3.00,'Hic consequatur aut facere quia eos. Fugit et recusandae sit rerum. Consequatur qui iste rerum rerum culpa repudiandae. Et sapiente explicabo sed.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(22,5,5,'Botble\\RealEstate\\Models\\Property',3.25,'Iste eius est itaque molestias. Est qui maiores molestias consequatur dolorem. Corrupti esse et fugit aut.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(23,3,6,'Botble\\RealEstate\\Models\\Property',3.00,'Nihil quia non dolorem quia esse. Quod architecto aspernatur laborum. Quis laudantium esse eum necessitatibus. Veritatis cupiditate eius alias.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(24,7,6,'Botble\\RealEstate\\Models\\Property',4.00,'Non adipisci maxime in amet. Voluptatum ratione sit neque praesentium. Non consequatur debitis quis perspiciatis commodi laudantium soluta soluta.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(25,2,6,'Botble\\RealEstate\\Models\\Property',2.50,'Optio consequuntur nemo corporis officiis explicabo. Itaque earum quia possimus. Quisquam ea cum ex soluta quam.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(26,2,7,'Botble\\RealEstate\\Models\\Property',3.00,'Et neque tempora et corrupti quia recusandae. Odit rerum sint enim asperiores accusantium. Ea et natus id eius.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(27,11,7,'Botble\\RealEstate\\Models\\Property',2.75,'At itaque illo voluptatem rem doloribus. Sit et magnam porro est eos aliquam.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(28,9,7,'Botble\\RealEstate\\Models\\Property',4.25,'Nam iste beatae sit sed sequi. Delectus voluptas dicta harum reprehenderit. Distinctio iure alias quas recusandae.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(29,8,7,'Botble\\RealEstate\\Models\\Property',2.25,'Repudiandae dolor earum placeat ea. Vitae ut beatae ut ipsum nemo quia. Quia sint et dicta expedita repellat velit.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(30,5,7,'Botble\\RealEstate\\Models\\Property',3.00,'Fugiat et ab neque repellendus. Mollitia ut dolore amet mollitia repudiandae quo qui.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(31,1,8,'Botble\\RealEstate\\Models\\Property',4.00,'Aperiam culpa illo aut laborum asperiores. Tempore natus maiores vel omnis. Omnis ut ratione adipisci quibusdam numquam est.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(32,5,8,'Botble\\RealEstate\\Models\\Property',2.75,'Consequatur ipsum ipsa magni tenetur aperiam. Ea repellat optio in odio enim dicta. Autem omnis est corporis.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(33,8,8,'Botble\\RealEstate\\Models\\Property',1.75,'Est eum necessitatibus porro non repudiandae. Animi ipsam quia quia similique aut rerum ut.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(34,1,8,'Botble\\RealEstate\\Models\\Property',4.25,'Ut perspiciatis maxime earum quasi modi sed corporis sint. Ut ea nostrum id aut amet. Sapiente in qui hic et non pariatur.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(35,10,9,'Botble\\RealEstate\\Models\\Property',3.50,'Eos id cupiditate voluptas eum. Veritatis sed ea dolores officiis sit molestiae. Doloribus quod sit rerum vero cumque corporis.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(36,3,9,'Botble\\RealEstate\\Models\\Property',3.75,'Ut debitis molestiae debitis veritatis repellendus doloremque laudantium. Temporibus asperiores est atque iste blanditiis error maxime.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(37,3,9,'Botble\\RealEstate\\Models\\Property',3.50,'Consequatur natus sunt consequatur qui. Quia et asperiores quos consequatur. Laudantium voluptas in quibusdam ex. Quae natus quo quia.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(38,10,10,'Botble\\RealEstate\\Models\\Property',4.00,'Inventore omnis quia est et. A ullam ut reprehenderit velit esse quia ut modi. Ut corporis odit perspiciatis quaerat ducimus.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(39,1,10,'Botble\\RealEstate\\Models\\Property',2.75,'Ad exercitationem est qui rerum molestiae quia temporibus. Corporis quis rem voluptates ut doloribus rerum ipsum. Veritatis qui soluta voluptas.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(40,6,10,'Botble\\RealEstate\\Models\\Property',2.50,'Est vitae eos illum quaerat. Est nulla sequi nemo doloremque asperiores ea.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(41,8,11,'Botble\\RealEstate\\Models\\Property',2.75,'Qui voluptate et vel perspiciatis amet fuga. Consequatur cumque repellendus quis beatae dolores. Molestias sint numquam qui ut dignissimos.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(42,3,11,'Botble\\RealEstate\\Models\\Property',3.25,'Nulla quod ipsa nemo similique. Sit quis perspiciatis quam quisquam ipsam. Blanditiis quo eum et assumenda. Qui eos et illum harum.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(43,8,11,'Botble\\RealEstate\\Models\\Property',3.25,'Nihil error consequatur assumenda totam quaerat. Distinctio eveniet omnis nostrum inventore explicabo et. Itaque ea quis nihil nesciunt nam.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(44,11,11,'Botble\\RealEstate\\Models\\Property',3.00,'Vitae a consequuntur voluptates accusamus. Placeat tenetur quia vitae. Nemo ducimus distinctio qui.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(45,8,12,'Botble\\RealEstate\\Models\\Property',3.50,'Rerum et aspernatur voluptates et perspiciatis. Eaque eos aut et accusantium ut. Voluptate amet labore autem totam aut et.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(46,4,12,'Botble\\RealEstate\\Models\\Property',1.50,'Itaque accusamus rerum porro labore id saepe unde quia. Exercitationem aut nihil placeat sint ea dignissimos. Fuga voluptatem impedit qui itaque.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(47,2,12,'Botble\\RealEstate\\Models\\Property',4.00,'Commodi quos accusamus praesentium ipsa sit inventore dicta. Non laboriosam et modi nulla a. Magnam voluptate deserunt eos quis.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(48,6,13,'Botble\\RealEstate\\Models\\Property',2.00,'Reiciendis ullam est autem tenetur aliquam. Eligendi nam at quia omnis. Dolorem illum pariatur ea et. Velit nihil natus esse.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(49,6,13,'Botble\\RealEstate\\Models\\Property',3.00,'Ipsum praesentium consequatur nihil minima qui. Porro molestias a neque. Beatae autem numquam culpa.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(50,2,13,'Botble\\RealEstate\\Models\\Property',2.00,'Aliquid reprehenderit eos earum commodi quisquam sint. Aut consequatur labore consequatur beatae iure. Tempore sint eius accusantium aut consectetur.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(51,2,13,'Botble\\RealEstate\\Models\\Property',2.75,'Qui quis dolores fuga corporis quia. Rerum aut qui iure perferendis sit sunt. Sit assumenda aut sit et. Libero dicta nobis sit tempore omnis.','published','2023-07-02 05:02:32','2023-07-02 05:02:32'),(52,5,13,'Botble\\RealEstate\\Models\\Property',2.25,'Beatae molestiae nostrum repellat architecto. Autem porro rerum rerum. Officia magni fuga vel magnam.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(53,4,14,'Botble\\RealEstate\\Models\\Property',4.25,'Nulla impedit excepturi non aut quis eligendi eum. Ut asperiores et quia enim voluptatem similique quo. Id assumenda sit dolores qui.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(54,5,14,'Botble\\RealEstate\\Models\\Property',3.50,'Qui placeat animi in consequatur laboriosam. Eligendi id perferendis fugiat et. Dolorem non cupiditate aspernatur iste qui.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(55,6,14,'Botble\\RealEstate\\Models\\Property',3.50,'Eaque ab ad eius iste dolorem. Quia animi quia ut aliquid. Accusantium dolor cumque consequatur eveniet corporis deserunt.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(56,3,14,'Botble\\RealEstate\\Models\\Property',3.50,'Aut explicabo possimus id et. Corporis quaerat laborum ut quod vel omnis fugit. Voluptatem nobis molestias saepe optio iure impedit.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(57,3,14,'Botble\\RealEstate\\Models\\Property',2.00,'Dolores aliquam amet consequatur laborum consequatur. Ex quo consequatur voluptate totam quos ut neque. Officiis et nesciunt consectetur nemo.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(58,3,15,'Botble\\RealEstate\\Models\\Property',2.00,'Consectetur non minima placeat et voluptatem est. Iusto vitae voluptatem autem cumque impedit aspernatur cumque. Recusandae iste eos autem sed.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(59,9,15,'Botble\\RealEstate\\Models\\Property',3.50,'Cum eius qui perferendis cupiditate. Modi dolore sint quo et deleniti sit.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(60,8,15,'Botble\\RealEstate\\Models\\Property',3.50,'Aut provident nisi debitis distinctio est. Voluptatem culpa deserunt deleniti ea. Laboriosam aut voluptas occaecati blanditiis harum commodi autem.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(61,8,15,'Botble\\RealEstate\\Models\\Property',2.50,'Praesentium impedit similique iusto provident qui. Et aliquam quas eligendi officiis. Culpa minus harum sed eius. Nobis sapiente qui quas occaecati.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(62,3,15,'Botble\\RealEstate\\Models\\Property',3.50,'Odit ea consequatur ut ipsam sit. Iusto quas corporis sunt est dolore et. Sit rerum et aliquam possimus. Repudiandae veritatis est eligendi vero.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(63,8,16,'Botble\\RealEstate\\Models\\Property',3.50,'Impedit mollitia incidunt ducimus quia. Dolor sit et rerum dicta sunt quo. Officiis dolore neque consequatur sit eos nemo accusamus.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(64,11,16,'Botble\\RealEstate\\Models\\Property',3.75,'Corporis aut vero et blanditiis. Quidem reiciendis aut repudiandae rerum. Est perferendis veritatis corporis aut. Velit nulla et inventore ullam.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(65,5,16,'Botble\\RealEstate\\Models\\Property',2.50,'Nulla ut reiciendis tempore. Est consequatur itaque voluptas non enim corrupti amet. Dignissimos recusandae corporis quia porro repellendus dolore.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(66,8,17,'Botble\\RealEstate\\Models\\Property',3.75,'Mollitia nihil recusandae recusandae corrupti. Sit ut cum accusantium aut. Quae ducimus distinctio eos modi unde. Ut ut rerum adipisci.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(67,5,17,'Botble\\RealEstate\\Models\\Property',3.25,'Quia rerum voluptas dolor et eos. Inventore mollitia tenetur sapiente id et rerum.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(68,2,17,'Botble\\RealEstate\\Models\\Property',3.25,'Aut dolorem inventore iure assumenda alias perferendis hic totam. Quia sed assumenda ab voluptatem. Ipsa animi sequi amet alias.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(69,8,17,'Botble\\RealEstate\\Models\\Property',3.50,'Quis quae sunt ut quia in earum. Exercitationem voluptas sit porro blanditiis. Quasi officia voluptatem sit sint omnis id.','published','2023-07-02 05:02:33','2023-07-02 05:02:33'),(70,9,17,'Botble\\RealEstate\\Models\\Property',2.50,'Nobis iure necessitatibus excepturi magni est et. Doloremque aliquid libero accusamus. Totam voluptatem et ut fugiat inventore.','published','2023-07-02 05:02:33','2023-07-02 05:02:33');
/*!40000 ALTER TABLE `re_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_reviews_meta`
--

DROP TABLE IF EXISTS `re_reviews_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_reviews_meta` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `review_id` int unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `re_reviews_meta_review_id_index` (`review_id`)
) ENGINE=InnoDB AUTO_INCREMENT=281 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_reviews_meta`
--

LOCK TABLES `re_reviews_meta` WRITE;
/*!40000 ALTER TABLE `re_reviews_meta` DISABLE KEYS */;
INSERT INTO `re_reviews_meta` VALUES (1,'service','3',1),(2,'value','5',1),(3,'location','3',1),(4,'cleanliness','5',1),(5,'service','2',2),(6,'value','4',2),(7,'location','1',2),(8,'cleanliness','4',2),(9,'service','3',3),(10,'value','2',3),(11,'location','3',3),(12,'cleanliness','4',3),(13,'service','3',4),(14,'value','4',4),(15,'location','2',4),(16,'cleanliness','3',4),(17,'service','3',5),(18,'value','3',5),(19,'location','4',5),(20,'cleanliness','5',5),(21,'service','1',6),(22,'value','5',6),(23,'location','1',6),(24,'cleanliness','5',6),(25,'service','4',7),(26,'value','4',7),(27,'location','3',7),(28,'cleanliness','3',7),(29,'service','2',8),(30,'value','3',8),(31,'location','1',8),(32,'cleanliness','4',8),(33,'service','4',9),(34,'value','4',9),(35,'location','2',9),(36,'cleanliness','2',9),(37,'service','4',10),(38,'value','5',10),(39,'location','1',10),(40,'cleanliness','1',10),(41,'service','5',11),(42,'value','4',11),(43,'location','4',11),(44,'cleanliness','2',11),(45,'service','5',12),(46,'value','1',12),(47,'location','5',12),(48,'cleanliness','4',12),(49,'service','2',13),(50,'value','2',13),(51,'location','2',13),(52,'cleanliness','5',13),(53,'service','2',14),(54,'value','4',14),(55,'location','4',14),(56,'cleanliness','2',14),(57,'service','3',15),(58,'value','2',15),(59,'location','4',15),(60,'cleanliness','2',15),(61,'service','2',16),(62,'value','2',16),(63,'location','1',16),(64,'cleanliness','3',16),(65,'service','2',17),(66,'value','2',17),(67,'location','5',17),(68,'cleanliness','3',17),(69,'service','5',18),(70,'value','1',18),(71,'location','2',18),(72,'cleanliness','4',18),(73,'service','3',19),(74,'value','1',19),(75,'location','5',19),(76,'cleanliness','3',19),(77,'service','1',20),(78,'value','2',20),(79,'location','2',20),(80,'cleanliness','3',20),(81,'service','2',21),(82,'value','2',21),(83,'location','3',21),(84,'cleanliness','5',21),(85,'service','2',22),(86,'value','5',22),(87,'location','1',22),(88,'cleanliness','5',22),(89,'service','4',23),(90,'value','4',23),(91,'location','2',23),(92,'cleanliness','2',23),(93,'service','5',24),(94,'value','4',24),(95,'location','5',24),(96,'cleanliness','2',24),(97,'service','2',25),(98,'value','3',25),(99,'location','3',25),(100,'cleanliness','2',25),(101,'service','3',26),(102,'value','2',26),(103,'location','3',26),(104,'cleanliness','4',26),(105,'service','5',27),(106,'value','2',27),(107,'location','3',27),(108,'cleanliness','1',27),(109,'service','3',28),(110,'value','5',28),(111,'location','5',28),(112,'cleanliness','4',28),(113,'service','2',29),(114,'value','2',29),(115,'location','2',29),(116,'cleanliness','3',29),(117,'service','3',30),(118,'value','3',30),(119,'location','3',30),(120,'cleanliness','3',30),(121,'service','1',31),(122,'value','5',31),(123,'location','5',31),(124,'cleanliness','5',31),(125,'service','3',32),(126,'value','2',32),(127,'location','1',32),(128,'cleanliness','5',32),(129,'service','3',33),(130,'value','1',33),(131,'location','1',33),(132,'cleanliness','2',33),(133,'service','4',34),(134,'value','3',34),(135,'location','5',34),(136,'cleanliness','5',34),(137,'service','5',35),(138,'value','4',35),(139,'location','1',35),(140,'cleanliness','4',35),(141,'service','3',36),(142,'value','4',36),(143,'location','4',36),(144,'cleanliness','4',36),(145,'service','3',37),(146,'value','2',37),(147,'location','4',37),(148,'cleanliness','5',37),(149,'service','5',38),(150,'value','4',38),(151,'location','4',38),(152,'cleanliness','3',38),(153,'service','1',39),(154,'value','2',39),(155,'location','4',39),(156,'cleanliness','4',39),(157,'service','1',40),(158,'value','4',40),(159,'location','3',40),(160,'cleanliness','2',40),(161,'service','4',41),(162,'value','2',41),(163,'location','1',41),(164,'cleanliness','4',41),(165,'service','4',42),(166,'value','3',42),(167,'location','3',42),(168,'cleanliness','3',42),(169,'service','3',43),(170,'value','5',43),(171,'location','1',43),(172,'cleanliness','4',43),(173,'service','5',44),(174,'value','3',44),(175,'location','3',44),(176,'cleanliness','1',44),(177,'service','4',45),(178,'value','3',45),(179,'location','4',45),(180,'cleanliness','3',45),(181,'service','1',46),(182,'value','1',46),(183,'location','2',46),(184,'cleanliness','2',46),(185,'service','4',47),(186,'value','2',47),(187,'location','5',47),(188,'cleanliness','5',47),(189,'service','1',48),(190,'value','2',48),(191,'location','3',48),(192,'cleanliness','2',48),(193,'service','1',49),(194,'value','5',49),(195,'location','2',49),(196,'cleanliness','4',49),(197,'service','2',50),(198,'value','2',50),(199,'location','1',50),(200,'cleanliness','3',50),(201,'service','1',51),(202,'value','2',51),(203,'location','3',51),(204,'cleanliness','5',51),(205,'service','1',52),(206,'value','5',52),(207,'location','2',52),(208,'cleanliness','1',52),(209,'service','5',53),(210,'value','5',53),(211,'location','2',53),(212,'cleanliness','5',53),(213,'service','5',54),(214,'value','4',54),(215,'location','4',54),(216,'cleanliness','1',54),(217,'service','5',55),(218,'value','5',55),(219,'location','1',55),(220,'cleanliness','3',55),(221,'service','1',56),(222,'value','3',56),(223,'location','5',56),(224,'cleanliness','5',56),(225,'service','3',57),(226,'value','2',57),(227,'location','2',57),(228,'cleanliness','1',57),(229,'service','1',58),(230,'value','5',58),(231,'location','1',58),(232,'cleanliness','1',58),(233,'service','4',59),(234,'value','4',59),(235,'location','1',59),(236,'cleanliness','5',59),(237,'service','3',60),(238,'value','4',60),(239,'location','2',60),(240,'cleanliness','5',60),(241,'service','3',61),(242,'value','2',61),(243,'location','1',61),(244,'cleanliness','4',61),(245,'service','1',62),(246,'value','5',62),(247,'location','4',62),(248,'cleanliness','4',62),(249,'service','4',63),(250,'value','5',63),(251,'location','2',63),(252,'cleanliness','3',63),(253,'service','4',64),(254,'value','5',64),(255,'location','4',64),(256,'cleanliness','2',64),(257,'service','1',65),(258,'value','2',65),(259,'location','3',65),(260,'cleanliness','4',65),(261,'service','3',66),(262,'value','2',66),(263,'location','5',66),(264,'cleanliness','5',66),(265,'service','2',67),(266,'value','2',67),(267,'location','4',67),(268,'cleanliness','5',67),(269,'service','3',68),(270,'value','4',68),(271,'location','5',68),(272,'cleanliness','1',68),(273,'service','5',69),(274,'value','5',69),(275,'location','2',69),(276,'cleanliness','2',69),(277,'service','2',70),(278,'value','4',70),(279,'location','1',70),(280,'cleanliness','3',70);
/*!40000 ALTER TABLE `re_reviews_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `re_transactions`
--

DROP TABLE IF EXISTS `re_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `re_transactions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `credits` int unsigned NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `account_id` bigint unsigned DEFAULT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'add',
  `payment_id` int unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `re_transactions`
--

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

--
-- Table structure for table `revisions`
--

DROP TABLE IF EXISTS `revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `revisions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `revisionable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `revisionable_id` bigint unsigned NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_value` text COLLATE utf8mb4_unicode_ci,
  `new_value` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `revisions`
--

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

--
-- Table structure for table `role_users`
--

DROP TABLE IF EXISTS `role_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_users` (
  `user_id` bigint unsigned NOT NULL,
  `role_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`user_id`,`role_id`),
  KEY `role_users_user_id_index` (`user_id`),
  KEY `role_users_role_id_index` (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_users`
--

LOCK TABLES `role_users` WRITE;
/*!40000 ALTER TABLE `role_users` DISABLE KEYS */;
INSERT INTO `role_users` VALUES (2,1,'2023-07-02 05:01:50','2023-07-02 05:01:50');
/*!40000 ALTER TABLE `role_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `roles`
--

DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `permissions` text COLLATE utf8mb4_unicode_ci,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_default` tinyint unsigned NOT NULL DEFAULT '0',
  `created_by` bigint unsigned NOT NULL,
  `updated_by` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_slug_unique` (`slug`),
  KEY `roles_created_by_index` (`created_by`),
  KEY `roles_updated_by_index` (`updated_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `roles`
--

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'admin','Admin','{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.manage.license\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.cronjob\":true,\"api.settings\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"widgets.index\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"block.index\":true,\"block.create\":true,\"block.edit\":true,\"block.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"property.index\":true,\"property.create\":true,\"property.edit\":true,\"property.destroy\":true,\"property_feature.index\":true,\"property_feature.create\":true,\"property_feature.edit\":true,\"property_feature.destroy\":true,\"consult.index\":true,\"consult.create\":true,\"consult.edit\":true,\"consult.destroy\":true,\"property_category.index\":true,\"property_category.create\":true,\"property_category.edit\":true,\"property_category.destroy\":true,\"property_type.index\":true,\"property_type.create\":true,\"property_type.edit\":true,\"property_type.destroy\":true,\"facility.index\":true,\"facility.create\":true,\"facility.edit\":true,\"facility.destroy\":true,\"account.index\":true,\"account.create\":true,\"account.edit\":true,\"account.destroy\":true,\"package.index\":true,\"package.create\":true,\"package.edit\":true,\"package.destroy\":true,\"consults.index\":true,\"consults.edit\":true,\"consults.destroy\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider.edit\":true,\"simple-slider.destroy\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"simple-slider-item.edit\":true,\"simple-slider-item.destroy\":true,\"social-login.settings\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true}','Admin users role',1,1,1,'2023-07-02 05:01:50','2023-07-02 05:01:50');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `settings`
--

DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `settings_key_unique` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=546 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `settings`
--

LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (1,'activated_plugins','[\"language\",\"language-advanced\",\"analytics\",\"audit-log\",\"backup\",\"block\",\"blog\",\"captcha\",\"contact\",\"cookie-consent\",\"location\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"razorpay\",\"real-estate\",\"rss-feed\",\"simple-slider\",\"social-login\",\"sslcommerz\",\"stripe\",\"testimonial\",\"translation\"]',NULL,'2023-07-02 05:01:38'),(2,'language_hide_default','1',NULL,'2023-07-02 05:01:39'),(3,'language_switcher_display','list',NULL,'2023-07-02 05:01:39'),(4,'language_display','all',NULL,'2023-07-02 05:01:38'),(5,'language_hide_languages','[]',NULL,'2023-07-02 05:01:39'),(7,'payment_bank_transfer_status','1',NULL,'2023-07-02 05:01:39'),(8,'payment_stripe_name','Pay online via Stripe',NULL,'2023-07-02 05:01:39'),(9,'payment_stripe_description','Payment with Stripe',NULL,'2023-07-02 05:01:39'),(10,'payment_stripe_client_id','pk_test_51JGbXaLmHOfJnFasFfg5ksgorTTlnnqt8RzdrT1qIjqg5sGcVK3fNWBZu1OZ84ndCI4fo0Bdm7TL1yLfiC6e7nF700hBjwxbKa',NULL,'2023-07-02 05:01:39'),(11,'payment_stripe_secret','sk_test_51JGbXaLmHOfJnFasntP9rqE8wZ0qghWeMKcdlQphvMNo7C2sVaTFgRcjlnof8XVBRZspgVk7ctO62QlY10E8rHNT002pnOk3VI',NULL,'2023-07-02 05:01:39'),(12,'payment_stripe_status','1',NULL,'2023-07-02 05:01:39'),(13,'payment_paypal_name','Pay online via PayPal',NULL,'2023-07-02 05:01:39'),(14,'payment_paypal_description','Payment with PayPal',NULL,'2023-07-02 05:01:39'),(15,'payment_paypal_client_id','AZlbcwqaPAMIZ27JGOMRYrkWlMdvylKDgoNwS6rzww4_Q2naixJ9KwoOgDdhkwXBro7yTxKOV1hADDMO',NULL,'2023-07-02 05:01:39'),(16,'payment_paypal_secret','EG7289O15aSq5bT_XLY0VhA0slkme6rlKTBp0Z1KyGY-cJoq7kPIxAvDbpVd8npd_-jBHcnYuMjF9CV3',NULL,'2023-07-02 05:01:39'),(17,'payment_paypal_status','1',NULL,'2023-07-02 05:01:39'),(18,'real_estate_square_unit','m²',NULL,'2023-07-02 05:01:39'),(19,'real_estate_convert_money_to_text_enabled','1',NULL,'2023-07-02 05:01:39'),(20,'real_estate_thousands_separator',',',NULL,'2023-07-02 05:01:39'),(21,'real_estate_decimal_separator','.',NULL,'2023-07-02 05:01:39'),(22,'real_estate_enabled_register','1',NULL,'2023-07-02 05:01:39'),(23,'verify_account_email','1',NULL,'2023-07-02 05:01:39'),(24,'permalink-botble-blog-models-post','news',NULL,'2023-07-02 05:01:39'),(25,'permalink-botble-blog-models-category','news',NULL,'2023-07-02 05:01:39'),(26,'permalink-botble-location-models-city','city',NULL,'2023-07-02 05:01:39'),(27,'real_estate_review_enabled','1',NULL,'2023-07-02 05:01:39'),(28,'real_estate_review_fields','[[{\"key\":\"field\",\"value\":\"service\"}],[{\"key\":\"field\",\"value\":\"value\"}],[{\"key\":\"field\",\"value\":\"location\"}],[{\"key\":\"field\",\"value\":\"cleanliness\"}]]',NULL,'2023-07-02 05:01:39'),(84,'theme-resido-bedroom','[[{\"key\":\"label\",\"value\":1},{\"key\":\"value\",\"value\":1}],[{\"key\":\"label\",\"value\":2},{\"key\":\"value\",\"value\":2}],[{\"key\":\"label\",\"value\":3},{\"key\":\"value\",\"value\":3}],[{\"key\":\"label\",\"value\":4},{\"key\":\"value\",\"value\":4}],[{\"key\":\"label\",\"value\":5},{\"key\":\"value\",\"value\":5}]]',NULL,'2023-07-02 05:01:39'),(85,'theme-vi-resido-bedroom','[[{\"key\":\"label\",\"value\":1},{\"key\":\"value\",\"value\":1}],[{\"key\":\"label\",\"value\":2},{\"key\":\"value\",\"value\":2}],[{\"key\":\"label\",\"value\":3},{\"key\":\"value\",\"value\":3}],[{\"key\":\"label\",\"value\":4},{\"key\":\"value\",\"value\":4}],[{\"key\":\"label\",\"value\":5},{\"key\":\"value\",\"value\":5}]]',NULL,'2023-07-02 05:01:39'),(86,'theme-resido-bathroom','[[{\"key\":\"label\",\"value\":1},{\"key\":\"value\",\"value\":1}],[{\"key\":\"label\",\"value\":2},{\"key\":\"value\",\"value\":2}],[{\"key\":\"label\",\"value\":3},{\"key\":\"value\",\"value\":3}],[{\"key\":\"label\",\"value\":4},{\"key\":\"value\",\"value\":4}],[{\"key\":\"label\",\"value\":5},{\"key\":\"value\",\"value\":5}]]',NULL,'2023-07-02 05:01:39'),(87,'theme-vi-resido-bathroom','[[{\"key\":\"label\",\"value\":1},{\"key\":\"value\",\"value\":1}],[{\"key\":\"label\",\"value\":2},{\"key\":\"value\",\"value\":2}],[{\"key\":\"label\",\"value\":3},{\"key\":\"value\",\"value\":3}],[{\"key\":\"label\",\"value\":4},{\"key\":\"value\",\"value\":4}],[{\"key\":\"label\",\"value\":5},{\"key\":\"value\",\"value\":5}]]',NULL,'2023-07-02 05:01:39'),(170,'media_driver','public',NULL,'2023-07-02 05:01:39'),(171,'media_aws_access_key_id','',NULL,'2023-07-02 05:01:39'),(172,'media_aws_secret_key','',NULL,'2023-07-02 05:01:39'),(173,'media_aws_default_region','',NULL,'2023-07-02 05:01:39'),(174,'media_aws_bucket','',NULL,'2023-07-02 05:01:39'),(175,'media_aws_url','',NULL,'2023-07-02 05:01:39'),(176,'media_aws_endpoint','',NULL,'2023-07-02 05:01:39'),(177,'media_do_spaces_access_key_id','',NULL,'2023-07-02 05:01:39'),(178,'media_do_spaces_secret_key','',NULL,'2023-07-02 05:01:39'),(179,'media_do_spaces_default_region','',NULL,'2023-07-02 05:01:39'),(180,'media_do_spaces_bucket','',NULL,'2023-07-02 05:01:39'),(181,'media_do_spaces_endpoint','',NULL,'2023-07-02 05:01:39'),(182,'media_do_spaces_cdn_enabled','0',NULL,'2023-07-02 05:01:39'),(183,'media_do_spaces_cdn_custom_domain','',NULL,'2023-07-02 05:01:39'),(184,'media_wasabi_access_key_id','',NULL,'2023-07-02 05:01:39'),(185,'media_wasabi_secret_key','',NULL,'2023-07-02 05:01:39'),(186,'media_wasabi_default_region','',NULL,'2023-07-02 05:01:39'),(187,'media_wasabi_bucket','',NULL,'2023-07-02 05:01:39'),(188,'media_wasabi_root','',NULL,'2023-07-02 05:01:39'),(189,'media_bunnycdn_hostname','',NULL,'2023-07-02 05:01:39'),(190,'media_bunnycdn_zone','',NULL,'2023-07-02 05:01:39'),(191,'media_bunnycdn_key','',NULL,'2023-07-02 05:01:39'),(192,'media_bunnycdn_region','',NULL,'2023-07-02 05:01:39'),(193,'media_turn_off_automatic_url_translation_into_latin','0',NULL,'2023-07-02 05:01:39'),(194,'media_default_placeholder_image','',NULL,'2023-07-02 05:01:39'),(195,'max_upload_filesize','',NULL,'2023-07-02 05:01:39'),(196,'media_chunk_enabled','0',NULL,'2023-07-02 05:01:39'),(197,'media_chunk_size','1048576',NULL,'2023-07-02 05:01:39'),(198,'media_max_file_size','1048576',NULL,'2023-07-02 05:01:39'),(199,'media_watermark_enabled','0',NULL,'2023-07-02 05:01:39'),(200,'media_folders_can_add_watermark','[\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"20\"]',NULL,'2023-07-02 05:01:39'),(201,'media_watermark_source','',NULL,'2023-07-02 05:01:39'),(202,'media_watermark_size','10',NULL,'2023-07-02 05:01:39'),(203,'watermark_opacity','70',NULL,'2023-07-02 05:01:39'),(204,'media_watermark_position','bottom-right',NULL,'2023-07-02 05:01:39'),(205,'watermark_position_x','10',NULL,'2023-07-02 05:01:39'),(206,'watermark_position_y','10',NULL,'2023-07-02 05:01:39'),(207,'media_image_processing_library','gd',NULL,'2023-07-02 05:01:39'),(208,'media_sizes_thumb_width','150',NULL,'2023-07-02 05:01:39'),(209,'media_sizes_thumb_height','150',NULL,'2023-07-02 05:01:39'),(210,'media_sizes_large_width','1024',NULL,'2023-07-02 05:01:39'),(211,'media_sizes_large_height','0',NULL,'2023-07-02 05:01:39'),(212,'media_sizes_medium_large_width','640',NULL,'2023-07-02 05:01:39'),(213,'media_sizes_medium_large_height','0',NULL,'2023-07-02 05:01:39'),(214,'media_sizes_property_large_width','0',NULL,'2023-07-02 05:01:39'),(215,'media_sizes_property_large_height','610',NULL,'2023-07-02 05:01:39'),(216,'media_sizes_medium_width','400',NULL,'2023-07-02 05:01:39'),(217,'media_sizes_medium_height','0',NULL,'2023-07-02 05:01:39'),(464,'media_random_hash','81e666cbdcf968baf8051b49d21ac9c5',NULL,NULL),(487,'show_admin_bar','1',NULL,NULL),(488,'theme','resido',NULL,NULL),(489,'admin_logo','general/logo-light.png',NULL,NULL),(490,'admin_favicon','general/favicon.png',NULL,NULL),(491,'theme-resido-skin','blue-skin','2023-07-02 05:02:02','2023-07-02 05:02:02'),(492,'theme-resido-font_heading','Jost','2023-07-02 05:02:02','2023-07-02 05:02:02'),(493,'theme-resido-primary_font','Muli','2023-07-02 05:02:02','2023-07-02 05:02:02'),(494,'theme-resido-primary_color','#2b4db9','2023-07-02 05:02:02','2023-07-02 05:02:02'),(495,'theme-resido-cookie_consent_message','Your experience on this site will be improved by allowing cookies ','2023-07-02 05:02:02','2023-07-02 05:02:02'),(496,'theme-resido-cookie_consent_learn_more_url','http://resido.local/cookie-policy','2023-07-02 05:02:02','2023-07-02 05:02:02'),(497,'theme-resido-cookie_consent_learn_more_text','Cookie Policy','2023-07-02 05:02:02','2023-07-02 05:02:02'),(498,'theme-resido-copyright','©2023 Resido. All rights reserved by TheSky9.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(499,'theme-resido-homepage_id','1','2023-07-02 05:02:02','2023-07-02 05:02:02'),(500,'theme-resido-blog_page_id','12','2023-07-02 05:02:02','2023-07-02 05:02:02'),(501,'theme-resido-logo','general/logo.png','2023-07-02 05:02:02','2023-07-02 05:02:02'),(502,'theme-resido-favicon','general/favicon.png','2023-07-02 05:02:02','2023-07-02 05:02:02'),(503,'theme-resido-logo_white','general/logo-light.png','2023-07-02 05:02:02','2023-07-02 05:02:02'),(504,'theme-resido-img_loading','general/img-loading.jpg','2023-07-02 05:02:02','2023-07-02 05:02:02'),(505,'theme-resido-properties_page_layout','full','2023-07-02 05:02:02','2023-07-02 05:02:02'),(506,'theme-resido-property_header_layout','layout-1','2023-07-02 05:02:02','2023-07-02 05:02:02'),(507,'theme-resido-site_title','Resido - Laravel Real Estate Multilingual Syste','2023-07-02 05:02:02','2023-07-02 05:02:02'),(508,'theme-resido-seo_description','Resido is a premium real estate related websites build on Laravel. With an advanced admin dashboard that will help you create a local or global real-estate directory site.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(509,'theme-resido-seo_og_image','general/screenshot.png','2023-07-02 05:02:02','2023-07-02 05:02:02'),(510,'theme-resido-address','Collins Street West, Victoria 8007, Australia.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(511,'theme-resido-hotline','+1 246-345-0695','2023-07-02 05:02:02','2023-07-02 05:02:02'),(512,'theme-resido-email','info@example.com','2023-07-02 05:02:02','2023-07-02 05:02:02'),(513,'theme-resido-about-us','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(514,'theme-resido-vi-skin','blue-skin','2023-07-02 05:02:02','2023-07-02 05:02:02'),(515,'theme-resido-vi-font_heading','Montserrat','2023-07-02 05:02:02','2023-07-02 05:02:02'),(516,'theme-resido-vi-primary_font','Montserrat','2023-07-02 05:02:02','2023-07-02 05:02:02'),(517,'theme-resido-vi-primary_color','#2b4db9','2023-07-02 05:02:02','2023-07-02 05:02:02'),(518,'theme-resido-vi-copyright','©2023 Resido. Tất cả quyền đã được bảo hộ bởi TheSky9.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(519,'theme-resido-vi-cookie_consent_message','Trải nghiệm của bạn trên trang web này sẽ được cải thiện bằng cách cho phép cookie ','2023-07-02 05:02:02','2023-07-02 05:02:02'),(520,'theme-resido-vi-cookie_consent_learn_more_url','http://resido.local/cookie-policy','2023-07-02 05:02:02','2023-07-02 05:02:02'),(521,'theme-resido-vi-cookie_consent_learn_more_text','Cookie Policy','2023-07-02 05:02:02','2023-07-02 05:02:02'),(522,'theme-resido-vi-homepage_id','1','2023-07-02 05:02:02','2023-07-02 05:02:02'),(523,'theme-resido-vi-blog_page_id','28','2023-07-02 05:02:02','2023-07-02 05:02:02'),(524,'theme-resido-vi-logo','general/logo.png','2023-07-02 05:02:02','2023-07-02 05:02:02'),(525,'theme-resido-vi-logo_white','general/logo-light.png','2023-07-02 05:02:02','2023-07-02 05:02:02'),(526,'theme-resido-vi-img_loading','general/img-loading.jpg','2023-07-02 05:02:02','2023-07-02 05:02:02'),(527,'theme-resido-vi-properties_page_layout','full','2023-07-02 05:02:02','2023-07-02 05:02:02'),(528,'theme-resido-vi-property_header_layout','layout-1','2023-07-02 05:02:02','2023-07-02 05:02:02'),(529,'theme-resido-vi-site_title','Resido - Laravel Real Estate Multilingual Syste','2023-07-02 05:02:02','2023-07-02 05:02:02'),(530,'theme-resido-vi-seo_description','Resido is a premium real estate related websites build on Laravel. With an advanced admin dashboard that will help you create a local or global real-estate directory site.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(531,'theme-resido-vi-seo_og_image','general/screenshot.png','2023-07-02 05:02:02','2023-07-02 05:02:02'),(532,'theme-resido-vi-address','Collins Street West, Victoria 8007, Australia.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(533,'theme-resido-vi-hotline','+1 246-345-0695','2023-07-02 05:02:02','2023-07-02 05:02:02'),(534,'theme-resido-vi-email','info@example.com','2023-07-02 05:02:02','2023-07-02 05:02:02'),(535,'theme-resido-vi-about-us','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.','2023-07-02 05:02:02','2023-07-02 05:02:02'),(536,'theme-resido-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"ti-facebook\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.facebook.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"ti-twitter\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.twitter.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Instagram\"},{\"key\":\"social-icon\",\"value\":\"ti-instagram\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.instagram.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Linkedin\"},{\"key\":\"social-icon\",\"value\":\"ti-linkedin\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.linkedin.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Pinterest\"},{\"key\":\"social-icon\",\"value\":\"ti-pinterest\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.pinterest.com\\/\"}]]',NULL,NULL),(537,'theme-vi-resido-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"ti-facebook\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.facebook.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"ti-twitter\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.twitter.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Instagram\"},{\"key\":\"social-icon\",\"value\":\"ti-instagram\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.instagram.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Linkedin\"},{\"key\":\"social-icon\",\"value\":\"ti-linkedin\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.linkedin.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Pinterest\"},{\"key\":\"social-icon\",\"value\":\"ti-pinterest\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.pinterest.com\\/\"}]]',NULL,NULL),(538,'theme-resido-min_price','[[{\"key\":\"label\",\"value\":500},{\"key\":\"value\",\"value\":500}],[{\"key\":\"label\",\"value\":1000},{\"key\":\"value\",\"value\":1000}],[{\"key\":\"label\",\"value\":2000},{\"key\":\"value\",\"value\":2000}],[{\"key\":\"label\",\"value\":5000},{\"key\":\"value\",\"value\":5000}],[{\"key\":\"label\",\"value\":10000},{\"key\":\"value\",\"value\":10000}]]',NULL,NULL),(539,'theme-vi-resido-min_price','[[{\"key\":\"label\",\"value\":500},{\"key\":\"value\",\"value\":500}],[{\"key\":\"label\",\"value\":1000},{\"key\":\"value\",\"value\":1000}],[{\"key\":\"label\",\"value\":2000},{\"key\":\"value\",\"value\":2000}],[{\"key\":\"label\",\"value\":5000},{\"key\":\"value\",\"value\":5000}],[{\"key\":\"label\",\"value\":10000},{\"key\":\"value\",\"value\":10000}]]',NULL,NULL),(540,'theme-resido-max_price','[[{\"key\":\"label\",\"value\":1000},{\"key\":\"value\",\"value\":1000}],[{\"key\":\"label\",\"value\":2000},{\"key\":\"value\",\"value\":2000}],[{\"key\":\"label\",\"value\":5000},{\"key\":\"value\",\"value\":5000}],[{\"key\":\"label\",\"value\":10000},{\"key\":\"value\",\"value\":10000}],[{\"key\":\"label\",\"value\":50000},{\"key\":\"value\",\"value\":50000}]]',NULL,NULL),(541,'theme-vi-resido-max_price','[[{\"key\":\"label\",\"value\":1000},{\"key\":\"value\",\"value\":1000}],[{\"key\":\"label\",\"value\":2000},{\"key\":\"value\",\"value\":2000}],[{\"key\":\"label\",\"value\":5000},{\"key\":\"value\",\"value\":5000}],[{\"key\":\"label\",\"value\":10000},{\"key\":\"value\",\"value\":10000}],[{\"key\":\"label\",\"value\":50000},{\"key\":\"value\",\"value\":50000}]]',NULL,NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `simple_slider_items`
--

DROP TABLE IF EXISTS `simple_slider_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `simple_slider_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `simple_slider_id` bigint unsigned NOT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `order` int unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `simple_slider_items`
--

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

--
-- Table structure for table `simple_sliders`
--

DROP TABLE IF EXISTS `simple_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `simple_sliders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `simple_sliders`
--

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

--
-- Table structure for table `slugs`
--

DROP TABLE IF EXISTS `slugs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `slugs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference_id` bigint unsigned NOT NULL,
  `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `slugs_reference_id_index` (`reference_id`)
) ENGINE=InnoDB AUTO_INCREMENT=439 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `slugs`
--

LOCK TABLES `slugs` WRITE;
/*!40000 ALTER TABLE `slugs` DISABLE KEYS */;
INSERT INTO `slugs` VALUES (366,'home',1,'Botble\\Page\\Models\\Page','','2023-07-02 05:01:59','2023-07-02 05:01:59'),(367,'home-layout-2',2,'Botble\\Page\\Models\\Page','','2023-07-02 05:01:59','2023-07-02 05:01:59'),(368,'home-layout-3',3,'Botble\\Page\\Models\\Page','','2023-07-02 05:01:59','2023-07-02 05:01:59'),(369,'home-layout-4',4,'Botble\\Page\\Models\\Page','','2023-07-02 05:01:59','2023-07-02 05:01:59'),(370,'home-layout-5',5,'Botble\\Page\\Models\\Page','','2023-07-02 05:01:59','2023-07-02 05:01:59'),(371,'home-layout-6',6,'Botble\\Page\\Models\\Page','','2023-07-02 05:01:59','2023-07-02 05:01:59'),(372,'home-layout-7',7,'Botble\\Page\\Models\\Page','','2023-07-02 05:01:59','2023-07-02 05:01:59'),(373,'home-layout-8',8,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(374,'home-layout-9',9,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(375,'map-home-layout',10,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(376,'properties',11,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(377,'news',12,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(378,'about-us',13,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(379,'contact',14,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(380,'terms-conditions',15,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(381,'cookie-policy',16,'Botble\\Page\\Models\\Page','','2023-07-02 05:02:00','2023-07-02 05:02:00'),(382,'general',1,'Botble\\Blog\\Models\\Tag','tag','2023-07-02 05:02:15','2023-07-02 05:02:15'),(383,'design',2,'Botble\\Blog\\Models\\Tag','tag','2023-07-02 05:02:15','2023-07-02 05:02:15'),(384,'fashion',3,'Botble\\Blog\\Models\\Tag','tag','2023-07-02 05:02:15','2023-07-02 05:02:15'),(385,'branding',4,'Botble\\Blog\\Models\\Tag','tag','2023-07-02 05:02:15','2023-07-02 05:02:15'),(386,'modern',5,'Botble\\Blog\\Models\\Tag','tag','2023-07-02 05:02:15','2023-07-02 05:02:15'),(387,'latest-news',1,'Botble\\Blog\\Models\\Category','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(388,'house-architecture',2,'Botble\\Blog\\Models\\Category','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(389,'house-design',3,'Botble\\Blog\\Models\\Category','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(390,'building-materials',4,'Botble\\Blog\\Models\\Category','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(391,'why-people-choose-listio-for-own-properties',1,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(392,'list-of-benifits-and-impressive-listeo-services',2,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(393,'what-people-says-about-listio-properties',3,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(394,'why-people-choose-listio-for-own-properties',4,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(395,'list-of-benifits-and-impressive-listeo-services',5,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(396,'what-people-says-about-listio-properties',6,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(397,'5-of-the-most-searched-outdoor-decor-trends-of-summer-2021',7,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(398,'crave-a-canopy-bed-modern-spins-on-this-dramatic-style',8,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(399,'the-property-brothers-reveal-one-thing-never-ever-to-do-to-an-old-house',9,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(400,'how-to-build-a-raised-herb-garden-with-pallets',10,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(401,'entertain-in-style-14-products-made-for-an-outdoor-summer-soiree',11,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(402,'6-summer-maintenance-tasks-that-could-save-you-cash-have-you-done-them-all',12,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(403,'average-us-rental-price-hits-a-two-year-high',13,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(404,'digital-land-rush-has-people-spending-big-money-on-virtual-real-estate-but-why',14,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(405,'the-best-state-to-live-in-right-now-is-a-huge-surprise-can-you-guess',15,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(406,'high-lumber-prices-and-other-barriers-choke-the-confidence-of-home-builders-and-home-buyers',16,'Botble\\Blog\\Models\\Post','news','2023-07-02 05:02:15','2023-07-02 05:02:15'),(407,'apartment',1,'Botble\\RealEstate\\Models\\Category','property-category','2023-07-02 05:02:19','2023-07-02 05:02:19'),(408,'villa',2,'Botble\\RealEstate\\Models\\Category','property-category','2023-07-02 05:02:19','2023-07-02 05:02:19'),(409,'condo',3,'Botble\\RealEstate\\Models\\Category','property-category','2023-07-02 05:02:19','2023-07-02 05:02:19'),(410,'house',4,'Botble\\RealEstate\\Models\\Category','property-category','2023-07-02 05:02:19','2023-07-02 05:02:19'),(411,'land',5,'Botble\\RealEstate\\Models\\Category','property-category','2023-07-02 05:02:19','2023-07-02 05:02:19'),(412,'commercial-property',6,'Botble\\RealEstate\\Models\\Category','property-category','2023-07-02 05:02:19','2023-07-02 05:02:19'),(413,'6007-applegate-lane',1,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(414,'2721-lindsay-avenue',2,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(415,'2203-7th-street-road',3,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(416,'7431-candace-way',4,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(417,'8502-madrone-avenue',5,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(418,'1745-t-street-southeast',6,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(419,'81-seaton-place-northwest',7,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(420,'802-madison-street-northwest',8,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(421,'2811-battery-place-northwest',9,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(422,'1508-massachusetts-avenue-southeast',10,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:30','2023-07-02 05:02:30'),(423,'1427-south-carolina-avenue-southeast',11,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:31','2023-07-02 05:02:31'),(424,'127-grand-heron-drive',12,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:31','2023-07-02 05:02:31'),(425,'1515-chandlee-avenue',13,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:31','2023-07-02 05:02:31'),(426,'4113-holiday-drive',14,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:31','2023-07-02 05:02:31'),(427,'545-tracey-drive',15,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:31','2023-07-02 05:02:31'),(428,'2318-camryns-crossing',16,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:31','2023-07-02 05:02:31'),(429,'1025-west-19th-street',17,'Botble\\RealEstate\\Models\\Property','properties','2023-07-02 05:02:31','2023-07-02 05:02:31'),(430,'villa-alaya',1,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:02','2023-07-02 05:03:02'),(431,'ani-private-resorts',2,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:02','2023-07-02 05:03:02'),(432,'casa-tres-soles',3,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:03','2023-07-02 05:03:03'),(433,'la-bergerie',4,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:03','2023-07-02 05:03:03'),(434,'hollywood-mansion',5,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:03','2023-07-02 05:03:03'),(435,'crystal-springs',6,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:03','2023-07-02 05:03:03'),(436,'calivigny-island',7,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:03','2023-07-02 05:03:03'),(437,'marbella-luxury-villa',8,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:03','2023-07-02 05:03:03'),(438,'aspect-doncaster',9,'Botble\\RealEstate\\Models\\Project','projects','2023-07-02 05:03:03','2023-07-02 05:03:03');
/*!40000 ALTER TABLE `slugs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `states`
--

DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `abbreviation` varchar(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states`
--

LOCK TABLES `states` WRITE;
/*!40000 ALTER TABLE `states` DISABLE KEYS */;
INSERT INTO `states` VALUES (1,'Alabama','AL',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(2,'Alaska','AK',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(3,'American Samoa','AS',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(4,'Arizona','AZ',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(5,'Arkansas','AR',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(6,'California','CA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(7,'Colorado','CO',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(8,'Connecticut','CT',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(9,'Delaware','DE',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(10,'District Of Columbia','DC',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(11,'Federated States Of Micronesia','FM',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(12,'Florida','FL',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(13,'Georgia','GA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(14,'Guam','GU',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(15,'Hawaii','HI',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(16,'Idaho','ID',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(17,'Illinois','IL',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(18,'Indiana','IN',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(19,'Iowa','IA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(20,'Kansas','KS',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(21,'Kentucky','KY',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(22,'Louisiana','LA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(23,'Maine','ME',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(24,'Marshall Islands','MH',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(25,'Maryland','MD',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(26,'Massachusetts','MA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(27,'Michigan','MI',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(28,'Minnesota','MN',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(29,'Mississippi','MS',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(30,'Missouri','MO',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(31,'Montana','MT',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(32,'Nebraska','NE',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(33,'Nevada','NV',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(34,'New Hampshire','NH',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(35,'New Jersey','NJ',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(36,'New Mexico','NM',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(37,'New York','NY',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(38,'North Carolina','NC',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(39,'North Dakota','ND',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(40,'Northern Mariana Islands','MP',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(41,'Ohio','OH',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(42,'Oklahoma','OK',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(43,'Oregon','OR',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(44,'Palau','PW',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(45,'Pennsylvania','PA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(46,'Puerto Rico','PR',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(47,'Rhode Island','RI',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(48,'South Carolina','SC',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(49,'South Dakota','SD',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(50,'Tennessee','TN',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(51,'Texas','TX',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(52,'Utah','UT',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(53,'Vermont','VT',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(54,'Virgin Islands','VI',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(55,'Virginia','VA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(56,'Washington','WA',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(57,'West Virginia','WV',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(58,'Wisconsin','WI',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(59,'Wyoming','WY',1,0,0,'published','2023-07-02 05:01:41','2023-07-02 05:01:41'),(60,'Alberta','AB',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(61,'British Columbia','BC',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(62,'Manitoba','MB',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(63,'New Brunswick','NB',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(64,'Newfoundland','NF',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(65,'Northwest Territories','NT',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(66,'Nova Scotia','NS',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(67,'Nunavut','NU',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(68,'Ontario','ON',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(69,'Prince Edward Island','PE',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(70,'Quebec','PQ',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(71,'Saskatchewan','SK',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48'),(72,'Yukon','YT',2,0,0,'published','2023-07-02 05:01:48','2023-07-02 05:01:48');
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `states_backup`
--

DROP TABLE IF EXISTS `states_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states_backup` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `abbreviation` varchar(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` int unsigned DEFAULT NULL,
  `order` tinyint NOT NULL DEFAULT '0',
  `is_featured` tinyint unsigned NOT NULL DEFAULT '0',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states_backup`
--

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

--
-- Table structure for table `states_translations`
--

DROP TABLE IF EXISTS `states_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `states_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `states_id` int NOT NULL,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `abbreviation` varchar(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states_translations`
--

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

--
-- Table structure for table `tags`
--

DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `author_id` bigint unsigned NOT NULL,
  `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tags`
--

LOCK TABLES `tags` WRITE;
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
INSERT INTO `tags` VALUES (1,'General',1,'Botble\\ACL\\Models\\User','','published','2023-07-02 05:02:15','2023-07-02 05:02:15'),(2,'Design',1,'Botble\\ACL\\Models\\User','','published','2023-07-02 05:02:15','2023-07-02 05:02:15'),(3,'Fashion',1,'Botble\\ACL\\Models\\User','','published','2023-07-02 05:02:15','2023-07-02 05:02:15'),(4,'Branding',1,'Botble\\ACL\\Models\\User','','published','2023-07-02 05:02:15','2023-07-02 05:02:15'),(5,'Modern',1,'Botble\\ACL\\Models\\User','','published','2023-07-02 05:02:15','2023-07-02 05:02:15');
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tags_translations`
--

DROP TABLE IF EXISTS `tags_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tags_id` bigint unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`tags_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tags_translations`
--

LOCK TABLES `tags_translations` WRITE;
/*!40000 ALTER TABLE `tags_translations` DISABLE KEYS */;
INSERT INTO `tags_translations` VALUES ('vi',1,'Chung',NULL),('vi',2,'Thiết kế',NULL),('vi',3,'Thời trang',NULL),('vi',4,'Thương hiệu',NULL),('vi',5,'Hiện đại',NULL);
/*!40000 ALTER TABLE `tags_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `testimonials`
--

DROP TABLE IF EXISTS `testimonials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testimonials` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `testimonials`
--

LOCK TABLES `testimonials` WRITE;
/*!40000 ALTER TABLE `testimonials` DISABLE KEYS */;
INSERT INTO `testimonials` VALUES (1,'Adam Williams','I can\'t tell you his history,\' As they walked.','testimonials/1.jpg','CEO Of Microwoft','published','2023-07-02 05:02:35','2023-07-02 05:02:35'),(2,'Retha Deowalim','March Hare,) \'--it was at in all their simple.','testimonials/2.jpg','CEO Of Apple','published','2023-07-02 05:02:35','2023-07-02 05:02:35'),(3,'Sam J. Wasim','I to do?\' said Alice. \'Off with his nose, you.','testimonials/3.jpg','Pio Founder','published','2023-07-02 05:02:35','2023-07-02 05:02:35'),(4,'Usan Gulwarm','Never heard of one,\' said Alice. \'I\'ve tried the.','testimonials/4.jpg','CEO Of Facewarm','published','2023-07-02 05:02:35','2023-07-02 05:02:35'),(5,'Shilpa Shethy','So Alice began to get to,\' said the Dormouse.','testimonials/5.jpg','CEO Of Zapple','published','2023-07-02 05:02:35','2023-07-02 05:02:35');
/*!40000 ALTER TABLE `testimonials` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `testimonials_translations`
--

DROP TABLE IF EXISTS `testimonials_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testimonials_translations` (
  `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `testimonials_id` bigint unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` text COLLATE utf8mb4_unicode_ci,
  `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`lang_code`,`testimonials_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `testimonials_translations`
--

LOCK TABLES `testimonials_translations` WRITE;
/*!40000 ALTER TABLE `testimonials_translations` DISABLE KEYS */;
INSERT INTO `testimonials_translations` VALUES ('vi',1,'Adam Williams','Cheshire cats always grinned; in fact, I didn\'t.','Giám đốc Microwoft'),('vi',2,'Retha Deowalim','YOU, and no one to listen to her, \'if we had the.','Giám đốc Apple'),('vi',3,'Sam J. Wasim','HAVE tasted eggs, certainly,\' said Alice, as she.','Nhà sáng lập Pio'),('vi',4,'Usan Gulwarm','I do it again and again.\' \'You are old,\' said.','Giám đốc Facewarm'),('vi',5,'Shilpa Shethy','I should be raving mad after all! I almost think.','Giám đốc Zapple');
/*!40000 ALTER TABLE `testimonials_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `translations`
--

DROP TABLE IF EXISTS `translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `translations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `status` int NOT NULL DEFAULT '0',
  `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `translations`
--

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

--
-- Table structure for table `user_meta`
--

DROP TABLE IF EXISTS `user_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_meta` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_meta_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_meta`
--

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

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `avatar_id` bigint unsigned DEFAULT NULL,
  `super_user` tinyint(1) NOT NULL DEFAULT '0',
  `manage_supers` tinyint(1) NOT NULL DEFAULT '0',
  `permissions` text COLLATE utf8mb4_unicode_ci,
  `last_login` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  UNIQUE KEY `users_username_unique` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'admin@thesky9.com',NULL,'$2y$10$GgDPRcakR3.9p/IpFTgROe1MN25fubg7ds6yinlL1TdCSLaDcG8MS',NULL,'2023-07-02 05:01:50','2023-07-02 05:01:50','Super','Admin','admin',NULL,1,1,NULL,NULL),(2,'user@thesky9.com',NULL,'$2y$10$1EqHLcCfE0x9YiV6LRiEf.a0kafmdJ82UOR8Mms61NgwoglmgYvvO',NULL,'2023-07-02 05:01:50','2023-07-02 05:01:50','Normal','Admin','user',NULL,0,0,'{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.manage.license\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.cronjob\":true,\"api.settings\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"widgets.index\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"block.index\":true,\"block.create\":true,\"block.edit\":true,\"block.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"property.index\":true,\"property.create\":true,\"property.edit\":true,\"property.destroy\":true,\"property_feature.index\":true,\"property_feature.create\":true,\"property_feature.edit\":true,\"property_feature.destroy\":true,\"consult.index\":true,\"consult.create\":true,\"consult.edit\":true,\"consult.destroy\":true,\"property_category.index\":true,\"property_category.create\":true,\"property_category.edit\":true,\"property_category.destroy\":true,\"property_type.index\":true,\"property_type.create\":true,\"property_type.edit\":true,\"property_type.destroy\":true,\"facility.index\":true,\"facility.create\":true,\"facility.edit\":true,\"facility.destroy\":true,\"account.index\":true,\"account.create\":true,\"account.edit\":true,\"account.destroy\":true,\"package.index\":true,\"package.create\":true,\"package.edit\":true,\"package.destroy\":true,\"consults.index\":true,\"consults.edit\":true,\"consults.destroy\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider.edit\":true,\"simple-slider.destroy\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"simple-slider-item.edit\":true,\"simple-slider-item.destroy\":true,\"social-login.settings\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true}',NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `widgets`
--

DROP TABLE IF EXISTS `widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `widgets` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `widget_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sidebar_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
  `position` tinyint unsigned NOT NULL DEFAULT '0',
  `data` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widgets`
--

LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES (1,'ShortcodeWidget','footer_sidebar_1','resido',0,'{\"id\":\"ShortcodeWidget\",\"content\":\"[static-block alias=\\\"sign-up\\\"][\\/static-block]\"}',NULL,NULL),(2,'CustomMenuWidget','footer_sidebar_2','resido',0,'{\"id\":\"CustomMenuWidget\",\"name\":\"About\",\"menu_id\":\"about\"}',NULL,NULL),(3,'CustomMenuWidget','footer_sidebar_2','resido',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"MORE INFORMATION\",\"menu_id\":\"more-information\"}',NULL,NULL),(4,'CustomMenuWidget','footer_sidebar_2','resido',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"NEWS\",\"menu_id\":\"news\"}',NULL,NULL),(5,'ShortcodeWidget','footer_sidebar_3','resido',0,'{\"id\":\"ShortcodeWidget\",\"content\":\"[static-block alias=\\\"download-app-footer\\\"][\\/static-block]\"}',NULL,NULL),(6,'CategoriesWidget','primary_sidebar','resido',0,'{\"id\":\"CategoriesWidget\",\"name\":\"Categories\"}',NULL,NULL),(7,'RecentPostsWidget','primary_sidebar','resido',0,'{\"id\":\"RecentPostsWidget\",\"name\":\"Recent posts\",\"number_display\":\"5\"}',NULL,NULL),(8,'FeaturedPropertiesWidget','primary_sidebar','resido',0,'{\"id\":\"FeaturedPropertiesWidget\",\"name\":\"Featured properties\",\"number_display\":\"5\"}',NULL,NULL),(9,'NewsletterWidget','footer_sidebar_3','resido',1,'{\"id\":\"NewsletterWidget\",\"name\":\"Subscribe\"}',NULL,NULL),(10,'ShortcodeWidget','footer_sidebar_1','resido-vi',0,'{\"id\":\"ShortcodeWidget\",\"content\":\"[static-block alias=\\\"sign-up\\\"][\\/static-block]\"}',NULL,NULL),(11,'CustomMenuWidget','footer_sidebar_2','resido-vi',0,'{\"id\":\"CustomMenuWidget\",\"name\":\"About\",\"menu_id\":\"ve-chung-toi\"}',NULL,NULL),(12,'CustomMenuWidget','footer_sidebar_2','resido-vi',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"MORE INFORMATION\",\"menu_id\":\"thong-tin-them\"}',NULL,NULL),(13,'CustomMenuWidget','footer_sidebar_2','resido-vi',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"NEWS\",\"menu_id\":\"tin-tuc\"}',NULL,NULL),(14,'ShortcodeWidget','footer_sidebar_3','resido-vi',0,'{\"id\":\"ShortcodeWidget\",\"content\":\"[static-block alias=\\\"download-app-footer\\\"][\\/static-block]\"}',NULL,NULL),(15,'CategoriesWidget','primary_sidebar','resido-vi',0,'{\"id\":\"CategoriesWidget\",\"name\":\"Danh mục\"}',NULL,NULL),(16,'RecentPostsWidget','primary_sidebar','resido-vi',0,'{\"id\":\"RecentPostsWidget\",\"name\":\"Bài viết gần đây\",\"number_display\":\"5\"}',NULL,NULL),(17,'FeaturedPropertiesWidget','primary_sidebar','resido-vi',0,'{\"id\":\"FeaturedPropertiesWidget\",\"name\":\"Featured properties\",\"number_display\":\"5\"}',NULL,NULL),(18,'NewsletterWidget','footer_sidebar_3','resido-vi',1,'{\"id\":\"NewsletterWidget\",\"name\":\"Subscribe\"}',NULL,NULL);
/*!40000 ALTER TABLE `widgets` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2023-07-02 12:05:25
